/*
Theme Name: Bilal Unlocking Zone Theme
Theme URI: https://bilalunlockingzone.com/
Author: Bilal Unlocking Zone
Author URI: https://bilalunlockingzone.com/
Description: Proprietary and custom-designed theme for Bilal Unlocking Zone. All rights reserved. Unauthorized copying or redistribution is strictly prohibited.
Version: 4.0.1
License: Proprietary / Private
*/

:root {
    --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-color: #1abc8c;
    --dark-bg: #090d16;
    --footer-bg: linear-gradient(180deg, #0b0f19 0%, #030712 100%);
    --border-color: #e2e8f0;
    --font-stack: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.04);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-stack);
    line-height: 1.6;
    padding-bottom: 0px;
    -webkit-font-smoothing: antialiased;
}

img, iframe, video, embed, object {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header-brand-banner {
    background: radial-gradient(circle at top, rgba(26, 188, 140, 0.18) 0%, rgba(9, 13, 22, 1) 100%), #090d16;
    border-bottom: 1px solid rgba(26, 188, 140, 0.18);
    padding: 55px 0 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

.banner-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.banner-icon {
    width: 36px;
    height: 36px;
    stroke: var(--accent-color);
    filter: drop-shadow(0 0 15px rgba(26, 188, 140, 0.6));
    animation: banner-unlock-glow 3s infinite ease-in-out;
}

@keyframes banner-unlock-glow {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 10px rgba(26, 188, 140, 0.5));
    }
    50% {
        transform: translateY(-4px) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(26, 188, 140, 0.8));
    }
}

.banner-title {
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(26, 188, 140, 0.2);
}

.banner-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 950;
}

.banner-desc {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
    max-width: 760px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.banner-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(26, 188, 140, 0.08);
    color: #94a3b8;
    border: 1px solid rgba(26, 188, 140, 0.18);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.banner-badge:hover {
    background: rgba(26, 188, 140, 0.15);
    border-color: rgba(26, 188, 140, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 188, 140, 0.15);
}

.header-nav-bar {
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(26, 188, 140, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.logo-icon {
    width: 26px;
    height: 26px;
    stroke: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(26, 188, 140, 0.5));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(-12deg) scale(1.12);
    filter: drop-shadow(0 0 12px rgba(26, 188, 140, 0.8));
}

.logo {
    display: block;
    flex-shrink: 0 !important;
}

.logo-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.3px;
    white-space: nowrap !important;
    display: inline-block;
}

.logo-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 6px;
    background: rgba(9, 13, 22, 0.65);
    padding: 5px;
    border-radius: 30px;
    border: 1.5px solid rgba(26, 188, 140, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.nav-menu ul li a {
    color: #cbd5e1;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 15px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-block;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-menu ul li a:hover {
    color: #ffffff;
    background-color: rgba(26, 188, 140, 0.08);
    border-color: rgba(26, 188, 140, 0.35);
    box-shadow: 0 4px 12px rgba(26, 188, 140, 0.15);
    transform: translateY(-1.5px);
}

.nav-menu ul li.current-menu-item a {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent-color) 0%, #0d9488 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 15px rgba(26, 188, 140, 0.5), inset 0 1.5px 2px rgba(255, 255, 255, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) and (min-width: 769px) {
    .nav-menu ul li a {
        padding: 8px 11px;
        font-size: 12px;
    }
    .logo-text {
        font-size: 18px;
    }
    .header-search {
        max-width: 170px;
    }
}

.yt-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yt-btn::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff;
    animation: yt-pulse 1.5s infinite;
}

@keyframes yt-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px #ffffff;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.yt-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.main-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

.posts-loop {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-content: start;
}

.post-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    border-left: 6px solid var(--accent-hex);
    box-shadow: var(--shadow-card);
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px var(--accent-rgba);
    border-color: rgba(226, 232, 240, 0.6);
}

.post-thumbnail {
    width: 240px;
    height: 150px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.06);
}

.post-category-badge {
    display: inline-block;
    align-self: flex-start;
    color: var(--accent-hex);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background: var(--accent-rgba);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.post-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
}

.post-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.post-title a {
    color: var(--text-primary);
}

.post-card:hover .post-title a {
    color: var(--accent-hex);
}

.pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination .current {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0d9488 100%);
    color: #ffffff !important;
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(26, 188, 140, 0.3);
}

.pagination a:hover {
    background: var(--dark-bg);
    color: var(--accent-color) !important;
    border-color: var(--dark-bg);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.12);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background-color: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.widget:not(:has(a, img, p, h1, h2, h3, h4, h5, h6, form, input, button, li, svg)) {
    display: none !important;
}

.widget-title,
.widget h2:not(.youtube-widget-channel):not(.youtube-widget-logo span),
.widget h3,
.widget h4,
.widget .wp-block-heading,
.widget .wp-block-widget-group__title {
    font-size: 15px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.widget-title::after,
.widget h2:not(.youtube-widget-channel):not(.youtube-widget-logo span)::after,
.widget h3::after,
.widget .wp-block-widget-group__title::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 188, 140, 0.15) 0%, rgba(26, 188, 140, 0) 100%);
    margin-left: 15px;
}

.widget:has(.wp-block-latest-posts):not(:has(h1, h2, h3, h4, h5, h6, .widget-title, .wp-block-widget-group__title))::before {
    content: "Latest Posts";
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
}

.youtube-widget-box {
    background-color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.youtube-widget-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.youtube-widget-logo svg {
    fill: #ff0000;
    width: 36px;
    height: 36px;
}

.youtube-widget-logo span {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.8px;
    color: #ffffff;
}

.youtube-widget-channel {
    font-size: 17px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.youtube-widget-desc {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.5;
}

.youtube-widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff0000 0%, #d60000 100%);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.youtube-widget-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.55);
}

.widget .search-form {
    display: flex;
    position: relative;
    width: 100%;
}
.widget .screen-reader-text {
    display: none;
}
.widget .search-field {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 14px center;
    background-size: 18px 18px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    color: var(--text-primary);
}
.widget .search-field:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 12px rgba(26, 188, 140, 0.2);
    background-color: #ffffff;
}
.widget .search-submit {
    display: none;
}

.widget .wp-block-latest-posts,
.widget ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

html body .widget ul.wp-block-latest-posts li,
html body .widget ul li {
    display: flex !important;
    gap: 16px !important;
    align-items: center !important;
    padding: 12px 10px !important;
    margin: 0 -10px !important;
    border-radius: 14px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-bottom: none !important;
}

html body .widget ul.wp-block-latest-posts li:hover,
html body .widget ul li:hover {
    background-color: rgba(26, 188, 140, 0.06) !important;
    transform: translateX(4px) !important;
}

html body .widget ul.wp-block-latest-posts li a,
html body .widget ul li a {
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    font-size: 14.5px !important;
    line-height: 1.4 !important;
    transition: color 0.2s ease !important;
}

html body .widget ul.wp-block-latest-posts li a:hover,
html body .widget ul li a:hover {
    color: var(--accent-color) !important;
}

html body .widget ul.wp-block-latest-posts li div.wp-block-latest-posts__featured-image img,
html body .widget ul.wp-block-latest-posts li div.wp-block-latest-posts__featured-image a img,
html body .widget ul.wp-block-latest-posts li img,
html body .widget ul li img,
html body .widget ul li .recent-post-thumb img,
html body .widget ul li a img,
img.wp-block-latest-posts__featured-image {
    width: 100px !important;
    height: 68px !important;
    max-width: 100px !important;
    max-height: 68px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08) !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

html body .widget ul.wp-block-latest-posts li div.wp-block-latest-posts__featured-image,
html body .widget ul.wp-block-latest-posts li div.wp-block-latest-posts__featured-image a,
html body .widget ul li .recent-post-thumb,
html body .widget ul li .recent-post-thumb a {
    width: 100px !important;
    height: 68px !important;
    max-width: 100px !important;
    max-height: 68px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    flex-shrink: 0 !important;
}

html body .widget ul.wp-block-latest-posts li:hover img,
html body .widget ul li:hover img,
html body .widget ul li:hover .recent-post-thumb img {
    transform: scale(1.05) !important;
    border-color: var(--accent-color) !important;
}

.site-footer {
    background: radial-gradient(circle at top, rgba(26, 188, 140, 0.08) 0%, rgba(3, 7, 18, 1) 100%), #030712;
    color: #ffffff;
    padding: 40px 0 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    box-shadow: 0 0 15px var(--accent-color);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding-bottom: 20px;
    justify-content: center;
}

.footer-widgets .widget {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
    max-width: 480px;
    width: 100%;
    justify-self: center;
}

.footer-widgets .widget:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.footer-widget-title,
.footer-widgets .widget .widget-title,
.footer-widgets .widget h2,
.footer-widgets .widget h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    display: block;
}

.footer-widgets .widget ul {
    gap: 4px;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.footer-widgets .widget ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 14px;
    margin: 0 -14px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-widgets .widget ul li:hover {
    background: transparent !important;
    padding-left: 10px;
}

.footer-widgets .widget ul li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-color);
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-widgets .widget ul li:hover::before {
    transform: scaleY(1.3) scaleX(1.5);
    background: #2dd4bf;
    box-shadow: 0 0 12px #2dd4bf;
}

.footer-widgets .widget a,
.footer-widgets .widget ul li a {
    color: #cbd5e1 !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-widgets .widget a:hover,
.footer-widgets .widget ul li a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(26, 188, 140, 0.4);
}

.footer-about-text {
    color: #94a3b8;
    font-size: 13.5px;
    line-height: 1.6;
    font-weight: 600;
}

.footer-bottom-wrapper {
    background: #090d16;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 12px;
    margin-left: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.single-post-container {
    background-color: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    padding: 45px;
}

@media (max-width: 640px) {
    .single-post-container {
        padding: 24px;
    }
}

.single-post-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -0.8px;
    line-height: 1.3;
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.post-content p {
    margin-bottom: 24px;
}

.menu-toggle-btn {
    display: none;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .main-content {
        margin-top: 20px;
        gap: 25px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .posts-loop {
        gap: 20px;
        max-width: 100%;
    }
    .post-card {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 16px;
        border-left: none !important;
        border-top: 5px solid var(--accent-hex) !important;
        max-width: 100%;
        box-sizing: border-box;
    }
    .post-thumbnail {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/10 !important;
        max-width: 100%;
    }
    .post-thumbnail img {
        width: 100%;
        height: auto;
    }
    .sidebar {
        max-width: 100%;
        box-sizing: border-box;
    }
    .widget {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    .header-brand-banner {
        display: none !important;
    }
    .header-nav-bar {
        padding: 10px 0;
    }
    .nav-bar-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
    }
    .logo {
        grid-column: 1;
    }
    .menu-toggle-btn {
        grid-column: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .menu-toggle-btn:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .header-search {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100% !important;
        margin-top: 6px;
        margin-bottom: 2px;
        transition: none !important;
    }
    .header-search:focus-within {
        max-width: 100% !important;
    }
    .header-search .search-field:focus {
        width: 100% !important;
    }
    .nav-menu {
        grid-column: 1 / -1;
        width: 100%;
        display: none;
    }
    .nav-menu.active {
        display: block;
    }
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        margin-top: 8px;
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 4px;
        gap: 4px;
    }
    .nav-menu ul li a {
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
    }
    .nav-menu ul li.current-menu-item a {
        box-shadow: none;
    }
    .header-yt-wrapper {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}

.header-search {
    flex-grow: 0.5;
    max-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search:focus-within {
    max-width: 280px;
}
.header-search .search-form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.header-search .screen-reader-text {
    display: none;
}
.header-search .search-field {
    width: 100%;
    background: rgba(30, 41, 59, 0.4) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23cbd5e1'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 16px center;
    background-size: 16px 16px;
    border: 1.5px solid rgba(26, 188, 140, 0.35);
    border-radius: 30px;
    color: #ffffff;
    font-family: var(--font-stack);
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px 11px 44px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header-search .search-field::placeholder {
    color: #94a3b8;
    font-weight: 600;
    transition: color 0.3s ease;
}
.header-search .search-field:hover {
    background-color: rgba(30, 41, 59, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    border-color: rgba(26, 188, 140, 0.65);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35), 0 0 10px rgba(26, 188, 140, 0.15);
}
.header-search .search-field:focus {
    background: #1e293b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231abc8c'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E") no-repeat 16px center;
    background-size: 16px 16px;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(26, 188, 140, 0.55), 0 4px 14px rgba(0, 0, 0, 0.3);
}
.header-search .search-field:focus::placeholder {
    color: #ffffff;
}
.header-search .search-submit {
    display: none;
}

.single-post-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.post-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}
.post-content img, 
.post-content video,
.post-content pre {
    max-width: 100% !important;
    height: auto !important;
}
.post-content iframe {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: auto !important;
}
.post-content table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
.post-content pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}
input, textarea, select {
    box-sizing: border-box !important;
}

.sales-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14px;
    padding: 12px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sales-whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.sales-whatsapp-btn svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

.main-content,
.single-post-main,
.posts-loop,
.sidebar,
.single-post-container,
.post-content {
    min-width: 0;
    max-width: 100%;
}

.single-post-thumbnail {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-post-thumbnail:hover img {
    transform: scale(1.02);
}

.about-us-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

.about-ad-box {
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    font-size: 13px;
    color: #64748b;
}

.about-hero-card {
    background: linear-gradient(135deg, rgba(26, 188, 140, 0.08) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1px solid rgba(26, 188, 140, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 188, 140, 0.02);
}

.about-hero-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(26, 188, 140, 0.4));
    margin-bottom: 15px;
}

.about-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.about-hero-lead {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
}

.about-story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.about-story-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

@media (max-width: 768px) {
    .about-story-card {
        flex: 1 1 100%;
    }
}

.about-story-card:hover {
    transform: translateY(-3px);
}

.about-card-badge {
    display: inline-block;
    background: rgba(26, 188, 140, 0.08);
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-story-card p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

.about-values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.about-value-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 14px);
    min-width: 220px;
}

@media (max-width: 768px) {
    .about-value-item {
        flex: 1 1 100%;
    }
}

.about-value-item:hover {
    transform: translateY(-4px);
    border-color: rgba(26, 188, 140, 0.15);
}

.about-value-icon svg {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
}

.about-value-item h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.about-value-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.about-footer-card {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-regards {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-signature {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-by {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.privacy-policy-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
}

.privacy-ad-box {
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    font-size: 13px;
    color: #64748b;
}

.privacy-hero-card {
    background: linear-gradient(135deg, rgba(26, 188, 140, 0.08) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1px solid rgba(26, 188, 140, 0.15);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 188, 140, 0.02);
}

.privacy-hero-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(26, 188, 140, 0.4));
    margin-bottom: 15px;
}

.privacy-hero-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.privacy-hero-lead {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
}

.privacy-sections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.privacy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

@media (max-width: 768px) {
    .privacy-card {
        flex: 1 1 100%;
    }
}

.privacy-card:hover {
    transform: translateY(-3px);
    border-color: rgba(26, 188, 140, 0.12);
}

.privacy-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.privacy-section-icon {
    font-size: 20px;
}

.privacy-card-header h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.privacy-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 600;
}

.privacy-card p a {
    color: var(--accent-color);
    font-weight: 700;
}

.privacy-card p a:hover {
    text-decoration: underline;
}

.privacy-consent-card {
    background: #090d16;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-consent-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.privacy-consent-icon {
    font-size: 24px;
}

.privacy-consent-header h3 {
    font-size: 18px;
    font-weight: 850;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.privacy-consent-text {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 25px auto;
    font-weight: 600;
}

.privacy-by {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sale img,
.onsale img,
.product.sale img,
.product-image-wrapper.sale img,
.product-image-box.sale img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
}

.category-sales .post-thumbnail {
    width: 200px !important;
    height: 200px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f8fafc !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.category-sales .post-thumbnail img,
.category-sales .post-thumbnail .wp-post-image {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    background-color: #f8fafc !important;
}

.category-sales .single-post-thumbnail {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.category-sales .single-post-thumbnail img,
.category-sales .single-post-thumbnail .wp-post-image {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 750px !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

@media (max-width: 768px) {
    .category-sales .post-card {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .category-sales .post-thumbnail {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: auto !important;
        max-height: 400px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background-color: #f8fafc !important;
    }
    .category-sales .post-thumbnail img,
    .category-sales .post-thumbnail .wp-post-image {
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: contain !important;
    }
}

.post-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.post-card-actions .read-more-btn,
.post-card-actions .sales-whatsapp-btn {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card-actions .read-more-btn {
    padding: 0 22px;
    border: 2px solid var(--accent-hex);
    color: var(--accent-hex) !important;
    background: transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    gap: 6px;
}

.post-card-actions .read-more-btn:hover {
    background: var(--accent-hex);
    color: #ffffff !important;
    box-shadow: 0 8px 20px var(--accent-rgba);
    transform: translateY(-2px);
}

.post-card-actions .sales-whatsapp-btn {
    padding: 0 22px;
    background: #25d366;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    flex-grow: 1;
    margin-top: 0 !important;
    gap: 8px;
}

.post-card-actions .sales-whatsapp-btn:hover {
    background: #20ba5a;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

.read-more-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.post-card-actions .read-more-btn:hover .read-more-icon {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .post-card-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .post-card-actions .read-more-btn,
    .post-card-actions .sales-whatsapp-btn {
        width: 100%;
    }
}

.wp-block-search {
    width: 100%;
}
.wp-block-search__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}
.wp-block-search__inside-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 10px;
}
.wp-block-search__input {
    width: 100% !important;
    background: rgba(30, 41, 59, 0.4) !important;
    border: 1.5px solid rgba(26, 188, 140, 0.35) !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    font-family: var(--font-stack) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 11px 18px !important;
    outline: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease !important;
}
.wp-block-search__input:focus {
    background-color: #1e293b !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 20px rgba(26, 188, 140, 0.55) !important;
}
.wp-block-search__button {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0d9488 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 11px 22px !important;
    font-weight: 800 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(26, 188, 140, 0.3) !important;
}
.wp-block-search__button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(26, 188, 140, 0.45) !important;
}

.sidebar .widget_search,
.sidebar .widget:has(.wp-block-search),
.sidebar .widget:has(.search-form):not(:first-child) {
    display: none !important;
}

@media (max-width: 580px) {
    .container {
        padding: 0 8px !important;
    }
    .main-content {
        gap: 15px !important;
    }
    .single-post-container {
        padding: 16px 12px !important;
        border-radius: 12px !important;
    }
    .post-content iframe,
    .post-content table,
    .post-content video,
    .post-content pre,
    .post-content code,
    .post-content div,
    .post-content p,
    .post-content span,
    .post-content button,
    .post-content input,
    .post-content a {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .post-content [style*="display: flex"],
    .post-content [style*="display:flex"],
    .post-content .wp-block-columns {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        display: flex !important;
    }
    .post-content [style*="display: flex"] > *,
    .post-content [style*="display:flex"] > *,
    .post-content .wp-block-columns > * {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}
