/* ============================================
   Centurion Ice Cream - Milky Lane Inspired
   Color Palette:
   - Cyan: #55C5E9
   - Pink: #ED6D96
   - Coral: #EF4A81
   - Peach: #FEB752
   - Mint: #5FC0AC
   - Dark Brown: #4E3227
   - Cream: #FFF9E6
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #4E3227;
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Text Colors */
.text-pink { color: #ED6D96; }
.text-cyan { color: #55C5E9; }
.text-peach { color: #FEB752; }
.text-mint { color: #5FC0AC; }
.text-coral { color: #EF4A81; }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ED6D96 0%, #EF4A81 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(237, 109, 150, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 109, 150, 0.5);
}

.btn-secondary {
    background: #fff;
    color: #ED6D96;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #ED6D96;
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #ED6D96;
}

.btn-nav {
    background: #ED6D96;
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
}

.btn-nav:hover {
    background: #EF4A81;
}

.btn-full {
    width: 100%;
}

/* ============================================
   Announcement Banner
   ============================================ */
.announcement-banner {
    background: linear-gradient(135deg, #ED6D96 0%, #EF4A81 100%);
    color: #fff;
    padding: 12px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.announcement-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.announcement-banner p {
    margin: 0;
    font-weight: 700;
    font-size: 0.95rem;
}

.announcement-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Adjust header position when announcement is visible */
body.has-announcement .site-header {
    top: 0;
}

body.has-announcement .hero-slider {
    padding-top: 140px;
}

@media (max-width: 768px) {
    .announcement-banner p {
        font-size: 0.85rem;
    }

    body.has-announcement .hero-slider {
        padding-top: 160px;
    }
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 24px;
    color: #55C5E9;
}

.logo-accent {
    font-family: 'Fredoka One', cursive;
    font-size: 14px;
    color: #ED6D96;
}

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

.nav-menu a {
    font-weight: 600;
    color: #4E3227;
    position: relative;
}

.nav-menu a.btn-nav,
.nav-menu a.btn-nav.active {
    color: #fff;
}

.nav-menu a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #ED6D96;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #4E3227;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 60vh;
    background:
        linear-gradient(180deg, rgba(200, 140, 50, 0.92) 0%, rgba(200, 80, 120, 0.92) 50%, rgba(50, 160, 200, 0.93) 100%),
        url('../images/centurionicecream-about-hero-bg.jpg') center center / cover no-repeat;
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 120px;
    clip-path: url(#heroWaveClip);
}

.slider-container {
    position: relative;
    width: 100%;
    height: calc(60vh - 90px);
    min-height: 450px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* New Hero Layout - Three Column with Bottom */
.slide-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    height: auto;
    padding: 20px;
    padding-top: 40px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.slide-left,
.slide-right {
    color: #fff;
    z-index: 2;
}

.slide-left {
    text-align: right;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 70%);
    border-radius: 20px;
    padding: 20px 30px;
}

.slide-right {
    text-align: left;
    padding-left: 30px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 70%);
    border-radius: 20px;
    padding: 20px 30px;
}

/* Animated text entrance */
.slide.active .slide-left {
    animation: slideFromLeft 0.8s ease-out forwards;
}

.slide.active .slide-right {
    animation: slideFromRight 0.8s ease-out forwards;
}

.slide.active .slide-center {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide.active .slide-bottom {
    animation: fadeUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.slide.active .slide-left .slide-tagline,
.slide.active .slide-left .slide-buttons {
    animation: fadeIn 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

@keyframes slideFromRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

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

.slide-left h1,
.slide-right h1 {
    font-size: 4rem;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
    text-shadow:
        2px 2px 0 rgba(78, 50, 39, 0.9),
        4px 4px 0 rgba(78, 50, 39, 0.7),
        -1px -1px 0 rgba(78, 50, 39, 0.5),
        1px -1px 0 rgba(78, 50, 39, 0.5),
        -1px 1px 0 rgba(78, 50, 39, 0.5),
        0 0 20px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 0, 0, 0.6);
    position: relative;
    -webkit-text-stroke: 1.5px rgba(78, 50, 39, 0.5);
}

/* Colored text with outline effect */
.slide-right h1 span {
    position: relative;
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
}

/* Decorative underline swoosh */
.slide-right h1 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 50%;
    transform: scaleX(1.2);
}

.slide-right p {
    font-size: 1.15rem;
    opacity: 1;
    margin-top: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    background: rgba(78, 50, 39, 0.4);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 4px 25px rgba(255, 255, 255, 0.3); }
}

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

.slide-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Decorative circular frame behind image */
.slide-image::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 70%);
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.3),
        0 0 0 16px rgba(255,255,255,0.15),
        0 20px 60px rgba(0,0,0,0.2);
    animation: frameGlow 3s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 0 8px rgba(255,255,255,0.3),
            0 0 0 16px rgba(255,255,255,0.15),
            0 20px 60px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow:
            0 0 0 10px rgba(255,255,255,0.4),
            0 0 0 20px rgba(255,255,255,0.2),
            0 25px 70px rgba(0,0,0,0.25);
    }
}

/* Colorful rotating ring */
.slide-image::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 4px dashed rgba(255,255,255,0.4);
    animation: rotateRing 20s linear infinite;
}

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

.slide-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    animation: heroFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.slide-image:hover img {
    transform: scale(1.08);
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Sparkle effects around image */
.slide-center::before,
.slide-center::after {
    content: '✦';
    position: absolute;
    font-size: 24px;
    color: rgba(255,255,255,0.8);
    animation: sparkle 2s ease-in-out infinite;
    z-index: 3;
}

.slide-center::before {
    top: 10%;
    right: 15%;
    animation-delay: 0s;
}

.slide-center::after {
    bottom: 20%;
    left: 15%;
    animation-delay: 1s;
    font-size: 18px;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.slide-bottom {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.slide-tagline {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 280px;
    line-height: 1.4;
}

/* Tagline and buttons inside slide-left */
.slide-left .slide-tagline {
    text-align: right;
}

.slide-left .slide-buttons {
    justify-content: flex-end;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 16px 36px;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slide-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Falling Toppings Animation */
.slide-toppings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Topping particles - base styles */
.topping {
    position: absolute;
    top: -60px;
    animation: fall linear infinite;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Decorations (for Ice Cream Cakes) - Cake decorations like rosettes, stars */
[data-toppings="decorations"] .topping {
    border-radius: 50%;
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.1);
}
[data-toppings="decorations"] .topping:nth-child(5n+1) {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ED6D96, #f799b4);
    animation-duration: 5s;
}
[data-toppings="decorations"] .topping:nth-child(5n+2) {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #55C5E9, #8dd8f0);
    animation-duration: 6s;
}
[data-toppings="decorations"] .topping:nth-child(5n+3) {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FEB752, #ffd17a);
    animation-duration: 5.5s;
}
[data-toppings="decorations"] .topping:nth-child(5n+4) {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #5FC0AC, #8fd5c6);
    animation-duration: 6.5s;
}
[data-toppings="decorations"] .topping:nth-child(5n+5) {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    animation-duration: 5.2s;
}
/* Star shaped decorations */
[data-toppings="decorations"] .topping:nth-child(3n) {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    border-radius: 0;
}

/* Sprinkles (for Ice Cream) - Colorful jimmies */
[data-toppings="sprinkles"] .topping {
    width: 6px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
[data-toppings="sprinkles"] .topping:nth-child(6n+1) {
    background: linear-gradient(180deg, #ED6D96, #d45a82);
    animation-duration: 3.5s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+2) {
    background: linear-gradient(180deg, #55C5E9, #3db5de);
    animation-duration: 4s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+3) {
    background: linear-gradient(180deg, #FEB752, #e9a340);
    animation-duration: 3.3s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+4) {
    background: linear-gradient(180deg, #5FC0AC, #4aab97);
    animation-duration: 3.8s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+5) {
    background: linear-gradient(180deg, #fff, #e8e8e8);
    animation-duration: 4.3s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+6) {
    background: linear-gradient(180deg, #EF4A81, #d63d6e);
    animation-duration: 3.4s;
}

/* Chocolate raindrops (for Gourmet Desserts) */
[data-toppings="chocolate"] .topping {
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: inset 0 -4px 8px rgba(0,0,0,0.2);
}
[data-toppings="chocolate"] .topping:nth-child(4n+1) {
    width: 14px;
    height: 20px;
    background: linear-gradient(180deg, #6B4423 0%, #4E3227 100%);
    animation-duration: 4s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+2) {
    width: 18px;
    height: 26px;
    background: linear-gradient(180deg, #8B5A2B 0%, #6B4423 100%);
    animation-duration: 4.5s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+3) {
    width: 12px;
    height: 18px;
    background: linear-gradient(180deg, #A0522D 0%, #8B5A2B 100%);
    animation-duration: 3.8s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+4) {
    width: 16px;
    height: 22px;
    background: linear-gradient(180deg, #5D3A1A 0%, #3D2314 100%);
    animation-duration: 4.8s;
}

/* Sweets (for Party Packs) - Colorful candies */
[data-toppings="sweets"] .topping {
    border-radius: 50%;
    box-shadow:
        inset 0 -4px 8px rgba(0,0,0,0.15),
        0 3px 6px rgba(0,0,0,0.2);
}
[data-toppings="sweets"] .topping:nth-child(7n+1) {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ED6D96 50%, #fff 50%);
    animation-duration: 4.5s;
}
[data-toppings="sweets"] .topping:nth-child(7n+2) {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, #ffe066, #FEB752);
    animation-duration: 4s;
}
[data-toppings="sweets"] .topping:nth-child(7n+3) {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #55C5E9 50%, #fff 50%);
    animation-duration: 4.8s;
}
[data-toppings="sweets"] .topping:nth-child(7n+4) {
    width: 18px;
    height: 18px;
    background: radial-gradient(circle at 30% 30%, #7cd4c4, #5FC0AC);
    animation-duration: 4.3s;
}
[data-toppings="sweets"] .topping:nth-child(7n+5) {
    width: 26px;
    height: 26px;
    background:
        repeating-linear-gradient(45deg, #ED6D96, #ED6D96 4px, #fff 4px, #fff 8px);
    animation-duration: 5s;
}
[data-toppings="sweets"] .topping:nth-child(7n+6) {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #ff7aa0, #EF4A81);
    animation-duration: 3.8s;
}
[data-toppings="sweets"] .topping:nth-child(7n+7) {
    width: 22px;
    height: 22px;
    background:
        repeating-linear-gradient(-45deg, #5FC0AC, #5FC0AC 4px, #FEB752 4px, #FEB752 8px);
    animation-duration: 4.4s;
}

@keyframes fall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(calc(60vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Sprinkles need different rotation animation */
[data-toppings="sprinkles"] .topping {
    animation-name: fallSprinkle;
}

@keyframes fallSprinkle {
    0% {
        transform: translateY(-60px) rotate(var(--rotation, 45deg));
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(calc(60vh + 100px)) rotate(calc(var(--rotation, 45deg) + 180deg));
        opacity: 0;
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover,
.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

.slider-arrow:hover svg {
    stroke: #ED6D96;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ============================================
   Wave Connectors - Seamless Section Transitions
   ============================================ */
.wave-connector {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wave-connector svg {
    width: 100%;
    height: 120px;
    display: block;
    margin: -1px 0;
}


/* ============================================
   Section Tags
   ============================================ */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ED6D96 0%, #EF4A81 100%);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    color: #4E3227;
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: #fff;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    position: relative;
    padding: 80px 0;
    padding-top: 100px;
    background: #fff;
    overflow: hidden;
}

.about-bg-cake {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 900px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.about-bg-cake img {
    width: 100%;
    height: auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.about-text {
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #4E3227;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
}

.about-text p.highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ED6D96;
    font-style: italic;
    margin: 25px 0;
}

/* Light text variant for colored backgrounds */
.about-text.light h2 {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-text.light p {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.about-text.light p.highlight {
    color: #FFF9E6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Products Section - Blue Wave
   ============================================ */
.products-section {
    position: relative;
    padding: 80px 0;
    background: #55C5E9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.products-grid.products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background: transparent;
    overflow: visible;
    transition: all 0.4s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.product-card:hover .product-img {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    background-image:
        linear-gradient(#fff, #fff),
        linear-gradient(180deg, #ED6D96 0%, #FEB752 50%, #55C5E9 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(237, 109, 150, 0.15);
}

.product-img::after {
    content: '';
    position: absolute;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    background:
        radial-gradient(circle at 10% 20%, #fff 3px, transparent 3px),
        radial-gradient(circle at 25% 8%, #fff 4px, transparent 4px),
        radial-gradient(circle at 42% 5%, #fff 3px, transparent 3px),
        radial-gradient(circle at 58% 5%, #fff 4px, transparent 4px),
        radial-gradient(circle at 75% 8%, #fff 3px, transparent 3px),
        radial-gradient(circle at 90% 20%, #fff 4px, transparent 4px),
        radial-gradient(circle at 97% 35%, #fff 3px, transparent 3px),
        radial-gradient(circle at 98% 50%, #fff 4px, transparent 4px),
        radial-gradient(circle at 97% 65%, #fff 3px, transparent 3px),
        radial-gradient(circle at 90% 80%, #fff 4px, transparent 4px),
        radial-gradient(circle at 75% 92%, #fff 3px, transparent 3px),
        radial-gradient(circle at 58% 95%, #fff 4px, transparent 4px),
        radial-gradient(circle at 42% 95%, #fff 3px, transparent 3px),
        radial-gradient(circle at 25% 92%, #fff 4px, transparent 4px),
        radial-gradient(circle at 10% 80%, #fff 3px, transparent 3px),
        radial-gradient(circle at 3% 65%, #fff 4px, transparent 4px),
        radial-gradient(circle at 2% 50%, #fff 3px, transparent 3px),
        radial-gradient(circle at 3% 35%, #fff 4px, transparent 4px);
    pointer-events: none;
}

.product-img img {
    width: 90px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

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

.product-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ED6D96;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(237, 109, 150, 0.3);
}

.product-info {
    padding: 15px 10px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.product-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Bulk Sales Section
   ============================================ */
.bulk-section {
    position: relative;
    padding: 80px 0;
    background: #FFF9E6;
}

.bulk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bulk-info h2 {
    font-size: 2.5rem;
    color: #4E3227;
    margin-bottom: 20px;
}

.bulk-info > p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.bulk-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.bulk-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 2rem;
}

.bulk-feature strong {
    display: block;
    color: #4E3227;
    margin-bottom: 3px;
}

.bulk-feature span {
    font-size: 14px;
    color: #888;
}

.bulk-image {
    position: relative;
}

.bulk-image img {
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Dual Image Layout for Bulk Section */
.bulk-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bulk-image-item {
    position: relative;
    text-align: center;
}

.bulk-image-item img {
    width: 100%;
    max-width: 250px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bulk-image-item:first-child img {
    animation: float 5s ease-in-out infinite;
}

.bulk-image-item:last-child img {
    animation: float 5s ease-in-out infinite 0.5s;
}

.bulk-image-item:hover img {
    transform: scale(1.05);
}

.bulk-image-label {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: #4E3227;
}

.bulk-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #55C5E9 0%, #ED6D96 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    opacity: 0.2;
    animation: blob 8s ease-in-out infinite;
}

/* ============================================
   Delivery Section
   ============================================ */
.delivery-section {
    position: relative;
    padding: 80px 0;
    background: #ED6D96;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.delivery-character img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.delivery-info {
    color: #fff;
}

.delivery-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.delivery-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.delivery-info p.highlight {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 25px;
}

/* Delivery Options with Icons */
.delivery-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.delivery-option-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-option-icon svg {
    width: 30px;
    height: 30px;
    stroke: #fff;
}

.delivery-option-text h4 {
    font-size: 1.3rem;
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 700;
}

.delivery-option-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    position: relative;
    padding: 80px 0;
    background: #55C5E9;
}

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

.contact-info {
    color: #fff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-phone {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.contact-phone:hover {
    color: #FFF9E6;
}

.contact-email {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.contact-email:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #fff;
    transform: translateY(-3px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    transition: stroke 0.3s ease;
}

.social-link:hover svg {
    stroke: #ED6D96;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #55C5E9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    position: relative;
    background: #4E3227;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 18px;
    margin-bottom: 20px;
    color: #55C5E9;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #ED6D96;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-slider {
        min-height: 55vh;
    }

    .slider-container {
        height: calc(55vh - 80px);
        min-height: 420px;
    }

    .slide-left h1,
    .slide-right h1 {
        font-size: 3rem;
    }

    .slide-image img {
        max-height: 240px;
    }

    .slide-image::before {
        width: 280px;
        height: 280px;
    }

    .slide-image::after {
        width: 300px;
        height: 300px;
    }

    .slide-left .slide-tagline {
        max-width: 240px;
        font-size: 0.9rem;
    }

    .slide-left .slide-buttons .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .slide-bottom {
        bottom: 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-bg-cake {
        width: 600px;
        left: -200px;
    }

    .bulk-content,
    .delivery-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bulk-image {
        order: -1;
    }

    .bulk-image img,
    .delivery-character img {
        max-width: 350px;
        margin: 0 auto;
    }

    .bulk-images {
        order: -1;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .bulk-image-item img {
        max-width: 150px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-slider {
        min-height: auto;
        padding-bottom: 100px;
    }

    .slider-container {
        height: auto;
        min-height: 500px;
    }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding-top: 10px;
    }

    .slide-left,
    .slide-right {
        text-align: center;
        padding: 0;
    }

    /* On mobile, break slide-left into separate grid items so we can reorder */
    .slide-left {
        display: contents;
    }

    /* Wrap h1 in its own flow */
    .slide-left h1 {
        order: 1;
    }

    .slide-left .slide-tagline {
        order: 3;
        text-align: center;
        max-width: 100%;
    }

    .slide-left .slide-buttons {
        order: 4;
        justify-content: center;
    }

    .slide-left h1,
    .slide-right h1 {
        font-size: 2.5rem;
        display: inline;
    }

    .slide-center {
        order: 0;
    }

    .slide-right {
        order: 2;
    }

    .slide-right p {
        margin-top: 8px;
        font-size: 1rem;
    }

    .slide-image::before {
        width: 220px;
        height: 220px;
    }

    .slide-image::after {
        width: 240px;
        height: 240px;
    }

    .slide-center::before,
    .slide-center::after {
        font-size: 16px;
    }

    .slide-image img {
        max-height: 160px;
    }

    .slide-bottom {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        padding: 0 20px;
    }

    .slide-tagline {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .slide-buttons .btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    /* Disable entrance animations on mobile for performance */
    .slide.active .slide-left,
    .slide.active .slide-right,
    .slide.active .slide-center,
    .slide.active .slide-bottom,
    .slide.active .slide-left .slide-tagline,
    .slide.active .slide-left .slide-buttons {
        animation: none;
        opacity: 1;
    }

    .slider-nav {
        bottom: 30px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 15px;
    }

    .slider-next {
        right: 15px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .about-bg-cake {
        width: 400px;
        left: -150px;
        opacity: 0.08;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .bulk-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .social-links {
        justify-content: center;
        margin-bottom: 30px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slider-container {
        min-height: 420px;
    }

    .slide-left h1,
    .slide-right h1 {
        font-size: 2rem;
    }

    .slide-badge {
        padding: 8px 18px;
        font-size: 12px;
    }

    .slide-right p {
        font-size: 0.9rem;
    }

    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .slide-buttons .btn {
        padding: 12px 28px;
        font-size: 15px;
        width: 80%;
        max-width: 250px;
    }

    .slide-image img {
        max-height: 130px;
    }

    .slide-image::before {
        width: 180px;
        height: 180px;
    }

    .slide-image::after {
        width: 200px;
        height: 200px;
    }

    .slide-center::before,
    .slide-center::after {
        display: none;
    }

    .slide-tagline {
        font-size: 0.85rem;
        max-width: 100%;
    }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .about-text h2,
    .bulk-info h2,
    .delivery-info h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    /* Delivery Options Mobile */
    .delivery-option {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .delivery-option-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px;
    }

    .delivery-option-icon svg {
        width: 24px;
        height: 24px;
    }

    .delivery-option-text h4 {
        font-size: 1.1rem;
    }

    /* Reduce topping density on mobile */
    .topping:nth-child(n+20) {
        display: none;
    }

    /* Smaller toppings on mobile */
    .topping {
        transform: scale(0.7) !important;
    }
}

/* ============================================
   About Page Styles
   ============================================ */

/* Hero Banner */
.about-hero {
    position: relative;
    min-height: 45vh;
    background:
        linear-gradient(135deg, rgba(237, 109, 150, 0.85) 0%, rgba(85, 197, 233, 0.85) 100%),
        url('../images/centurionicecream-about-hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15) 0%, transparent 25%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 600;
}

.about-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.about-hero-wave svg {
    width: 100%;
    height: 80px;
}

/* About Sections */
.about-founder {
    background: #fff;
}

.about-new-generation {
    background: #55C5E9;
}

.about-message {
    background: #FFF9E6;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

/* Featured Image */
.about-image-feature {
    position: relative;
}

.feature-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 8px rgba(237, 109, 150, 0.1);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.feature-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.feature-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(78, 50, 39, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    margin-top: 20px;
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ED6D96, #EF4A81);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(237, 109, 150, 0.3);
}

.image-caption p {
    margin-top: 10px;
    color: #888;
    font-style: italic;
}

/* Timeline Visual */
.about-decorative {
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.timeline-item.active {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
}

.timeline-item.active .timeline-year {
    color: #ED6D96;
    text-shadow: none;
}

.timeline-event {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.timeline-item.active .timeline-event {
    color: #4E3227;
}

.timeline-line {
    width: 4px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Message Card */
.message-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.message-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #ED6D96, #EF4A81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(237, 109, 150, 0.3);
}

.message-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.message-card blockquote {
    margin: 0;
}

.message-card blockquote p {
    font-size: 1.4rem;
    color: #4E3227;
    line-height: 1.8;
    font-style: italic;
}

.message-signature {
    margin-top: 30px;
}

.signature-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ED6D96, #55C5E9);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.signature-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #ED6D96;
    margin-bottom: 5px;
}

.signature-title {
    color: #888;
    font-size: 0.95rem;
}

/* CTA Section */
.about-cta {
    background: #ED6D96;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Active nav link */
.nav-menu a.active {
    color: #ED6D96;
}

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

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 35vh;
        padding-top: 90px;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .about-image-feature {
        order: -1;
    }

    .feature-image-frame {
        transform: rotate(0deg);
    }

    .timeline-visual {
        width: 100%;
    }

    .timeline-item {
        width: 100%;
        max-width: 300px;
    }

    .message-card {
        padding: 30px 20px;
    }

    .message-card blockquote p {
        font-size: 1.15rem;
    }

    .about-cta h2 {
        font-size: 2rem;
    }
}

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

    .timeline-year {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 280px;
    }
}

/* ============================================
   Menu Page Styles
   ============================================ */

/* Menu Hero */
.menu-hero {
    position: relative;
    min-height: 40vh;
    background:
        linear-gradient(135deg, rgba(85, 197, 233, 0.9) 0%, rgba(237, 109, 150, 0.9) 100%),
        url('../images/centurionicecream-about-hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
}

.menu-hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.menu-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.menu-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.menu-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Menu Card */
.menu-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(237, 109, 150, 0.2);
}

.menu-card.featured {
    grid-column: span 2;
}

.menu-card.featured .menu-card-image {
    height: 280px;
}

.menu-card-image {
    height: 200px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEEF2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.menu-card-image img {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ED6D96;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-content {
    padding: 25px;
}

.menu-card-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #4E3227;
    margin-bottom: 10px;
}

.menu-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.menu-card-price {
    display: block;
    font-weight: 700;
    color: #ED6D96;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.menu-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #55C5E9;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.menu-card-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-cta {
    color: #ED6D96;
}

.menu-card:hover .menu-card-cta svg {
    transform: translateX(5px);
}

/* Dry Ice special styling */
.dry-ice-bg {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.dry-ice-icon {
    width: 100px;
    height: 100px;
}

.dry-ice-icon svg {
    width: 100%;
    height: 100%;
}

/* Featured CTA Section */
.menu-featured-cta {
    padding: 80px 0;
    background: #ED6D96;
}

.featured-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-cta-text {
    color: #fff;
}

.featured-cta-text h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.featured-cta-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 1rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #ED6D96;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
}

.featured-cta-image {
    text-align: center;
}

.featured-cta-image img {
    max-width: 100%;
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 4s ease-in-out infinite;
}

/* ============================================
   Ice Cream Cake Wizard Page Styles
   ============================================ */

/* Cake Hero */
.cake-hero {
    position: relative;
    min-height: 40vh;
    background:
        linear-gradient(135deg, rgba(237, 109, 150, 0.9) 0%, rgba(85, 197, 233, 0.9) 100%),
        url('../images/centurionicecream-about-hero-bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}

.cake-hero-content {
    position: relative;
    z-index: 2;
}

.cake-hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cake-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.cake-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1;
}

.cake-hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Wizard Section */
.wizard-section {
    padding: 60px 0 80px;
    background: #fff;
}

.wizard-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Bar */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard-step-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
}

.wizard-step-badge.active {
    background: #ED6D96;
    color: #fff;
    border-color: #ED6D96;
    box-shadow: 0 0 0 6px rgba(237, 109, 150, 0.2);
}

.wizard-step-badge.completed {
    background: #55C5E9;
    color: #fff;
    border-color: #55C5E9;
}

.wizard-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-step-badge.active + .wizard-step-label {
    color: #ED6D96;
}

/* Step Content */
.wizard-step-content {
    background: #fafafa;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.step-content-hidden {
    display: none !important;
}

.wizard-step-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #4E3227;
    margin-bottom: 25px;
}

.step-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Size Selection */
.size-selection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.size-option {
    padding: 30px;
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.size-option:hover {
    border-color: #ED6D96;
    box-shadow: 0 8px 25px rgba(237, 109, 150, 0.15);
    transform: translateY(-3px);
}

.size-option.selected {
    border-color: #ED6D96;
    background: rgba(237, 109, 150, 0.05);
}

.size-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.size-icon.large {
    width: 100px;
    height: 100px;
}

.size-icon svg {
    width: 100%;
    height: 100%;
}

.size-icon-rectangular {
    width: 100px;
    height: 70px;
    margin: 0 auto 15px;
}

.size-icon-rectangular.large {
    width: 130px;
    height: 85px;
}

.size-icon-rectangular svg {
    width: 100%;
    height: 100%;
}

.size-option h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    color: #4E3227;
    margin-bottom: 10px;
}

.size-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.size-option .price {
    display: block;
    margin-top: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ED6D96;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #4E3227;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group input[type="text"],
.form-group input[type="file"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ED6D96;
    box-shadow: 0 0 0 4px rgba(237, 109, 150, 0.1);
}

.form-hint {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

/* Color Grid */
.color-grid-circles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.color-circle-option,
.icing-color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.color-circle-option:hover,
.icing-color-option:hover {
    background: rgba(237, 109, 150, 0.05);
    transform: scale(1.05);
}

.color-circle-option.selected,
.icing-color-option.selected {
    border-color: #ED6D96;
    background: rgba(237, 109, 150, 0.08);
}

.color-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-circle-option.selected .color-circle,
.icing-color-option.selected .color-circle {
    box-shadow: 0 0 0 4px #ED6D96;
    transform: scale(1.1);
}

.color-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* Colour List Grid (text-only colour selection) */
.colour-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
}

.colour-list-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #eee;
    background: #fff;
}

.colour-list-option:hover {
    background: rgba(237, 109, 150, 0.05);
    border-color: #ED6D96;
}

.colour-list-option input[type="radio"],
.colour-list-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ED6D96;
    cursor: pointer;
}

.colour-list-option:has(input:checked) {
    border-color: #ED6D96;
    background: rgba(237, 109, 150, 0.08);
}

.colour-list-label {
    font-weight: 600;
    color: #4E3227;
    font-size: 0.95rem;
}

/* Icing colour specific styles */
.icing-colours .colour-list-option.max-reached:not(:has(input:checked)) {
    opacity: 0.5;
    pointer-events: none;
}

/* Icing Colours Side-by-Side Layout */
.icing-colours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .icing-colours-layout {
        grid-template-columns: 1fr;
    }
}

/* Colour Chart Reference Image */
.colour-chart-reference {
    text-align: center;
    position: sticky;
    top: 90px; /* Below the fixed header */
}

.colour-chart-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.colour-chart-image:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.colour-chart-hint {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}

/* Colour Chart Lightbox */
.colour-chart-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.colour-chart-lightbox.active {
    display: flex;
}

.colour-chart-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.colour-chart-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.colour-chart-close:hover {
    color: #ED6D96;
}

/* Adjust colour list grid within side-by-side layout */
.icing-colours-layout .colour-list-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.color-circle-option.selected .color-name,
.icing-color-option.selected .color-name {
    color: #ED6D96;
}

/* Candle Numbers Grid */
.candle-numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.candle-number-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4E3227;
    cursor: pointer;
    transition: all 0.3s ease;
}

.candle-number-btn:hover {
    border-color: #ED6D96;
    color: #ED6D96;
}

.candle-number-btn.selected {
    background: #ED6D96;
    border-color: #ED6D96;
    color: #fff;
}

/* Special Request Block */
.special-request-block {
    background: linear-gradient(135deg, #55C5E9 0%, #4AB8DC 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    color: #fff;
}

.special-request-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.special-request-icon {
    font-size: 1.5rem;
}

.special-request-header h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.special-request-intro {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.95;
}

.special-request-block .form-group label {
    color: #fff;
}

.special-request-block textarea {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #4E3227;
}

.special-request-block textarea::placeholder {
    color: #888;
}

/* Proof Approval Notice */
.proof-approval-notice {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEEF2 100%);
    border: 2px solid #ED6D96;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 25px;
    text-align: center;
}

.proof-approval-notice strong {
    color: #ED6D96;
    font-size: 1.1rem;
}

/* Serving Note */
.serving-note {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 5px;
}

/* No Ribbon Option Highlight */
.no-ribbon-option {
    border-color: #55C5E9;
    background: rgba(85, 197, 233, 0.05);
}

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover,
.checkbox-option:hover {
    border-color: #ED6D96;
}

.radio-option input,
.checkbox-option input {
    width: 18px;
    height: 18px;
    accent-color: #ED6D96;
}

/* Order Summary */
.order-summary {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item strong {
    color: #4E3227;
}

.summary-item span {
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    margin-top: 15px;
    border-top: 3px solid #ED6D96;
}

.summary-total strong {
    font-size: 1.2rem;
    color: #4E3227;
}

.summary-total span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ED6D96;
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.wizard-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wizard-nav-btn svg {
    width: 20px;
    height: 20px;
}

.wizard-nav-btn.prev {
    background: #f0f0f0;
    color: #666;
}

.wizard-nav-btn.prev:hover {
    background: #e0e0e0;
}

.wizard-nav-btn.next,
.wizard-nav-btn.submit {
    background: linear-gradient(135deg, #ED6D96 0%, #55C5E9 100%);
    color: #fff;
    margin-left: auto;
}

.wizard-nav-btn.next:hover,
.wizard-nav-btn.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 109, 150, 0.3);
}

.wizard-nav-btn.whatsapp-order {
    background: #25D366;
    color: #fff;
}
.wizard-nav-btn.whatsapp-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.wizard-nav-btn.whatsapp-order svg {
    width: 20px;
    height: 20px;
}

.design-inspiration-banner {
    background: linear-gradient(135deg, #FFF9E6, #fff);
    border: 2px solid #ED6D96;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.design-inspiration-banner .inspiration-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.design-inspiration-banner .inspiration-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.design-inspiration-banner .inspiration-icon {
    color: #ED6D96;
    flex-shrink: 0;
}
.design-inspiration-banner strong {
    color: #4E3227;
    display: block;
    font-size: 0.9rem;
}
.design-inspiration-banner .inspiration-detail {
    color: #ED6D96;
    font-weight: 700;
    font-size: 0.95rem;
}
.design-inspiration-banner .inspiration-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E4405F;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(228, 64, 95, 0.1);
    transition: background 0.3s;
}
.design-inspiration-banner .inspiration-link:hover {
    background: rgba(228, 64, 95, 0.2);
}
.design-inspiration-banner .inspiration-link svg {
    width: 16px;
    height: 16px;
}

/* Menu Page Responsive */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-card.featured {
        grid-column: span 2;
    }

    .featured-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-cta-image img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-hero-content h1 {
        font-size: 2.5rem;
    }

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

    .menu-card.featured {
        grid-column: span 1;
    }

    .menu-card.featured .menu-card-image {
        height: 200px;
    }

    .featured-cta-text h2 {
        font-size: 2rem;
    }

    /* Wizard Responsive */
    .wizard-progress {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .wizard-progress::before {
        display: none;
    }

    .wizard-step {
        flex: 0 0 auto;
    }

    .wizard-step-badge {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .wizard-step-label {
        font-size: 0.65rem;
    }

    .wizard-step-content {
        padding: 25px;
    }

    .size-selection {
        grid-template-columns: 1fr;
    }

    .color-grid-circles {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .color-circle {
        width: 50px;
        height: 50px;
    }

    .wizard-navigation {
        flex-direction: column;
    }

    .wizard-nav-btn {
        width: 100%;
        justify-content: center;
    }

    .wizard-nav-btn.next,
    .wizard-nav-btn.submit {
        margin-left: 0;
    }
}

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

    .color-grid-circles {
        grid-template-columns: repeat(3, 1fr);
    }

    .candle-number-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}
