/* ============================================
   Centurion Ice Cream — Corporate Identity
   (Reskinned 2026-04-30 from Milky-Lane-style palette
   to CIC original brand using values from the WP backup
   restored at centurion-old.easymail.co.za.)

   Palette (CIC):
   - Pink:       #d6388b   (primary — cake category, hero accent)
   - Pink dark:  #c63880   (hover, headings on pink bg)
   - Coral:      #ff919d   (light pink accent)
   - Turquoise:  #05e0e9   (dry-ice category, "Let's Talk")
   - Purple:     #c729b7   (ice-cream category — confirm with Nicky)
   - Blue:       #004aad   (party-pack category)
   - Gold:       #d4af37   (highlights, CTAs — confirm with Nicky)
   - Navy:       #01062a   (deep backgrounds)
   - White:      #ffffff
   - Light grey: #f4f4f4   (neutral surfaces, replaces former cream)

   Fonts:
   - Body:       'Nunito'
   - Headings:   'Fredoka One' (will move to a CIC-spec font on Nicky's call)
   - Handwriting:'Allura'      (for taglines, About greeting, "Our Delights" intro)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

:root {
    --cic-pink:       #d6388b;
    --cic-pink-dark:  #c63880;
    --cic-coral:      #ff919d;
    --cic-turquoise:  #05e0e9;
    --cic-purple:     #c729b7;
    --cic-blue:       #004aad;
    --cic-gold:       #d4af37;
    --cic-navy:       #01062a;
    --cic-grey:       #f4f4f4;
    --cic-grey-text:  #424242;

    /* Legacy aliases — every former Milky-Lane swatch now points to a CIC
       value. Lets us flip the brand later by editing this block alone. */
    --ml-pink:        var(--cic-pink);
    --ml-cyan:        var(--cic-turquoise);
    --ml-coral:       var(--cic-pink-dark);
    --ml-mint:        var(--cic-turquoise);
}

/* 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: var(--cic-grey-text);
    background: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;     /* Nicky #3 — headings bold + CAPS */
    letter-spacing: 0.5px;
}

/* Handwriting helper — for taglines, About signoff, Our Delights intro */
.handwriting,
.cic-handwriting {
    font-family: 'Allura', cursive;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.3;
}

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: #d6388b; }
.text-cyan { color: #05e0e9; }
.text-peach { color: #d4af37; }
.text-mint { color: #05e0e9; }
.text-coral { color: #c63880; }

/* ============================================
   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, #d6388b 0%, #c63880 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(214, 56, 139, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 56, 139, 0.5);
}

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

/* ============================================
   Announcement Banner
   ============================================ */
.announcement-banner {
    background: linear-gradient(135deg, #d6388b 0%, #c63880 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: 80px;            /* Nicky #1 — logo bumped up from 50→80px on desktop. */
    width: auto;
    max-width: 320px;
    transition: height 0.2s ease;
}
@media (max-width: 768px) {
    .logo-img { height: 60px; }
}

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

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

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

.nav-menu a {
    font-weight: 600;
    color: #424242;
    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: #d6388b;
    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: #424242;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    min-height: 60vh;
    background: var(--cic-pink);
    overflow: visible;
    padding-top: 100px;
    padding-bottom: 120px;
    /* Nicky #8 — wave divider removed; use a clean straight section edge. */
}

.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 {
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
    color: #fff;
    /* Two-shadow stack: a tight dark drop for crisp edges + a softer
       glow that lifts the title off the solid CIC colour. Works on
       any of the four slide colours (pink/purple/blue/turquoise). */
    text-shadow:
        0 2px 0   rgba(0, 0, 0, 0.25),
        0 6px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    font-weight: 700;
}

/* Eyebrow on the left ("ICE CREAM") — smaller, lighter weight. */
.slide-left h1 {
    font-size: 2.6rem;
    opacity: 0.95;
    letter-spacing: 1px;
}

/* Primary on the right ("CAKES") — big and confident, the main label. */
.slide-right h1 {
    font-size: 4.2rem;
    font-weight: 800;
}

/* Solid white on solid CIC colour — no text-stroke needed. The
   coloured-text + outline trick was designed for a gradient backdrop. */
.slide-right h1 span {
    position: relative;
    color: var(--cic-gold);
}

/* Decorative underline swoosh kept but recoloured to CIC gold so it
   reads as a brand accent on every slide colour. */
.slide-right h1 span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cic-gold);
    border-radius: 4px;
    opacity: 0.85;
}

.slide-right p {
    font-size: 1.15rem;
    opacity: 1;
    margin-top: 18px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    background: rgba(0, 0, 0, 0.18);
    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, #d6388b, #ff919d);
    animation-duration: 5s;
}
[data-toppings="decorations"] .topping:nth-child(5n+2) {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #05e0e9, #aedcff);
    animation-duration: 6s;
}
[data-toppings="decorations"] .topping:nth-child(5n+3) {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37, #d4af37);
    animation-duration: 5.5s;
}
[data-toppings="decorations"] .topping:nth-child(5n+4) {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #05e0e9, #05e0e9);
    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, #d6388b, #c63880);
    animation-duration: 3.5s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+2) {
    background: linear-gradient(180deg, #05e0e9, #05e0e9);
    animation-duration: 4s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+3) {
    background: linear-gradient(180deg, #d4af37, #d4af37);
    animation-duration: 3.3s;
}
[data-toppings="sprinkles"] .topping:nth-child(6n+4) {
    background: linear-gradient(180deg, #05e0e9, #05e0e9);
    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, #c63880, #c63880);
    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, #01062a 0%, #424242 100%);
    animation-duration: 4s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+2) {
    width: 18px;
    height: 26px;
    background: linear-gradient(180deg, #424242 0%, #01062a 100%);
    animation-duration: 4.5s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+3) {
    width: 12px;
    height: 18px;
    background: linear-gradient(180deg, #424242 0%, #424242 100%);
    animation-duration: 3.8s;
}
[data-toppings="chocolate"] .topping:nth-child(4n+4) {
    width: 16px;
    height: 22px;
    background: linear-gradient(180deg, #01062a 0%, #01062a 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, #d6388b 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%, #d4af37, #d4af37);
    animation-duration: 4s;
}
[data-toppings="sweets"] .topping:nth-child(7n+3) {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #05e0e9 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%, #05e0e9, #05e0e9);
    animation-duration: 4.3s;
}
[data-toppings="sweets"] .topping:nth-child(7n+5) {
    width: 26px;
    height: 26px;
    background:
        repeating-linear-gradient(45deg, #d6388b, #d6388b 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%, #ff919d, #c63880);
    animation-duration: 3.8s;
}
[data-toppings="sweets"] .topping:nth-child(7n+7) {
    width: 22px;
    height: 22px;
    background:
        repeating-linear-gradient(-45deg, #05e0e9, #05e0e9 4px, #d4af37 4px, #d4af37 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: #d6388b;
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ============================================
   Section dividers — straight-edge per Nicky 2026-04-30 #8.
   The .wave-connector class is kept (some pages still
   reference it) but the SVG is hidden so transitions
   are clean horizontal lines.
   ============================================ */
.wave-connector,
.about-hero-wave,
.menu-hero-wave,
.cake-hero-wave {
    display: none !important;
}


/* ============================================
   Section Tags
   ============================================ */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #d6388b 0%, #c63880 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: #424242;
    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: #424242;
    margin-bottom: 20px;
}

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

.about-text p.highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d6388b;
    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: #f4f4f4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Products Section - Blue Wave
   ============================================ */
.products-section {
    position: relative;
    padding: 80px 0;
    /* Nicky #10 — section background CIC purple, with the existing
       white "frilled" circles holding the product icons. */
    background: var(--cic-purple);
}

.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, #d6388b 0%, #d4af37 50%, #05e0e9 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 15px rgba(214, 56, 139, 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: #d6388b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(214, 56, 139, 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: #f4f4f4;
}

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

.bulk-info h2 {
    font-size: 2.5rem;
    color: #424242;
    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: #424242;
    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: #424242;
}

.bulk-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #05e0e9 0%, #d6388b 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: #d6388b;
}

.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: #05e0e9;
}

.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: #f4f4f4;
}

.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: #d6388b;
}

/* 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: #05e0e9;
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    position: relative;
    background: #424242;
    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: #05e0e9;
}

.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: #d6388b;
}

.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;
    /* Nicky 2026-04-30 About #1 — restore the "old website black & white"
       hero. The pink/cyan gradient overlay from the previous theme is
       replaced with a dark veil + greyscale filter on the underlying
       photo so any colour heritage image renders monochrome. */
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('../images/centurionicecream-background-children-ice-cream-truck-colour-first photo.jpg') center center / cover no-repeat;
    background-blend-mode: luminosity, normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
    overflow: hidden;
    color: #fff;
}
.about-hero h1, .about-hero h2 { color: #fff; }
.about-hero .section-tag { background: rgba(255,255,255,0.18); color: #fff; }

.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: #05e0e9;
}

.about-message {
    background: #f4f4f4;
}

/* 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(214, 56, 139, 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(66, 66, 66, 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, #d6388b, #c63880);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(214, 56, 139, 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: #fff;
    border: 2px solid var(--cic-pink);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: var(--cic-pink);
    transform: scale(1.05);
}

.timeline-item:hover .timeline-year,
.timeline-item:hover .timeline-event {
    color: #fff;
}

.timeline-item.active {
    background: var(--cic-pink);
    border-color: var(--cic-pink);
    box-shadow: 0 15px 40px rgba(214, 56, 139, 0.25);
}

.timeline-year {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--cic-pink);
    text-shadow: none;
}

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

.timeline-event {
    font-weight: 700;
    color: var(--cic-grey-text);
    margin-top: 5px;
}

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

.timeline-line {
    width: 4px;
    height: 40px;
    background: var(--cic-pink);
    opacity: 0.4;
    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, #d6388b, #c63880);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(214, 56, 139, 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: #424242;
    line-height: 1.8;
    font-style: italic;
}

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

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

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

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

/* CTA Section */
.about-cta {
    background: #d6388b;
    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: #d6388b;
}

.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(5, 224, 233, 0.9) 0%, rgba(214, 56, 139, 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(214, 56, 139, 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, #f4f4f4 0%, #fde6f1 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: #d6388b;
    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: #424242;
    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: #d6388b;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.menu-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #05e0e9;
    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: #d6388b;
}

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

/* Dry Ice special styling */
.dry-ice-bg {
    background: linear-gradient(135deg, #e8f9fb 0%, #aedcff 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: #d6388b;
}

.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: #d6388b;
    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(214, 56, 139, 0.9) 0%, rgba(5, 224, 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: #d6388b;
    color: #fff;
    border-color: #d6388b;
    box-shadow: 0 0 0 6px rgba(214, 56, 139, 0.2);
}

.wizard-step-badge.completed {
    background: #05e0e9;
    color: #fff;
    border-color: #05e0e9;
}

.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: #d6388b;
}

/* 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: #424242;
    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: #d6388b;
    box-shadow: 0 8px 25px rgba(214, 56, 139, 0.15);
    transform: translateY(-3px);
}

.size-option.selected {
    border-color: #d6388b;
    background: rgba(214, 56, 139, 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: #424242;
    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: #d6388b;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    color: #424242;
    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: #d6388b;
    box-shadow: 0 0 0 4px rgba(214, 56, 139, 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(214, 56, 139, 0.05);
    transform: scale(1.05);
}

.color-circle-option.selected,
.icing-color-option.selected {
    border-color: #d6388b;
    background: rgba(214, 56, 139, 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 #d6388b;
    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(214, 56, 139, 0.05);
    border-color: #d6388b;
}

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

.colour-list-option:has(input:checked) {
    border-color: #d6388b;
    background: rgba(214, 56, 139, 0.08);
}

.colour-list-label {
    font-weight: 600;
    color: #424242;
    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: #d6388b;
}

/* 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: #d6388b;
}

/* 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: #424242;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Special Request Block */
.special-request-block {
    background: linear-gradient(135deg, #05e0e9 0%, #05e0e9 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: #424242;
}

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

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

.proof-approval-notice strong {
    color: #d6388b;
    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: #05e0e9;
    background: rgba(5, 224, 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: #d6388b;
}

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

/* 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: #424242;
}

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

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

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

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

/* 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, #d6388b 0%, #05e0e9 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(214, 56, 139, 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, #f4f4f4, #fff);
    border: 2px solid #d6388b;
    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: #d6388b;
    flex-shrink: 0;
}
.design-inspiration-banner strong {
    color: #424242;
    display: block;
    font-size: 0.9rem;
}
.design-inspiration-banner .inspiration-detail {
    color: #d6388b;
    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;
    }
}

/* ============================================
   CIC corporate identity — added 2026-04-30 per Nicky
   ============================================ */

/* #4 — per-product hero slide backgrounds. Watermark icons
   added when the asset PNGs land from CIC. Until then,
   plain CIC colour per category. Gourmet Desserts is being
   removed everywhere (Nicky #4 + Delights #4). */
.slide[data-toppings="decorations"]   { background: var(--cic-pink); }      /* Ice Cream Cakes */
.slide[data-toppings="sprinkles"]     { background: var(--cic-purple); }    /* Ice Cream */
.slide[data-toppings="confetti"]      { background: var(--cic-blue); }      /* Party Packs */
.slide[data-toppings="ice-cubes"]     { background: var(--cic-turquoise); } /* Dry Ice */
.slide[data-toppings="chocolate"]     { display: none !important; }         /* Gourmet Desserts removed */

/* #2 — cart link in the main nav (icon + count badge). */
.nav-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cic-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nav-cart-link i { font-size: 18px; }
.nav-cart-link:hover { color: var(--cic-pink-dark); }
.nav-cart-count {
    background: var(--cic-gold);
    color: var(--cic-navy);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 999px;
    min-width: 20px;
    text-align: center;
    display: none;
}
.nav-cart-count.has-items { display: inline-block; }

/* #11 — "We've got you covered" — handwritten font tagline at the bottom */
.coverage-tagline {
    font-family: 'Allura', cursive;
    font-size: 2.2rem;
    text-transform: none;
    color: var(--cic-pink);
    text-align: center;
    margin-top: 18px;
    letter-spacing: 0;
    line-height: 1.2;
}

/* #12 — "Let's Talk" CTA on contact section */
.lets-talk,
.cta-lets-talk {
    background: var(--cic-turquoise);
    color: #fff;
}

/* #13 — contact details strip: white background + CIC pink wave accents.
   The page-level wave connectors stay hidden; this is just a thin
   divider line above and below the contact details. */
.contact-section,
.contact-details {
    background: #fff;
    color: var(--cic-grey-text);
    border-top: 3px solid var(--cic-pink);
    border-bottom: 3px solid var(--cic-pink);
}

/* About greeting helper (Allura) — the .about-hero rule itself lives
   higher up in the file (line ~2073) so it's the single source of
   truth for the hero look. */
.about-hero .about-greeting {
    font-family: 'Allura', cursive;
    font-size: 2.4rem;
    text-transform: none;
    color: var(--cic-gold);
    letter-spacing: 0;
    margin-top: 18px;
}

/* #3 of About — replace cream surfaces with light grey */
.about-section,
.about-founder,
.about-new-generation {
    background: var(--cic-grey);
    color: var(--cic-grey-text);
}

/* #7 — frilled-circle helper. Until the CIC frilled SVG arrives, fall back
   to a soft pink scalloped border using radial gradient. Drop the SVG into
   /images/cic-frilled-circle.svg and add it as background-image to swap. */
.product-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px dashed var(--cic-pink);   /* placeholder — CIC frilled circle to follow */
    box-shadow: 0 6px 20px rgba(214, 56, 139, 0.18);
}

/* Hide Bulk Sales globally per Nicky's instruction (page itself is
   replaced with a "coming back" notice; this hides any leftover links). */
a[href*="bulk-sales"] { display: none !important; }

/* Gourmet Desserts links/cards hidden everywhere */
a[href*="gourmet"],
.delight-card[data-category="gourmet"] {
    display: none !important;
}

/* ============================================
   Per-category circle borders for the home Our Delights section.
   Section bg is CIC purple; circles inherit a different CIC colour
   per category so the row reads as pink / gold / blue / turquoise
   against the purple — Nicky 2026-04-30 #10. The white circle
   interior is preserved (the existing `.product-img` rule); only
   the gradient border is overridden.
   ============================================ */
.products-section .product-card[data-category="cake"]       .product-img::before { background-image: linear-gradient(#fff, #fff), linear-gradient(180deg, var(--cic-pink) 0%,      var(--cic-pink-dark) 100%); }
.products-section .product-card[data-category="ice-cream"]  .product-img::before { background-image: linear-gradient(#fff, #fff), linear-gradient(180deg, var(--cic-gold) 0%,      #f0c75e 100%); }
.products-section .product-card[data-category="party-pack"] .product-img::before { background-image: linear-gradient(#fff, #fff), linear-gradient(180deg, var(--cic-blue) 0%,      #2a6fd9 100%); }
.products-section .product-card[data-category="dry-ice"]    .product-img::before { background-image: linear-gradient(#fff, #fff), linear-gradient(180deg, var(--cic-turquoise) 0%, #4ad6ec 100%); }

/* Ensure the title + handwriting tagline read clearly on the purple
   section. White headings, slightly muted handwriting beneath. */
.products-section .product-info h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-top: 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.products-section .product-info .cic-handwriting {
    color: #ffe9f6;
    font-size: 1.4rem;
    margin-top: 4px;
}

/* About hero — force grayscale on the underlying image so the "old
   site B&W" treatment Nicky asked for works regardless of the image
   we drop in. The dark gradient overlay is preserved. */
.about-hero {
    filter: none;        /* don't grey-out the overlay text */
}
.about-hero {
    background-blend-mode: luminosity;  /* desaturates the underlying image */
}

/* Gallery + cake-page CTA — replace the old purple→teal gradient that
   leaked through from the previous theme with a clean CIC pink panel. */
.menu-featured-cta,
.about-cta,
.gallery-cta,
.cake-cta {
    background: var(--cic-pink) !important;
    color: #fff;
}
.menu-featured-cta h2,
.about-cta h2,
.gallery-cta h2,
.cake-cta h2 { color: #fff; }
.menu-featured-cta .btn-primary,
.about-cta .btn-primary,
.gallery-cta .btn-primary,
.cake-cta .btn-primary {
    background: var(--cic-gold);
    color: var(--cic-navy);
    border: 0;
}
/* ============================================
   PHASE 1.5 — full CIC corporate identity layer.
   Appended 2026-04-30 by Dylan after Nicky + user
   feedback. Overrides earlier rushed swaps.
   ============================================ */

/* ---------- 1. Per-slide hero solid CIC colour + watermark icon ---------- */
.hero-slider .slide                                    { background: var(--cic-pink); }
.hero-slider .slide[data-slide="1"]                    { background: var(--cic-pink); }
.hero-slider .slide[data-slide="2"]                    { background: var(--cic-purple); }
.hero-slider .slide[data-slide="3"]                    { background: var(--cic-turquoise); }
.hero-slider .slide[data-slide="4"]                    { background: var(--cic-blue); }

.hero-slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: 50% 55%;
    background-size: 70% auto;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}
.hero-slider .slide[data-slide="1"]::before { background-image: url(../images/cic-icon-cake.png); }
.hero-slider .slide[data-slide="2"]::before { background-image: url(../images/cic-icon-ice-cream.png); }
.hero-slider .slide[data-slide="3"]::before { background-image: url(../images/cic-icon-dry-ice.png); }
.hero-slider .slide[data-slide="4"]::before { background-image: url(../images/cic-icon-party-pack.png); }

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

/* ---------- 2. Frilled circle around the hero centre photo ---------- */
.hero-slider .slide-image {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
    background-image: url(../images/cic-frilled-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.15));
}
.hero-slider .slide-image img {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .hero-slider .slide-image { width: 240px; height: 240px; }
}

/* ---------- 3. Floating side icons (decorative) ---------- */
.hero-slider .slide .floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    animation: cicFloat 6s ease-in-out infinite;
}
.hero-slider .slide .floating-icon.fi-1 { top: 12%;  left: 6%;   animation-delay: 0s; }
.hero-slider .slide .floating-icon.fi-2 { top: 65%;  left: 4%;   animation-delay: 1.5s; }
.hero-slider .slide .floating-icon.fi-3 { top: 18%;  right: 8%;  animation-delay: 0.8s; }
.hero-slider .slide .floating-icon.fi-4 { top: 70%;  right: 6%;  animation-delay: 2.2s; }
@keyframes cicFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%     { transform: translateY(-14px) rotate(-3deg); }
}
.hero-slider .slide[data-slide="1"] .floating-icon { background-image: url(../images/cic-icon-cake.png); filter: invert(1); }
.hero-slider .slide[data-slide="2"] .floating-icon { background-image: url(../images/cic-icon-ice-cream.png); filter: invert(1); }
.hero-slider .slide[data-slide="3"] .floating-icon { background-image: url(../images/cic-icon-dry-ice.png); filter: invert(1); }
.hero-slider .slide[data-slide="4"] .floating-icon { background-image: url(../images/cic-icon-party-pack.png); filter: invert(1); }
@media (max-width: 768px) {
    .hero-slider .slide .floating-icon { width: 42px; height: 42px; opacity: 0.45; }
}

/* ---------- 4. Hero typography tightened so there's no empty band ---------- */
.hero-slider {
    min-height: clamp(560px, 78vh, 740px);
    height: auto;
    padding: 60px 0 80px;
}
.hero-slider .slide-content {
    min-height: clamp(440px, 60vh, 600px);
    align-items: center;
}
.hero-slider .slide-tagline {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 320px;
}
.hero-slider .slide-right p {
    color: rgba(255,255,255,0.95);
    font-family: 'Allura', cursive;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-top: 6px;
    max-width: 320px;
}
.hero-slider .slide-right h1 {
    font-size: 4.6rem;
    line-height: 1.0;
    color: #fff;
}
.hero-slider .slide-right h1 span {
    color: var(--cic-gold);
    position: relative;
}
.hero-slider .slide-right h1 span::after {
    content: "";
    display: block;
    width: 70%;
    height: 5px;
    background: var(--cic-gold);
    border-radius: 3px;
    margin-top: 6px;
}
.hero-slider .slide-left h1 {
    font-size: 2.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    margin-bottom: 12px;
}

/* ---------- 5. Our Delights — frilled-circle photo frame in 4 CIC colours ---------- */
.products-section { background: var(--cic-purple); padding: 80px 0; }
.products-section .product-img,
.products-section .product-img::before { background: transparent !important; border: 0 !important; }
.products-section .product-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/cic-frilled-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.products-section .product-img img {
    max-width: 60%;
    max-height: 60%;
    width: auto; height: auto;
    object-fit: contain;
}
.products-section .product-card {
    background: transparent;
    box-shadow: none;
    text-align: center;
    color: #fff;
}
.products-section .product-card h3,
.products-section .product-card .cic-handwriting { color: #fff !important; }

/* Tint the frilled-circle ring per category by overlaying a colored mask */
/* Per-category frilled-circle colour — direct SVG variants (no hue-rotate). */
.products-section .product-card[data-category="cake"]       .product-img { background-image: url(../images/cic-frilled-pink.svg); }
.products-section .product-card[data-category="ice-cream"]  .product-img { background-image: url(../images/cic-frilled-gold.svg); }
.products-section .product-card[data-category="party-pack"] .product-img { background-image: url(../images/cic-frilled-blue.svg); }
.products-section .product-card[data-category="dry-ice"]    .product-img { background-image: url(../images/cic-frilled-turquoise.svg); }
.products-section .product-card .product-img::after { content: none; }

/* product-img hover lift */
.products-section .product-card:hover .product-img {
    transform: translateY(-6px);
    transition: transform 0.3s ease;
}

/* ---------- 6. Let's Talk — turquoise community bar (Nicky #12) ---------- */
.cic-talk-bar {
    background: var(--cic-turquoise);
    padding: 40px 0;
    color: #fff;
}
.cic-talk-bar .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.cic-talk-bar h3 {
    color: #fff;
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin: 0 0 6px;
    text-transform: uppercase;
}
.cic-talk-bar .talk-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
}
.cic-talk-bar .talk-phone svg { width: 28px; height: 28px; }
.cic-talk-bar .talk-cta { text-align: right; }
.cic-talk-bar .talk-cta-form {
    display: inline-flex;
    gap: 0;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    padding: 4px;
    max-width: 420px;
    width: 100%;
}
.cic-talk-bar .talk-cta-form input {
    flex: 1;
    border: 0;
    padding: 10px 18px;
    font-size: 0.95rem;
    background: transparent;
    color: var(--cic-navy);
    outline: none;
}
.cic-talk-bar .talk-cta-form button {
    background: var(--cic-pink);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .cic-talk-bar .container { grid-template-columns: 1fr; text-align: center; }
    .cic-talk-bar .talk-cta { text-align: center; }
}

/* ---------- 7. Footer-CTA — white block (logo / contact / links / partners) (Nicky #13) ---------- */
.cic-footer-cta {
    background: #fff;
    padding: 60px 0 0;
}
.cic-footer-cta .footer-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    color: var(--cic-navy);
}
.cic-footer-cta .footer-cta-logo img { width: 180px; height: auto; }
.cic-footer-cta h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--cic-pink);
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.cic-footer-cta a { color: var(--cic-navy); text-decoration: none; }
.cic-footer-cta a:hover { color: var(--cic-pink); }
.cic-footer-cta .partners-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.cic-footer-cta .partners-row img { max-height: 60px; width: auto; }
.cic-footer-cta .footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: var(--cic-navy);
    font-size: 0.95rem;
}
.cic-footer-cta .footer-contact-row .icon-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--cic-pink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cic-footer-cta .footer-contact-row svg { width: 16px; height: 16px; }
.cic-footer-cta .cic-wave-strip {
    margin-top: 50px;
    width: 100%;
    height: 110px;
    background-image: url(../images/cic-wave-bottom.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .cic-footer-cta .footer-cta-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .cic-footer-cta .footer-cta-logo img { margin: 0 auto; display: block; }
    .cic-footer-cta .footer-contact-row { justify-content: center; }
    .cic-footer-cta .partners-row { justify-content: center; }
    .cic-footer-cta .cic-wave-strip { height: 70px; }
}

/* ---------- 8. Contact form section — kill empty-space layout, centre form ---------- */
.contact-section {
    background: var(--cic-pink);
    padding: 70px 0;
    color: #fff;
}
.contact-section .contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 24px;
}
.contact-section .contact-info h2 { color: #fff; margin: 6px 0 18px; }
.contact-section .contact-phone, .contact-section .contact-email {
    display: block; color: #fff; text-decoration: none; font-size: 1.1rem; margin-bottom: 8px;
}
.contact-section .contact-form input,
.contact-section .contact-form textarea {
    background: rgba(255,255,255,0.95);
}
@media (max-width: 768px) {
    .contact-section .contact-content { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* ---------- 9. About — Nicky/Riaan signature in CIC handwriting + plain-colour blocks → light grey ---------- */
.about-section .author-name,
.about-section .signature,
.about-section .quote-author {
    font-family: 'Allura', cursive;
    font-size: 2rem;
    color: var(--cic-pink);
    line-height: 1.2;
}
.about-message { background: var(--cic-grey) !important; color: var(--cic-navy); }
.about-message blockquote { color: var(--cic-navy); }
.about-section[class*="cream"], .about-section[class*="yellow"] { background: var(--cic-grey) !important; }

/* ---------- 10. Menu cards — frilled-circle treatment + watermark icon background ---------- */
.menu-section .menu-card {
    position: relative;
    overflow: hidden;
}
.menu-section .menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: 35% auto;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}
.menu-section .menu-card[id="ice-cream-cakes"]::after { background-image: url(../images/cic-icon-cake.png); filter: invert(1); }
.menu-section .menu-card[id="party-packs"]::after     { background-image: url(../images/cic-icon-party-pack.png); filter: invert(1); }
.menu-section .menu-card[id="ice-cream"]::after       { background-image: url(../images/cic-icon-ice-cream.png); filter: invert(1); }
.menu-section .menu-card[id="dry-ice"]::after         { background-image: url(../images/cic-icon-dry-ice.png); filter: invert(1); }
.menu-section .menu-card-image,
.menu-section .menu-card-content { position: relative; z-index: 1; }

.menu-section .menu-card-image.circle-img {
    background-image: url(../images/cic-frilled-circle.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent !important;
    aspect-ratio: 1;
    width: 70%;
    margin: 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-section .menu-card-image.circle-img img {
    max-width: 60% !important;
    max-height: 60% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    aspect-ratio: auto !important;
    object-fit: contain;
}

/* ---------- 11. Logo bigger still on desktop ---------- */
.logo-img { height: 90px; max-width: 360px; }
@media (max-width: 768px) { .logo-img { height: 64px; } }

/* ---------- 12. Hero arrows + dots position ---------- */
.hero-slider .slider-nav { bottom: 20px; }
.hero-slider .slider-arrow { background: rgba(255,255,255,0.18); }

/* ---------- Phase 1.5b — refinements after first re-screenshot ---------- */
/* Hero left-side text legibility */
.hero-slider .slide-left h1 {
    color: #fff;
    opacity: 1;
    text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.hero-slider .slide-tagline {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-slider .slide-right h1 {
    text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.hero-slider .slide-right p {
    text-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Menu cards — per-card frilled circle colour matching the card colour */
.menu-section .menu-card[id="ice-cream-cakes"] .menu-card-image.circle-img { background-image: url(../images/cic-frilled-pink.svg); }
.menu-section .menu-card[id="party-packs"]     .menu-card-image.circle-img { background-image: url(../images/cic-frilled-blue.svg); }
.menu-section .menu-card[id="ice-cream"]       .menu-card-image.circle-img { background-image: url(../images/cic-frilled-purple.svg); }
.menu-section .menu-card[id="dry-ice"]         .menu-card-image.circle-img { background-image: url(../images/cic-frilled-turquoise.svg); }

/* Hero centre photo — keep frilled-circle pink ring on every slide for consistency */
.hero-slider .slide-image { background-image: url(../images/cic-frilled-pink.svg); }
.hero-slider .slide[data-slide="1"] .slide-image { background-image: url(../images/cic-frilled-pink.svg); }
.hero-slider .slide[data-slide="2"] .slide-image { background-image: url(../images/cic-frilled-purple.svg); }
.hero-slider .slide[data-slide="3"] .slide-image { background-image: url(../images/cic-frilled-turquoise.svg); }
.hero-slider .slide[data-slide="4"] .slide-image { background-image: url(../images/cic-frilled-blue.svg); }

/* Make slide-image fill better */
.hero-slider .slide-image img { max-width: 78%; max-height: 78%; }

/* Footer-CTA logo bigger so it does not look lost */
.cic-footer-cta .footer-cta-logo img { width: 220px; }

/* Talk-bar headings — break onto two lines on narrow */
.cic-talk-bar h3 { font-size: 1.6rem; line-height: 1.1; }
@media (max-width: 768px) {
    .cic-talk-bar h3 { font-size: 1.3rem; }
}
