        /* ================= DESIGN SYSTEM 2026 ================= */
        :root {
            /* Azul Escuro da Logo (Substituindo o Vermelho) */
            --primary-color: #1A1C54;
            --primary-hover: #11133C;
            --primary-light: #E8E9F2;
            --gold-color: #D4AF37;

            /* Tons de Superfície e Fundo */
            --bg-body: #F8FAFC;
            --bg-surface: #FFFFFF;
            --bg-dark: var(--primary-color);
            /* Rodapé agora tem a exata cor da logo */

            /* Textos */
            --text-main: #0F172A;
            --text-muted: #64748B;

            /* Bordas e Raios (Rounded) */
            --border-color: #E2E8F0;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --radius-pill: 99px;

            --primary-color: #1a1c54;
            --primary-light: #e8e9f5;
            --primary-hover: #12143d;
            --gold-color: #dcb336;
            --text-main: #333333;
            --text-muted: #666666;
            --bg-body: #f8f9fc;
            --border-color: #e5e7eb;
            --font-body: 'Plus Jakarta Sans', sans-serif;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-pill: 99px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 12px 24px rgba(26, 28, 84, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .woocommerce-loop-product__title,
        .price,
        .product-detail-title,
        .button,
        input,
        select,
        textarea {
            font-family: var(--font-body) !important;
        }

        .container-fluid {
            width: 100%;
            max-width: 1560px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-p-30 {
            padding: 40px 0;
        }

        .section-p-50 {
            padding: 80px 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* ========== CABEÇALHO (NOVO LAYOUT) ========== */
        .header-area {
            background-color: var(--primary-color);
            border-bottom: 2px solid var(--gold-color);
            position: relative;
            z-index: 100;
        }

        .header-layout {
            display: flex;
            align-items: center;
            gap: 50px;
            padding: 18px 0;
        }

        .logo {
            flex-shrink: 0;
        }

        .logo img {
            height: 140px;
            width: auto;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .header-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .header-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Busca Spotlight 2026 */
        .header-search {
            flex: 1;
            max-width: 750px;
        }

        .search-form {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid transparent;
            border-radius: var(--radius-pill);
            overflow: visible;
            transition: var(--transition);
        }

        .search-form:focus-within {
            border-color: var(--gold-color);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
        }

        .search-form select {
            border: none;
            padding: 16px 40px 16px 24px;
            font-family: var(--font-body);
            font-weight: 600;
            color: var(--gold-color);
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            outline: none;
            background: transparent;
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
        }

        .search-form select option {
            color: #fff;
            background-color: var(--primary-color);
            font-weight: 500;
            padding: 12px;
        }

        .search-form input {
            border: none;
            padding: 16px 24px;
            width: 100%;
            outline: none;
            font-family: var(--font-body);
            color: #fff;
            background: transparent;
            font-size: 15px;
        }

        .search-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .search-form button {
            background: transparent;
            border: none;
            padding: 0 24px;
            cursor: pointer;
            color: var(--gold-color);
            transition: var(--transition);
        }

        .search-form button:hover {
            color: var(--gold-color);
            transform: scale(1.1);
        }

        /* Ícones Modernos */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .action-item {
            display: flex;
            align-items: center;
            gap: 14px;
            cursor: pointer;
        }

        .action-icon-wrap {
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .action-item:hover .action-icon-wrap {
            background: rgba(255, 255, 255, 0.2);
        }

        .action-icon-wrap img,
        .action-icon-wrap svg {
            width: 22px;
            transition: var(--transition);
            color: #fff;
        }

        .action-badge {
            position: absolute;
            top: -2px;
            right: -4px;
            background-color: var(--gold-color);
            color: var(--primary-color);
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
            border: 2px solid var(--primary-color);
        }

        .action-item span.text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            line-height: 1.4;
        }

        .action-item span.text small {
            font-size: 16px;
            color: var(--gold-color);
            font-weight: 800;
        }

        /* ================= DROPDOWNS (BALÃOZINHO) ================= */
        .action-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--primary-color);
            min-width: 280px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-md);
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            z-index: 9999;
            border: 1px solid var(--gold-color);
            color: #ffffff;
        }

        .action-item:hover .action-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .action-dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 25px;
            width: 12px;
            height: 12px;
            background-color: var(--primary-color);
            transform: rotate(45deg);
            border-top: 1px solid var(--gold-color);
            border-left: 1px solid var(--gold-color);
        }

        .dropdown-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .dropdown-menu-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-menu-list li:last-child {
            border-bottom: none;
        }

        .dropdown-menu-list li a {
            display: block;
            padding: 12px 10px;
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            text-decoration: none;
        }

        .dropdown-menu-list li a:hover {
            color: var(--gold-color);
            padding-left: 15px;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .dropdown-menu-list li.logout-link a {
            color: #ef4444;
            /* Vermelho claro para contraste no escuro */
        }

        .action-dropdown .widget_shopping_cart_content {
            font-size: 14px;
            color: #ffffff;
        }

        .action-dropdown .widget_shopping_cart_content a {
            color: #ffffff;
        }

        .action-dropdown .widget_shopping_cart_content a:hover {
            color: var(--gold-color);
        }

        /* Nav Inferior e Efeito Vidro (Sticky) */
        /* CSS Inferior Ajustado no Novo Layout */

        .header-sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
            background-color: rgba(26, 28, 84, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-sm);
            animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .header-sticky .logo,
        .header-sticky .header-top-row {
            display: none !important;
        }

        .header-sticky .header-layout {
            padding: 0;
            gap: 0;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        .main-menu {
            display: flex;
            align-items: center;
        }

        .main-nav {
            display: flex;
            align-items: center;
        }

        .main-nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .main-nav li {
            position: relative;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            font-weight: 700;
            font-size: 15px;
            color: #fff;
            padding: 24px 0;
            position: relative;
            font-family: 'Plus Jakarta Sans';
            font-style: normal;
        }

        /* Linha animada no menu */
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 18px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-color);
            transition: var(--transition);
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--gold-color);
        }

        /* Suporte / WhatsApp */
        .header-support {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            text-decoration: none;
        }

        .wa-circle {
            background: #25D366;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
            flex-shrink: 0;
        }

        /* ================= HERO BANNER CINEMÁTICO ================= */
        .hero-section {
            background-image: url('https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?w=1800&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            height: 580px;
            display: flex;
            align-items: center;
            padding-left: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
        }

        .hero-slider {
            width: 100%;
            position: relative;
        }

        .hero-slider .slick-prev,
        .hero-slider .slick-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(212, 175, 55, 0.5);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0;
            color: transparent;
        }

        .hero-slider .slick-prev:hover,
        .hero-slider .slick-next:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: var(--gold-color);
        }

        .hero-slider .slick-prev {
            left: 40px;
        }

        .hero-slider .slick-next {
            right: 40px;
        }

        .hero-slider .slick-prev::before {
            content: '';
            width: 16px;
            height: 16px;
            border-top: 3px solid var(--gold-color);
            border-left: 3px solid var(--gold-color);
            transform: rotate(-45deg);
            display: inline-block;
            margin-left: 6px;
        }

        .hero-slider .slick-next::before {
            content: '';
            width: 16px;
            height: 16px;
            border-top: 3px solid var(--gold-color);
            border-right: 3px solid var(--gold-color);
            transform: rotate(45deg);
            display: inline-block;
            margin-right: 6px;
        }

        .hero-content {
            position: relative;
            max-width: 650px;
            z-index: 2;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 48px;
            border-radius: var(--radius-lg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 4vw, 4.2rem);
            line-height: 1.1;
            margin-bottom: 16px;
            color: #fff;
            font-weight: 800;
            letter-spacing: -1.5px;
        }

        .hero-content p {
            font-size: 20px;
            color: #E2E8F0;
            margin-bottom: 40px;
            font-weight: 500;
            line-height: 1.5;
        }

        .hero-form {
            display: flex;
            background: #fff;
            border-radius: var(--radius-pill);
            padding: 6px;
            width: 100%;
        }

        .hero-form input {
            border: none;
            padding: 0 24px;
            border-radius: var(--radius-pill);
            width: 100%;
            outline: none;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
        }

        .hero-form button {
            background-color: var(--primary-color);
            color: #fff;
            border: none;
            padding: 18px 36px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            font-size: 16px;
        }

        .hero-form button:hover {
            background-color: var(--primary-hover);
            transform: scale(1.02);
        }

        /* ================= HEADER DAS SEÇÕES (TITULOS) ================= */
        .section-header {
            text-align: center;
            margin-bottom: 45px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-icon {
            color: var(--gold-color);
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 13px;
            font-weight: 700;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 0;
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -1px;
            font-family: 'Georgia', serif;
            position: relative;
            padding-bottom: 15px;
        }

        /* O risco abaixo do título */
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gold-color);
            border-radius: 2px;
        }

        .section-title.left-aligned::after {
            left: 0;
            transform: none;
            width: 60px;
        }

        /* ================= CATEGORIAS PREMIUM ================= */

        .category-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            text-align: center;
            padding: 24px 16px;
            margin: 0 12px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
            cursor: pointer;
            margin-top: 8px;
        }

        .category-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
            transform: translateY(-8px);
        }

        .category-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 16px auto;
            display: block;
            border: 4px solid var(--primary-light);
            transition: var(--transition);
        }

        .category-card:hover img {
            transform: scale(1.08);
            border-color: var(--primary-color);
        }

        .category-card h6 {
            font-size: 18px;
            margin: 0 0 6px 0;
            font-weight: 800;
            color: var(--text-main);
        }

        .category-card span {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .slick-prev:before,
        .slick-next:before {
            color: var(--text-main);
            font-size: 24px;
            opacity: 1;
        }

        /* ================= BANNERS PROMO (BENTO STYLE) ================= */
        .promo-banners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .banner-card {
            background-size: cover;
            background-position: center;
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            height: 260px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .banner-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 100%);
            z-index: 1;
        }

        .banner-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .banner-card>* {
            position: relative;
            z-index: 2;
        }

        .banner-card h4 {
            font-size: 28px;
            margin: 0 0 12px 0;
            line-height: 1.1;
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -0.5px;
        }

        .banner-card p {
            margin-bottom: 24px;
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 500;
            max-width: 250px;
        }

        .btn-banner {
            background-color: var(--gold-color);
            color: var(--primary-color);
            border: none;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            display: inline-block;
            width: fit-content;
            transition: var(--transition);
        }

        .btn-banner:hover {
            color: #fff;
            background-color: var(--primary-color);
            transform: scale(1.05);
        }

        /* ================= PRODUTOS (CARDS CLEAN) ================= */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .product-card {
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            padding: 20px;
            transition: var(--transition);
            border: 1px solid transparent;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(26, 28, 84, 0.2);
            transform: translateY(-4px);
        }

        .product-img {
            width: 100%;
            height: 220px;
            border-radius: var(--radius-sm);
            margin-bottom: 20px;
            object-fit: cover;
            background-color: var(--bg-body);
            transition: var(--transition);
        }

        .product-card:hover .product-img {
            transform: scale(1.03);
        }

        .category-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 800;
            margin: 0 0 20px 0;
            line-height: 1.3;
            height: 46px;
            overflow: hidden;
            letter-spacing: -0.5px;
        }

        .price-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .price {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            letter-spacing: -1px;
        }



        /* Button */
        ul.products li.product .button {
            margin: 0 16px 16px;
            border-radius: var(--radius-sm);
            background-color: var(--primary-light);
            color: var(--primary-color);
            font-weight: 700;
            padding: 12px 24px;
            transition: var(--transition);
            text-align: center;
        }

        ul.products li.product .button:hover {
            background-color: var(--primary-color);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 28, 84, 0.2);
        }

        .add-btn {
            background-color: var(--primary-light);
            color: var(--primary-color);
            border: none;
            padding: 12px 20px;
            border-radius: var(--radius-pill);
            font-weight: 800;
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-body);
        }

        .add-btn:hover {
            background-color: var(--primary-color);
            color: #fff;
            box-shadow: 0 4px 12px rgba(26, 28, 84, 0.3);
        }

        /* ================= FOOTER PREMIUM ================= */
        .site-footer {
            padding: 60px 0 30px 0;
            background-color: var(--primary-color);
            background-image: url('https://images.unsplash.com/photo-1607006411021-b3628e833446?w=1800&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-blend-mode: multiply;
            color: #fff;
            font-size: 15px;
            margin-top: 80px;
            position: relative;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 3, 75, 0.9);
            /* Azul escuro com opacidade */
            z-index: 1;
        }

        .site-footer>.container-fluid {
            position: relative;
            z-index: 2;
        }

        .footer-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-call {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-call-icon {
            color: var(--gold-color);
        }

        .footer-call-text span {
            display: block;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ddd;
        }

        .footer-call-text strong {
            font-size: 24px;
            font-weight: 800;
            color: var(--gold-color);
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-social span {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-social a {
            color: var(--gold-color);
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-payments {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .footer-payments i,
        .footer-payments svg {
            font-size: 32px;
            width: 32px;
            height: 32px;
            color: #fff;
            fill: currentColor;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-payments i:hover,
        .footer-payments svg:hover {
            color: var(--gold-color);
            transform: scale(1.15);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            font-size: 20px;
            margin-bottom: 25px;
            font-weight: 800;
            color: #fff;
            font-family: 'Georgia', serif;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 14px;
        }

        .footer-list a {
            color: #ccc;
            font-weight: 500;
            transition: var(--transition);
        }

        .footer-list a:hover {
            color: var(--gold-color);
            padding-left: 5px;
        }

        .footer-contact-info p {
            color: #ccc;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer-email {
            display: inline-block;
            color: #fff;
            font-weight: 700;
            margin-top: 15px;
            text-decoration: none;
            border-bottom: 2px solid var(--gold-color);
            padding-bottom: 2px;
            transition: var(--transition);
        }

        .footer-email:hover {
            color: var(--gold-color);
        }

        .footer-hours p {
            color: #ccc;
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
            padding-bottom: 8px;
        }

        .footer-hours span {
            color: #fff;
        }

        .footer-note {
            font-size: 13px;
            color: #aaa;
            margin-top: 20px;
            line-height: 1.5;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            color: #aaa;
            font-size: 14px;
            font-weight: 500;
        }

        .footer-bottom strong {
            color: var(--gold-color);
        }

        /* Responsividade 2026 */
        @media (max-width: 1200px) {
            .header-search {
                display: none;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .logo {
                width: 100%;
                display: flex;
                justify-content: center;
                margin-bottom: 10px;
            }

            .logo img {
                height: 148px;
                margin: 0 auto;
            }

            .promo-banners-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .header-bottom-row {
                display: none;
            }

            .header-area {
                position: relative;
            }

            .header-right,
            .header-top-row,
            .header-actions {
                width: 95%;
            }

            .header-actions {
                justify-content: space-between;
            }

            .action-item .text {
                display: none !important;
            }

            .mobile-menu-btn {
                margin-right: auto;
            }

            .header-support {
                display: none !important;
            }

            .header-bottom-row.show-mobile-menu {
                display: flex !important;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--primary-color);
                z-index: 999;
                padding: 20px;
                box-shadow: var(--shadow-md);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            .main-nav,
            .main-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .header-support {
                margin-top: 15px;
                justify-content: center;
            }

            .header-layout {
                gap: 20px;
                flex-direction: column;
            }

            .header-top-row {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 24px;
                height: auto;
                justify-content: center;
                border-radius: var(--radius-md);
            }

            .hero-content {
                padding: 32px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-form {
                flex-direction: column;
                background: transparent;
                padding: 0;
                gap: 10px;
            }

            .hero-form input,
            .hero-form button {
                width: 100%;
                border-radius: var(--radius-sm);
                padding: 16px;
            }

            .hero-form input {
                background: #fff;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* WhatsApp Flutuante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 9999;
            transition: transform 0.3s ease;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        @keyframes pulse-whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Marcas Parceiras Slider */
        .partners-slider {
            position: relative;
            margin: 0 40px;
        }

        .partner-card {
            padding: 10px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            outline: none;
        }

        .partner-card img {
            width: 220px;
            height: 100px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .partner-card:hover img {
            transform: scale(1.05);
        }

        .partners-slider .slick-prev,
        .partners-slider .slick-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .partners-slider .slick-prev:hover,
        .partners-slider .slick-next:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        .partners-slider .slick-prev {
            left: -40px;
        }

        .partners-slider .slick-next {
            right: -40px;
        }

        /* Menu Flutuante Carrinho */
        .cart-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 340px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 9999;
            margin-top: 15px;
            border: 1px solid var(--gold-color);
            cursor: default;
        }

        .action-item {
            position: relative;
        }

        .action-item:hover .cart-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .cart-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 30px;
            width: 16px;
            height: 16px;
            background: #fff;
            transform: rotate(45deg);
            border-left: 1px solid var(--gold-color);
            border-top: 1px solid var(--gold-color);
        }

        .cart-dropdown-items {
            padding: 15px;
            max-height: 300px;
            overflow-y: auto;
        }

        .cart-dropdown-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .cart-dropdown-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .cart-dropdown-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            background: #f8f9fa;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin: 0 0 5px 0;
            line-height: 1.3;
        }

        .cart-item-price {
            font-size: 14px;
            font-weight: 700;
            color: #333;
            margin: 0;
        }

        .cart-dropdown-footer {
            padding: 15px;
            background: #fafafa;
            border-radius: 0 0 8px 8px;
            border-top: 1px solid #eee;
        }

        .cart-footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
            color: #666;
        }

        .cart-footer-info strong {
            font-size: 16px;
            color: #111;
        }

        .btn-checkout {
            display: block;
            width: 100%;
            padding: 12px;
            background: #25D366;
            color: #fff;
            text-align: center;
            border-radius: 4px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-checkout:hover {
            background: #1eb954;
        }

        /* Menu Flutuante Minha Conta */
        .account-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            width: 220px;
            background: #00034b;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 9999;
            margin-top: 15px;
            border: 1px solid var(--gold-color);
            cursor: default;
            padding: 10px 0;
        }

        .action-item:hover .account-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .account-dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            right: 30px;
            width: 16px;
            height: 16px;
            background: var(--primary-color);
            transform: rotate(45deg);
            border-left: 1px solid var(--gold-color);
            border-top: 1px solid var(--gold-color);
        }

        .account-dropdown-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: 0.2s;
        }

        .account-dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--gold-color);
        }

        .account-dropdown-item svg {
            color: var(--gold-color);
            transition: 0.2s;
        }

        .account-dropdown-item:hover svg {
            color: var(--gold-color);
            transform: scale(1.1);
        }

        /* Benefícios Bar */
        .benefits-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            padding: 30px 20px;
            background: #fff;
            flex-wrap: wrap;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .benefit-item svg {
            flex-shrink: 0;
            color: var(--gold-color);
            /* Dourado */
        }

        .benefit-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .benefit-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-color);
            /* Azul Escuro */
            text-transform: uppercase;
            line-height: 1.1;
            letter-spacing: 0.5px;
        }

        .benefit-desc {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary-color);
            /* Azul escuro */
            line-height: 1.1;
            margin-top: 2px;
        }

        @media (max-width: 1200px) {
            .benefits-bar {
                gap: 30px;
            }

            .benefit-desc {
                font-size: 22px;
            }
        }

        @media (max-width: 992px) {
            .benefits-bar {
                gap: 20px;
            }

            .benefit-desc {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .benefits-bar {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 20px;
                gap: 25px;
            }
        }

        .mobile-menu-btn {
            display: none !important;
        }

        @media (max-width: 992px) {
            .mobile-menu-btn {
                display: flex !important;
            }
        }

        /* ================================================================
   PAGE HERO BAR — shared by shop + blog archive
================================================================ */
        .page-hero-bar {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a2d7e 100%);
            padding: 44px 0;
            border-bottom: 3px solid var(--gold-color);
        }

        .page-hero-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .page-hero-title {
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 800;
            color: #fff;
            margin: 0 0 8px;
        }

        .page-hero-desc {
            color: rgba(255, 255, 255, 0.72);
            font-size: 15px;
            margin: 0;
        }

        /* ================================================================
   BREADCRUMB BAR
================================================================ */
        .breadcrumb-bar {
            background: #fff;
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
        }

        .breadcrumb-list {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
            color: var(--text-muted);
        }

        .breadcrumb-list a {
            color: var(--text-muted);
        }

        .breadcrumb-list a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-list strong {
            color: var(--text-main);
        }

        .bc-sep {
            color: #ccc;
        }

        /* ================================================================
   SHARED SIDEBAR STYLES
================================================================ */
        .sidebar-widget {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 24px;
            margin-bottom: 24px;
        }

        .widget-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 18px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--border-color);
        }

        .filter-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .filter-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .filter-item:last-child {
            border-bottom: none;
        }

        .filter-item a {
            color: var(--text-main);
            transition: color 0.2s;
        }

        .filter-item a:hover,
        .filter-item a.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .filter-count {
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 99px;
            font-size: 11px;
            padding: 1px 8px;
            color: var(--text-muted);
        }

        .tag-cloud-widget {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-chip {
            background: var(--primary-light);
            color: var(--primary-color);
            border: 1px solid transparent;
            border-radius: 99px;
            padding: 4px 12px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.2s;
            text-decoration: none;
        }

        .tag-chip:hover {
            background: var(--primary-color);
            color: #fff;
        }

        .price-range-inputs {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .form-input-small {
            flex: 1;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 14px;
            outline: none;
            width: 50px;
        }

        .form-input-small:focus {
            border-color: var(--primary-color);
        }

        .btn-filter {
            width: 100%;
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 0;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-filter:hover {
            background: var(--primary-hover);
        }

        .sidebar-cta {
            background: linear-gradient(135deg, var(--primary-color), #2a2d7e);
            border: none;
            color: #fff;
            text-align: center;
        }

        .sidebar-cta h4 {
            font-size: 18px;
            font-weight: 800;
            color: var(--gold-color);
            margin-bottom: 10px;
        }

        .sidebar-cta p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 18px;
            line-height: 1.6;
        }

        .btn-primary-solid {
                background: var(--gold-color);
                color: var(--primary-color);
                border: none;
                padding: 16px 36px;
                border-radius: var(--radius-pill);
                font-weight: 800;
                cursor: pointer;
                font-size: 15px;
                transition: var(--transition);
                font-family: var(--font-body);
                display: inline-flex;
                align-items: center;
                gap: 8px;
        }

        .btn-primary-solid:hover {
            background: #c49d28;
            transform: translateY(-1px);
        }

        /* ================================================================
   SHOP ARCHIVE (LOJA) PAGE
================================================================ */
        .shop-wrapper {
            padding: 40px 0 60px;
            background: var(--bg-body);
        }

        .shop-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 32px;
            align-items: start;
        }

        .shop-sidebar {
            position: sticky;
            top: 24px;
        }

        .shop-products-area {
            min-width: 0;
        }

        .shop-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 14px 20px;
            margin-bottom: 24px;
        }

        .shop-result-count {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }

        .shop-sort-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .view-toggle {
            display: flex;
            gap: 4px;
        }

        .view-btn {
            background: none;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 6px 10px;
            cursor: pointer;
            color: var(--text-muted);
            transition: all 0.2s;
        }

        .view-btn.active,
        .view-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .wc-pagination-wrap {
            margin-top: 40px;
            text-align: center;
        }

        .wc-pagination-wrap .page-numbers {
            display: inline-flex;
            gap: 6px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .wc-pagination-wrap .page-numbers a,
        .wc-pagination-wrap .page-numbers span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
            transition: all 0.2s;
        }

        .wc-pagination-wrap .page-numbers a:hover,
        .wc-pagination-wrap .page-numbers .current {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .no-products-found {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-muted);
        }

        .no-products-found svg {
            margin-bottom: 20px;
            color: #ccc;
        }

        .no-products-found h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .no-products-found p {
            font-size: 15px;
            margin-bottom: 24px;
        }

        /* Override WooCommerce UL product grid */
        ul.products {
            display: grid !important;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 24px;
            list-style: none;
            margin: 0 !important;
            padding: 0 !important;
        }

        ul.products li.product {
            background: #fff;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        ul.products li.product:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        ul.products li.product img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        /* Fix WooCommerce Clearfix pseudo-elements taking up grid cells */
        .woocommerce ul.products::before,
        .woocommerce ul.products::after {
            display: none !important;
        }

        ul.products li.product {
            display: flex;
            flex-direction: column;
            float: none !important;
            width: 100% !important;
            margin: 0 !important;
        }

        /* List View Styles */
        ul.products.list-view {
            grid-template-columns: 1fr !important;
        }

        ul.products.list-view li.product {
            flex-direction: row;
            align-items: center;
        }

        ul.products.list-view li.product img {
            width: 200px;
            height: 100%;
            min-height: 200px;
            object-fit: cover;
        }

        ul.products.list-view li.product .woocommerce-LoopProduct-link {
            flex-direction: row;
            align-items: center;
            width: 100%;
        }

        ul.products.list-view li.product .button {
            margin-left: auto;
            margin-right: 24px;
            min-width: 200px;
        }

        @media (max-width: 768px) {
            ul.products.list-view li.product {
                flex-direction: column;
            }

            ul.products.list-view li.product img {
                width: 100%;
                height: 220px;
            }

            ul.products.list-view li.product .button {
                margin: 14px 16px 16px;
                width: calc(100% - 32px);
                min-width: 0;
            }
        }

        /* Fix widgets and sidebar inputs */
        .widget input[type="text"],
        .widget input[type="number"],
        .widget input[type="search"] {
            width: 100%;
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .widget form {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
        }

        .widget form input[type="text"],
        .widget form input[type="number"] {
            flex: 1;
            min-width: 60px;
            width: 100%;
        }

        .widget form button {
            width: 100%;
            margin-top: 10px;
        }

        /* Fix for inner links */
        ul.products li.product .woocommerce-LoopProduct-link {
            display: flex;
            flex-direction: column;
            flex: 1 1 auto;
        }

        ul.products li.product .product-loop-category {
            font-size: 11px;
            color: var(--text-muted);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            padding: 14px 16px 0;
            display: block;
        }

        /* Title */
        .woocommerce ul.products li.product .woocommerce-loop-product__title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0 0 16px 0;
            line-height: 1.3;
            flex: 1 1 auto;
            padding: 14px 16px 0;
        }

        /* Price */
        ul.products li.product .price {
            font-size: 24px !important;
            font-weight: 800 !important;
            color: var(--primary-color) !important;
            margin: 0 0 20px 0 !important;
            padding: 0 16px;
            border-top: 1px solid var(--border-color);
            padding-top: 16px;
            display: flex;
            align-items: baseline;
        }

        ul.products li.product .price .unit-suffix {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0;
            vertical-align: baseline;
        }

        ul.products li.product .onsale {
            position: absolute;
            top: 12px;
            left: 12px;
            background: #e53e3e;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 99px;
            z-index: 2;
        }

        ul.products li.product .woocommerce-loop-category__title {
            padding: 14px 16px;
            font-weight: 700;
        }

        /* WooCommerce ordering select */
        .woocommerce-ordering select {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 14px;
            outline: none;
            background: #fff;
            cursor: pointer;
            color: var(--text-main);
        }

        /* ================================================================
   SINGLE PRODUCT PAGE
================================================================ */
        .single-product-wrapper {
            padding: 40px 0 60px;
            background: var(--bg-body);
        }

        .product-single-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 56px;
            align-items: start;
        }

        .product-gallery-col {
            position: sticky;
            top: 24px;
        }

        .gallery-main {
            border-radius: var(--radius-md);
            overflow: hidden;
            background: #fff;
            border: 1px solid var(--border-color);
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .main-gallery-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            display: block;
        }

        .gallery-main:hover .main-gallery-img {
            transform: scale(1.04);
        }

        .gallery-thumbs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .gallery-thumb {
            width: 76px;
            height: 76px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid var(--border-color);
            cursor: pointer;
            transition: border-color 0.2s;
            flex-shrink: 0;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumb.active,
        .gallery-thumb:hover {
            border-color: var(--primary-color);
        }

        .product-detail-col {
            padding-top: 8px;
        }

        .product-detail-cat {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        .product-detail-title {
            font-size: clamp(22px, 3vw, 32px);
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .product-rating-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .product-rating-row .stars {
            color: var(--gold-color);
            font-size: 16px;
        }

        .rating-count {
            color: var(--text-muted);
        }

        .product-price-block {
            margin-bottom: 20px;
        }

        .price-main-wrap {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        .product-price-block .price,
        .product-price-block .woocommerce-Price-amount {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary-color);
        }

        .product-price-block del {
            font-size: 18px;
            color: var(--text-muted);
        }

        .product-price-block ins {
            text-decoration: none;
        }

        .price-unit-suffix {
            font-size: 13px;
            color: var(--text-muted);
            margin-left: 4px;
        }

        .price-installments {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .price-installments strong {
            color: var(--primary-color);
        }

        .product-divider {
            border: none;
            border-top: 1px solid var(--border-color);
            margin: 20px 0;
        }

        .product-meta-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .detail-row {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-main);
        }

        .detail-row svg {
            color: var(--gold-color);
            flex-shrink: 0;
        }

        /* WC Add to Cart section */
        .single_add_to_cart_button.button {
            background: var(--primary-color) !important;
            color: #fff !important;
            border: none !important;
            border-radius: 99px !important;
            padding: 14px 32px !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            cursor: pointer !important;
            transition: all 0.2s !important;
        }

        .single_add_to_cart_button.button:hover {
            background: var(--gold-color) !important;
            color: var(--primary-color) !important;
            transform: translateY(-2px) !important;
        }

        .quantity input[type="number"] {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 8px 12px;
            font-size: 16px;
            width: 80px;
            text-align: center;
        }

        .cart {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        .out-of-stock-notice {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff3f3;
            border: 1px solid #fecaca;
            border-radius: 10px;
            padding: 14px 18px;
            font-size: 14px;
            color: #991b1b;
            margin-bottom: 16px;
        }

        .btn-whatsapp-enquiry {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: #fff;
            border-radius: 99px;
            padding: 12px 24px;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-whatsapp-enquiry:hover {
            background: #1fae55;
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 20px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 99px;
            padding: 6px 14px;
        }

        .trust-badge svg {
            color: var(--gold-color);
        }

        /* Product Tabs */
        .product-tabs-section {
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            margin-bottom: 48px;
            overflow: hidden;
        }

        .tab-nav {
            display: flex;
            border-bottom: 2px solid var(--border-color);
            background: var(--bg-body);
        }

        .tab-btn {
            background: none;
            border: none;
            padding: 16px 28px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-muted);
            cursor: pointer;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
        }

        .tab-btn.active,
        .tab-btn:hover {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .tab-pane {
            display: none;
            padding: 32px;
        }

        .tab-pane.active {
            display: block;
        }

        .tab-pane p,
        .tab-pane li {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-main);
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }

        .spec-table td {
            padding: 10px 14px;
            border: 1px solid var(--border-color);
        }

        .spec-table tr:nth-child(odd) td {
            background: var(--bg-body);
        }

        .spec-table td:first-child {
            font-weight: 700;
            color: var(--primary-color);
            width: 180px;
        }

        /* Related Products */
        .related-products-section {
            margin-bottom: 60px;
        }

        .section-header-row {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
        }

        .section-tag {
            font-size: 12px;
            font-weight: 700;
            color: var(--gold-color);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            display: block;
            margin-bottom: 6px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* ================================================================
   BLOG ARCHIVE
================================================================ */
        .blog-wrapper {
            padding: 40px 0 60px;
            background: var(--bg-body);
        }

        .blog-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            align-items: start;
        }

        .blog-main {
            min-width: 0;
        }

        /* Featured Post */
        .blog-featured {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            background: #fff;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-color);
            margin-bottom: 40px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .blog-featured:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .blog-featured-img {
            overflow: hidden;
            height: 380px;
        }

        .blog-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-featured:hover .blog-featured-img img {
            transform: scale(1.04);
        }

        .blog-featured-content {
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .blog-featured-label {
            display: inline-block;
            background: var(--gold-color);
            color: var(--primary-color);
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 4px 12px;
            border-radius: 99px;
            margin-bottom: 14px;
        }

        .blog-featured-title {
            font-size: clamp(18px, 2.5vw, 26px);
            font-weight: 800;
            line-height: 1.3;
            margin: 14px 0 14px;
        }

        .blog-featured-title a {
            color: var(--text-main);
        }

        .blog-featured-title a:hover {
            color: var(--primary-color);
        }

        .blog-featured-excerpt {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .blog-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: gap 0.2s;
        }

        .blog-read-more:hover {
            gap: 12px;
        }

        .blog-read-more svg {
            transition: transform 0.2s;
        }

        .blog-read-more:hover svg {
            transform: translateX(4px);
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .blog-card {
            background: #fff;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .blog-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .blog-img {
            overflow: hidden;
            height: 200px;
        }

        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-img img {
            transform: scale(1.06);
        }

        .blog-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .blog-cat {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--primary-color);
            background: var(--primary-light);
            padding: 2px 10px;
            border-radius: 99px;
            text-decoration: none;
        }

        .blog-date,
        .blog-read-time {
            font-size: 12px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .blog-title {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .blog-title a {
            color: var(--text-main);
            text-decoration: none;
        }

        .blog-title a:hover {
            color: var(--primary-color);
        }

        .blog-excerpt {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 16px;
            flex: 1;
        }

        .blog-pagination {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .blog-pagination .nav-links {
            display: flex;
            gap: 8px;
        }

        .blog-pagination a,
        .blog-pagination span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
            transition: all 0.2s;
        }

        .blog-pagination a:hover,
        .blog-pagination .current {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .no-posts-found {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-muted);
        }

        .no-posts-found svg {
            margin-bottom: 20px;
            color: #ccc;
        }

        .no-posts-found h3 {
            font-size: 22px;
            color: var(--text-main);
            margin-bottom: 10px;
        }

        /* Sidebar shared */
        .sidebar-search-wrap {
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
        }

        .sidebar-search-input {
            flex: 1;
            border: none;
            padding: 10px 14px;
            font-size: 14px;
            outline: none;
            color: var(--text-main);
            background: transparent;
        }

        .sidebar-search-btn {
            background: var(--primary-color);
            border: none;
            padding: 0 16px;
            cursor: pointer;
            color: #fff;
            transition: background 0.2s;
        }

        .sidebar-search-btn:hover {
            background: var(--primary-hover);
        }

        .recent-post {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .recent-post:last-child {
            border-bottom: none;
        }

        .recent-post-img {
            width: 56px;
            height: 56px;
            border-radius: 8px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .recent-post-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.4;
            display: block;
            text-decoration: none;
            margin-bottom: 4px;
        }

        .recent-post-title:hover {
            color: var(--primary-color);
        }

        .recent-post-date {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
        }

        /* ================================================================
   SINGLE POST
================================================================ */
        .single-post-wrapper {
            padding: 40px 0 60px;
            background: var(--bg-body);
        }

        .post-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            align-items: start;
        }

        .post-main {
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }

        .post-hero {
            height: 420px;
            overflow: hidden;
        }

        .post-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .post-header {
            padding: 36px 40px 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .post-cats {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .post-cat-tag {
            background: var(--primary-light);
            color: var(--primary-color);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 4px 12px;
            border-radius: 99px;
            text-decoration: none;
        }

        .post-cat-tag:hover {
            background: var(--primary-color);
            color: #fff;
        }

        .post-title {
            font-size: clamp(24px, 3.5vw, 38px);
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .post-meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .post-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .post-author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold-color);
        }

        .post-author-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
        }

        .post-author-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        .post-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .post-meta-item svg {
            color: var(--gold-color);
        }

        .post-content {
            padding: 36px 40px;
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-main);
        }

        .post-content h2,
        .post-content h3,
        .post-content h4 {
            font-weight: 800;
            color: var(--primary-color);
            margin: 32px 0 14px;
            line-height: 1.3;
        }

        .post-content h2 {
            font-size: 26px;
        }

        .post-content h3 {
            font-size: 21px;
        }

        .post-content p {
            margin-bottom: 18px;
        }

        .post-content ul,
        .post-content ol {
            margin: 0 0 18px 24px;
        }

        .post-content ul li,
        .post-content ol li {
            margin-bottom: 6px;
        }

        .post-content blockquote {
            border-left: 4px solid var(--gold-color);
            padding: 16px 24px;
            background: var(--primary-light);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            margin: 24px 0;
            color: var(--primary-color);
        }

        .post-content img {
            max-width: 100%;
            border-radius: 12px;
            margin: 16px 0;
        }

        .post-content a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .post-footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            padding: 24px 40px;
            border-top: 1px solid var(--border-color);
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .post-tag-chip {
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: 99px;
            padding: 4px 12px;
            font-size: 12px;
            color: var(--text-main);
            text-decoration: none;
            transition: all 0.2s;
        }

        .post-tag-chip:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .post-share {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 600;
        }

        .share-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            transition: all 0.2s;
            text-decoration: none;
        }

        .share-btn:hover {
            background: var(--primary-color);
            color: #fff;
            border-color: var(--primary-color);
        }

        .author-box {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 30px 40px;
            background: var(--bg-body);
            border-top: 1px solid var(--border-color);
        }

        .author-box-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--gold-color);
            flex-shrink: 0;
        }

        .author-box-name {
            font-size: 17px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .author-box-bio {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin: 0;
        }

        .post-navigation {
            padding: 28px 40px;
            border-top: 1px solid var(--border-color);
        }

        .post-nav-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .post-nav-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .post-nav-item.next {
            text-align: right;
        }

        .post-nav-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .post-nav-title {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            line-height: 1.4;
        }

        .post-nav-title:hover {
            text-decoration: underline;
        }

        .post-comments-section {
            padding: 32px 40px;
            border-top: 1px solid var(--border-color);
        }

        .related-posts-wrap {
            padding: 32px 40px;
            border-top: 1px solid var(--border-color);
        }

        .related-posts-title {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 24px;
        }

        .related-posts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Blog sidebar */
        .blog-sidebar {
            position: sticky;
            top: 24px;
        }

        /* ================================================================
   HOMEPAGE — Fix product grid query
================================================================ */
        .home-products-grid ul.products {
            grid-template-columns: repeat(4, 1fr) !important;
        }

        /* ================================================================
   WooCommerce — Override notices
================================================================ */
        .woocommerce-message,
        .woocommerce-info {
            border-top: 3px solid var(--primary-color) !important;
            border-radius: var(--radius-sm) !important;
        }

        .woocommerce-message a.button,
        .woocommerce-info a.button {
            background: var(--primary-color) !important;
            color: #fff !important;
            border-radius: 99px !important;
            padding: 8px 20px !important;
            font-weight: 700 !important;
            border: none !important;
        }

        /* ================================================================
   RESPONSIVE — All New Templates
================================================================ */
        @media (max-width: 1200px) {
            .shop-layout {
                grid-template-columns: 240px 1fr;
            }

            .product-single-layout {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .shop-layout {
                grid-template-columns: 1fr;
            }

            .shop-sidebar {
                position: static;
            }

            .product-single-layout {
                grid-template-columns: 1fr;
            }

            .product-gallery-col {
                position: static;
            }

            .blog-featured {
                grid-template-columns: 1fr;
            }

            .blog-featured-img {
                height: 240px;
            }

            .blog-layout {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                position: static;
            }

            .post-layout {
                grid-template-columns: 1fr;
            }

            .blog-sidebar {
                position: static;
            }

            .post-main {
                border-radius: var(--radius-sm);
            }

            .post-hero {
                height: 280px;
            }

            .post-header,
            .post-content,
            .post-footer,
            .author-box,
            .post-navigation,
            .post-comments-section,
            .related-posts-wrap {
                padding-left: 24px;
                padding-right: 24px;
            }

            .related-posts-grid {
                grid-template-columns: 1fr 1fr;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-hero-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .product-single-layout {
                gap: 24px;
            }

            .blog-featured {
                border-radius: var(--radius-sm);
            }

            .blog-grid {
                grid-template-columns: 1fr;
            }

            .shop-topbar {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .tab-nav {
                overflow-x: auto;
            }

            .post-nav-inner {
                grid-template-columns: 1fr;
            }

            .related-posts-grid {
                grid-template-columns: 1fr;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            ul.products {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            ul.products {
                grid-template-columns: 1fr !important;
            }
        }

        /* ================================================================
   WOOCOMMERCE CART & CHECKOUT PAGES
================================================================ */
        /* Cart Table */
        .woocommerce table.shop_table {
            border: none;
            border-radius: var(--radius-sm);
            border-collapse: separate;
            border-spacing: 0;
            width: 100%;
        }

        .woocommerce table.shop_table th {
            background: var(--primary-color);
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 16px;
            border: none;
        }

        .woocommerce table.shop_table th:first-child {
            border-radius: 8px 0 0 0;
        }

        .woocommerce table.shop_table th:last-child {
            border-radius: 0 8px 0 0;
        }

        .woocommerce table.shop_table td {
            padding: 20px 16px;
            border-top: none;
            border-bottom: 1px solid var(--border-color);
            vertical-align: middle;
        }

        .woocommerce table.shop_table tbody tr:hover td {
            background: var(--bg-body);
        }

        .woocommerce table.shop_table td.product-thumbnail img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }

        .woocommerce table.shop_table td.product-name a {
            font-weight: 700;
            color: var(--text-main);
            font-size: 15px;
            text-decoration: none;
        }

        .woocommerce table.shop_table td.product-name a:hover {
            color: var(--primary-color);
        }

        .woocommerce table.shop_table td.product-price,
        .woocommerce table.shop_table td.product-subtotal {
            font-weight: 800;
            color: var(--primary-color);
        }

        .woocommerce-cart .cart-collaterals .cart_totals {
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 30px;
            width: 100%;
            margin-top: 40px;
        }

        .woocommerce-cart .cart-collaterals .cart_totals h2 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 12px;
        }

        .woocommerce-cart .cart-collaterals .cart_totals table {
            width: 100%;
            border: none;
        }

        .woocommerce-cart .cart-collaterals .cart_totals table th {
            font-weight: 600;
            color: var(--text-main);
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
        }

        .woocommerce-cart .cart-collaterals .cart_totals table td {
            text-align: right;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border-color);
        }

        .woocommerce-cart .cart-collaterals .cart_totals .order-total th,
        .woocommerce-cart .cart-collaterals .cart_totals .order-total td {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary-color);
            border-bottom: none;
            padding-top: 20px;
        }

        .woocommerce .wc-proceed-to-checkout a.checkout-button {
            background: var(--primary-color) !important;
            color: #fff !important;
            font-size: 16px !important;
            font-weight: 800 !important;
            padding: 16px 24px !important;
            border-radius: 99px !important;
            margin-top: 24px;
            transition: background 0.2s;
        }

        .woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
            background: var(--primary-hover) !important;
        }

        /* Checkout Page */
        .woocommerce-checkout #customer_details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .woocommerce-checkout h3 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }

        .woocommerce form .form-row label {
            font-weight: 600;
            color: var(--text-main);
            font-size: 14px;
            margin-bottom: 6px;
        }

        .woocommerce form .form-row .input-text,
        .woocommerce form .form-row select {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 12px 14px;
            font-size: 14px;
            color: var(--text-main);
            width: 100%;
        }

        .woocommerce form .form-row .input-text:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        #order_review_heading {
            margin-top: 40px;
        }

        #order_review {
            background: var(--bg-body);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-sm);
            padding: 30px;
        }

        .woocommerce-checkout #payment {
            background: #fff;
            border-radius: 8px;
        }

        .woocommerce-checkout #payment ul.payment_methods {
            border-bottom: 1px solid var(--border-color);
            padding: 0;
        }

        .woocommerce-checkout #payment ul.payment_methods li {
            padding: 16px;
            border-bottom: 1px solid var(--border-color);
            margin: 0;
        }

        .woocommerce-checkout #payment ul.payment_methods li:last-child {
            border-bottom: none;
        }

        .woocommerce-checkout #payment div.payment_box {
            background: var(--bg-body);
            color: var(--text-muted);
            border-radius: 8px;
            font-size: 13px;
            padding: 16px;
            margin-top: 10px;
        }

        .woocommerce-checkout #payment div.payment_box::before {
            display: none;
        }

        .woocommerce-checkout #payment .place-order {
            padding: 24px;
        }

        .woocommerce-checkout #payment #place_order {
            background: var(--primary-color) !important;
            color: #fff !important;
            font-size: 18px !important;
            font-weight: 800 !important;
            padding: 18px 32px !important;
            border-radius: 99px !important;
            width: 100%;
            transition: background 0.3;
        }

        .woocommerce-checkout #payment #place_order:hover {
            background: var(--primary-hover) !important;
        }

        .product-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-color);
            line-height: 1;
            letter-spacing: -0.8px;
        }

        .product-price sub {
            font-size: 13px;
            font-weight: 600;
            opacity: 0.8;
        }

        @media (min-width: 992px) {
            .woocommerce-cart .woocommerce {
                display: grid;
                grid-template-columns: 2fr 1fr;
                gap: 40px;
                align-items: start;
            }

            .woocommerce-cart .cart-collaterals .cart_totals {
                margin-top: 0;
            }

            .woocommerce-checkout .woocommerce {
                display: grid;
                grid-template-columns: 1.5fr 1fr;
                gap: 40px;
                align-items: start;
            }

            #order_review_heading {
                margin-top: 0;
            }
        }