/*
Theme Name: Flavor Heaven
Theme URI: https://flavor.digitalshivanshu.online/
Author: Shivanshu
Description: Multi-page WordPress theme converted from the original Flavor Heaven HTML design. Preserves the original visual design while making pages and blog posts WordPress-manageable.
Version: 1.0.0
Text Domain: flavor-heaven
*/


        /* ==================== CSS VARIABLES & ROOT ==================== */
        :root {
            --primary-dark: #1a1a1a;
            --primary-light: #2d2d2d;
            --cream: #f5f0e8;
            --accent-orange: #ff9500;
            --accent-dark-orange: #e67e22;
            --accent-light-orange: #ffb84d;
            --text-light: #333;
            --text-dark: #1a1a1a;
            --border-color: #ddd;
            --success: #27ae60;
            --white: #ffffff;
            --shadow-light: 0 3px 10px rgba(0,0,0,0.1);
            --shadow-medium: 0 8px 20px rgba(0,0,0,0.15);
            --shadow-dark: 0 15px 40px rgba(0,0,0,0.2);
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

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

        html {
            scroll-behavior: smooth;
        }

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

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

        /* ==================== HEADER & NAVIGATION ==================== */
        .navbar {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--cream);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -1px;
            transition: var(--transition);
        }

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

        .logo span {
            color: var(--accent-orange);
            font-size: 2rem;
        }

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

        .nav-menu a {
            color: var(--cream);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            font-size: 0.95rem;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-orange);
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--accent-orange);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .order-btn {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(255,149,0,0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .order-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,149,0,0.4);
        }

        .order-btn:active {
            transform: translateY(0);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--cream);
            margin: 5px 0;
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ==================== ENHANCED HERO SECTION ==================== */
        .hero {
            background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(45,45,45,0.75) 50%, rgba(26,26,26,0.85) 100%),
                        url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=1600&h=900&fit=crop') center/cover no-repeat fixed;
            color: var(--cream);
            padding: 140px 2rem 100px;
            text-align: center;
            position: relative;
            min-height: 700px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,149,0,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,149,0,0.08) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: slideInDown 0.8s ease-out;
        }

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

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 3px 3px 8px rgba(0,0,0,0.6);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero h1 .orange {
            color: var(--accent-orange);
            display: block;
            background: linear-gradient(135deg, #ff9500 0%, #ffb84d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--accent-light-orange);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-weight: 300;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            line-height: 1.9;
            color: rgba(245,240,232,0.95);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

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

        .btn {
            padding: 1.1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(255,149,0,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255,149,0,0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--cream);
            border: 2.5px solid var(--accent-orange);
            box-shadow: inset 0 0 0 0 var(--accent-orange);
        }

        .btn-secondary:hover {
            box-shadow: inset 200px 0 0 0 var(--accent-orange);
            color: var(--white);
        }

        /* ==================== SECTION STYLES ==================== */
        section {
            padding: 80px 2rem;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3.5rem;
            color: var(--primary-dark);
            position: relative;
            padding-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-light-orange) 100%);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* ==================== CARD STYLES ==================== */
        .dish-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            cursor: pointer;
            position: relative;
        }

        .dish-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-light-orange) 100%);
            z-index: 10;
        }

        .dish-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dark);
        }

        .dish-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 15px 15px 0 0;
            transition: var(--transition);
        }

        .dish-card:hover .dish-image {
            transform: scale(1.08);
        }

        .dish-info {
            padding: 1.8rem;
        }

        .dish-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .dish-description {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

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

        .dish-price {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ==================== GRID LAYOUTS ==================== */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
        }

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

        .grid-5 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* ==================== CATEGORY CARDS ==================== */
        .category-card {
            background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(45,45,45,0.75) 100%);
            color: var(--cream);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 2px solid transparent;
            box-shadow: var(--shadow-light);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,149,0,0.2) 0%, transparent 70%);
            z-index: 1;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.4;
        }

        .category-icon {
            font-size: 3.5rem;
            margin-bottom: 0.8rem;
            color: var(--accent-orange);
            position: relative;
            z-index: 2;
        }

        .category-name {
            font-size: 1.4rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
            font-family: 'Montserrat', sans-serif;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dark);
            border-color: var(--accent-orange);
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonial-card {
            background-color: var(--white);
            padding: 2.2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 3px solid transparent;
            position: relative;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-light-orange) 100%);
            border-radius: 15px 15px 0 0;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-dark);
        }

        .stars {
            color: var(--accent-orange);
            margin-bottom: 1rem;
            font-size: 1.3rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
            font-style: italic;
            color: #666;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-dark);
            font-family: 'Montserrat', sans-serif;
        }

        /* ==================== BLOG CARDS ==================== */
        .blog-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dark);
        }

        .blog-image {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .blog-content {
            padding: 1.8rem;
        }

        .blog-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
            color: var(--primary-dark);
            font-family: 'Montserrat', sans-serif;
        }

        .blog-excerpt {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }

        .blog-link {
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .blog-link:hover {
            gap: 1rem;
            color: var(--accent-dark-orange);
        }

        /* ==================== FORM STYLES ==================== */
        .form-group {
            margin-bottom: 1.8rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 4px rgba(255,149,0,0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.8rem;
        }

        /* ==================== SPECIAL OFFERS ==================== */
        .special-section {
            background: linear-gradient(135deg, rgba(230,126,34,0.95) 0%, rgba(255,149,0,0.9) 100%);
            color: var(--white);
            padding: 3.5rem 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255,149,0,0.3);
        }

        .special-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            z-index: 1;
        }

        .special-title {
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 0.8rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .special-price {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            font-weight: 800;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            color: var(--cream);
            padding: 4rem 2rem 1.5rem;
            margin-top: 3rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-light-orange) 50%, var(--accent-orange) 100%);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h3 {
            color: var(--accent-orange);
            margin-bottom: 1.3rem;
            font-size: 1.2rem;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: var(--cream);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--accent-orange);
            padding-left: 0.5rem;
        }

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

        .social-links a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(255,149,0,0.3);
        }

        .social-links a:hover {
            transform: translateY(-3px) rotate(5deg);
            box-shadow: 0 6px 20px rgba(255,149,0,0.4);
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,149,0,0.2);
            padding-top: 1.5rem;
            color: rgba(245,240,232,0.7);
            font-size: 0.9rem;
        }

        /* ==================== CTA SECTIONS ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
            color: var(--cream);
            padding: 4.5rem 2rem;
            text-align: center;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-dark);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255,149,0,0.15) 0%, transparent 70%);
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 2;
            font-family: 'Playfair Display', serif;
        }

        .cta-section p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }

        /* ==================== ORDER SECTION ==================== */
        .order-item {
            background-color: var(--white);
            padding: 1.8rem;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border-left: 4px solid var(--accent-orange);
        }

        .order-item:hover {
            box-shadow: var(--shadow-medium);
        }

        .order-left {
            flex: 1;
        }

        .order-name {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--primary-dark);
        }

        .order-desc {
            font-size: 0.85rem;
            color: #666;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, #f5f5f5 0%, #f9f9f9 100%);
            padding: 0.6rem 1rem;
            border-radius: 8px;
            border: 2px solid var(--border-color);
        }

        .quantity-selector button {
            background-color: transparent;
            border: none;
            color: var(--accent-orange);
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .quantity-selector button:hover {
            color: var(--accent-dark-orange);
            transform: scale(1.2);
        }

        .quantity-selector input {
            width: 50px;
            text-align: center;
            border: none;
            background-color: transparent;
            font-weight: 600;
        }

        .order-summary {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
            color: var(--white);
            padding: 2.2rem;
            border-radius: 15px;
            margin-top: 2.5rem;
            box-shadow: var(--shadow-dark);
        }

        .order-summary h3 {
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            font-family: 'Montserrat', sans-serif;
        }

        .order-item-summary {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.7rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .order-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.4rem;
            font-weight: 700;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(255,255,255,0.5);
        }

        /* ==================== MODAL STYLES ==================== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background-color: var(--cream);
            margin: 2% auto;
            padding: 2.5rem;
            border-radius: 15px;
            width: 90%;
            max-width: 700px;
            max-height: 85vh;
            overflow-y: auto;
            animation: slideDown 0.3s ease;
            box-shadow: var(--shadow-dark);
        }

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

        .close-modal {
            color: var(--primary-dark);
            float: right;
            font-size: 1.8rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            color: var(--accent-orange);
            transform: rotate(90deg);
        }

        .blog-full {
            padding: 1rem 0;
        }

        .blog-full h1 {
            font-size: 2.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            font-family: 'Playfair Display', serif;
        }

        .blog-full img {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-dark);
        }

        .blog-full p {
            margin-bottom: 1.5rem;
            line-height: 1.9;
            color: #333;
        }

        .blog-full h3 {
            color: var(--accent-orange);
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-family: 'Montserrat', sans-serif;
        }

        .back-link {
            color: var(--accent-orange);
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            margin-top: 2rem;
            transition: var(--transition);
        }

        .back-link:hover {
            gap: 1rem;
            color: var(--accent-dark-orange);
        }

        /* ==================== SUCCESS MESSAGE ==================== */
        .success-message {
            background: linear-gradient(135deg, var(--success) 0%, #229954 100%);
            color: var(--white);
            padding: 1.2rem 1.8rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            display: none;
            animation: slideDown 0.3s ease;
            box-shadow: var(--shadow-light);
            border-left: 4px solid #1e8449;
        }

        .success-message.show {
            display: block;
        }

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

            .nav-menu {
                gap: 1.5rem;
            }

            .hero {
                padding: 100px 1.5rem 80px;
                min-height: 600px;
            }

            .hero h1 {
                font-size: 4rem;
            }

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

            section {
                padding: 60px 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                gap: 0.8rem;
            }

            .nav-menu a {
                font-size: 0.8rem;
            }

            .order-btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .hero {
                padding: 80px 1rem 60px;
                min-height: 500px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

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

            .hero-description {
                font-size: 0.95rem;
            }

            .btn {
                padding: 0.9rem 2rem;
                font-size: 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

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

            section {
                padding: 40px 1rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .grid-5 {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            }

            .hamburger {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 60px;
                left: -100%;
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
                flex-direction: column;
                width: 100%;
                text-align: center;
                gap: 1.5rem;
                padding: 2rem;
                transition: left 0.3s ease;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .order-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .logo {
                font-size: 1.4rem;
            }

            .logo span {
                font-size: 1.6rem;
            }
        }

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

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

            .hero-buttons {
                gap: 0.8rem;
            }

            .btn {
                width: 100%;
                padding: 0.8rem 1rem;
            }

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

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

            .special-section {
                padding: 2rem 1.5rem;
            }

            .special-price {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        /* ==================== UTILITY CLASSES ==================== */
        .text-center {
            text-align: center;
        }

        .mt-2 {
            margin-top: 2rem;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        .hidden {
            display: none;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-orange);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-dark-orange);
        }
    

/* WordPress theme compatibility */
body.wp-theme-flavor-heaven .page{display:block!important;}
img{max-width:100%;}
.flavor-featured-image{width:100%;max-height:520px;object-fit:cover;border-radius:15px;box-shadow:var(--shadow-dark);margin-bottom:2rem;}
.blog-grid .blog-card{height:100%;}
.blog-card a.blog-card-link{display:block;color:inherit;text-decoration:none;}
.single-blog-wrap{max-width:900px;margin:0 auto;}
.single-blog-wrap .blog-full{background:var(--white);padding:2rem;border-radius:15px;box-shadow:var(--shadow-light);}
.single-blog-wrap .blog-full p{margin-bottom:1.5rem;}
