/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #ffeef8 0%, #ffe5f0 50%, #ffd6e8 100%);
    color: #2d2d2d;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '❄️';
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
    animation: spin 20s linear infinite;
    z-index: 0;
}

body::after {
    content: '🎄';
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 3rem;
    opacity: 0.2;
    animation: sway 3s ease-in-out infinite;
    z-index: 0;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
}

section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Christmas Theme */
.christmas-theme {
    position: relative;
    overflow: hidden;
}

/* Snowflakes Animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 2rem; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 1s; font-size: 1.8rem; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 9s; animation-delay: 5s; font-size: 2.2rem; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 2s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 4s; font-size: 1.7rem; }

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Festive Badge */
.festive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a, #e74c3c, #c41e3a);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
    }
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 20px 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text {
    text-align: left;
    animation: slideInLeft 1s ease-out;
}

.hero-visual {
    text-align: center;
    animation: slideInRight 1s ease-out;
}

.logo {
    width: 140px;
    height: auto;
    margin-bottom: 25px;
    animation: fadeIn 1s ease-in;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.25);
}

.hero-badge {
    margin-bottom: 25px;
}

.festive-badge {
    display: inline-block;
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 20px;
}

.brand-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d63384;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: slideDown 0.8s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 0;
    animation: slideDown 0.9s ease-out;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out;
}

.hero-description strong {
    background: linear-gradient(135deg, #c41e3a, #d63384);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.location-highlight {
    display: block;
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 8px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeIn 1.1s ease-in;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #2d2d2d;
    font-weight: 600;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeIn 1.2s ease-in;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.3);
}

.secondary-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.4);
}

.secondary-cta:hover {
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.cta-text {
    font-weight: 600;
}

.cta-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta:hover .cta-icon {
    transform: scale(1.1);
}

.hero-trust {
    animation: fadeIn 1.3s ease-in;
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.1rem;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(214, 51, 132, 0.2));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    font-size: 2rem;
    animation: floatAround 4s ease-in-out infinite;
}

.brownie-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.brownie-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.star-1 {
    top: 10%;
    right: 20%;
    animation-delay: 2s;
    font-size: 1.5rem;
}

.star-2 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
    font-size: 1.2rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d63384;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-text {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: #d63384;
}

/* New Animations */
@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);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 20px;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    gap: 80px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-in;
}

.about-title {
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 15px;
    animation: slideDown 0.8s ease-out;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 500;
    animation: slideUp 0.8s ease-out;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text {
    animation: slideInLeft 1s ease-out;
}

.story-heading {
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 20px;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 40px;
}

.story-description strong {
    color: #d63384;
    font-weight: 700;
}

.story-description em {
    color: #6c757d;
    font-style: italic;
}

.story-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    border-left: 4px solid #d63384;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(214, 51, 132, 0.15);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    color: #d63384;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.about-mission {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.1), rgba(244, 114, 182, 0.1));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(214, 51, 132, 0.2);
    margin-bottom: 40px;
}

.mission-title {
    font-size: 1.4rem;
    color: #d63384;
    margin-bottom: 15px;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #2d2d2d;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(214, 51, 132, 0.2);
}

.value-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d63384;
    line-height: 1;
}

.value-label {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-top: 5px;
}

.story-visual {
    animation: slideInRight 1s ease-out;
}

.about-image-container {
    position: relative;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.2);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.overlay-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d63384;
}

.overlay-subtext {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(214, 51, 132, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d63384;
    line-height: 1;
}

.stat-desc {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.about-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(214, 51, 132, 0.1));
    padding: 50px 30px;
    border-radius: 25px;
    border: 2px solid rgba(214, 51, 132, 0.3);
}

.cta-title {
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Legacy section styles for compatibility */
.section h2 {
    font-size: 2.5rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 30px;
}

.section p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.section-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

/* Menu Section */
.menu-section {
    padding: 100px 20px;
    position: relative;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-title {
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 15px;
    animation: slideDown 0.8s ease-out;
}

.menu-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out;
}

.menu-intro {
    font-size: 1.1rem;
    color: #2d2d2d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.festive-intro {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(214, 51, 132, 0.1));
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #c41e3a;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 40px;
}

.menu-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.menu-feature {
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d63384;
    border: 1px solid rgba(214, 51, 132, 0.3);
}

.menu-navigation {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.menu-nav {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn.active,
.nav-btn:hover {
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.nav-icon {
    font-size: 1.1rem;
}

.nav-text {
    font-weight: 600;
}

.menu-category {
    margin-bottom: 80px;
    animation: fadeIn 1s ease-in;
}

.festive-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 245, 0.9));
    padding: 50px 40px;
    border-radius: 30px;
    border: 3px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
    position: relative;
    overflow: hidden;
}

.festive-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a, #d63384, #f472b6);
}

.category-header {
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.2rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.festive-title {
    background: linear-gradient(135deg, #c41e3a, #d63384);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem;
}

.category-icon {
    font-size: 2.5rem;
}

.bestseller-badge,
.exclusive-badge,
.gift-badge,
.custom-badge {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white !important;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.exclusive-badge {
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white !important;
}

.gift-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white !important;
}

.custom-badge {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white !important;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d63384, #f472b6);
    border-radius: 2px;
}

.festive-title::after {
    background: linear-gradient(90deg, #c41e3a, #d63384);
}

.category-description {
    font-size: 1.1rem;
    color: #2d2d2d;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.category-description strong {
    color: #d63384;
    font-weight: 700;
}

.category-description em {
    color: #6c757d;
    font-style: italic;
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d63384;
    border: 1px solid rgba(214, 51, 132, 0.3);
    backdrop-filter: blur(5px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.menu-item {
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d63384, #f472b6);
    transition: left 0.4s ease;
}

.menu-item:hover::before {
    left: 0;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(214, 51, 132, 0.2);
}

/* Holiday Badge */
.holiday-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.4);
    z-index: 2;
}

/* Festive Special Items */
.festive-special {
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.9), rgba(255, 255, 255, 0.7));
    border: 2px solid rgba(196, 30, 58, 0.4);
    position: relative;
}

.festive-special::after {
    content: '✨';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.5rem;
    opacity: 0.3;
}

.festive-special:hover {
    border-color: #c41e3a;
    box-shadow: 0 12px 40px rgba(196, 30, 58, 0.3);
}

.menu-item h4 {
    font-size: 1.3rem;
    color: #d63384;
    margin-bottom: 10px;
}

.festive-special h4 {
    color: #c41e3a;
}

.item-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.item-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(214, 51, 132, 0.2);
    text-align: center;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63384;
}

.festive-special .price-tag {
    color: #c41e3a;
}

.weight-tag {
    font-size: 0.9rem;
    color: #6c757d;
    background: rgba(214, 51, 132, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Featured/Premium Items */
.menu-item.featured {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(255, 255, 255, 0.7));
    border: 2px solid rgba(214, 51, 132, 0.3);
}

.menu-item.premium {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.15), rgba(255, 255, 255, 0.7));
    border: 2px solid #d63384;
}

.menu-item.premium::after {
    content: '⭐ PREMIUM';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(214, 51, 132, 0.3);
}

.festive-special.premium::after {
    content: '🎄 PREMIUM';
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
}

.menu-item.special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.7));
    border: 2px dashed #d63384;
}

.custom-note {
    font-size: 0.85rem;
    color: #d63384;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Menu Footer */
.menu-footer {
    margin-top: 80px;
    padding: 50px 40px;
    background: rgba(214, 51, 132, 0.1);
    border-radius: 25px;
    text-align: center;
}

.festive-footer {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(214, 51, 132, 0.1));
    border: 3px solid rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.festive-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c41e3a, #d63384, #f472b6);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-title {
    font-size: 2rem;
    color: #d63384;
    margin-bottom: 30px;
    text-align: center;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(214, 51, 132, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.2);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.info-content {
    flex: 1;
}

.info-content strong {
    color: #d63384;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.info-content em {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.info-content a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #f472b6;
    text-decoration: underline;
}

.footer-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed rgba(196, 30, 58, 0.4);
}

.festive-notice {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    animation: pulse 2s ease-in-out infinite;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-footer p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #2d2d2d;
}

.menu-footer a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-footer a:hover {
    color: #f472b6;
    text-decoration: underline;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 60px 20px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.gradient-icon {
    font-size: 1.2rem;
}

.location-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 20px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.15);
}

summary {
    font-weight: 600;
    color: #d63384;
    cursor: pointer;
    list-style: none;
    font-size: 1.1rem;
}

summary::marker {
    display: none;
}

summary::before {
    content: '+';
    margin-right: 10px;
    font-size: 1.3rem;
    font-weight: bold;
}

details[open] summary::before {
    content: '−';
}

details p {
    margin-top: 15px;
    padding-left: 25px;
    text-align: left;
}

details a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    color: #6c757d;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes sway {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .festive-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .brand-name {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
    
    .location-highlight {
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
        margin-top: 0;
    }
    
    .floating-item {
        font-size: 1.5rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 80px 20px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Menu Section Responsive */
    .menu-section {
        padding: 80px 20px;
    }
    
    .menu-title {
        font-size: 2.5rem;
    }
    
    .menu-nav {
        flex-wrap: wrap;
        gap: 8px;
        padding: 6px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .festive-title {
        font-size: 2rem;
    }
    
    .festive-category {
        padding: 30px 20px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }


    .section h2 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .festive-title {
        font-size: 1.8rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item h4 {
        font-size: 1.2rem;
    }

    .item-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-tag {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 15px;
    }

    .contact-actions {
        width: 100%;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .menu-footer {
        padding: 20px;
    }

    .menu-footer p {
        font-size: 0.95rem;
    }

    .festive-category {
        padding: 25px 15px;
    }

    .snowflake {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 15px 50px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .logo {
        width: 120px;
    }
    
    .festive-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
    
    .location-highlight {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1rem;
    }

    .cta {
        padding: 12px 24px;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .hero-image {
        max-width: 350px;
    }
    
    .hero-stats {
        padding: 15px;
        gap: 15px;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-item {
        font-size: 1.2rem;
    }
    
    .trust-text {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .scroll-text {
        font-size: 0.8rem;
    }
    
    .scroll-arrow {
        font-size: 1.2rem;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 60px 15px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .story-heading {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    /* Menu Section Mobile */
    .menu-section {
        padding: 60px 15px;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .festive-intro {
        padding: 20px;
    }
    
    .menu-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .festive-title {
        font-size: 1.7rem;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .festive-category {
        padding: 20px 15px;
    }
    
    .footer-title {
        font-size: 1.6rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .footer-cta {
        padding: 20px;
    }


    .section h2 {
        font-size: 1.75rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .festive-title {
        font-size: 1.6rem;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.9rem;
    }

    .price-tag {
        font-size: 1.2rem;
    }

    .weight-tag {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .holiday-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        top: 10px;
        right: 10px;
    }

    .snowflake {
        font-size: 1rem;
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .hero {
        padding: 70px 10px 40px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .cta {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 220px;
    }
    
    .hero-image {
        max-width: 280px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Focus styles for accessibility */
.cta:focus,
.cta:focus-visible {
    outline: 3px solid #d63384;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .floating-elements,
    .scroll-indicator {
        display: none;
    }
    
    .hero-actions {
        display: none;
    }
} 

.weight-tag {
    font-size: 0.9rem;
    color: #6c757d;
    background: rgba(214, 51, 132, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Featured/Premium Items */
.menu-item.featured {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.1), rgba(255, 255, 255, 0.7));
    border: 2px solid rgba(214, 51, 132, 0.3);
}

.menu-item.premium {
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.15), rgba(255, 255, 255, 0.7));
    border: 2px solid #d63384;
}

.menu-item.premium::after {
    content: '⭐ PREMIUM';
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #d63384, #f472b6);
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(214, 51, 132, 0.3);
}

.menu-item.special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.7));
    border: 2px dashed #d63384;
}

.custom-note {
    font-size: 0.85rem;
    color: #d63384;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Menu Footer */
.menu-footer {
    margin-top: 60px;
    padding: 30px;
    background: rgba(214, 51, 132, 0.1);
    border-radius: 15px;
    text-align: center;
}

.menu-footer p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #2d2d2d;
}

.menu-footer a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu-footer a:hover {
    color: #f472b6;
    text-decoration: underline;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 60px 20px;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 30px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.gradient-icon {
    font-size: 1.2rem;
}

.location-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 20px;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.15);
}

summary {
    font-weight: 600;
    color: #d63384;
    cursor: pointer;
    list-style: none;
    font-size: 1.1rem;
}

summary::marker {
    display: none;
}

summary::before {
    content: '+';
    margin-right: 10px;
    font-size: 1.3rem;
    font-weight: bold;
}

details[open] summary::before {
    content: '−';
}

details p {
    margin-top: 15px;
    padding-left: 25px;
    text-align: left;
}

details a {
    color: #d63384;
    text-decoration: none;
    font-weight: 600;
}

details a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

footer p {
    color: #6c757d;
    margin-bottom: 15px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-item h4 {
        font-size: 1.2rem;
    }

    .item-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .price-tag {
        font-size: 1.3rem;
    }

    section {
        padding: 60px 15px;
    }

    .contact-actions {
        width: 100%;
    }

    .whatsapp-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .menu-footer {
        padding: 20px;
    }

    .menu-footer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .cta {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item h4 {
        font-size: 1.1rem;
    }

    .item-description {
        font-size: 0.9rem;
    }

    .price-tag {
        font-size: 1.2rem;
    }

    .weight-tag {
        font-size: 0.85rem;
        padding: 4px 12px;
    }
}

/* Additional Fixes */

/* FAQ Section Padding */
#faq.section {
    padding: 100px 20px !important;
}

#faq .faq-list {
    padding: 0 20px !important;
}

/* Menu Item Pricing Center Alignment Fix */
.menu-item .item-pricing {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 20px !important;
}

/* Mobile Pricing Alignment Fix */
@media (max-width: 768px) {
    .menu-item .item-pricing {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .menu-item .item-pricing {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }
    
    #faq.section {
        padding: 80px 15px !important;
    }
}

/* Badge Visibility Fix */
.bestseller-badge,
.exclusive-badge,
.gift-badge,
.custom-badge {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

/* Menu Category Display Control */
.menu-category {
    display: none;
}

.menu-category[data-category="brownies"] {
    display: block;
}

/* Menu Navigation Active State Fix */
.nav-btn.active {
    background: linear-gradient(135deg, #d63384, #f472b6) !important;
    color: white !important;
}/* FA
Q Mobile Responsive */
@media (max-width: 768px) {
    #faq h2 {
        font-size: 2rem !important;
        margin-bottom: 40px !important;
    }
    
    details {
        margin-bottom: 20px !important;
        padding: 25px !important;
    }
    
    summary {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 480px) {
    #faq h2 {
        font-size: 1.8rem !important;
    }
    
    details {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }
    
    summary {
        font-size: 0.95rem !important;
    }
    
    details p {
        font-size: 0.9rem !important;
        padding-left: 15px !important;
    }
}/* 
Instagram Follow Section */
.instagram-follow-section {
    margin-top: 50px;
    padding: 0 20px;
}

.instagram-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #4facfe 50%, #00f2fe 75%, #43e97b 100%);
    background-size: 400% 400%;
    animation: instagramGradient 8s ease infinite;
    border-radius: 25px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.instagram-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
}

.instagram-container > * {
    position: relative;
    z-index: 2;
}

@keyframes instagramGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.instagram-icon-wrapper {
    flex-shrink: 0;
}

.instagram-gradient-bg {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

.instagram-icon {
    width: 35px;
    height: 35px;
}

.instagram-content {
    flex: 1;
    color: white;
}

.instagram-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.instagram-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.instagram-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.instagram-cta {
    margin-bottom: 25px;
}

.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 1);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 24px;
    height: 24px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.btn-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d63384;
    transition: transform 0.3s ease;
}

.instagram-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.instagram-footer {
    text-align: center;
}

.footer-text {
    font-size: 0.95rem;
    color: white;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Instagram Section Responsive */
@media (max-width: 768px) {
    .instagram-container {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .instagram-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .instagram-title {
        font-size: 1.5rem;
    }
    
    .instagram-subtitle {
        font-size: 0.95rem;
    }
    
    .instagram-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-highlight {
        justify-content: center;
        text-align: center;
    }
    
    .instagram-btn {
        padding: 18px 20px;
    }
    
    .btn-content {
        gap: 12px;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .instagram-container {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .logo {
        width: 100px;
    }
    
    .instagram-gradient-bg {
        width: 60px;
        height: 60px;
    }
    
    .instagram-icon {
        width: 30px;
        height: 30px;
    }
    
    .instagram-title {
        font-size: 1.3rem;
    }
    
    .instagram-subtitle {
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .instagram-btn {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .btn-arrow {
        transform: rotate(90deg);
    }
    
    .instagram-btn:hover .btn-arrow {
        transform: rotate(90deg) translateX(5px);
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
}