/*
Theme Name: Svarnna Custom
Author: DesignDome
Description: Custom WordPress theme for Svarnna.
Version: 1.0
*/
/* ===================================
           CSS VARIABLES & RESET
        =================================== */
        :root {
            --primary-gold: #D4AF37;
            --dark-gold: #B8941E;
            --light-gold: #F4E4C1;
            --cream: #FFF8DC;
            --dark-cream: #F5E6D3;
            --dark-brown: #3E2723;
            --medium-brown: #5D4037;
            --light-brown: #8D6E63;
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --black: #1A1A1A;
            --gray: #757575;
            --light-gray: #E0E0E0;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --border-radius: 8px;
            --border-radius-lg: 15px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-brown);
            background-color: var(--cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            outline: none;
        }

        ul {
            list-style: none;
        }

        /* ===================================
           UTILITY CLASSES
        =================================== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 5rem 0;
        }

        .text-center {
            text-align: center;
        }

        .flex {
            display: flex;
        }

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .grid {
            display: grid;
        }

        .hidden {
            display: none;
        }

        .fade-in {
            animation: fadeIn 0.6s ease-in;
        }

        .slide-up {
            animation: slideUp 0.6s ease-out;
        }

        .scale-in {
            animation: scaleIn 0.4s ease-out;
        }

        /* ===================================
           ANIMATIONS & KEYFRAMES
        =================================== */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===================================
           LOADING SCREEN
        =================================== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loading-screen.hide {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 6px solid var(--light-gold);
            border-top-color: var(--primary-gold);
            border-radius: 50%;
            animation: rotate 1s linear infinite;
        }

        .loading-text {
            color: var(--primary-gold);
            font-size: 1.5rem;
            font-family: 'Cinzel', serif;
            margin-top: 2rem;
            letter-spacing: 3px;
        }

        /* ===================================
           NAVIGATION BAR
        =================================== */
        .top-announcement {
            background: linear-gradient(90deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-brown);
            text-align: center;
            padding: 0.75rem;
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .top-announcement::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

        .announcement-text {
            position: relative;
            z-index: 1;
        }

        nav {
            background-color: var(--dark-brown);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        nav.scrolled {
            box-shadow: var(--shadow-xl);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: transform var(--transition-normal);
        }

        .logo-container:hover {
            transform: scale(1.05);
        }

        .logo {
            height: 70px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform var(--transition-normal);
        }

        .logo-container:hover .logo {
            transform: rotate(5deg);
        }

        .brand-name {
            color: var(--primary-gold);
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: 4px;
            font-family: 'Cinzel', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .brand-tagline {
            color: var(--light-gold);
            font-size: 0.75rem;
            letter-spacing: 2px;
            font-weight: 300;
            margin-top: -5px;
        }

        .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all var(--transition-normal);
            padding: 0.75rem 1.5rem;
            border-radius: var(--border-radius);
            display: block;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary-gold);
            transition: width var(--transition-normal);
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-gold);
            background: rgba(212, 175, 55, 0.1);
        }

        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 0.6rem 1rem;
            border-radius: 25px;
            color: var(--white);
            width: 200px;
            transition: all var(--transition-normal);
        }

        .search-input:focus {
            outline: none;
            background: rgba(255,255,255,0.15);
            border-color: var(--primary-gold);
            width: 250px;
        }

        .search-input::placeholder {
            color: rgba(255,255,255,0.6);
        }

        .cart-icon {
            position: relative;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all var(--transition-normal);
        }

        .cart-icon:hover {
            color: var(--primary-gold);
            transform: scale(1.1);
        }

        .cart-count {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--error);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: bold;
            padding: 0.2rem 0.4rem;
            border-radius: 50%;
            min-width: 18px;
            text-align: center;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: color var(--transition-fast);
        }

        .mobile-menu-btn:hover {
            color: var(--primary-gold);
        }

        /* ===================================
           HERO SECTION
        =================================== */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--dark-cream) 100%);
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: slideUp 1s ease-out;
        }

        .hero-title {
            font-size: 4.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            line-height: 1.1;
            font-family: 'Cinzel', serif;
        }

        .hero-title .highlight {
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 15px;
            background: var(--primary-gold);
            opacity: 0.3;
            z-index: -1;
            transform: skewY(-2deg);
        }

        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--light-brown);
            margin-bottom: 1.5rem;
            font-style: italic;
            font-weight: 300;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 2.5rem;
            color: var(--medium-brown);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
            z-index: -1;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            color: var(--dark-brown);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark-brown);
            border: 2px solid var(--primary-gold);
        }

        .btn-secondary:hover {
            background: var(--primary-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
        }

        .hero-image-container {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-product-image {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
            transition: transform var(--transition-normal);
        }

        .hero-product-image:hover {
            transform: scale(1.05) rotate(2deg);
        }

        .floating-badge {
            position: absolute;
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            animation: float 4s ease-in-out infinite;
        }

        .badge-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .badge-2 {
            bottom: 15%;
            right: -5%;
            animation-delay: 1s;
        }

        .badge-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-brown);
        }

        /* ===================================
           NEW LANDING PAGE SECTIONS
        =================================== */
        .intro-section {
            background: var(--white);
            position: relative;
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .intro-text h2 {
            font-size: 3rem;
            color: var(--dark-brown);
            margin-bottom: 1.5rem;
        }

        .intro-text p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--medium-brown);
            margin-bottom: 1.5rem;
        }

        .intro-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .intro-image-box {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition-normal);
        }

        .intro-image-box:hover {
            transform: translateY(-10px);
        }

        .intro-image-box img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .intro-image-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
            padding: 1rem;
            font-weight: 600;
            text-align: center;
        }

        .product-categories-section {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
        }

        .category-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .category-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .category-image {
            width: 100%;
            height: 250px;
            object-fit: contain;
            background: var(--cream);
            padding: 2rem;
        }

        .category-content {
            padding: 2rem;
            text-align: center;
        }

        .category-content h3 {
            font-size: 1.8rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .category-content p {
            color: var(--light-brown);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .category-btn {
            display: inline-block;
            padding: 0.75rem 2rem;
            background: var(--primary-gold);
            color: var(--dark-brown);
            border-radius: 25px;
            font-weight: 600;
            transition: all var(--transition-normal);
        }

        .category-btn:hover {
            background: var(--dark-gold);
            transform: scale(1.05);
        }

        .benefits-section {
            background: var(--off-white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-item {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border-top: 4px solid transparent;
        }

        .benefit-item:hover {
            border-top-color: var(--primary-gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .benefit-item h4 {
            font-size: 1.3rem;
            color: var(--dark-brown);
            margin-bottom: 0.75rem;
        }

        .benefit-item p {
            color: var(--light-brown);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .journey-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .journey-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .journey-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .journey-content h2 {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }

        .journey-content p {
            font-size: 1.2rem;
            line-height: 1.9;
            color: var(--light-gold);
            margin-bottom: 2rem;
        }

        .journey-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .journey-milestone {
            text-align: center;
        }

        .milestone-year {
            font-size: 3rem;
            color: var(--primary-gold);
            font-weight: 800;
            font-family: 'Cinzel', serif;
            margin-bottom: 0.5rem;
        }

        .milestone-text {
            color: var(--light-gold);
            font-size: 1rem;
        }

        /* ===================================
           FEATURES SECTION
        =================================== */
        .features-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--light-gold) 0%, transparent 70%);
            opacity: 0.3;
            border-radius: 50%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-subtitle {
            color: var(--primary-gold);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 3.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--light-brown);
            max-width: 700px;
            margin: 1.5rem auto 0;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-gold);
        }

        .feature-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform var(--transition-normal);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .feature-title {
            font-size: 1.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-description {
            color: var(--light-brown);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        /* ===================================
           STATISTICS SECTION
        =================================== */
        .stats-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.1" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,128C672,128,768,160,864,165.3C960,171,1056,149,1152,133.3C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x bottom;
            opacity: 0.5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--light-gold);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .stat-icon {
            font-size: 3rem;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        /* ===================================
           PRODUCTS SECTION
        =================================== */
        .products-section {
            background: var(--off-white);
        }

        .product-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 0.75rem 2rem;
            background: var(--white);
            color: var(--dark-brown);
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition-normal);
            cursor: pointer;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-gold);
            color: var(--dark-brown);
            border-color: var(--primary-gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .product-card {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 100%);
            opacity: 0;
            transition: opacity var(--transition-normal);
            pointer-events: none;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--primary-gold);
            color: var(--dark-brown);
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

        .product-image-container {
            position: relative;
            height: 300px;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1.5rem;
            transition: transform var(--transition-slow);
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-quick-view {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark-brown);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all var(--transition-normal);
            opacity: 0;
            cursor: pointer;
        }

        .product-card:hover .product-quick-view {
            bottom: 1rem;
            opacity: 1;
        }

        .product-quick-view:hover {
            background: var(--primary-gold);
            color: var(--dark-brown);
        }

        .product-details {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            color: var(--primary-gold);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .product-name {
            font-size: 1.4rem;
            color: var(--dark-brown);
            margin-bottom: 0.75rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .product-description {
            color: var(--light-brown);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            flex: 1;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .stars {
            color: var(--primary-gold);
            font-size: 1rem;
        }

        .rating-count {
            color: var(--gray);
            font-size: 0.85rem;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--light-gray);
        }

        .product-price {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .price-current {
            font-size: 1.8rem;
            color: var(--primary-gold);
            font-weight: 800;
            font-family: 'Cinzel', serif;
        }

        .price-original {
            font-size: 1rem;
            color: var(--gray);
            text-decoration: line-through;
        }

        .product-weight {
            color: var(--light-brown);
            font-size: 0.85rem;
        }

        .add-to-cart-btn {
            background: var(--primary-gold);
            color: var(--dark-brown);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            white-space: nowrap;
        }

        .add-to-cart-btn:hover {
            background: var(--dark-gold);
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
        }

        .wishlist-btn {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--white);
            color: var(--error);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

        .wishlist-btn:hover {
            transform: scale(1.15);
            box-shadow: var(--shadow-md);
        }

        /* ===================================
           TRADITION PAGE
        =================================== */
        .tradition-hero {
            background: linear-gradient(rgba(62, 39, 35, 0.8), rgba(62, 39, 35, 0.9)),
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23D4AF37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 8rem 0 5rem;
            text-align: center;
        }

        .tradition-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .tradition-text-content {
            font-size: 1.1rem;
            line-height: 1.9;
        }

        .tradition-text-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-brown);
        }

        .tradition-text-content p {
            margin-bottom: 1.5rem;
            color: var(--medium-brown);
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
            padding: 2rem;
            border-left: 5px solid var(--primary-gold);
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: var(--shadow-md);
        }

        .highlight-box h3 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .highlight-box p {
            color: var(--medium-brown);
            line-height: 1.8;
        }

        .tradition-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .tradition-image-container {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition-normal);
        }

        .tradition-image-container:hover {
            transform: scale(1.05);
        }

        .tradition-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .values-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .value-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-gold), var(--dark-gold));
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .value-card:hover::before {
            transform: scaleX(1);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-gold);
        }

        .value-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: transform var(--transition-normal);
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .value-title {
            font-size: 1.6rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .value-description {
            color: var(--light-brown);
            line-height: 1.7;
        }

        .timeline {
            position: relative;
            padding: 3rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--primary-gold), var(--dark-gold));
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            width: 45%;
            background: var(--white);
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .timeline-year {
            font-size: 2rem;
            color: var(--primary-gold);
            font-weight: 800;
            margin-bottom: 0.5rem;
            font-family: 'Cinzel', serif;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary-gold);
            border: 4px solid var(--white);
            border-radius: 50%;
            box-shadow: 0 0 0 4px var(--primary-gold);
        }

        /* ===================================
           PROCESS PAGE
        =================================== */
        .process-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--medium-brown);
        }

        .process-timeline {
            position: relative;
            padding: 3rem 0;
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-step:nth-child(even) {
            direction: rtl;
        }

        .process-step:nth-child(even) > * {
            direction: ltr;
        }

        .process-content-box {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            border: 2px solid var(--light-gray);
            transition: all var(--transition-normal);
        }

        .process-content-box:hover {
            border-color: var(--primary-gold);
            transform: scale(1.02);
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--dark-brown);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
            font-family: 'Cinzel', serif;
        }

        .step-title {
            font-size: 2rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .step-description {
            color: var(--light-brown);
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .process-image-wrapper {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            height: 400px;
        }

        .process-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
            z-index: 1;
            transition: opacity var(--transition-normal);
        }

        .process-image-wrapper:hover::before {
            opacity: 0;
        }

        .process-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .process-image-wrapper:hover .process-image {
            transform: scale(1.1);
        }

        .quality-guarantee {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
            color: var(--white);
            padding: 4rem 2rem;
            border-radius: var(--border-radius-lg);
            text-align: center;
            margin-top: 4rem;
            position: relative;
            overflow: hidden;
        }

        .quality-guarantee::before {
            content: '✓';
            position: absolute;
            top: -50px;
            right: -50px;
            font-size: 20rem;
            color: rgba(212, 175, 55, 0.1);
            font-weight: 900;
        }

        .quality-guarantee h2 {
            color: var(--primary-gold);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .quality-guarantee p {
            font-size: 1.2rem;
            line-height: 1.9;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            color: var(--light-gold);
        }

        /* ===================================
           RECIPES PAGE
        =================================== */
        .recipes-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 4rem;
        }

        .recipes-showcase {
            display: grid;
            gap: 4rem;
        }

        .recipe-card-large {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

        .recipe-card-large:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .recipe-header-section {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
            padding: 3rem;
            color: var(--dark-brown);
            position: relative;
            overflow: hidden;
        }

        .recipe-header-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .recipe-title-main {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .recipe-meta-info {
            display: flex;
            gap: 3rem;
            font-size: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
        }

        .meta-icon {
            font-size: 1.3rem;
        }

        .recipe-body-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 3rem;
        }

        .recipe-section {
            background: var(--off-white);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--primary-gold);
        }

        .recipe-section h3 {
            color: var(--dark-brown);
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .ingredients-list {
            list-style: none;
        }

        .ingredients-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--light-gray);
            transition: all var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .ingredients-list li:hover {
            padding-left: 1rem;
            background: var(--white);
        }

        .ingredients-list li::before {
            content: "✓";
            color: var(--primary-gold);
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .svarnna-ingredient {
            background: linear-gradient(135deg, var(--light-gold) 0%, var(--cream) 100%);
            padding: 0.75rem 1rem;
            border-left: 4px solid var(--primary-gold);
            border-radius: var(--border-radius);
            margin: 0.5rem 0;
            font-weight: 600;
            color: var(--dark-brown);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .svarnna-ingredient::before {
            content: "⭐";
            font-size: 1.2rem;
        }

        .instructions-list {
            counter-reset: step-counter;
            list-style: none;
        }

        .instructions-list li {
            counter-increment: step-counter;
            padding: 1rem 0 1rem 3.5rem;
            position: relative;
            border-bottom: 1px solid var(--light-gray);
            line-height: 1.7;
        }

        .instructions-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 1rem;
            background: var(--primary-gold);
            color: var(--dark-brown);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: var(--shadow-sm);
        }

        .recipe-tips {
            background: var(--light-gold);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            border: 2px dashed var(--primary-gold);
        }

        .recipe-tips h4 {
            color: var(--dark-brown);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .recipe-tips ul {
            list-style: none;
        }

        .recipe-tips li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--medium-brown);
        }

        .recipe-tips li::before {
            content: "💡";
            position: absolute;
            left: 0;
        }

        .recipe-cta-section {
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin-top: 2rem;
            text-align: center;
            border: 2px solid var(--primary-gold);
        }

        .recipe-cta-section h4 {
            color: var(--dark-brown);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .recipe-cta-section p {
            color: var(--medium-brown);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .recipe-products-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .recipe-product-item {
            background: var(--white);
            padding: 1rem 1.5rem;
            border-radius: var(--border-radius);
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
        }

        .recipe-product-item:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-md);
        }

        .recipe-product-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .recipe-product-icon {
            font-size: 2rem;
        }

        .recipe-product-details h5 {
            color: var(--dark-brown);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .recipe-product-price {
            color: var(--primary-gold);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .add-recipe-to-cart-btn {
            background: var(--primary-gold);
            color: var(--dark-brown);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            transition: all var(--transition-normal);
            cursor: pointer;
            box-shadow: var(--shadow-md);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .add-recipe-to-cart-btn:hover {
            background: var(--dark-gold);
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .recipe-total-price {
            font-size: 1.5rem;
            color: var(--dark-brown);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        /* ===================================
           TESTIMONIALS SECTION
        =================================== */
        .testimonials-section {
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
        }

        .testimonials-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            text-align: center;
            position: relative;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary-gold);
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            color: var(--medium-brown);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid var(--light-gray);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--dark-brown);
            font-weight: bold;
        }

        .author-info h4 {
            color: var(--dark-brown);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--light-brown);
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: var(--primary-gold);
            font-size: 1.2rem;
            margin-top: 1rem;
        }

        /* ===================================
           CTA SECTION
        =================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            color: var(--light-gold);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ===================================
           NEWSLETTER SECTION
        =================================== */
        .newsletter-section {
            background: var(--white);
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 600px;
            margin: 2rem auto 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-input {
            flex: 1;
            min-width: 250px;
            padding: 1rem 1.5rem;
            border: 2px solid var(--light-gray);
            border-radius: 50px;
            font-size: 1rem;
            transition: all var(--transition-normal);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

        .newsletter-submit {
            padding: 1rem 3rem;
            background: var(--primary-gold);
            color: var(--dark-brown);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all var(--transition-normal);
            white-space: nowrap;
        }

        .newsletter-submit:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* ===================================
           FOOTER
        =================================== */
        footer {
            background: var(--dark-brown);
            color: var(--light-gold);
            padding-top: 4rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--primary-gold);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-family: 'Cinzel', serif;
        }

        .footer-section p,
        .footer-section li {
            line-height: 1.8;
            color: var(--light-gold);
            margin-bottom: 0.75rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: var(--light-gold);
            transition: all var(--transition-fast);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 1.3rem;
            transition: all var(--transition-normal);
        }

        .social-icon:hover {
            background: var(--primary-gold);
            color: var(--dark-brown);
            transform: translateY(-5px);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .contact-icon {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            padding: 2rem 0;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .copyright {
            color: var(--light-gold);
        }

        .payment-methods {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .payment-icon {
            font-size: 1.8rem;
            opacity: 0.7;
            transition: opacity var(--transition-fast);
        }

        .payment-icon:hover {
            opacity: 1;
        }

        /* ===================================
           BACK TO TOP BUTTON
        =================================== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            color: var(--dark-brown);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-normal);
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--dark-gold);
            transform: translateY(-5px);
        }

        /* ===================================
           MODAL / QUICK VIEW
        =================================== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            border-radius: var(--border-radius-lg);
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: scaleIn 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: var(--error);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            z-index: 10;
            transition: all var(--transition-fast);
        }

        .modal-close:hover {
            transform: rotate(90deg);
            background: #d32f2f;
        }

        .modal-body {
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .modal-image {
            width: 100%;
            border-radius: var(--border-radius);
        }

        .modal-details h2 {
            font-size: 2.5rem;
            color: var(--dark-brown);
            margin-bottom: 1rem;
        }

        .modal-price {
            font-size: 2.5rem;
            color: var(--primary-gold);
            font-weight: 800;
            margin-bottom: 1.5rem;
            font-family: 'Cinzel', serif;
        }

        .modal-description {
            color: var(--light-brown);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background: var(--primary-gold);
            color: var(--dark-brown);
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all var(--transition-fast);
        }

        .quantity-btn:hover {
            background: var(--dark-gold);
            transform: scale(1.1);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            border: 2px solid var(--light-gray);
            border-radius: var(--border-radius);
            padding: 0.5rem;
        }

        /* ===================================
           CART SIDEBAR
        =================================== */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100%;
            background: var(--white);
            box-shadow: -5px 0 20px rgba(0,0,0,0.2);
            z-index: 9998;
            transition: right var(--transition-normal);
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            background: var(--dark-brown);
            color: var(--white);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

        .cart-close {
            background: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            transition: color var(--transition-fast);
        }

        .cart-close:hover {
            color: var(--primary-gold);
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border-bottom: 1px solid var(--light-gray);
            margin-bottom: 1rem;
            transition: background var(--transition-fast);
        }

        .cart-item:hover {
            background: var(--off-white);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: var(--border-radius);
            background: var(--cream);
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            color: var(--dark-brown);
            margin-bottom: 0.5rem;
        }

        .cart-item-price {
            color: var(--primary-gold);
            font-weight: 700;
        }

        .cart-item-quantity {
            color: var(--gray);
            font-size: 0.9rem;
        }

        .cart-item-remove {
            color: var(--error);
            cursor: pointer;
            font-size: 1.2rem;
            transition: transform var(--transition-fast);
        }

        .cart-item-remove:hover {
            transform: scale(1.2);
        }

        .cart-footer {
            border-top: 2px solid var(--light-gray);
            padding: 1.5rem;
            background: var(--off-white);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .cart-total-label {
            color: var(--dark-brown);
        }

        .cart-total-amount {
            color: var(--primary-gold);
            font-size: 1.8rem;
            font-family: 'Cinzel', serif;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem;
            background: var(--primary-gold);
            color: var(--dark-brown);
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .checkout-btn:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .empty-cart {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--light-brown);
        }

        .empty-cart-icon {
            font-size: 5rem;
            opacity: 0.3;
            margin-bottom: 1rem;
        }

        /* ===================================
           WHATSAPP FLOAT BUTTON
        =================================== */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            z-index: 998;
            transition: all var(--transition-normal);
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        /* ===================================
           RESPONSIVE DESIGN
        =================================== */
        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .section-padding {
                padding: 4rem 0;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--dark-brown);
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 0;
                box-shadow: 5px 0 20px rgba(0,0,0,0.3);
                transition: left var(--transition-normal);
                overflow-y: auto;
            }

            .nav-links.active {
                display: flex;
                left: 0;
            }

            .nav-links a {
                width: 100%;
                padding: 1rem;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .mobile-menu-btn {
                display: block;
            }

            .search-box {
                display: none;
            }

            .hero-content,
            .intro-content,
            .tradition-content-wrapper,
            .process-step,
            .recipe-body-content,
            .modal-body {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .intro-image-grid {
                grid-template-columns: 1fr;
            }

            .process-step:nth-child(even) {
                direction: ltr;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                flex-direction: column;
            }

            .timeline-content {
                width: 100%;
                margin-left: 50px;
            }

            .timeline-dot {
                left: 20px;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .floating-badge {
                display: none;
            }

            .brand-name {
                font-size: 1.5rem;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .journey-timeline {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .recipe-meta-info {
                flex-direction: column;
                gap: 1rem;
            }

            .back-to-top,
            .whatsapp-float {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float {
                bottom: 80px;
            }
        }

        /* ===================================
           PAGE TRANSITION
        =================================== */
        .page {
            display: none;
        }

        .page.active {
            display: block;
            animation: fadeIn 0.5s ease-in;
        }

        /* ===================================
           PRINT STYLES
        =================================== */
        @media print {
            nav,
            .back-to-top,
            .whatsapp-float,
            .cart-sidebar,
            .newsletter-section,
            .cta-section {
                display: none;
            }

            body {
                background: white;
                color: black;
            }

            .section-padding {
                padding: 1rem 0;
            }
        }

        /* WORDPRESS BLANK PAGE FIX */
body.page {
    display: block !important;
}

.page {
    display: block !important;
}

.wp-site-blocks,
.wordpress-page-content,
.wordpress-home-content {
    display: block !important;
    min-height: 60vh;
}

.loading-screen {
    display: none !important;
}

/* PROCESS PAGE FIX FOR WORDPRESS */
.process-step {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    margin-bottom: 4rem !important;
    align-items: center !important;
}

.process-step:nth-child(even) {
    direction: rtl !important;
}

.process-step:nth-child(even) > * {
    direction: ltr !important;
}

.process-content-box {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.process-image-wrapper {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 400px !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.process-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Mobile process page */
@media (max-width: 768px) {
    .process-step {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }

    .process-step:nth-child(even) {
        direction: ltr !important;
    }

    .process-image-wrapper {
        height: 260px !important;
    }

    .process-content-box {
        padding: 2rem !important;
    }
}
/* ================================
   OVERALL WEBSITE SIZE REDUCE
================================ */

/* Desktop / Laptop */
@media (min-width: 769px) {
    body {
        zoom: 0.9;
    }
}

/* Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    body {
        zoom: 0.85;
    }
}

/* Mobile - don't use zoom here */
@media (max-width: 768px) {
    html {
        font-size: 80% !important;
    }

    .section-padding {
        padding: 2.2rem 0 !important;
    }

    .container {
        padding: 0 1rem !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .hero-product-image {
        max-width: 240px !important;
    }

    .process-image-wrapper,
    .intro-image-box img {
        max-height: 240px !important;
    }
}

/* CART / WOOCOMMERCE PAGE HEADER FIX */
.logo-container .logo,
nav .logo {
    height: 70px !important;
    width: auto !important;
    max-width: 120px !important;
    object-fit: contain !important;
}

.nav-container {
    min-height: 95px !important;
    padding: 1rem 2rem !important;
    align-items: center !important;
}

.logo-container {
    align-items: center !important;
    gap: 1rem !important;
}

@media (max-width: 768px) {
    .logo-container .logo,
    nav .logo {
        height: 45px !important;
        max-width: 80px !important;
    }

    .nav-container {
        min-height: 70px !important;
        padding: 0.7rem 1rem !important;
    }
}
/* ================================
   WOOCOMMERCE PRODUCT PAGE STYLING
================================ */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2.5rem !important;
    margin: 3rem auto !important;
    padding: 0 2rem !important;
    max-width: 1400px !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    background: var(--white) !important;
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-md) !important;
    padding: 1.5rem !important;
    text-align: center !important;
    transition: all var(--transition-normal) !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-xl) !important;
}

.woocommerce ul.products li.product img {
    height: 260px !important;
    width: 100% !important;
    object-fit: contain !important;
    background: var(--cream) !important;
    border-radius: var(--border-radius) !important;
    padding: 1rem !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.4rem !important;
    color: var(--dark-brown) !important;
    font-family: 'Playfair Display', serif !important;
    margin-top: 1rem !important;
}

.woocommerce ul.products li.product .price {
    color: var(--primary-gold) !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin: 0.8rem 0 !important;
}

.woocommerce ul.products li.product .button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    padding: 0.8rem 1.6rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--dark-gold) !important;
    transform: scale(1.05) !important;
}

.woocommerce-result-count,
.woocommerce-ordering {
    margin: 2rem !important;
}

.woocommerce-products-header {
    text-align: center !important;
    padding: 4rem 1rem 1rem !important;
}

.woocommerce-products-header__title,
.page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 3rem !important;
}

/* Mobile product grid */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        padding: 0 1rem !important;
        gap: 1.5rem !important;
    }

    .woocommerce ul.products li.product img {
        height: 220px !important;
    }

    .woocommerce-products-header__title,
    .page-title {
        font-size: 2rem !important;
    }
}

/* ================================
   REMOVE UNWANTED DEFAULT WORDPRESS BLOCKS
================================ */

body.woocommerce-page .wp-block-search,
body.woocommerce-page .wp-block-page-list,
body.woocommerce-page .wp-block-categories,
body.woocommerce-page .wp-block-archives,
body.woocommerce-page .widget_search,
body.woocommerce-page .widget_pages {
    display: none !important;
}

/* ================================
   CLEAN WOOCOMMERCE SHOP PAGE
================================ */

.woocommerce-page {
    background: var(--cream) !important;
}

.woocommerce .woocommerce-products-header {
    text-align: center !important;
    padding: 4rem 1rem 2rem !important;
}

.woocommerce .woocommerce-products-header__title,
.woocommerce .page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}

.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

.woocommerce ul.products {
    max-width: 1200px !important;
    margin: 2rem auto 5rem !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px)) !important;
    justify-content: center !important;
    gap: 2.5rem !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    background: var(--white) !important;
    border-radius: var(--border-radius-lg) !important;
    padding: 1.5rem !important;
    text-align: center !important;
    box-shadow: var(--shadow-md) !important;
    transition: all 0.3s ease !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-xl) !important;
}

.woocommerce ul.products li.product img {
    height: 240px !important;
    width: 100% !important;
    object-fit: contain !important;
    background: var(--cream) !important;
    border-radius: var(--border-radius) !important;
    padding: 1rem !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.4rem !important;
    color: var(--dark-brown) !important;
    margin: 1rem 0 0.5rem !important;
}

.woocommerce ul.products li.product .price {
    color: var(--primary-gold) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
}

.woocommerce ul.products li.product .button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    text-transform: none !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--dark-gold) !important;
    color: var(--dark-brown) !important;
}

/* ===================================
           WOOCOMMERCE — SINGLE PRODUCT PAGE
        =================================== */
        body.single-product,
        body.single-product main,
        body.single-product .wordpress-page-content,
        body.single-product .wordpress-index-content { background: var(--cream) !important; }

        body.single-product div.product {
            max-width: 1250px !important;
            margin: 4rem auto 5rem !important;
            padding: 0 2rem !important;
            display: grid !important;
            grid-template-columns: 1fr 0.9fr !important;
            gap: 3rem !important;
            align-items: flex-start !important;
        }

        body.single-product div.product .woocommerce-product-gallery {
            width: 100% !important;
            max-width: 620px !important;
            margin: 0 auto !important;
            background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
            border: 2px solid rgba(212, 175, 55, 0.35) !important;
            border-radius: 24px !important;
            padding: 2rem !important;
            box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;
        }

        .woocommerce-product-gallery {
            background: #fffaf0;
            padding: 25px;
            border-radius: 18px;
            box-shadow: 0 8px 28px rgba(70, 35, 20, 0.12);
        }

        body.single-product div.product .woocommerce-product-gallery__image {
            width: 100% !important;
            background: #fff4c8 !important;
            border-radius: 18px !important;
            padding: 1.5rem !important;
            overflow: hidden !important;
        }

        body.single-product div.product .woocommerce-product-gallery__image img,
        body.single-product div.product .woocommerce-product-gallery img {
            width: 100% !important;
            height: 520px !important;
            object-fit: contain !important;
            display: block !important;
            margin: 0 auto !important;
        }

        body.single-product div.product .summary {
            width: 100% !important;
            max-width: 520px !important;
            margin: 0 !important;
            background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
            border: 2px solid rgba(212, 175, 55, 0.35) !important;
            border-radius: 24px !important;
            padding: 2.5rem !important;
            box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;
        }

        body.single-product div.product .product_title {
            font-family: 'Playfair Display', serif !important;
            color: var(--dark-brown) !important;
            font-size: 3rem !important;
            line-height: 1.15 !important;
            margin: 0 0 1rem !important;
        }

        body.single-product div.product .price {
            color: var(--primary-gold) !important;
            font-size: 1.8rem !important;
            font-weight: 900 !important;
            margin-bottom: 1.5rem !important;
        }

        body.single-product div.product .woocommerce-product-details__short-description {
            color: var(--medium-brown) !important;
            font-size: 1rem !important;
            line-height: 1.8 !important;
            margin-bottom: 1.5rem !important;
        }

        body.single-product table.variations { width: 100% !important; margin-bottom: 1.5rem !important; }
        body.single-product table.variations th, body.single-product table.variations td { display: block !important; width: 100% !important; padding: 0 !important; }
        body.single-product table.variations label { color: var(--dark-brown) !important; font-weight: 800 !important; font-size: 1rem !important; margin-bottom: 0.8rem !important; display: block !important; }

        body.single-product .variation-button-group { display: flex !important; gap: 0.8rem !important; flex-wrap: wrap !important; margin-bottom: 1rem !important; }

        body.single-product form.cart {
            display: flex !important;
            align-items: center !important;
            gap: 1rem !important;
            flex-wrap: wrap !important;
            margin-top: 1.5rem !important;
        }

        body.single-product button.single_add_to_cart_button,
        .single_add_to_cart_button {
            background: var(--primary-gold) !important;
            color: var(--dark-brown) !important;
            border: none !important;
            border-radius: 35px !important;
            padding: 0.9rem 2rem !important;
            font-weight: 900 !important;
            font-family: 'Poppins', sans-serif !important;
            height: 50px !important;
            box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35) !important;
        }

        body.single-product button.single_add_to_cart_button:hover,
        .single_add_to_cart_button:hover {
            background: var(--dark-brown) !important;
            color: var(--primary-gold) !important;
        }

        body.single-product .product_meta { margin-top: 2rem !important; color: var(--medium-brown) !important; font-family: 'Poppins', sans-serif !important; }
        body.single-product .product_meta a { color: var(--dark-brown) !important; font-weight: 700 !important; }
        body.single-product .woocommerce-tabs { display: none !important; }
        .woocommerce div.product .woocommerce-tabs { display: none !important; }
        .woocommerce-tabs { margin-top: 30px !important; padding-top: 10px !important; }

        body.single-product .related.products { max-width: 1200px !important; margin: 4rem auto !important; padding: 0 2rem !important; }

        @media (max-width: 1024px) {
            body.single-product div.product { grid-template-columns: 1fr !important; max-width: 760px !important; gap: 2rem !important; }
            body.single-product div.product .summary, body.single-product div.product .woocommerce-product-gallery { max-width: 100% !important; }
            body.single-product div.product .woocommerce-product-gallery__image img, body.single-product div.product .woocommerce-product-gallery img { height: 420px !important; }
        }

        @media (max-width: 768px) {
            body.single-product div.product { margin: 2rem auto 4rem !important; padding: 0 1rem !important; gap: 1.5rem !important; }
            body.single-product div.product .woocommerce-product-gallery, body.single-product div.product .summary { padding: 1.3rem !important; border-radius: 18px !important; }
            body.single-product div.product .woocommerce-product-gallery__image img, body.single-product div.product .woocommerce-product-gallery img { height: 300px !important; }
            body.single-product div.product .product_title { font-size: 2rem !important; }
            body.single-product div.product .price { font-size: 1.4rem !important; }
            body.single-product div.product .woocommerce-product-details__short-description { font-size: 0.92rem !important; line-height: 1.7 !important; }
            body.single-product form.cart { flex-direction: column !important; align-items: stretch !important; }
            body.single-product button.single_add_to_cart_button { width: 100% !important; }
            body.single-product .quantity { margin: 0 auto !important; }
        }

/* REMOVE DEFAULT WORDPRESS / WOOCOMMERCE SIDEBAR WIDGETS */
#secondary,
.sidebar,
.widget-area,
.wp-block-search,
.wp-block-page-list,
.wp-block-archives,
.wp-block-categories,
.widget_search,
.widget_pages,
.widget_archive,
.widget_categories {
    display: none !important;
}

/* Make WooCommerce content full width */
.woocommerce-page #primary,
.woocommerce #primary,
.woocommerce-page .site-main,
.woocommerce .site-main {
    width: 100% !important;
    max-width: 100% !important;
}

/* ================================
   CLEAN PRODUCT CARD DESIGN
================================ */

/* Product page background */
.woocommerce-page,
.woocommerce {
    background: var(--cream) !important;
}

/* Products grid */
.woocommerce ul.products {
    max-width: 1200px !important;
    margin: 3rem auto 5rem !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 280px)) !important;
    justify-content: center !important;
    gap: 2rem !important;
}

/* Product card */
.woocommerce ul.products li.product {
    width: 100% !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 22px !important;
    padding: 1.2rem !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.12) !important;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

/* Hover effect */
.woocommerce ul.products li.product:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 35px rgba(62, 39, 35, 0.18) !important;
    border-color: var(--primary-gold) !important;
}

/* Image box */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 230px !important;
    object-fit: contain !important;
    background: #fff4c8 !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    margin-bottom: 1.2rem !important;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin: 0.8rem 0 0.6rem !important;
    line-height: 1.3 !important;
}

/* Price */
.woocommerce ul.products li.product .price {
    color: var(--dark-gold) !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.2rem !important;
}

/* Button */
.woocommerce ul.products li.product .button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border-radius: 30px !important;
    padding: 0.75rem 1.6rem !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35) !important;
}

/* Button hover */
.woocommerce ul.products li.product .button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Hide result count and sorting if not needed */
.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

/* Product page title */
.woocommerce-products-header,
.woocommerce .page-title {
    text-align: center !important;
}

.woocommerce .page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 3rem !important;
    margin: 3rem 0 1.5rem !important;
}

/* Mobile */
@media (max-width: 768px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        max-width: 330px !important;
        padding: 0 1rem !important;
        gap: 1.5rem !important;
    }

    .woocommerce ul.products li.product {
        padding: 1rem !important;
        border-radius: 18px !important;
    }

    .woocommerce ul.products li.product a img {
        height: 210px !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 1.2rem !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 1.1rem !important;
    }

    .woocommerce .page-title {
        font-size: 2rem !important;
    }
}
.woocommerce-product-gallery {
  background: #fffaf0;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(70, 35, 20, 0.12);
}
.woocommerce-tabs {
  margin-top: 30px !important;
  padding-top: 10px !important;
}
.single_add_to_cart_button {
  background: #8b4a1f !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 14px 35px !important;
  font-weight: 600 !important;
}

.single_add_to_cart_button:hover {
  background: #5b2b16 !important;
}

.woocommerce-product-gallery {
  background: #fffaf0;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(70, 35, 20, 0.12);
}

.single_add_to_cart_button {
  background: #8b4a1f !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 14px 35px !important;
  font-weight: 600 !important;
}

.single_add_to_cart_button:hover {
  background: #5b2b16 !important;
}

.woocommerce-tabs {
  margin-top: 30px !important;
  padding-top: 10px !important;
}

.woocommerce div.product .woocommerce-tabs { max-width: 1100px !important; margin: 4rem auto !important; padding: 0 2rem !important; } /* Tabs container */ .woocommerce div.product .woocommerce-tabs ul.tabs { display: flex !important; justify-content: center !important; gap: 0.8rem !important; padding: 0 !important; margin: 0 0 2rem !important; border-bottom: 2px solid rgba(212, 175, 55, 0.35) !important; overflow: visible !important; } /* Remove WooCommerce default tab weird borders */ .woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; } /* Normal tab */ .woocommerce div.product .woocommerce-tabs ul.tabs li { background: #fff8dc !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 15px 15px 0 0 !important; padding: 0 !important; margin: 0 !important; box-shadow: none !important; } /* Tab link */ .woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block !important; padding: 1rem 1.6rem !important; color: var(--dark-brown) !important; font-family: 'Poppins', sans-serif !important; font-size: 1.05rem !important; font-weight: 700 !important; } /* Active tab */ .woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--primary-gold) !important; border-color: var(--primary-gold) !important; } .woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--dark-brown) !important; } /* Tab content box */ .woocommerce div.product .woocommerce-tabs .panel { background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 22px !important; padding: 3rem !important; box-shadow: 0 10px 30px rgba(62, 39, 35, 0.12) !important; } /* Description heading */ .woocommerce div.product .woocommerce-tabs .panel h2 { font-family: 'Playfair Display', serif !important; color: var(--dark-brown) !important; font-size: 2.3rem !important; margin-bottom: 1rem !important; } /* Description text */ .woocommerce div.product .woocommerce-tabs .panel p { color: var(--medium-brown) !important; font-size: 1.05rem !important; line-height: 1.9 !important; margin-bottom: 1rem !important; } /* Additional information table */ .woocommerce table.shop_attributes { border: none !important; } .woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td { border: 1px solid rgba(212, 175, 55, 0.25) !important; padding: 1rem !important; color: var(--dark-brown) !important; background: #fff8dc !important; } /* Reviews area */ .woocommerce #reviews { color: var(--dark-brown) !important; } .woocommerce #reviews #comments h2, .woocommerce #review_form_wrapper h3 { font-family: 'Playfair Display', serif !important; color: var(--dark-brown) !important; } /* Mobile */ @media (max-width: 768px) { .woocommerce div.product .woocommerce-tabs { padding: 0 1rem !important; margin: 2.5rem auto !important; } .woocommerce div.product .woocommerce-tabs ul.tabs { flex-direction: column !important; gap: 0.5rem !important; border-bottom: none !important; } .woocommerce div.product .woocommerce-tabs ul.tabs li { border-radius: 12px !important; text-align: center !important; } .woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 0.85rem 1rem !important; font-size: 0.95rem !important; } .woocommerce div.product .woocommerce-tabs .panel { padding: 1.5rem !important; border-radius: 16px !important; } .woocommerce div.product .woocommerce-tabs .panel h2 { font-size: 1.7rem !important; } .woocommerce div.product .woocommerce-tabs .panel p { font-size: 0.9rem !important; line-height: 1.7 !important; } }

/* Hide WooCommerce product tabs completely */
.woocommerce div.product .woocommerce-tabs {
    display: none !important;
}
/* ================================
   WOOCOMMERCE QUANTITY PLUS MINUS
================================ */

.quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fff8dc !important;
    height: 48px !important;
}

.quantity input.qty {
    width: 55px !important;
    height: 48px !important;
    border: none !important;
    outline: none !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--dark-brown) !important;
    background: #fff8dc !important;
    padding: 0 !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.quantity input.qty::-webkit-inner-spin-button,
.quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.qty-btn {
    width: 42px !important;
    height: 48px !important;
    border: none !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.qty-btn:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.single-product button.single_add_to_cart_button {
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 768px) {
    .single-product form.cart {
        justify-content: center !important;
    }

    .quantity {
        height: 44px !important;
    }

    .qty-btn {
        width: 38px !important;
        height: 44px !important;
    }

    .quantity input.qty {
        width: 50px !important;
        height: 44px !important;
    }
}
/* ================================
   VARIATION DROPDOWN AS BUTTONS
================================ */

.single-product table.variations {
    margin-bottom: 1.5rem !important;
}

.single-product table.variations select {
    display: none !important;
}

.single-product .variation-button-group {
    display: flex !important;
    gap: 0.8rem !important;
    flex-wrap: wrap !important;
    margin-top: 0.5rem !important;
}

.single-product .variation-option-btn {
    background: #fff8dc !important;
    color: var(--dark-brown) !important;
    border: 2px solid rgba(212, 175, 55, 0.55) !important;
    padding: 0.8rem 1.4rem !important;
    border-radius: 30px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 110px !important;
    text-align: center !important;
}

.single-product .variation-option-btn:hover {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    transform: translateY(-2px) !important;
}

.single-product .variation-option-btn.active {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border-color: var(--primary-gold) !important;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35) !important;
}

.single-product .reset_variations {
    display: inline-block !important;
    margin-top: 0.8rem !important;
    color: var(--medium-brown) !important;
    font-size: 0.9rem !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .single-product .variation-button-group {
        justify-content: center !important;
    }

    .single-product .variation-option-btn {
        min-width: 95px !important;
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
}
/* Remove Clear button from variation options */
.single-product .reset_variations {
    display: none !important;
}
body.woocommerce-checkout, body.woocommerce-checkout main, body.woocommerce-checkout .wordpress-page-content { background: var(--cream) !important; } /* Main checkout wrapper */ body.woocommerce-checkout .wp-block-woocommerce-checkout, body.woocommerce-checkout .wc-block-checkout { max-width: 1250px !important; margin: 3rem auto 5rem !important; padding: 0 2rem !important; } /* Checkout layout */ body.woocommerce-checkout .wc-block-components-sidebar-layout { display: grid !important; grid-template-columns: 1.4fr 0.8fr !important; gap: 3rem !important; align-items: flex-start !important; } /* Left checkout form */ body.woocommerce-checkout .wc-block-components-main { background: #fff8dc !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 22px !important; padding: 2.2rem !important; box-shadow: 0 8px 25px rgba(62, 39, 35, 0.10) !important; } /* Right order summary */ body.woocommerce-checkout .wc-block-components-sidebar { background: #fff8dc !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 22px !important; padding: 1.8rem !important; box-shadow: 0 8px 25px rgba(62, 39, 35, 0.12) !important; position: sticky !important; top: 120px !important; } /* Headings */ body.woocommerce-checkout h1, body.woocommerce-checkout h2, body.woocommerce-checkout h3, body.woocommerce-checkout .wc-block-components-title, body.woocommerce-checkout .wc-block-components-checkout-step__title { font-family: 'Playfair Display', serif !important; color: var(--dark-brown) !important; font-weight: 700 !important; } /* Checkout section titles */ body.woocommerce-checkout .wc-block-components-checkout-step__title { font-size: 1.6rem !important; margin-bottom: 1rem !important; } /* Input fields */ body.woocommerce-checkout input, body.woocommerce-checkout select, body.woocommerce-checkout textarea, body.woocommerce-checkout .wc-block-components-text-input input, body.woocommerce-checkout .wc-block-components-combobox input { background: #ffffff !important; border: 2px solid rgba(62, 39, 35, 0.20) !important; border-radius: 12px !important; padding: 0.9rem 1rem !important; color: var(--dark-brown) !important; font-family: 'Poppins', sans-serif !important; font-size: 0.95rem !important; } /* Input focus */ body.woocommerce-checkout input:focus, body.woocommerce-checkout select:focus, body.woocommerce-checkout textarea:focus { border-color: var(--primary-gold) !important; box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.20) !important; outline: none !important; } /* Labels */ body.woocommerce-checkout label, body.woocommerce-checkout .wc-block-components-checkbox__label { color: var(--dark-brown) !important; font-weight: 500 !important; } /* Order summary product image */ body.woocommerce-checkout .wc-block-components-order-summary-item__image img { border-radius: 10px !important; background: #fff4c8 !important; padding: 0.3rem !important; } /* Order summary text */ body.woocommerce-checkout .wc-block-components-order-summary-item__description, body.woocommerce-checkout .wc-block-components-totals-item { color: var(--dark-brown) !important; font-family: 'Poppins', sans-serif !important; } /* Total amount */ body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value, body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label { font-size: 1.4rem !important; font-weight: 800 !important; color: var(--dark-brown) !important; } /* Place order button */ body.woocommerce-checkout .wc-block-components-checkout-place-order-button, body.woocommerce-checkout button[type="submit"], body.woocommerce-checkout .button { background: var(--primary-gold) !important; color: var(--dark-brown) !important; border: none !important; border-radius: 30px !important; padding: 1rem 2rem !important; font-weight: 800 !important; font-size: 1rem !important; transition: all 0.3s ease !important; } /* Place order button hover */ body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover, body.woocommerce-checkout button[type="submit"]:hover, body.woocommerce-checkout .button:hover { background: var(--dark-brown) !important; color: var(--primary-gold) !important; } /* Coupon section */ body.woocommerce-checkout .wc-block-components-panel { border-color: rgba(212, 175, 55, 0.35) !important; } /* Reduce spacing */ body.woocommerce-checkout .wc-block-components-checkout-step { margin-bottom: 2rem !important; } /* Mobile checkout */ @media (max-width: 900px) { body.woocommerce-checkout .wc-block-components-sidebar-layout { grid-template-columns: 1fr !important; gap: 2rem !important; } body.woocommerce-checkout .wc-block-components-sidebar { position: static !important; } body.woocommerce-checkout .wp-block-woocommerce-checkout, body.woocommerce-checkout .wc-block-checkout { padding: 0 1rem !important; margin: 2rem auto 4rem !important; } body.woocommerce-checkout .wc-block-components-main, body.woocommerce-checkout .wc-block-components-sidebar { padding: 1.4rem !important; border-radius: 18px !important; } body.woocommerce-checkout .wc-block-components-checkout-step__title { font-size: 1.3rem !important; } }
body.woocommerce-checkout { background: var(--cream) !important; } /* Main checkout container */ body.woocommerce-checkout .entry-content, body.woocommerce-checkout .wp-block-woocommerce-checkout, body.woocommerce-checkout .wc-block-checkout { width: 100% !important; max-width: 1350px !important; margin: 0 auto !important; padding: 3rem 2rem 5rem !important; box-sizing: border-box !important; } /* Checkout layout: left form + right summary */ body.woocommerce-checkout .wc-block-components-sidebar-layout { display: grid !important; grid-template-columns: minmax(650px, 1fr) 420px !important; gap: 3rem !important; align-items: flex-start !important; width: 100% !important; max-width: 100% !important; } /* Force WooCommerce block columns to stop shrinking */ body.woocommerce-checkout .wc-block-components-main { width: 100% !important; max-width: 100% !important; flex: none !important; } body.woocommerce-checkout .wc-block-components-sidebar { width: 100% !important; max-width: 420px !important; min-width: 420px !important; flex: none !important; } /* Left form card */ body.woocommerce-checkout .wc-block-components-main { background: #fff8dc !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 22px !important; padding: 2.5rem !important; box-shadow: 0 10px 30px rgba(62, 39, 35, 0.10) !important; } /* Right order summary card */ body.woocommerce-checkout .wc-block-components-sidebar { background: #fff8dc !important; border: 2px solid rgba(212, 175, 55, 0.35) !important; border-radius: 22px !important; padding: 2rem !important; box-shadow: 0 10px 30px rgba(62, 39, 35, 0.12) !important; position: sticky !important; top: 120px !important; } /* Order summary content should use full width */ body.woocommerce-checkout .wc-block-components-sidebar *, body.woocommerce-checkout .wc-block-components-order-summary, body.woocommerce-checkout .wc-block-components-totals-wrapper { max-width: 100% !important; box-sizing: border-box !important; } /* Fix order product row */ body.woocommerce-checkout .wc-block-components-order-summary-item { display: grid !important; grid-template-columns: 70px 1fr auto !important; gap: 1rem !important; align-items: center !important; } /* Product image */ body.woocommerce-checkout .wc-block-components-order-summary-item__image { width: 65px !important; height: 65px !important; } body.woocommerce-checkout .wc-block-components-order-summary-item__image img { width: 65px !important; height: 65px !important; object-fit: contain !important; border-radius: 10px !important; background: #fff4c8 !important; padding: 0.3rem !important; } /* Product text */ body.woocommerce-checkout .wc-block-components-order-summary-item__description { min-width: 0 !important; } body.woocommerce-checkout .wc-block-components-product-name { font-weight: 800 !important; color: var(--dark-brown) !important; font-size: 0.95rem !important; } /* Headings */ body.woocommerce-checkout h1, body.woocommerce-checkout h2, body.woocommerce-checkout h3, body.woocommerce-checkout .wc-block-components-title, body.woocommerce-checkout .wc-block-components-checkout-step__title { font-family: 'Playfair Display', serif !important; color: var(--dark-brown) !important; font-weight: 700 !important; } /* Input fields */ body.woocommerce-checkout input, body.woocommerce-checkout select, body.woocommerce-checkout textarea, body.woocommerce-checkout .wc-block-components-text-input input, body.woocommerce-checkout .wc-block-components-combobox input { background: #ffffff !important; border: 2px solid rgba(62, 39, 35, 0.20) !important; border-radius: 12px !important; padding: 0.9rem 1rem !important; color: var(--dark-brown) !important; font-family: 'Poppins', sans-serif !important; font-size: 0.95rem !important; } /* Place order button */ body.woocommerce-checkout .wc-block-components-checkout-place-order-button, body.woocommerce-checkout button[type="submit"], body.woocommerce-checkout .button { background: var(--primary-gold) !important; color: var(--dark-brown) !important; border: none !important; border-radius: 30px !important; padding: 1rem 2rem !important; font-weight: 800 !important; font-size: 1rem !important; } /* Hover */ body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover, body.woocommerce-checkout button[type="submit"]:hover, body.woocommerce-checkout .button:hover { background: var(--dark-brown) !important; color: var(--primary-gold) !important; } /* Total row */ body.woocommerce-checkout .wc-block-components-totals-footer-item { border-top: 2px solid rgba(212, 175, 55, 0.35) !important; padding-top: 1rem !important; } body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label, body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value { font-size: 1.35rem !important; font-weight: 800 !important; color: var(--dark-brown) !important; } /* Tablet */ @media (max-width: 1100px) { body.woocommerce-checkout .wc-block-components-sidebar-layout { grid-template-columns: 1fr !important; } body.woocommerce-checkout .wc-block-components-sidebar { max-width: 100% !important; min-width: 0 !important; position: static !important; } } /* Mobile */ @media (max-width: 768px) { body.woocommerce-checkout .entry-content, body.woocommerce-checkout .wp-block-woocommerce-checkout, body.woocommerce-checkout .wc-block-checkout { padding: 2rem 1rem 4rem !important; } body.woocommerce-checkout .wc-block-components-main, body.woocommerce-checkout .wc-block-components-sidebar { padding: 1.4rem !important; border-radius: 18px !important; } body.woocommerce-checkout .wc-block-components-order-summary-item { grid-template-columns: 55px 1fr auto !important; gap: 0.7rem !important; } body.woocommerce-checkout .wc-block-components-order-summary-item__image, body.woocommerce-checkout .wc-block-components-order-summary-item__image img { width: 52px !important; height: 52px !important; } }

/* =====================================================
   CHECKOUT FORM FINAL FIX
   Fix labels, input visibility, checkbox, radio, shipping
===================================================== */

/* Checkout main width */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
    max-width: 1350px !important;
    margin: 3rem auto 5rem !important;
    padding: 0 2rem !important;
}

/* Main layout */
body.woocommerce-checkout .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(650px, 1fr) 420px !important;
    gap: 3rem !important;
    align-items: flex-start !important;
}

/* Left checkout card */
body.woocommerce-checkout .wc-block-components-main {
    background: #fff8dc !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 22px !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.10) !important;
}

/* Right order summary */
body.woocommerce-checkout .wc-block-components-sidebar {
    background: #fff8dc !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 22px !important;
    padding: 2rem !important;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.12) !important;
    min-width: 420px !important;
    max-width: 420px !important;
    position: sticky !important;
    top: 120px !important;
}

/* Section headings */
body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout h2,
body.woocommerce-checkout h3 {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
}

/* Field wrapper */
body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-address-form__address_1,
body.woocommerce-checkout .wc-block-components-address-form__city,
body.woocommerce-checkout .wc-block-components-address-form__postcode,
body.woocommerce-checkout .wc-block-components-address-form__phone {
    margin-bottom: 1rem !important;
}

/* Input boxes */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
    height: 58px !important;
    background: #ffffff !important;
    border: 2px solid rgba(62, 39, 35, 0.20) !important;
    border-radius: 14px !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 1.55rem 1rem 0.45rem !important;
    box-shadow: none !important;
}

/* Fix floating labels inside fields */
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox label {
    color: rgba(62, 39, 35, 0.75) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    top: 8px !important;
    left: 1rem !important;
    transform: none !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

/* When field has value/focus */
body.woocommerce-checkout .wc-block-components-text-input.is-active label,
body.woocommerce-checkout .wc-block-components-combobox.is-active label {
    top: 8px !important;
    font-size: 0.75rem !important;
    color: var(--dark-brown) !important;
}

/* Focus effect */
body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18) !important;
    outline: none !important;
}

/* Browser autofill fix */
body.woocommerce-checkout input:-webkit-autofill,
body.woocommerce-checkout input:-webkit-autofill:hover,
body.woocommerce-checkout input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: var(--dark-brown) !important;
}

/* Checkbox and radio wrapper */
body.woocommerce-checkout .wc-block-components-checkbox,
body.woocommerce-checkout .wc-block-components-radio-control__option {
    display: flex !important;
    align-items: center !important;
    gap: 0.9rem !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Checkbox size fix */
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input,
body.woocommerce-checkout input[type="checkbox"] {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid rgba(62, 39, 35, 0.25) !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    margin: 0 !important;
}

/* Checkbox label */
body.woocommerce-checkout .wc-block-components-checkbox__label {
    color: var(--dark-brown) !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
}

/* Shipping option box */
body.woocommerce-checkout .wc-block-components-radio-control {
    border: 2px solid rgba(62, 39, 35, 0.35) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #fff8dc !important;
}

/* Shipping row */
body.woocommerce-checkout .wc-block-components-radio-control__option {
    min-height: 64px !important;
    padding: 1rem 1.2rem !important;
    border-bottom: none !important;
}

/* Radio circle smaller */
body.woocommerce-checkout .wc-block-components-radio-control__input {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    accent-color: var(--primary-gold) !important;
}

/* Shipping label and price */
body.woocommerce-checkout .wc-block-components-radio-control__label,
body.woocommerce-checkout .wc-block-components-radio-control__description,
body.woocommerce-checkout .wc-block-components-radio-control__secondary-label {
    color: var(--dark-brown) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

/* FREE text on right */
body.woocommerce-checkout .wc-block-components-radio-control__secondary-label {
    margin-left: auto !important;
    font-weight: 800 !important;
}

/* Payment warning box */
body.woocommerce-checkout .wc-block-components-notice-banner {
    border-radius: 14px !important;
    padding: 1rem 1.2rem !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Place order button */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout button[type="submit"],
body.woocommerce-checkout .button {
    width: 100% !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 1rem 2rem !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    font-family: 'Poppins', sans-serif !important;
    transition: all 0.3s ease !important;
}

/* Button hover */
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
body.woocommerce-checkout button[type="submit"]:hover,
body.woocommerce-checkout .button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Order summary product row */
body.woocommerce-checkout .wc-block-components-order-summary-item {
    display: grid !important;
    grid-template-columns: 65px 1fr auto !important;
    gap: 1rem !important;
    align-items: center !important;
}

/* Order summary image */
body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    border-radius: 10px !important;
    background: #fff4c8 !important;
    padding: 0.3rem !important;
}

/* Order summary title */
body.woocommerce-checkout .wc-block-components-product-name {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: var(--dark-brown) !important;
}

/* Totals */
body.woocommerce-checkout .wc-block-components-totals-item {
    color: var(--dark-brown) !important;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item {
    border-top: 2px solid rgba(212, 175, 55, 0.35) !important;
    padding-top: 1rem !important;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--dark-brown) !important;
}

/* Mobile/tablet */
@media (max-width: 1100px) {
    body.woocommerce-checkout .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-checkout .wc-block-components-sidebar {
        min-width: 0 !important;
        max-width: 100% !important;
        position: static !important;
    }
}

@media (max-width: 768px) {
    body.woocommerce-checkout .wp-block-woocommerce-checkout,
    body.woocommerce-checkout .wc-block-checkout {
        padding: 1.5rem 1rem 4rem !important;
    }

    body.woocommerce-checkout .wc-block-components-main,
    body.woocommerce-checkout .wc-block-components-sidebar {
        padding: 1.4rem !important;
        border-radius: 18px !important;
    }

    body.woocommerce-checkout .wc-block-components-checkout-step__title,
    body.woocommerce-checkout h2,
    body.woocommerce-checkout h3 {
        font-size: 1.45rem !important;
    }

    body.woocommerce-checkout .wc-block-components-text-input input,
    body.woocommerce-checkout .wc-block-components-combobox input,
    body.woocommerce-checkout input[type="text"],
    body.woocommerce-checkout input[type="email"],
    body.woocommerce-checkout input[type="tel"],
    body.woocommerce-checkout select,
    body.woocommerce-checkout textarea {
        height: 54px !important;
        font-size: 0.92rem !important;
    }
}
/* =====================================================
   CHECKOUT CLEANUP: HIDE EMAIL OPT-IN + SHIPPING OPTION
===================================================== */

/* Hide WooCommerce shipping option box from checkout */
body.woocommerce-checkout .wc-block-checkout__shipping-method,
body.woocommerce-checkout .wc-block-components-shipping-rates-control,
body.woocommerce-checkout .wc-block-components-radio-control {
    display: none !important;
}

/* Location button */
.svarnna-location-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0.85rem 1.4rem !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    cursor: pointer !important;
    margin: 0 0 1.5rem 0 !important;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25) !important;
}

.svarnna-location-btn:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

.svarnna-location-note {
    display: block !important;
    font-size: 0.82rem !important;
    color: var(--medium-brown) !important;
    margin: -1rem 0 1.3rem 0 !important;
}
/* Hide "Use same address for billing" checkbox */
.wc-block-checkout__use-address-for-billing {
    display: none !important;
}
/* =====================================================
   RAZORPAY ORDER PAYMENT / CANCEL PAGE STYLING
===================================================== */

/* Page background */
body.woocommerce-order-pay,
body.woocommerce-order-pay main,
body.woocommerce-order-pay .wordpress-page-content,
body.woocommerce-order-pay .wordpress-index-content {
    background: var(--cream) !important;
}

/* Main payment page wrapper */
body.woocommerce-order-pay .woocommerce {
    max-width: 1050px !important;
    margin: 4rem auto 5rem !important;
    padding: 3rem !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 24px !important;
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.14) !important;
}

/* Order details row */
body.woocommerce-order-pay ul.order_details,
body.woocommerce-order-pay .woocommerce-order-overview {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1rem !important;
    padding: 0 !important;
    margin: 0 0 2.5rem !important;
    list-style: none !important;
}

/* Each order detail box */
body.woocommerce-order-pay ul.order_details li,
body.woocommerce-order-pay .woocommerce-order-overview li {
    background: #fff8dc !important;
    border: 1.5px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
}

/* Order detail value */
body.woocommerce-order-pay ul.order_details li strong,
body.woocommerce-order-pay .woocommerce-order-overview li strong {
    display: block !important;
    margin-top: 0.4rem !important;
    font-size: 1.2rem !important;
    color: var(--dark-brown) !important;
    text-transform: none !important;
    font-weight: 800 !important;
}

/* Razorpay message */
body.woocommerce-order-pay .woocommerce p,
body.woocommerce-order-pay .woocommerce > p {
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 2rem 0 1.5rem !important;
}

/* Pay Now button */
body.woocommerce-order-pay .woocommerce button,
body.woocommerce-order-pay .woocommerce .button,
body.woocommerce-order-pay .woocommerce input[type="submit"],
body.woocommerce-order-pay #submit_razorpay_payment_form,
body.woocommerce-order-pay .razorpay-payment-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 0.9rem 2.2rem !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.3s ease !important;
    margin-right: 1rem !important;
}

/* Pay Now hover */
body.woocommerce-order-pay .woocommerce button:hover,
body.woocommerce-order-pay .woocommerce .button:hover,
body.woocommerce-order-pay .woocommerce input[type="submit"]:hover,
body.woocommerce-order-pay #submit_razorpay_payment_form:hover,
body.woocommerce-order-pay .razorpay-payment-button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
    transform: translateY(-2px) !important;
}

/* Cancel link */
body.woocommerce-order-pay .woocommerce a.cancel,
body.woocommerce-order-pay .woocommerce a[href*="cancel_order"],
body.woocommerce-order-pay .woocommerce a[href*="cancel"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    color: var(--dark-brown) !important;
    border: 2px solid var(--dark-brown) !important;
    border-radius: 35px !important;
    padding: 0.8rem 1.8rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

/* Cancel hover */
body.woocommerce-order-pay .woocommerce a.cancel:hover,
body.woocommerce-order-pay .woocommerce a[href*="cancel_order"]:hover,
body.woocommerce-order-pay .woocommerce a[href*="cancel"]:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* If Razorpay form is plain inline */
body.woocommerce-order-pay form {
    margin-top: 1.5rem !important;
}

/* Remove unwanted plain spacing */
body.woocommerce-order-pay .woocommerce::after {
    content: "" !important;
    display: block !important;
    clear: both !important;
}

/* Mobile */
@media (max-width: 768px) {
    body.woocommerce-order-pay .woocommerce {
        margin: 2rem 1rem 4rem !important;
        padding: 1.5rem !important;
        border-radius: 18px !important;
    }

    body.woocommerce-order-pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    body.woocommerce-order-pay .woocommerce p,
    body.woocommerce-order-pay .woocommerce > p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    body.woocommerce-order-pay .woocommerce button,
    body.woocommerce-order-pay .woocommerce .button,
    body.woocommerce-order-pay .woocommerce input[type="submit"],
    body.woocommerce-order-pay #submit_razorpay_payment_form,
    body.woocommerce-order-pay .razorpay-payment-button,
    body.woocommerce-order-pay .woocommerce a.cancel,
    body.woocommerce-order-pay .woocommerce a[href*="cancel_order"],
    body.woocommerce-order-pay .woocommerce a[href*="cancel"] {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
}
/* Hide "Use same address for billing" checkbox */
body.woocommerce-checkout .wc-block-checkout__use-address-for-billing,
body.woocommerce-checkout .wc-block-components-checkbox:has(input[name*="use_shipping_as_billing"]) {
    display: none !important;
}
/* =====================================================
   FIX RAZORPAY ORDER-PAY PAGE ALIGNMENT
   Order Number | Date | Total | Payment Method
===================================================== */

body.woocommerce-order-pay {
    background: var(--cream) !important;
}

/* Main payment box */
body.woocommerce-order-pay .woocommerce {
    max-width: 1200px !important;
    margin: 4rem auto 5rem !important;
    padding: 3rem 3.5rem !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 28px !important;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.12) !important;
}

/* Order details container */
body.woocommerce-order-pay ul.order_details,
body.woocommerce-order-pay .woocommerce-order-overview {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 0 3rem 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Remove WooCommerce default float alignment */
body.woocommerce-order-pay ul.order_details li,
body.woocommerce-order-pay .woocommerce-order-overview li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 1.3rem 1.5rem !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 18px !important;
    background: #fff8dc !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 18px rgba(62, 39, 35, 0.08) !important;
    min-height: 95px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* Value inside each box */
body.woocommerce-order-pay ul.order_details li strong,
body.woocommerce-order-pay .woocommerce-order-overview li strong {
    display: block !important;
    margin-top: 0.5rem !important;
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
    color: var(--dark-brown) !important;
    font-weight: 800 !important;
    text-transform: none !important;
    word-break: normal !important;
}

/* Payment text */
body.woocommerce-order-pay ul.order_details li.method strong,
body.woocommerce-order-pay .woocommerce-order-overview li.method strong {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
}

/* Message text */
body.woocommerce-order-pay .woocommerce > p {
    font-size: 1.35rem !important;
    line-height: 1.7 !important;
    color: var(--dark-brown) !important;
    margin: 2rem 0 2rem !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Pay Now and Cancel buttons container feel */
body.woocommerce-order-pay form,
body.woocommerce-order-pay .razorpay-payment-form {
    margin-top: 1rem !important;
}

/* Pay Now button */
body.woocommerce-order-pay button,
body.woocommerce-order-pay .button,
body.woocommerce-order-pay input[type="submit"],
body.woocommerce-order-pay #submit_razorpay_payment_form,
body.woocommerce-order-pay .razorpay-payment-button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 0.95rem 2.6rem !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35) !important;
    margin-right: 1rem !important;
}

/* Cancel button/link */
body.woocommerce-order-pay a.cancel,
body.woocommerce-order-pay a[href*="cancel"] {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 0.95rem 2.6rem !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35) !important;
}

/* Hover */
body.woocommerce-order-pay button:hover,
body.woocommerce-order-pay .button:hover,
body.woocommerce-order-pay input[type="submit"]:hover,
body.woocommerce-order-pay #submit_razorpay_payment_form:hover,
body.woocommerce-order-pay .razorpay-payment-button:hover,
body.woocommerce-order-pay a.cancel:hover,
body.woocommerce-order-pay a[href*="cancel"]:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.woocommerce-order-pay .woocommerce {
        margin: 3rem 1.5rem 4rem !important;
        padding: 2rem !important;
    }

    body.woocommerce-order-pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    body.woocommerce-order-pay .woocommerce {
        margin: 2rem 1rem 3rem !important;
        padding: 1.4rem !important;
        border-radius: 20px !important;
    }

    body.woocommerce-order-pay ul.order_details,
    body.woocommerce-order-pay .woocommerce-order-overview {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    body.woocommerce-order-pay .woocommerce > p {
        font-size: 1rem !important;
    }

    body.woocommerce-order-pay button,
    body.woocommerce-order-pay .button,
    body.woocommerce-order-pay input[type="submit"],
    body.woocommerce-order-pay #submit_razorpay_payment_form,
    body.woocommerce-order-pay .razorpay-payment-button,
    body.woocommerce-order-pay a.cancel,
    body.woocommerce-order-pay a[href*="cancel"] {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
}
/* =====================================================
   FINAL FIX - RAZORPAY ORDER PAY ALIGNMENT
   Makes all 4 boxes in one row
===================================================== */

body.woocommerce-order-pay .woocommerce {
    max-width: 1250px !important;
    margin: 4rem auto 5rem !important;
    padding: 3rem !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 28px !important;
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.12) !important;
}

/* Main order details row */
body.woocommerce-order-pay .woocommerce ul.order_details,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.4rem !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto 3rem auto !important;
    padding: 0 !important;
    list-style: none !important;
    clear: both !important;
}

/* Remove WooCommerce default clearing */
body.woocommerce-order-pay .woocommerce ul.order_details::before,
body.woocommerce-order-pay .woocommerce ul.order_details::after,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview::before,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview::after {
    display: none !important;
    content: none !important;
}

/* Every box same size */
body.woocommerce-order-pay .woocommerce ul.order_details li,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li {
    float: none !important;
    clear: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 1.3rem 1.4rem !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 18px !important;
    background: #fff8dc !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    box-shadow: 0 6px 18px rgba(62, 39, 35, 0.08) !important;
    min-height: 105px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Force each item into exact column */
body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(1),
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(1) {
    grid-column: 1 !important;
}

body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(2),
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(2) {
    grid-column: 2 !important;
}

body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(3),
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(3) {
    grid-column: 3 !important;
}

body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(4),
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(4) {
    grid-column: 4 !important;
}

/* Box value text */
body.woocommerce-order-pay .woocommerce ul.order_details li strong,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li strong {
    display: block !important;
    margin-top: 0.45rem !important;
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    color: var(--dark-brown) !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

/* Keep payment method readable */
body.woocommerce-order-pay .woocommerce ul.order_details li.method strong,
body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li.method strong {
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
}

/* Message below boxes */
body.woocommerce-order-pay .woocommerce > p {
    max-width: 1000px !important;
    margin: 2rem auto 2rem auto !important;
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
}

/* Pay and Cancel buttons area */
body.woocommerce-order-pay .woocommerce form,
body.woocommerce-order-pay .woocommerce .razorpay-payment-form {
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/* Buttons */
body.woocommerce-order-pay #submit_razorpay_payment_form,
body.woocommerce-order-pay .razorpay-payment-button,
body.woocommerce-order-pay .woocommerce .button,
body.woocommerce-order-pay .woocommerce button,
body.woocommerce-order-pay .woocommerce input[type="submit"],
body.woocommerce-order-pay .woocommerce a.cancel,
body.woocommerce-order-pay .woocommerce a[href*="cancel"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 35px !important;
    padding: 0.95rem 2.5rem !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    font-family: 'Poppins', sans-serif !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35) !important;
    margin-right: 1rem !important;
}

body.woocommerce-order-pay #submit_razorpay_payment_form:hover,
body.woocommerce-order-pay .razorpay-payment-button:hover,
body.woocommerce-order-pay .woocommerce .button:hover,
body.woocommerce-order-pay .woocommerce button:hover,
body.woocommerce-order-pay .woocommerce input[type="submit"]:hover,
body.woocommerce-order-pay .woocommerce a.cancel:hover,
body.woocommerce-order-pay .woocommerce a[href*="cancel"]:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Tablet */
@media (max-width: 1024px) {
    body.woocommerce-order-pay .woocommerce ul.order_details,
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(1),
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(1) {
        grid-column: 1 !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(2),
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(2) {
        grid-column: 2 !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(3),
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(3) {
        grid-column: 1 !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details li:nth-child(4),
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li:nth-child(4) {
        grid-column: 2 !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    body.woocommerce-order-pay .woocommerce {
        margin: 2rem 1rem 3rem !important;
        padding: 1.4rem !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details,
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    body.woocommerce-order-pay .woocommerce ul.order_details li,
    body.woocommerce-order-pay .woocommerce .woocommerce-order-overview li {
        grid-column: 1 !important;
    }

    body.woocommerce-order-pay #submit_razorpay_payment_form,
    body.woocommerce-order-pay .razorpay-payment-button,
    body.woocommerce-order-pay .woocommerce .button,
    body.woocommerce-order-pay .woocommerce button,
    body.woocommerce-order-pay .woocommerce input[type="submit"],
    body.woocommerce-order-pay .woocommerce a.cancel,
    body.woocommerce-order-pay .woocommerce a[href*="cancel"] {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
}
/* =====================================================
   FINAL CART PAGE LAYOUT
   Left: Product list | Right: Order summary
===================================================== */

body.woocommerce-cart .woocommerce {
    max-width: 1350px !important;
    margin: 4rem auto 5rem !important;
    padding: 0 2rem !important;

    display: grid !important;
    grid-template-columns: minmax(0, 1.6fr) 420px !important;
    gap: 2.5rem !important;
    align-items: flex-start !important;
}

/* Notices full width */
body.woocommerce-cart .woocommerce-notices-wrapper {
    grid-column: 1 / -1 !important;
}

/* Product cart table left */
body.woocommerce-cart form.woocommerce-cart-form {
    grid-column: 1 !important;
    width: 100% !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 24px !important;
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;
    padding: 2rem !important;
    margin: 0 !important;
}

/* Cart totals right */
body.woocommerce-cart .cart-collaterals {
    grid-column: 2 !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 !important;
    position: sticky !important;
    top: 120px !important;
}

body.woocommerce-cart .cart_totals {
    width: 100% !important;
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 24px !important;
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;
    padding: 2rem !important;
}

/* Cart totals heading */
body.woocommerce-cart .cart_totals h2 {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
}

/* Cart table neat */
body.woocommerce-cart table.shop_table {
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 0.8rem !important;
}

body.woocommerce-cart table.shop_table thead tr {
    background: var(--dark-brown) !important;
}

body.woocommerce-cart table.shop_table thead th {
    color: var(--primary-gold) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    padding: 1rem !important;
    border: none !important;
    text-align: center !important;
}

body.woocommerce-cart table.shop_table tbody tr.cart_item {
    background: #fff8dc !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 18px rgba(62, 39, 35, 0.08) !important;
}

body.woocommerce-cart table.shop_table td {
    border-top: none !important;
    padding: 1.1rem 0.8rem !important;
    vertical-align: middle !important;
    text-align: center !important;
    color: var(--dark-brown) !important;
}

/* Product image */
body.woocommerce-cart .product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    background: #fff4c8 !important;
    border-radius: 12px !important;
    padding: 0.4rem !important;
}

/* Product name */
body.woocommerce-cart .product-name a {
    color: var(--dark-brown) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

/* Cart totals table */
body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
}

body.woocommerce-cart .cart_totals th {
    font-weight: 800 !important;
}

body.woocommerce-cart .order-total th,
body.woocommerce-cart .order-total td {
    font-size: 1.25rem !important;
    font-weight: 900 !important;
}

/* Proceed checkout button */
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border-radius: 35px !important;
    padding: 1rem 2rem !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35) !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Coupon area */
body.woocommerce-cart .coupon {
    display: flex !important;
    gap: 0.8rem !important;
    align-items: center !important;
    margin-top: 1.5rem !important;
}

body.woocommerce-cart .coupon input.input-text {
    width: 200px !important;
    height: 45px !important;
    border: 2px solid rgba(212, 175, 55, 0.45) !important;
    border-radius: 12px !important;
    padding: 0 1rem !important;
}

body.woocommerce-cart .coupon button,
body.woocommerce-cart button[name="update_cart"] {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0.75rem 1.4rem !important;
    font-weight: 800 !important;
}

/* Mobile/tablet */
@media (max-width: 1000px) {
    body.woocommerce-cart .woocommerce {
        grid-template-columns: 1fr !important;
        padding: 0 1rem !important;
        margin: 2rem auto 4rem !important;
    }

    body.woocommerce-cart form.woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals {
        grid-column: 1 !important;
        max-width: 100% !important;
        position: static !important;
    }
}
/* Hide shipping address text in cart totals */
body.woocommerce-cart .woocommerce-shipping-destination,
body.woocommerce-cart .shipping-calculator-button {
    display: none !important;
}
/* =====================================================
   FINAL CART TABLE ALIGNMENT - STABLE VERSION
   Keeps Product / Price / Quantity / Subtotal aligned
===================================================== */

body.woocommerce-cart table.shop_table {
    width: 100% !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 1rem !important;
}

/* Stop previous grid layout */
body.woocommerce-cart table.shop_table thead tr,
body.woocommerce-cart table.shop_table tbody tr.cart_item {
    display: table-row !important;
}

/* Table cells normal */
body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
    display: table-cell !important;
    float: none !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}

/* Column widths */
body.woocommerce-cart table.shop_table .product-remove {
    width: 6% !important;
    text-align: center !important;
}

body.woocommerce-cart table.shop_table .product-thumbnail {
    width: 12% !important;
    text-align: center !important;
}

body.woocommerce-cart table.shop_table .product-name {
    width: 34% !important;
    text-align: left !important;
}

body.woocommerce-cart table.shop_table .product-price {
    width: 14% !important;
    text-align: center !important;
}

body.woocommerce-cart table.shop_table .product-quantity {
    width: 20% !important;
    text-align: center !important;
}

body.woocommerce-cart table.shop_table .product-subtotal {
    width: 14% !important;
    text-align: center !important;
}

/* Header styling */
body.woocommerce-cart table.shop_table thead th {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    padding: 1.2rem 1rem !important;
    border: none !important;
}

/* Hide empty header text but keep space */
body.woocommerce-cart table.shop_table thead th.product-remove,
body.woocommerce-cart table.shop_table thead th.product-thumbnail {
    color: transparent !important;
}

/* Row styling */
body.woocommerce-cart table.shop_table tbody tr.cart_item td {
    background: #fff8dc !important;
    border: none !important;
    padding: 1.2rem 1rem !important;
    color: var(--dark-brown) !important;
}

/* Rounded row effect */
body.woocommerce-cart table.shop_table tbody tr.cart_item td:first-child {
    border-radius: 18px 0 0 18px !important;
}

body.woocommerce-cart table.shop_table tbody tr.cart_item td:last-child {
    border-radius: 0 18px 18px 0 !important;
}

/* Product image */
body.woocommerce-cart .product-thumbnail img {
    width: 75px !important;
    height: 75px !important;
    object-fit: contain !important;
    background: #fff4c8 !important;
    border-radius: 12px !important;
    padding: 0.4rem !important;
}

/* Product name */
body.woocommerce-cart .product-name a {
    color: var(--dark-brown) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    line-height: 1.3 !important;
}

/* Price and subtotal */
body.woocommerce-cart .product-price,
body.woocommerce-cart .product-subtotal {
    color: var(--dark-brown) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

/* Quantity center */
body.woocommerce-cart .product-quantity .quantity {
    margin: 0 auto !important;
}

/* Coupon row normal */
body.woocommerce-cart table.shop_table tbody tr:last-child td {
    background: transparent !important;
    border-radius: 0 !important;
    padding-top: 1.5rem !important;
}

/* Mobile cart */
@media (max-width: 768px) {
    body.woocommerce-cart table.shop_table {
        display: block !important;
    }

    body.woocommerce-cart table.shop_table thead {
        display: none !important;
    }

    body.woocommerce-cart table.shop_table tbody,
    body.woocommerce-cart table.shop_table tr,
    body.woocommerce-cart table.shop_table td {
        display: block !important;
        width: 100% !important;
    }

    body.woocommerce-cart table.shop_table tbody tr.cart_item {
        background: #fff8dc !important;
        border-radius: 18px !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        box-shadow: 0 6px 18px rgba(62, 39, 35, 0.08) !important;
    }

    body.woocommerce-cart table.shop_table tbody tr.cart_item td {
        background: transparent !important;
        border-radius: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: right !important;
        padding: 0.8rem 0 !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    }

    body.woocommerce-cart table.shop_table tbody tr.cart_item td::before {
        content: attr(data-title);
        font-weight: 800 !important;
        color: var(--dark-brown) !important;
        text-align: left !important;
        margin-right: 1rem !important;
    }

    body.woocommerce-cart .product-remove::before,
    body.woocommerce-cart .product-thumbnail::before {
        display: none !important;
    }

    body.woocommerce-cart .product-thumbnail {
        justify-content: center !important;
    }

    body.woocommerce-cart .product-name a {
        font-size: 1.15rem !important;
    }
}
/* Hide Update Cart button because cart updates automatically */
body.woocommerce-cart button[name="update_cart"] {
    display: none !important;
}

/* =====================================================
   WOOCOMMERCE PRODUCT GRID — CENTERED LAYOUT FIX
   Works correctly with 1, 2, 3, 4+ products.
   Add this to the BOTTOM of your style.css in WordPress
   (Appearance → Theme File Editor → style.css)
   or paste in Appearance → Customize → Additional CSS
===================================================== */

/* ── Page background ── */
.woocommerce-page,
.woocommerce,
body.woocommerce-page,
body.post-type-archive-product,
body.tax-product_cat {
    background: var(--cream) !important;
}

/* ── Page title ── */
.woocommerce .page-title,
.woocommerce-products-header__title,
.woocommerce-page .page-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin: 3rem 0 0.5rem !important;
}

/* Hide sort / count clutter */
.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}

/* ── THE KEY FIX: flex-based centered grid ──
   Each card has a fixed width (280 px).
   Flex-wrap + justify-content: center means
   1 card  → centred alone
   2 cards → centred pair
   3+ cards → natural left-to-right, centred row   */
.woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2.2rem !important;
    max-width: 1250px !important;
    margin: 2.5rem auto 5rem !important;
    padding: 0 2rem !important;
    list-style: none !important;
    /* Reset any conflicting grid rules */
    grid-template-columns: unset !important;
}

/* ── Each product card ── */
.woocommerce ul.products li.product {
    /* Fixed width — cards never stretch or shrink */
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    flex: 0 0 280px !important;

    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 22px !important;
    padding: 1.4rem !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.12) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 18px 38px rgba(62, 39, 35, 0.18) !important;
    border-color: var(--primary-gold) !important;
}

/* ── Product image ── */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 230px !important;
    object-fit: contain !important;           /* keeps proportions — no cropping */
    object-position: center center !important;
    background: #fff4c8 !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    margin-bottom: 1.1rem !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* ── Product title ── */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0.6rem 0 !important;
}

/* ── Price ── */
.woocommerce ul.products li.product .price {
    color: var(--dark-gold) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.1rem !important;
    display: block !important;
}

/* ── Add to cart button ── */
.woocommerce ul.products li.product .button {
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35) !important;
    transition: background 0.3s ease, color 0.3s ease !important;
    display: inline-block !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* ── Tablet: slightly smaller cards, still centred ── */
@media (max-width: 1024px) and (min-width: 601px) {
    .woocommerce ul.products li.product {
        width: 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
        flex: 0 0 260px !important;
    }

    .woocommerce ul.products li.product a img {
        height: 210px !important;
    }
}

/* ── Mobile: single column, full width ── */
@media (max-width: 600px) {
    .woocommerce ul.products {
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 1rem !important;
        gap: 1.4rem !important;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 360px !important;
        flex: 0 0 auto !important;
    }

    .woocommerce ul.products li.product a img {
        height: 210px !important;
    }

    .woocommerce .page-title,
    .woocommerce-products-header__title {
        font-size: 2rem !important;
    }
}
/* =====================================================
   SINGLE PRODUCT TOP ALIGNMENT FIX
   Keeps image card and product details card aligned at top
===================================================== */

body.single-product div.product {
    display: grid !important;
    grid-template-columns: minmax(420px, 1fr) minmax(380px, 560px) !important;
    gap: 3.5rem !important;
    align-items: start !important;
    justify-content: center !important;
    max-width: 1300px !important;
    margin: 4rem auto 5rem !important;
    padding: 0 2rem !important;
}

/* Left image card must start from top */
body.single-product div.product .woocommerce-product-gallery {
    align-self: start !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Right product details card must start from top */
body.single-product div.product .summary {
    align-self: start !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    position: relative !important;
    top: 0 !important;
}

/* Remove WooCommerce default float/margin conflict */
body.single-product div.product div.images,
body.single-product div.product div.summary {
    float: none !important;
    clear: none !important;
}

/* Keep both cards visually balanced */
body.single-product div.product .woocommerce-product-gallery,
body.single-product div.product .summary {
    min-height: auto !important;
}

/* Product image height control */
body.single-product div.product .woocommerce-product-gallery__image img,
body.single-product div.product .woocommerce-product-gallery img {
    height: 520px !important;
    object-fit: contain !important;
}

/* Tablet and mobile */
@media (max-width: 1024px) {
    body.single-product div.product {
        grid-template-columns: 1fr !important;
        max-width: 760px !important;
        gap: 2rem !important;
    }

    body.single-product div.product .summary {
        margin-top: 0 !important;
    }
}

@media (max-width: 768px) {
    body.single-product div.product {
        margin: 2rem auto 4rem !important;
        padding: 0 1rem !important;
    }

    body.single-product div.product .woocommerce-product-gallery__image img,
    body.single-product div.product .woocommerce-product-gallery img {
        height: 320px !important;
    }
}
/* =====================================================
   SINGLE PRODUCT PAGE ONLY
   Equal height image and details containers
   Does NOT affect products listing page
===================================================== */

@media (min-width: 1025px) {

    body.single-product div.product {
        max-width: 1300px !important;
        margin: 4rem auto 5rem !important;
        padding: 0 2rem !important;

        display: grid !important;
        grid-template-columns: 1fr 0.85fr !important;
        gap: 3.5rem !important;
        align-items: stretch !important;
    }

    /* Left and right cards equal height */
    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        height: 680px !important;
        min-height: 680px !important;
        max-height: 680px !important;
        align-self: stretch !important;
        box-sizing: border-box !important;
        margin-top: 0 !important;
    }

    /* Left image container */
    body.single-product div.product .woocommerce-product-gallery {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
        border: 2px solid rgba(212, 175, 55, 0.35) !important;
        border-radius: 24px !important;
        padding: 2rem !important;
        box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;
    }

    body.single-product div.product .woocommerce-product-gallery__wrapper,
    body.single-product div.product .woocommerce-product-gallery__image {
        width: 100% !important;
        height: 100% !important;
    }

    body.single-product div.product .woocommerce-product-gallery__image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #fff4c8 !important;
        border-radius: 18px !important;
        padding: 1.5rem !important;
    }

    body.single-product div.product .woocommerce-product-gallery__image img,
    body.single-product div.product .woocommerce-product-gallery img {
        width: 100% !important;
        height: 100% !important;
        max-height: 560px !important;
        object-fit: contain !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* Right details container */
    body.single-product div.product .summary {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;

        background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
        border: 2px solid rgba(212, 175, 55, 0.35) !important;
        border-radius: 24px !important;
        padding: 2.5rem !important;
        box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12) !important;

        overflow: hidden !important;
    }

    /* Product title */
    body.single-product div.product .product_title {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        margin: 0 0 1rem !important;
    }

    /* Price */
    body.single-product div.product .price {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
        margin: 0 0 1.2rem !important;
    }

    /* Description auto adjusts but will not break card */
    body.single-product div.product .woocommerce-product-details__short-description {
        font-size: 0.98rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.2rem !important;

        max-height: 145px !important;
        overflow: hidden !important;
    }

    /* Variation area */
    body.single-product div.product table.variations {
        margin-bottom: 1rem !important;
    }

    body.single-product div.product .variation-button-group {
        gap: 0.8rem !important;
        margin-bottom: 1rem !important;
    }

    /* Quantity + add to cart */
    body.single-product div.product form.cart {
        margin-top: 0.8rem !important;
        margin-bottom: 0.8rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
    }

    /* SKU/category */
    body.single-product div.product .product_meta {
        margin-top: 0.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    body.single-product div.product {
        grid-template-columns: 1fr !important;
        max-width: 760px !important;
        gap: 2rem !important;
        align-items: start !important;
    }

    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body.single-product div.product {
        margin: 2rem auto 4rem !important;
        padding: 0 1rem !important;
    }

    body.single-product div.product .woocommerce-product-gallery,
    body.single-product div.product .summary {
        padding: 1.3rem !important;
        border-radius: 18px !important;
    }

    body.single-product div.product .woocommerce-product-gallery__image img,
    body.single-product div.product .woocommerce-product-gallery img {
        height: 320px !important;
        max-height: 320px !important;
    }

    body.single-product div.product .product_title {
        font-size: 2rem !important;
    }

    body.single-product div.product .price {
        font-size: 1.4rem !important;
    }

    body.single-product div.product .woocommerce-product-details__short-description {
        max-height: none !important;
        overflow: visible !important;
    }
}
/* Hide SKU on single product page */
body.single-product .product_meta .sku_wrapper {
    display: none !important;
}

/* Keep category clean */
body.single-product .product_meta .posted_in {
    display: inline-block !important;
    color: var(--medium-brown) !important;
    font-size: 0.95rem !important;
}

body.single-product .product_meta .posted_in a {
    color: var(--dark-brown) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

/* =====================================================
   PRODUCTS PAGE FINAL GRID + FILTER DESIGN
   Only affects Products listing and category pages
===================================================== */

/* Products page background */
body.woocommerce-shop,
body.tax-product_cat {
    background: var(--cream) !important;
}

/* Main WooCommerce products wrapper */
body.woocommerce-shop .woocommerce,
body.tax-product_cat .woocommerce {
    max-width: 1250px !important;
    margin: 0 auto 5rem !important;
    padding: 0 2rem !important;
}

/* Products page title */
body.woocommerce-shop .woocommerce-products-header,
body.tax-product_cat .woocommerce-products-header {
    text-align: center !important;
    padding: 3rem 1rem 1rem !important;
}

body.woocommerce-shop .woocommerce-products-header__title,
body.tax-product_cat .woocommerce-products-header__title,
body.woocommerce-shop .page-title,
body.tax-product_cat .page-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 3rem !important;
    color: var(--dark-brown) !important;
    margin-bottom: 1rem !important;
}

/* Filter section */
.svarnna-product-filter-section {
    text-align: center !important;
    margin: 1rem auto 3rem !important;
}

.svarnna-filter-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.6rem !important;
    color: var(--dark-brown) !important;
    margin-bottom: 1rem !important;
}

.svarnna-product-filters {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
}

.svarnna-filter-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.85rem 1.8rem !important;
    border-radius: 35px !important;
    border: 2px solid rgba(212, 175, 55, 0.55) !important;
    background: #fff8dc !important;
    color: var(--dark-brown) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.svarnna-filter-btn:hover,
.svarnna-filter-btn.active {
    background: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.30) !important;
}

/* Hide WooCommerce default result count and sorting */
body.woocommerce-shop .woocommerce-result-count,
body.woocommerce-shop .woocommerce-ordering,
body.tax-product_cat .woocommerce-result-count,
body.tax-product_cat .woocommerce-ordering {
    display: none !important;
}

/* Products grid - 4 in one row */
body.woocommerce-shop ul.products,
body.tax-product_cat ul.products {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto 5rem !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 2rem !important;

    list-style: none !important;
}

/* Remove WooCommerce default layout */
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
    display: none !important;
    content: none !important;
}

/* Product card */
body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product {
    width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;

    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%) !important;
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 20px !important;
    padding: 1.1rem !important;
    text-align: center !important;
    box-shadow: 0 8px 24px rgba(62, 39, 35, 0.12) !important;
    transition: all 0.3s ease !important;

    display: flex !important;
    flex-direction: column !important;
    min-height: 385px !important;
}

body.woocommerce-shop ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 16px 35px rgba(62, 39, 35, 0.18) !important;
    border-color: var(--primary-gold) !important;
}

/* Product link content */
body.woocommerce-shop ul.products li.product a.woocommerce-LoopProduct-link,
body.tax-product_cat ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
    flex: 1 !important;
}

/* Product image */
body.woocommerce-shop ul.products li.product a img,
body.tax-product_cat ul.products li.product a img {
    width: 100% !important;
    height: 210px !important;
    object-fit: contain !important;
    background: #fff4c8 !important;
    border-radius: 15px !important;
    padding: 0.8rem !important;
    margin: 0 0 1rem !important;
}

/* Product title */
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Playfair Display', serif !important;
    color: var(--dark-brown) !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    min-height: 44px !important;
    margin: 0.6rem 0 !important;
    padding: 0 !important;
}

/* Price */
body.woocommerce-shop ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {
    color: var(--dark-gold) !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    margin: 0.7rem 0 1rem !important;
    line-height: 1.4 !important;
}

/* Select options / add to cart button */
body.woocommerce-shop ul.products li.product .button,
body.tax-product_cat ul.products li.product .button {
    margin-top: auto !important;
    background: var(--primary-gold) !important;
    color: var(--dark-brown) !important;
    border-radius: 30px !important;
    padding: 0.75rem 1.3rem !important;
    font-size: 0.85rem !important;
    font-weight: 900 !important;
    text-transform: none !important;
    border: none !important;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.30) !important;
}

body.woocommerce-shop ul.products li.product .button:hover,
body.tax-product_cat ul.products li.product .button:hover {
    background: var(--dark-brown) !important;
    color: var(--primary-gold) !important;
}

/* Tablet - 2 per row */
@media (max-width: 1024px) {
    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: 700px !important;
        gap: 1.8rem !important;
    }

    body.woocommerce-shop .woocommerce-products-header__title,
    body.tax-product_cat .woocommerce-products-header__title,
    body.woocommerce-shop .page-title,
    body.tax-product_cat .page-title {
        font-size: 2.4rem !important;
    }
}

/* Mobile - 1 per row */
@media (max-width: 600px) {
    body.woocommerce-shop .woocommerce,
    body.tax-product_cat .woocommerce {
        padding: 0 1rem !important;
    }

    body.woocommerce-shop ul.products,
    body.tax-product_cat ul.products {
        grid-template-columns: 1fr !important;
        max-width: 330px !important;
        gap: 1.5rem !important;
    }

    body.woocommerce-shop ul.products li.product,
    body.tax-product_cat ul.products li.product {
        min-height: auto !important;
        padding: 1rem !important;
    }

    body.woocommerce-shop ul.products li.product a img,
    body.tax-product_cat ul.products li.product a img {
        height: 220px !important;
    }

    .svarnna-product-filters {
        gap: 0.7rem !important;
    }

    .svarnna-filter-btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.85rem !important;
    }
}

/* =====================================================
   SVARNNA RECIPES PAGE DESIGN
===================================================== */

.svarnna-recipes-page {
    background: var(--cream);
    padding: 5rem 0;
}

.svarnna-recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.svarnna-recipe-card {
    background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12);
    transition: all 0.3s ease;
}

.svarnna-recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(62, 39, 35, 0.18);
    border-color: var(--primary-gold);
}

.recipe-image-box {
    width: 100%;
    height: 280px;
    background: #fff4c8;
    overflow: hidden;
}

.recipe-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 2rem;
}

.recipe-tag {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-brown);
    padding: 0.35rem 0.9rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.recipe-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-brown);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.recipe-content p {
    color: var(--medium-brown);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.recipe-content h4 {
    color: var(--dark-brown);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.recipe-product-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recipe-product-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff8dc;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 0.9rem 1rem;
}

.recipe-product-info {
    flex: 1;
}

.recipe-product-name {
    display: block;
    color: var(--dark-brown);
    font-weight: 900;
    font-size: 0.95rem;
}

.recipe-product-price {
    display: block;
    color: var(--dark-gold);
    font-weight: 800;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.recipe-product-btn {
    background: var(--primary-gold);
    color: var(--dark-brown);
    border-radius: 30px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
}

.recipe-product-btn:hover {
    background: var(--dark-brown);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.recipe-product-missing {
    display: block;
    background: #fff0f0;
    color: #b00020;
    border: 1px solid #ffb3b3;
    border-radius: 10px;
    padding: 0.7rem;
    font-size: 0.85rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .svarnna-recipes-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .svarnna-recipes-page {
        padding: 3rem 0;
    }

    .recipe-image-box {
        height: 220px;
    }

    .recipe-content {
        padding: 1.4rem;
    }

    .recipe-content h2 {
        font-size: 1.6rem;
    }

    .recipe-product-chip {
        flex-direction: column;
        align-items: flex-start;
    }

    .recipe-product-btn {
        width: 100%;
        text-align: center;
    }
}
/* Recipe Add All Products Button */
.recipe-combo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    margin-top: 1.2rem;
    padding: 0.95rem 1.4rem;

    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--dark-brown);

    border-radius: 35px;
    border: none;

    font-size: 0.95rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    text-align: center;

    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
    transition: all 0.3s ease;
}

.recipe-combo-btn:hover {
    background: var(--dark-brown);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(62, 39, 35, 0.25);
}