@font-face {
    font-family: 'Aeronaut';
    src: url('Media/Font/aeronaut/poiaeronauttrial-regular.otf') format('opentype'),
         url('Media/Font/aeronaut/poiaeronauttrial-regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CreamCake';
    src: local('Cream Cake'), 
         url('Media/Font/cream-cake/Cream%20Cake.otf') format('opentype'),
         url('Media/Font/cream-cake/Cream%20Cake.otf') format('truetype'),
         url('./Media/Font/cream-cake/Cream%20Cake.otf') format('opentype'),
         url('./Media/Font/cream-cake/Cream%20Cake.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CreamCake';
    src: local('Cream Cake Bold'),
         url('Media/Font/cream-cake/Cream%20Cake%20Bold.otf') format('opentype'),
         url('Media/Font/cream-cake/Cream%20Cake%20Bold.otf') format('truetype'),
         url('./Media/Font/cream-cake/Cream%20Cake%20Bold.otf') format('opentype'),
         url('./Media/Font/cream-cake/Cream%20Cake%20Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'QueensidesMedium';
    src: url('Media/Font/QueensidesMedium-x30zV.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Aeronaut', -webkit-system-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Font loading fallback - ensures graceful degradation */
.make-title,
.contact-title,
.payment-title {
    font-family: 'CreamCake', serif !important;
    font-display: swap;
}

.hero-container {
    background-color: #F5F2E8;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

/* Header/Navigation */
.header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    position: relative;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    gap: 60px;
    z-index: 1000;
}

/* Desktop responsive - stack header when screen gets smaller */
@media (max-width: 1200px) and (min-width: 769px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        padding: 30px 0;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .nav {
        position: static;
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    .nav-menu {
        gap: 30px;
        justify-content: flex-start;
    }
    
    .logo-image {
        height: 80px;
    }
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    background: transparent;
}

.logo-image {
    height: 68px;
    width: auto;
    z-index: 1000;
    background: transparent;
}

.logo-text {
    display: none;
}

.nav {
    position: relative;
    display: flex;
    justify-content: flex-start;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    z-index: 1001;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Aeronaut', sans-serif;
    position: relative;
    z-index: 1002;
}

.nav-menu a:hover {
    color: #FFA500;
}

/* Hamburger Menu - Hidden by default (desktop/tablet) */
/* Hamburger menu removed - using responsive scaling menu */

/* Hamburger styles removed */

.cart-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-top: 0;
}

.hero-left {
    padding-right: 40px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-height: 100%;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content {
    margin-bottom: 30px;
    transform: translateY(-60px) translateX(-50px);
    opacity: 0;
    animation: slideInFromLeft 1.2s ease-out 0.3s forwards;
}

/* Desktop responsive - lower hero content when header stacks */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero-content {
        transform: translateY(-20px) translateX(-50px);
        margin-bottom: 40px;
    }
    
    .hero-section {
        padding-top: 20px;
        gap: 40px;
    }
    
    .hero-headline {
        font-size: 40px;
    }
    
    .hero-subtext {
        font-size: 17px;
    }
}

.hero-headline {
    font-family: 'Cream Cake', sans-serif;
    font-size: 44px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtext {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-family: 'Aeronaut', sans-serif;
}

.cta-button {
    background-color: #FFA500;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease, -webkit-transform 0.2s ease;
    -moz-transition: background-color 0.3s ease, -moz-transform 0.2s ease;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Aeronaut', sans-serif;
    text-transform: none;
}

.cta-button:hover {
    background-color: #e8940a;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.hero-right {
    position: absolute;
    right: 50px;
    top: 40%;
    transform: translateY(-50%);
    width: 960px;
    height: 960px;
    pointer-events: auto;
    z-index: 1;
}

/* Consistent cake sizing across all breakpoints - no disappearing */
@media (max-width: 1200px) {
    .hero-right {
        right: 20px;
        width: 700px;
        height: 700px;
    }
}

@media (max-width: 1024px) {
    .hero-right {
        right: 10px;
        width: 600px;
        height: 600px;
        top: 45%;
    }
}

@media (max-width: 900px) {
    .hero-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 450px;
        height: 450px;
        margin: 30px auto;
        order: -1;
    }
}

@media (max-width: 800px) {
    .hero-right {
        width: 400px;
        height: 400px;
        margin: 25px auto;
    }
}

.hero-image {
    width: 120%;
    height: 120%;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    -webkit-animation: fadeInCake 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards, floatCake 4s cubic-bezier(0.4, 0, 0.6, 1) infinite 2.5s;
    -moz-animation: fadeInCake 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards, floatCake 4s cubic-bezier(0.4, 0, 0.6, 1) infinite 2.5s;
    animation: fadeInCake 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards, floatCake 4s cubic-bezier(0.4, 0, 0.6, 1) infinite 2.5s;
}


@-webkit-keyframes fadeInCake {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInCake {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInCake {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateY(-60px) translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(-60px) translateX(0);
    }
}

/* Responsive animation for medium screens */
@media (max-width: 1200px) and (min-width: 769px) {
    @keyframes slideInFromLeft {
        0% {
            opacity: 0;
            transform: translateY(-20px) translateX(-50px);
        }
        100% {
            opacity: 1;
            transform: translateY(-20px) translateX(0);
        }
    }
}

@-webkit-keyframes floatCake {
    0%, 100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

@-moz-keyframes floatCake {
    0%, 100% {
        -moz-transform: translateY(0px);
        transform: translateY(0px);
    }
    50% {
        -moz-transform: translateY(-12px);
        transform: translateY(-12px);
    }
}

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

/* Hero Features Section */
.hero-features {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    margin-top: 0;
    position: absolute;
    bottom: 60px;
    left: 80px;
    z-index: 3;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
    font-family: 'Aeronaut', sans-serif;
    margin-top: 0;
}

/* Chrome compatibility improvements */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

/* Ensure proper rendering in Chrome */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll animations */
.scroll-animation {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animation.animate {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.product-card.scroll-animation {
    -webkit-transform: translateY(40px) scale(0.95);
    -moz-transform: translateY(40px) scale(0.95);
    -ms-transform: translateY(40px) scale(0.95);
    transform: translateY(40px) scale(0.95);
}

.product-card.scroll-animation.animate {
    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
}

/* Stagger animations for cards - slower and smoother */
.product-card:nth-child(1) { transition-delay: 0.2s; }
.product-card:nth-child(2) { transition-delay: 0.5s; }
.product-card:nth-child(3) { transition-delay: 0.8s; }

/* Section title animations */
.section-title.scroll-animation {
    transform: translateY(30px) scale(0.95);
}

.section-title.scroll-animation.animate {
    transform: translateY(0) scale(1);
}

/* What We Make Section - Card Design Like Reference */
.what-we-make {
    background-color: #F5F2E8;
    padding: 120px 0 140px 0;
    overflow: visible;
}

.make-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.make-title {
    font-family: 'QueensidesMedium', serif !important;
    font-size: 64px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.cards-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Product Cards - Transparent Background Design */
.product-card {
    width: 300px;
    background: transparent;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}


/* Colored Image Section */
.card-image-section {
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 24px 0 0;
    overflow: visible;
}

.celebration-bg {
    background: -webkit-linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
    background: -moz-linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 100%);
}

.cupcakes-bg {
    background: -webkit-linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    background: -moz-linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD9 100%);
}

.traybakes-bg {
    background: -webkit-linear-gradient(135deg, #EFEBE9 0%, #D7CCC8 100%);
    background: -moz-linear-gradient(135deg, #EFEBE9 0%, #D7CCC8 100%);
    background: linear-gradient(135deg, #EFEBE9 0%, #D7CCC8 100%);
}

.product-image {
    width: 350px;
    height: 350px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
    transform: translateY(-40px) scale(1.1);
    display: block;
    margin: 0 auto;
}


/* Specific styling for cupcakes to make them bigger and more prominent */
.product-card[data-type="cupcakes"] .product-image {
    width: 400px;
    height: 400px;
    transform: translateY(-60px) scale(1.2);
    position: relative;
    z-index: 15;
}


.product-card[data-type="cupcakes"] .card-image-section {
    overflow: visible;
    z-index: 5;
}

/* White Content Section */
.card-content {
    background: white;
    padding: 24px;
    border-radius: 0 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-title {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.badge {
    font-size: 10px;
    font-weight: 600;
    color: white;
    background: #11e95b;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    font-family: 'Aeronaut', sans-serif;
}

.product-caption {
    font-family: 'Aeronaut', sans-serif;
    font-size: 11px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Options */
.product-options {
    margin-bottom: 20px;
}

.option-group {
    margin-bottom: 16px;
}

.option-group h4 {
    font-family: 'Aeronaut', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.option-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.option-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Aeronaut', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background: #e0e0e0;
}

.option-btn.active {
    background: #FFA500;
    color: white;
}

.flavor-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.flavor-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.1s ease;
    position: relative;
}

.flavor-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.flavor-dot::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s ease;
    z-index: 1000;
}

.flavor-dot:hover::after {
    opacity: 1;
}

.flavor-dot.active {
    border-color: #333;
}

.flavor-dot.chocolate {
    background: #8B4513;
}

.flavor-dot.vanilla {
    background: #F5DEB3;
}

.flavor-dot.strawberry {
    background: #FF69B4;
}

.price-display {
    background: #333;
    color: white;
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 12px;
}

.add-to-cart-btn {
    background: #11e95b;
    color: white;
    font-family: 'Aeronaut', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 20px;
    text-align: center;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: #0ea947;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Toppings Options */
.toppings-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Bespoke Topping */
.bespoke-topping {
    padding: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.bespoke-text {
    margin: 0;
    font-size: 0.9rem;
    color: #495057;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.topping-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Aeronaut', sans-serif;
    font-size: 12px;
}

.topping-option:hover {
    background: #f0f0f0;
}

.topping-option input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #FFA500;
}

.topping-option span {
    color: #666;
    font-weight: 500;
}

/* Additional flavor dots */
.flavor-dot.caramac {
    background: #D2691E;
}

.flavor-dot.red-velvet {
    background: #DC143C;
}

.flavor-dot.lemon {
    background: #FFD700;
}

.flavor-dot.rocky-road {
    background: #8B4513;
}

.flavor-dot.carrot {
    background: #FF8C00;
}

.flavor-dot.cookies-cream {
    background: linear-gradient(45deg, #000000 25%, #FFFFFF 25%, #FFFFFF 50%, #000000 50%, #000000 75%, #FFFFFF 75%);
    background-size: 8px 8px;
}

.flavor-dot.funfetti {
    background: #FFE4E6;
    background-image: radial-gradient(circle at 25% 25%, #FF69B4 2px, transparent 2px),
                      radial-gradient(circle at 75% 75%, #87CEEB 2px, transparent 2px),
                      radial-gradient(circle at 75% 25%, #98FB98 2px, transparent 2px),
                      radial-gradient(circle at 25% 75%, #FFD700 2px, transparent 2px);
}

.flavor-dot.banana {
    background: #FFFF99;
}

.flavor-dot.victoria {
    background: #F5DEB3;
}

.flavor-dot.chocolate-chip {
    background: #DEB887;
    background-image: radial-gradient(circle at 30% 30%, #8B4513 2px, transparent 2px),
                      radial-gradient(circle at 70% 70%, #8B4513 2px, transparent 2px);
}

.flavor-dot.coffee {
    background: #8B4513;
}

.flavor-dot.coconut {
    background: #F5F5DC;
}

.flavor-dot.biscoff {
    background: #C8860D;
}

/* Responsive Design for Cards */
@media (max-width: 768px) {
    .what-we-make {
        padding: 60px 0 100px 0;
    }
    
    .make-container {
        padding: 0 20px;
    }
    
    .cards-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .product-card {
        width: 100%;
        max-width: 280px;
        margin-bottom: 40px;
    }
    
    .card-image-section {
        height: 220px;
    }
    
    .product-image {
        width: 280px;
        height: 280px;
        transform: translateY(-30px) scale(1.05);
    }
    
    
    .card-content {
        padding: 20px;
    }
}

.ul-color li a.active:after {
    position: absolute;
    content: '';
    display: inline-block;
    border: 1px solid #FFA500;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    margin-left: -5px;
    margin-top: -5px;
}

.product-price {
    position: absolute;
    background: #11e95b;
    padding: 7px 20px;
    text-align: center;
    display: inline-block;
    font-size: 24px;
    font-weight: 200;
    color: #fff;
    border-radius: 7px;
    margin-top: -13px;
    margin-left: -5px;
    box-shadow: -10px 20px 15px -10px rgba(17, 233, 91, 0.3);
    font-family: 'Aeronaut', sans-serif;
}

.product-price b {
    margin-left: 5px;
}




/* Contact Form Section */
.contact-section {
    background: -webkit-linear-gradient(135deg, #F5F2E8 0%, #E8F4F8 100%);
    background: -moz-linear-gradient(135deg, #F5F2E8 0%, #E8F4F8 100%);
    background: linear-gradient(135deg, #F5F2E8 0%, #E8F4F8 100%);
    padding: 80px 0;
    min-height: 600px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-family: 'QueensidesMedium', serif !important;
    font-size: 64px;
    font-weight: 500;
    color: #2C5F5F;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    color: #5A7C7C;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(44, 95, 95, 0.1);
    border: 1px solid rgba(44, 95, 95, 0.1);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Aeronaut', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2C5F5F;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E8F4F8;
    border-radius: 12px;
    font-family: 'Aeronaut', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #F9FDFD;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A8B8B;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(74, 139, 139, 0.1);
}

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

.form-note {
    font-size: 12px;
    color: #666;
    margin-top: 6px;
    margin-bottom: 0;
    font-style: italic;
}

.selected-items {
    background: #F0F9F9;
    border: 2px dashed #4A8B8B;
    border-radius: 12px;
    padding: 20px;
    margin: 32px 0;
}

.selected-items h3 {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C5F5F;
    margin-bottom: 16px;
}

.items-list {
    min-height: 60px;
}

.no-items {
    font-family: 'Aeronaut', sans-serif;
    color: #5A7C7C;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.selected-item {
    background: white;
    border: 1px solid #E8F4F8;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(44, 95, 95, 0.05);
}

.item-details {
    flex: 1;
}

.item-title {
    font-family: 'Aeronaut', sans-serif;
    font-weight: 600;
    color: #2C5F5F;
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.item-specs {
    font-family: 'Aeronaut', sans-serif;
    color: #5A7C7C;
    font-size: 14px;
}

.item-price {
    font-family: 'Aeronaut', sans-serif;
    font-weight: 700;
    color: #FFA500;
    font-size: 18px;
}

.remove-item {
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 12px;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background: #FF5252;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    background: -webkit-linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    background: -moz-linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    background: linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    color: white;
    border: none;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Aeronaut', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(44, 95, 95, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(44, 95, 95, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(44, 95, 95, 0.08);
    border: 1px solid rgba(44, 95, 95, 0.1);
}

.info-card h3 {
    font-family: 'CreamCake', serif !important;
    font-size: 24px;
    font-weight: bold;
    color: #2C5F5F;
    margin-bottom: 20px;
}

.info-item {
    font-family: 'Aeronaut', sans-serif;
    color: #5A7C7C;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-item strong {
    color: #2C5F5F;
}

.process-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.process-list li {
    font-family: 'Aeronaut', sans-serif;
    color: #5A7C7C;
    margin-bottom: 16px;
    padding-left: 40px;
    position: relative;
    counter-increment: step-counter;
    line-height: 1.6;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    background: -moz-linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    background: linear-gradient(135deg, #4A8B8B 0%, #2C5F5F 100%);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* Order Summary Styles */
.order-summary {
    text-align: center;
    padding: 40px;
}

.order-summary h3 {
    font-family: 'CreamCake', serif !important;
    font-size: 32px;
    font-weight: bold;
    color: #2C5F5F;
    margin-bottom: 32px;
}

.order-summary p {
    font-family: 'Aeronaut', sans-serif;
    font-size: 16px;
    color: #5A7C7C;
    margin-bottom: 12px;
    line-height: 1.6;
}

.order-summary strong {
    color: #2C5F5F;
    font-weight: 600;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        position: static;
        transform: none;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-right {
        margin-right: 0;
        order: -1;
    }
    
    .hero-headline {
        font-size: 36px;
    }
    
    .hero-subtext {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Contact Form Responsive */
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-title {
        font-size: 48px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    
    .submit-btn {
        width: 100%;
    }
    
    .selected-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .selection-options {
        gap: 8px;
    }
    
    .selection-option {
        padding: 12px;
    }
}

/* Pricing Disclaimer Section */
.pricing-disclaimer {
    padding: 15px 0 25px 0;
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    font-style: italic;
}

/* Payment and Collection Section - Clean White with Pink Dots */
.payment-collection-section {
    background: #ffffff;
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.payment-collection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, #FF69B4 4px, transparent 4px);
    background-size: 80px 80px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
}

.payment-title {
    font-family: 'QueensidesMedium', serif !important;
    font-size: 64px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px;
}

.payment-subtitle {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.step-card {
    background: white;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    background: #E91E63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.step-title {
    font-family: 'CreamCake', serif !important;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.step-description {
    font-family: 'Aeronaut', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.payment-methods {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.payment-methods-title {
    font-family: 'CreamCake', serif !important;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 24px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: #f0f0f0;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #E91E63;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.payment-option span {
    font-family: 'Aeronaut', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.paypal-icon {
    background: #0070ba !important;
}

.paypal-icon svg {
    color: white;
}

.deposit-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card-payment {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.info-card-payment h4 {
    font-family: 'CreamCake', serif !important;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.info-card-payment ul {
    list-style: none;
    padding: 0;
}

.info-card-payment li {
    font-family: 'Aeronaut', sans-serif;
    color: #666;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    font-size: 14px;
}

.info-card-payment li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #E91E63;
    font-weight: 700;
    font-size: 16px;
}

/* Payment Section Responsive */
@media (max-width: 768px) {
    .pricing-disclaimer {
        padding: 15px 0 30px 0;
    }
    
    .disclaimer-container {
        padding: 0 20px;
    }
    
    .disclaimer-text {
        font-size: 14px;
        max-width: 100%;
    }
    
    .payment-collection-section {
        padding: 60px 0;
    }
    
    .payment-title {
        font-size: 48px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 24px 16px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .payment-methods {
        padding: 24px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .deposit-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .info-card-payment {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .disclaimer-container {
        padding: 0 16px;
    }
    
    .disclaimer-text {
        font-size: 13px;
        padding: 12px 16px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-title {
        font-size: 42px;
    }
    
    .step-card {
        padding: 20px;
    }
}


/* Professional Footer */
.professional-footer {
    background: -webkit-linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 50%, #F1B0B7 100%);
    background: -moz-linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 50%, #F1B0B7 100%);
    background: linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 50%, #F1B0B7 100%);
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo-section {
    text-align: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-family: 'Aeronaut', sans-serif;
    font-size: 16px;
    color: #6D4C41;
    font-style: italic;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-family: 'Aeronaut', sans-serif;
    color: #6D4C41;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #4A2C2A;
    text-decoration: underline;
}

.footer-column li:not(:has(a)) {
    font-family: 'Aeronaut', sans-serif;
    color: #6D4C41;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-social h4 {
    font-family: 'Aeronaut', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #5D4037;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #6D4C41;
    text-decoration: none;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #4A2C2A;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(109, 76, 65, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(109, 76, 65, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Aeronaut', sans-serif;
    color: #6D4C41;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .card-image-overlap {
        top: -15px;
        right: -10px;
    }
    
    .overlap-image {
        width: 60px;
        height: 60px;
    }
}

/* Medium Desktop Screens - Adjust cake positioning */
@media (max-width: 1200px) and (min-width: 769px) {
    .hero-right {
        right: 20px;
        width: 700px;
        height: 700px;
        top: 45%;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
    }
    
    .hero-features {
        bottom: 40px;
        left: 60px;
        gap: 40px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Mobile hero container - full centered layout */
    .hero-container {
        height: auto;
        min-height: 100vh;
        padding: 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile header - stacked and centered */
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    /* Mobile logo - centered */
    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .logo-image {
        height: 80px;
        width: auto;
    }
    
    /* Mobile navigation - navigation handled by hamburger menu */
    .nav {
        position: static;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* Mobile hero section - centered layout */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        flex: 1;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Mobile hero content - centered */
    .hero-left {
        padding: 0;
        align-items: center;
        text-align: center;
        width: 100%;
        order: 2;
    }
    
    .hero-content {
        transform: none !important;
        opacity: 1 !important;
        animation: fadeInUp 1s ease-out;
        width: 100%;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Mobile hero text - centered */
    .hero-headline {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .hero-subtext {
        font-size: 17px;
        margin-bottom: 30px;
        color: #555;
        text-align: center;
    }
    
    /* Mobile CTA button - centered */
    .cta-button {
        padding: 18px 36px;
        font-size: 17px;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile hero image - centered and properly sized */
    .hero-right {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto !important;
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        width: 280px !important;
        height: 280px !important;
        object-fit: contain;
        margin: 0 auto;
        display: block;
        opacity: 1 !important;
        animation: fadeInScale 1s ease-out 0.3s both;
    }
    
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.8);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    /* Mobile features section - centered */
    .hero-features {
        position: relative;
        bottom: auto;
        left: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px;
        margin: 30px auto 0;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        border: 1px solid rgba(255,255,255,0.2);
        max-width: 320px;
        width: 100%;
        text-align: center;
    }
    
    .feature {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-align: center;
        width: 100%;
    }
    
    .feature-text {
        font-size: 14px;
        text-align: center;
    }
    
    /* Section titles mobile */
    .make-title,
    .payment-title,
    .contact-title {
        font-size: 48px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Very small screens - improved spacing */
    .hero-container {
        padding: 0 16px;
        height: auto;
        min-height: 100vh;
    }
    
    .header {
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 6px 10px;
    }
    
    .hero-headline {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtext {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Section titles */
    .make-title,
    .payment-title,
    .contact-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    /* Better section spacing */
    .what-we-make {
        padding: 50px 0;
    }
    
    .make-container,
    .payment-container,
    .contact-container {
        padding: 0 16px;
    }
    
    /* Cards spacing */
    .cards-row {
        gap: 40px;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Contact and payment sections */
    .contact-section,
    .payment-collection-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info,
    .info-card-payment {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    /* Footer spacing */
    .professional-footer {
        padding: 40px 0 16px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-logo {
        width: 100px;
        margin-bottom: 16px;
    }
}

/* Improved vertical spacing across all breakpoints */

/* Desktop spacing */
@media (min-width: 1201px) {
    .header {
        padding: 24px 0;
        margin-bottom: 32px;
    }
    
    .hero-section {
        gap: 60px;
        padding: 40px 0;
    }
    
    .hero-features {
        bottom: 60px;
        gap: 60px;
    }
}

/* Tablet spacing */
@media (max-width: 1200px) and (min-width: 769px) {
    .header {
        padding: 30px 0;
        margin-bottom: 30px;
        gap: 24px;
    }
    
    .hero-section {
        gap: 40px;
        padding: 30px 0;
    }
    
    .hero-features {
        bottom: 40px;
        gap: 40px;
    }
}

/* Responsive Menu - Scales Down Instead of Hamburger */
@media (max-width: 768px) {
    .nav {
        display: block !important;
    }
    
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 8px 12px;
        background: transparent;
        border-radius: 0;
        transition: color 0.3s ease;
        border: none;
    }
    
    .nav-menu a:hover {
        color: #FFA500;
        background: transparent;
        transform: none;
    }
}

/* Desktop/Tablet Navigation (769px and above) */
@media (min-width: 769px) {
    /* Clean navigation for desktop/tablet - no hamburger needed */
    .nav-menu {
        display: flex !important;
    }
}

/* Tablet landscape improvements */
@media (max-width: 1024px) and (min-width: 769px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .product-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 400px;
    }
}