/*
 * Mini Melts Western Australia - Consolidated Stylesheet
 * Clean implementation with clear organization and no redundant styles
 */

/* ======= TABLE OF CONTENTS =======
 * 1. CSS Variables
 * 2. Base Styles
 * 3. Layout & Container
 * 4. Header & Navigation
 * 5. Hero Section
 * 6. Section Dividers
 * 7. About Section / Why Choose Mini Melts
 * 8. Buttons & Form Elements
 * 9. Utility Classes
 * 10. Animations
 * 11. Media Queries
 * =============================== */

/* ======= 1. CSS Variables ======= */
:root {
    /* Colours */
    --pink: #e52c98;
    --teal: #32c5be;
    --orange: #f9a51a;
    --yellow: #f7d51d;
    --lime-green: #b2d233;
    --dark-colour: #2f2f2f;
    --dark-grey: #5c5c5c;
    --light-grey: #f8f9fa;
    
    /* Gradients */
    --gradient-rainbow: -webkit-linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal), var(--lime-green));
    --gradient-pink-teal: -webkit-linear-gradient(90deg, var(--pink), var(--teal));
    --gradient-pink-yellow: -webkit-linear-gradient(90deg, var(--pink), var(--yellow));
    --gradient-teal-lime: -webkit-linear-gradient(90deg, var(--teal), var(--lime-green));
    --gradient-tutti-frutti: -webkit-linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--teal));
    
    /* Typography */
    --heading-font: 'Anton', sans-serif;
    --body-font: 'Plus Jakarta Sans', sans-serif;
}

/* ======= 2. Base Styles ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    colour: var(--dark-colour);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding-top: 70px; /* Account for fixed header */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--teal);
    transition: color 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

/* ======= 3. Layout & Container ======= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ======= 4. Header & Navigation ======= */
header {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
}

/* Rainbow gradient top bar */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-rainbow);
    z-index: 101;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 12px 20px;
}

.logo {
    padding: 0;
}

.logo img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation */
nav {
    display: flex;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: var(--dark-colour);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-pink-teal);
    transition: width 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--pink);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dark-colour);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ======= 5. Hero Section ======= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 120px;
    background-color: var(--light-grey);
}

.hero-spacer {
    height: 60px;
    width: 100%;
    position: relative;
}

/* Background elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 44, 152, 0.2) 0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(50, 197, 190, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    animation: float 12s infinite ease-in-out reverse;
}

.dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Two column layout */
.hero-two-column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Left column content */
.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.brand-statement {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 3.2rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--dark-grey);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Right column content */
.hero-right-column {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-video-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-card-inner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animated bubbles */
.bubble-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: bubble-rise 8s infinite ease-in-out;
}

.bubble-1 {
    width: 20px;
    height: 20px;
    left: 20%;
    bottom: -20px;
    animation-delay: 0s;
}

.bubble-2 {
    width: 15px;
    height: 15px;
    left: 40%;
    bottom: -15px;
    animation-delay: 2s;
}

.bubble-3 {
    width: 25px;
    height: 25px;
    left: 60%;
    bottom: -25px;
    animation-delay: 1s;
}

.bubble-4 {
    width: 12px;
    height: 12px;
    left: 80%;
    bottom: -12px;
    animation-delay: 3s;
}

.bubble-5 {
    width: 18px;
    height: 18px;
    left: 30%;
    bottom: -18px;
    animation-delay: 2.5s;
}

/* Feature cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 12px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: visible;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-pink-teal);
    border-radius: 10px 0 0 10px;
}

.feature-card i {
    font-size: 1.2rem;
    color: white;
    background: var(--pink);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-card span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-colour);
    flex-grow: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.official-distributor {
    display: inline-block;
    color: var(--teal);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.official-distributor.right-aligned {
    text-align: center;
    display: block;
    background-color: rgba(50, 197, 190, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* Scroll indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 5;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 5px;
}

.scroll-indicator i {
    color: var(--pink);
    font-size: 1.2rem;
}

/* ======= 6. Section Dividers ======= */
.section-divider {
    height: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.divider-rainbow {
    background: var(--gradient-rainbow);
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
}

.divider-pink-teal {
    background: var(--gradient-pink-teal);
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
}

.divider-pink-yellow {
    background: var(--gradient-pink-yellow);
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
}

.divider-teal-lime {
    background: var(--gradient-teal-lime);
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
}

.divider-tutti-frutti {
    background: var(--gradient-tutti-frutti);
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
}

.divider-beads {
    height: 15px;
    background-color: transparent;
    background-image: 
        radial-gradient(circle at 10px 10px, var(--pink) 2.5px, transparent 2.5px),
        radial-gradient(circle at 20px 5px, var(--teal) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30px 10px, var(--orange) 3px, transparent 3px),
        radial-gradient(circle at 40px 7px, var(--pink) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50px 10px, var(--teal) 2.5px, transparent 2.5px),
        radial-gradient(circle at 60px 5px, var(--orange) 1.5px, transparent 1.5px);
    background-size: 70px 15px;
    background-repeat: repeat-x;
    opacity: 0.9;
    margin: 20px 0 40px;
    position: relative;
    z-index: 5;
}

/* ======= 7. About Section / Why Choose Mini Melts ======= */
.about {
    position: relative;
    padding: 60px 0 80px;
    background-color: #fafcff;
    overflow: hidden;
}

.ice-cream-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.05;
}

.top-left {
    top: 50px;
    left: 50px;
    /* background-image: url('../images/decoration-1.png'); */ /* Removed - File not found */
}

.top-right {
    top: 100px;
    right: 50px;
    /* background-image: url('../images/decoration-2.png'); */ /* Removed - File not found */
}

.bottom-left {
    bottom: 100px;
    left: 100px;
    /* background-image: url('../images/decoration-3.png'); */ /* Removed - File not found */
}

.bottom-right {
    bottom: 50px;
    right: 100px;
    /* background-image: url('../images/decoration-4.png'); */ /* Removed - File not found */
}

.section-title-fancy {
    position: relative;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-family: var(--heading-font);
    font-size: 2rem;
    text-transform: uppercase;
}

.section-title-fancy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-pink-teal);
    border-radius: 2px;
}

.benefits-beads-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto;
}

.beads-cups {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-cup {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    max-width: 350px;
    min-width: 280px;
    overflow: hidden;
    z-index: 2;
}

.benefit-cup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--pink), var(--teal));
    z-index: 1;
}

.benefit-cup[data-flavor="pink"]::before {
    background: linear-gradient(to right, var(--pink), var(--orange));
}

.benefit-cup[data-flavor="teal"]::before {
    background: linear-gradient(to right, var(--teal), var(--lime-green));
}

.benefit-cup[data-flavor="orange"]::before {
    background: linear-gradient(to right, var(--orange), var(--yellow));
}

.cup-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.cup-icon i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.benefit-cup[data-flavor="pink"] .cup-icon i {
    color: var(--pink);
}

.benefit-cup[data-flavor="teal"] .cup-icon i {
    color: var(--teal);
}

.benefit-cup[data-flavor="orange"] .cup-icon i {
    color: var(--orange);
}

.benefit-cup h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-colour);
    transition: all 0.3s ease;
    line-height: 1.2;
    text-transform: uppercase;
}

.benefit-cup:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-cup p {
    font-size: 1rem;
    color: var(--dark-grey);
    line-height: 1.5;
    margin: 0 5px;
}

.transform-business {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
}

.transform-business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-rainbow);
    z-index: 1;
}

.transform-business h3 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-colour);
    text-transform: uppercase;
}

.transform-business p {
    font-size: 1rem;
    color: var(--dark-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* ======= 8. Buttons & Form Elements ======= */
.btn {
    display: inline-block;
    background-color: var(--pink);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(229, 44, 152, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(229, 44, 152, 0.4);
    background-image: linear-gradient(to right, var(--pink), #d4177e);
}

.btn-primary {
    background-color: var(--pink);
    box-shadow: 0 4px 10px rgba(229, 44, 152, 0.3);
}

.btn-secondary {
    background-color: var(--teal);
    box-shadow: 0 4px 10px rgba(50, 197, 190, 0.3);
}

.btn-secondary:hover {
    background-image: linear-gradient(to right, var(--teal), #2ba8a2);
    box-shadow: 0 8px 15px rgba(50, 197, 190, 0.4);
}

.btn-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-pink-teal);
    background-size: 200% auto;
    box-shadow: 0 8px 20px rgba(229, 44, 152, 0.4);
}

.btn-cta:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(229, 44, 152, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
    border: none;
    transform: translateY(100px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink-teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 99;
    transition: all 0.3s ease;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ======= 9. Utility Classes ======= */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
    }
}

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

/* ======= 11. Media Queries ======= */
/* Tablets */
@media (max-width: 992px) {
    .hero-two-column {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right-column {
        margin-top: 30px;
        max-width: 600px;
        width: 100%;
    }
    
    .beads-cups {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-cup {
        width: 100%;
        max-width: 500px;
    }
    
    nav ul {
        gap: 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .brand-statement {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    header .container {
        padding: 10px 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    nav.active {
        height: calc(100vh - 70px);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 1.1rem;
    }
    
    .benefit-cup h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .hero {
        padding: 30px 0 90px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .brand-statement {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .benefit-cup {
        padding: 20px 15px;
    }
}

/* ======= Products Section ======= */
.products {
    background-color: white;
    position: relative;
    padding: 70px 0;
}

.product-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.product-line {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-pink-teal);
    z-index: 1;
}

.product-line.original::before {
    background: var(--gradient-pink-teal);
}

.product-line-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-line h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-line p {
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.product-line:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.flavors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.flavor-tag {
    background-color: var(--light-grey);
    color: var(--dark-colour);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.flavor-tag:hover {
    background-color: var(--pink);
    color: white;
    transform: scale(1.05);
}

/* Flavor Grid Section */
.flavor-grid-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
    color: var(--dark-colour);
    text-transform: none;
}

.flavor-grid-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.flavor-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 15px 10px;
    text-align: center;
}

.flavor-item img {
    width: 85%;
    height: auto;
    max-height: 170px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}

.flavor-item h4 {
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    color: var(--dark-colour);
    padding: 0;
    background: transparent;
}

.flavor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sprinkles Dots Divider */
.section-divider.divider-dots.flavor-dots {
    height: 20px;
    background-color: transparent;
    margin: 10px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Snowflake Divider with Icon */
.divider-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 0 20px;
    position: relative;
}

.divider-line {
    height: 2px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, var(--pink) 20%, var(--teal) 50%, var(--pink) 80%, transparent);
}

.divider-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    margin: 0 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.divider-icon i {
    font-size: 1.5rem;
    color: var(--teal);
    animation: pulse 2s infinite ease-in-out;
}

@media (max-width: 576px) {
    .divider-icon {
        width: 40px;
        height: 40px;
        margin: 0 15px;
    }
    
    .divider-icon i {
        font-size: 1.2rem;
    }
}

.dots-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--pink);
    display: inline-block;
}

.dot:nth-child(5n+1) { background-color: var(--pink); }
.dot:nth-child(5n+2) { background-color: var(--teal); }
.dot:nth-child(5n+3) { background-color: var(--orange); }
.dot:nth-child(5n+4) { background-color: var(--yellow); }
.dot:nth-child(5n+5) { background-color: var(--lime-green); }

.retail-presentation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.retail-presentation-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.retail-presentation-image img {
    max-width: 100%;
    transform: rotate(-5deg);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.retail-presentation-content {
    flex: 1.5;
    min-width: 300px;
}

.retail-presentation-content h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-colour);
    text-transform: uppercase;
}

.retail-presentation-content p {
    margin-bottom: 25px;
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.6;
}

.retail-benefits {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.retail-benefits li {
    position: relative;
    margin-bottom: 10px;
    color: var(--dark-grey);
    padding-left: 30px;
    display: flex;
    align-items: center;
}

.retail-benefits li i {
    position: absolute;
    left: 0;
    color: var(--teal);
    background-color: rgba(50, 197, 190, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .flavor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .retail-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .retail-presentation {
        flex-direction: column;
        padding: 25px;
    }
    
    .flavor-grid-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .flavor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .flavor-item h4 {
        font-size: 0.9rem;
    }
}

/* ======= Business Types Section ======= */
.partner-types {
    background-color: #fafcff;
    position: relative;
    padding: 70px 0;
}

.business-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.business-type {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.business-type i {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.business-type h3 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-colour);
}

.business-type p {
    color: var(--dark-grey);
    font-size: 0.95rem;
}

.business-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.business-type:hover i {
    transform: scale(1.1);
    color: var(--teal);
}

/* ======= Partnership Section ======= */
.partner {
    background-color: white;
    position: relative;
    padding: 70px 0;
}

.partner-benefits {
    margin-top: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-pink-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-colour);
}

.benefit-card p {
    color: var(--dark-grey);
    font-size: 0.95rem;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-highlight {
    background: var(--light-grey);
    border-radius: 20px;
    padding: 30px;
    margin: 60px auto 40px;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.5rem;
    color: var(--pink);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--dark-grey);
}

.cta-container {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-pink-teal);
}

.cta-container h3 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-colour);
}

.cta-container p {
    color: var(--dark-grey);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ======= Contact Section ======= */
.contact {
    background-color: var(--light-grey);
    padding: 80px 0;
    width: 100%;
}

.contact .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--dark-grey);
    width: 100%;
}

.contact-content {
    display: flex;
    flex-direction: row; /* Default to row layout */
    justify-content: center; /* Center items horizontally in the row */
    align-items: flex-start; /* Align items to the top */
    gap: 40px;
    /* max-width: 1000px;  Remove max-width  */
    /* margin: 0 auto;  Keep this removed  */
    width: 100%; /* Ensure it takes full width */
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-colour);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    -webkit-transition: border-colour 0.3s ease;
    -moz-transition: border-colour 0.3s ease;
    -o-transition: border-colour 0.3s ease;
    transition: border-colour 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-colour: var(--teal);
}

.contact-info {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    width: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 24px;
    color: var(--teal);
    margin-top: 3px;
}

.info-item div {
    text-align: left;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--dark-colour);
}

.info-item p {
    margin: 0;
    color: var(--dark-grey);
}

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

.social-media h4 {
    margin-bottom: 15px;
    color: var(--dark-colour);
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--dark-colour);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Add styles for the form submission status */
#result {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

#result.success {
    color: #28a745;
}

#result.error {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        gap: 30px;
        width: 100%;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px;
        width: 100%;
    }
    
    .info-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
    }
    
    .info-item div {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .contact .container {
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        width: 100%;
    }
    
    .social-icons {
        gap: 15px;
    }
}

/* ======= Footer ======= */
footer {
    background-color: var(--dark-colour);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-branding .social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-branding .social-icons a:hover {
    background: var(--gradient-pink-teal);
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.legal-statement {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ======= Additional Media Queries ======= */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center; /* Ensure items are centered when stacked */
    }
    
    .product-line {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .testimonial-highlight {
        padding: 20px;
    }
    
    .business-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .section-title-fancy {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .business-types-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 20px;
    }
    
    .cta-container h3 {
        font-size: 1.5rem;
    }
    
    .footer-col {
        min-width: 100%;
    }
}

/* ======= Flavor Explorer Section ======= */
.flavor-explorer {
    margin: 60px 0 40px;
}

.flavor-explorer-title {
    font-family: var(--heading-font);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-colour);
    text-transform: uppercase;
}

.flavor-explorer-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--dark-grey);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flavor-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.flavor-category-btn {
    background-color: white;
    border: 2px solid var(--light-grey);
    color: var(--dark-colour);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.flavor-category-btn:hover {
    border-colour: var(--pink);
    color: var(--pink);
}

.flavor-category-btn.active {
    background: var(--gradient-pink-teal);
    color: white;
    border-color: transparent;
}

.flavor-category-content {
    display: none;
}

.flavor-category-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.flavor-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.flavor-gallery-item {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.flavor-gallery-image {
    height: 220px;
    overflow: visible;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.flavor-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center center;
}

.flavor-gallery-item h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    padding: 15px 20px 5px;
    margin: 0;
    color: var(--dark-colour);
}

.flavor-gallery-item p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark-grey);
    line-height: 1.5;
}

.flavor-gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.flavor-gallery-item:hover img {
    transform: scale(1.35) translateY(-15px);
    filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.25));
}

/* Add JavaScript for the tab functionality */
@media (max-width: 992px) {
    .flavor-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .flavor-explorer-title {
        font-size: 1.8rem;
    }
    
    .flavor-gallery-image {
        height: 180px;
    }
    
    .flavor-gallery-item:hover img {
        transform: scale(1.25) translateY(-12px);
        filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
    }
}

@media (max-width: 576px) {
    .flavor-categories {
        gap: 10px;
    }
    
    .flavor-category-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .flavor-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flavor-gallery-item h4 {
        font-size: 1.1rem;
    }
    
    .flavor-gallery-item:hover img {
        transform: scale(1.2) translateY(-8px);
        filter: drop-shadow(0 12px 12px rgba(0, 0, 0, 0.18));
    }
} 