/* ==========================================================================
   NeeDoh Official Website - Design System & Stylesheet (style.css)
   ========================================================================== */

/* Import Google Fonts: Fredoka (Rounded, playful) & Outfit (Modern, readable) */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-pink: hsl(330, 100%, 55%);
    --color-pink-glow: hsla(330, 100%, 55%, 0.3);
    --color-teal: hsl(180, 100%, 43%);
    --color-teal-glow: hsla(180, 100%, 43%, 0.3);
    --color-yellow: hsl(50, 100%, 55%);
    --color-yellow-glow: hsla(50, 100%, 55%, 0.3);
    --color-green: hsl(100, 100%, 50%);
    --color-purple: hsl(275, 85%, 55%);
    --color-purple-glow: hsla(275, 85%, 55%, 0.3);
    
    /* Neutrals */
    --color-dark: hsl(260, 30%, 12%);
    --color-dark-muted: hsl(260, 20%, 25%);
    --color-light: hsl(0, 0%, 98%);
    --color-light-card: hsl(0, 0%, 100%);
    --color-border: hsl(260, 10%, 90%);
    
    /* Typography */
    --font-heading: 'Fredoka', system-ui, -apple-system, sans-serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    
    /* Animations & Transitions */
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
    
    /* Layout Constants */
    --container-max: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-dark);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* --- Layout Utility Classes --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.section-padding {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

/* --- Button Styling (Playful, bouncy) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-pink);
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px var(--color-pink-glow);
    background-color: hsl(330, 100%, 50%);
}

.btn-primary:active {
    transform: scale(0.97) translateY(0);
}

.btn-secondary {
    background-color: white;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--color-light);
}

.btn-secondary:active {
    transform: scale(0.97) translateY(0);
}

.btn-accent {
    background-color: var(--color-teal);
    color: white;
}

.btn-accent:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px var(--color-teal-glow);
    background-color: hsl(180, 100%, 38%);
}

.btn-accent:active {
    transform: scale(0.97) translateY(0);
}

/* --- Header & Navigation --- */
.site-header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.logo-link:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-dark-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    background-color: var(--color-pink);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pink);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 5px;
    position: absolute;
    transition: var(--transition-smooth);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 8px; }
.mobile-nav-toggle span:nth-child(3) { top: 16px; }

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}
.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2.5rem 0;
        border-bottom: 2px solid var(--color-border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
        gap: 1.5rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .header-btn {
        display: none;
    }
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Soft glowing dynamic ambient background mesh */
    background: radial-gradient(circle at 10% 20%, hsla(330, 100%, 93%, 0.5) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, hsla(180, 100%, 92%, 0.5) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, hsla(50, 100%, 94%, 0.3) 0%, transparent 60%),
                var(--color-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 50%, var(--color-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--color-dark-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

@media (max-width: 992px) {
    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

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

.hero-blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-pink-glow) 0%, transparent 70%);
    z-index: 1;
    animation: pulse-blob 8s ease-in-out infinite alternate;
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 8px solid white;
    background-color: white;
    animation: squish-shape 10s ease-in-out infinite alternate;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    max-width: 450px;
    object-fit: cover;
}

/* --- Intro Section --- */
.intro-section {
    background-color: white;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.intro-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.intro-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    border-radius: 10px;
    background-color: var(--color-teal);
    margin-top: 0.75rem;
}

.intro-p {
    font-size: 1.125rem;
    color: var(--color-dark-muted);
    margin-bottom: 1.5rem;
}

.intro-highlight {
    background: linear-gradient(120deg, var(--color-teal-glow) 0%, var(--color-yellow-glow) 100%);
    padding: 1.75rem;
    border-radius: 24px;
    border-left: 6px solid var(--color-teal);
    font-style: italic;
    color: var(--color-dark);
}

.intro-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.intro-badge-card {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    transition: var(--transition-bounce);
}

.intro-badge-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-pink);
    box-shadow: 0 10px 25px var(--color-pink-glow);
}

.badge-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.badge-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-desc {
    color: var(--color-dark-muted);
    font-size: 0.95rem;
}

/* --- Products Grid --- */
.products-section {
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-dark-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Playful, squishy cards */
.product-card {
    background-color: var(--color-light-card);
    border-radius: 32px;
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

/* Squish card animations on hover */
.product-card:hover {
    transform: translateY(-8px) scale(1.02) rotate(-0.5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--card-accent, var(--color-pink));
}

.product-card:active {
    transform: scale(0.97);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--card-accent, var(--color-pink));
}

.product-image-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition-bounce);
}

.product-card:hover .product-image-container img {
    transform: scale(1.1) rotate(2deg);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    background-color: var(--card-accent-alpha, rgba(255,0,127,0.1));
    color: var(--card-accent, var(--color-pink));
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--color-dark-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    flex-grow: 1; /* Pushes content down */
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--color-border);
    padding-top: 1rem;
    margin-top: auto;
}

.product-spec {
    font-size: 0.85rem;
    color: var(--color-dark-muted);
}

.product-spec strong {
    color: var(--color-dark);
}

.product-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
}

/* --- Categories (Collections) Section - Evolved Asymmetric Layout --- */
.categories-section {
    background-color: white;
    border-top: 1px solid var(--color-border);
}

.collections-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 992px) {
    .collections-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.collections-intro-panel {
    position: sticky;
    top: calc(var(--header-height) + 3rem);
}

@media (max-width: 992px) {
    .collections-intro-panel {
        position: static;
    }
}

.collections-intro-panel h2 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-pink), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.collections-intro-text {
    font-size: 1.15rem;
    color: var(--color-dark-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.collections-intro-keywords {
    font-size: 0.95rem;
    color: hsl(260, 10%, 50%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    border-left: 3px solid var(--color-purple);
    padding-left: 1rem;
}

.collections-showcase-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.collection-item {
    background-color: var(--color-light);
    border-radius: 0 32px 32px 0;
    padding: 2.5rem;
    border-left: 6px solid var(--cat-accent, var(--color-teal));
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.collection-item:hover {
    transform: translateX(10px);
    background-color: white;
    box-shadow: 0 15px 40px var(--cat-accent-glow, var(--color-teal-glow));
}

.collection-icon-display {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.collection-title-display {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.collection-desc-display {
    font-size: 1rem;
    color: var(--color-dark-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.collection-explore-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--cat-accent, var(--color-teal));
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.collection-explore-link::after {
    content: '→';
    transition: var(--transition-smooth);
}

.collection-item:hover .collection-explore-link::after {
    transform: translateX(6px);
}

/* --- Why Choose Section (Symmetrical 2x2 Layout) --- */
.why-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

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

.why-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    position: relative;
    transition: var(--transition-smooth);
}

.why-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.why-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: hsla(260, 10%, 90%, 0.6);
    user-select: none;
    z-index: 1;
}

.why-card-content {
    position: relative;
    z-index: 2;
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    padding-right: 2rem;
}

.why-card p {
    color: var(--color-dark-muted);
    font-size: 1rem;
}

/* --- Social Proof / Multimedia Grid Section --- */
.social-proof-section {
    background-color: white;
    text-align: center;
}

.social-multimedia-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
}

@media (max-width: 992px) {
    .social-multimedia-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.written-reviews-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-reviews-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

@media (max-width: 992px) {
    .video-reviews-panel {
        grid-template-columns: 1fr;
        position: static;
    }
}

.video-wrapper {
    background-color: var(--color-light);
    border-radius: 28px;
    padding: 1rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 9/16;
    height: auto;
    border-radius: 18px;
    border: none;
}

.video-caption {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark-muted);
    font-size: 0.95rem;
    padding-left: 0.25rem;
}

.social-card {
    background-color: var(--color-light);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    text-align: left;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    font-family: var(--font-heading);
    color: var(--color-pink-glow);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.social-rating {
    color: var(--color-yellow);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.social-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-dark-muted);
    margin-bottom: 1.5rem;
}

.social-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
}

.social-role {
    font-size: 0.85rem;
    color: var(--color-dark-muted);
}

/* --- FAQs Section --- */
.faq-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: white;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--color-purple);
}

.faq-question-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.75rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-light);
    color: var(--color-purple);
    font-weight: bold;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-toggle {
    transform: rotate(45deg);
    background-color: var(--color-purple);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
    padding: 0 2rem 1.75rem;
    color: var(--color-dark-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Final CTA Section --- */
.final-cta {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--color-pink-glow) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, var(--color-teal-glow) 0%, transparent 50%);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: white;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.final-cta .btn {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-dark);
    color: white;
    padding: 5rem 0 2.5rem;
    border-top: 3px solid var(--color-pink);
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

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

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    transition: var(--transition-bounce);
}

.social-icon-link:hover {
    background-color: var(--color-pink);
    transform: scale(1.1) rotate(10deg);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background-color: var(--color-pink);
    margin-top: 0.5rem;
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-teal);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.85rem 1.25rem;
    border-radius: 30px;
    border: none;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-input:focus {
    outline: 2px solid var(--color-teal);
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: white;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse-blob {
    0% {
        transform: scale(0.9) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(2%, 3%);
    }
}

@keyframes squish-shape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    33% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    }
    66% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* ==========================================================================
   Store Locator & Stockists Styling
   ========================================================================== */

/* Locator Widget Container */
.locator-container {
    background-color: white;
    border-radius: 36px;
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 5rem;
}

@media (max-width: 768px) {
    .locator-container {
        padding: 1.5rem;
    }
}

.locator-search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
    .locator-search-bar {
        flex-direction: column;
    }
}

.locator-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.locator-input:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 15px var(--color-purple-glow);
}

.locator-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.locator-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 2.5rem;
    align-items: stretch;
}

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

.store-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-list-header {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-list-count {
    background-color: var(--color-purple-glow);
    color: var(--color-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.store-list {
    height: 480px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for store list */
.store-list::-webkit-scrollbar {
    width: 6px;
}

.store-list::-webkit-scrollbar-track {
    background: var(--color-light);
    border-radius: 10px;
}

.store-list::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

.store-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-muted);
}

.store-item {
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.store-item:hover, .store-item.selected {
    border-color: var(--color-purple);
    background-color: white;
    box-shadow: 0 10px 25px var(--color-purple-glow);
    transform: translateY(-3px);
}

.store-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.5rem;
}

.store-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.store-distance {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-purple);
    background-color: var(--color-purple-glow);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.store-address {
    font-size: 0.95rem;
    color: var(--color-dark-muted);
    margin-bottom: 0.75rem;
}

.store-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-dark-muted);
    border-top: 1px dashed var(--color-border);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.store-hours {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.store-directions-link {
    color: var(--color-teal);
    font-weight: 600;
}

.store-directions-link:hover {
    text-decoration: underline;
}

#map-container {
    position: relative;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

#map {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    z-index: 1;
}

/* Custom map marker styles */
.custom-leaflet-marker {
    background: none;
    border: none;
}

.custom-marker-pin {
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    background: var(--color-purple);
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -16px 0 0 -16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: var(--transition-bounce);
}

.custom-marker-pin::after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    transform: rotate(45deg);
}

.custom-marker-pin.selected {
    background: var(--color-pink);
    transform: rotate(-45deg) scale(1.2);
}

/* Retailers Stack List (for stockist hub) */
.retailers-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.retailer-row {
    background-color: white;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 3rem;
    align-items: center;
    transition: var(--transition-bounce);
}

@media (max-width: 768px) {
    .retailer-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
        text-align: center;
    }
}

.retailer-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border-color: var(--retailer-accent, var(--color-purple));
}

.retailer-row-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-dark);
}

.retailer-row-info {
    text-align: left;
}

.retailer-row-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.retailer-row-info p {
    color: var(--color-dark-muted);
    font-size: 0.95rem;
}

/* Stockist Details Pages Custom Layouts */
.stockist-details-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stockist-details-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--stockist-color, var(--color-dark));
    margin-bottom: 1.5rem;
}

.stockist-guide-box {
    background-color: white;
    border-radius: 32px;
    border: 1px solid var(--color-border);
    padding: 3rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

@media (max-width: 768px) {
    .stockist-guide-box {
        padding: 2rem;
    }
}

.stockist-guide-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.75rem;
}

.stockist-guide-box p {
    font-size: 1.05rem;
    color: var(--color-dark-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stockist-guide-list {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.stockist-guide-list li {
    font-size: 1.05rem;
    color: var(--color-dark-muted);
    margin-bottom: 0.85rem;
    line-height: 1.6;
}

.stockist-guide-list li strong {
    color: var(--color-dark);
}

/* ==========================================================================
   Header Navigation Custom buttons and alignment
   ========================================================================== */
.nav-menu {
    gap: 1.75rem;
}

.nav-btn-buy {
    background-color: var(--color-purple);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px var(--color-purple-glow);
    display: inline-block;
}

.nav-btn-buy:hover {
    transform: translateY(-2px);
    background-color: var(--color-pink);
    box-shadow: 0 6px 15px rgba(255, 64, 129, 0.3);
}

/* Squeeze Now button: outline secondary styling */
.header-btn-secondary {
    background: transparent;
    border: 2px solid var(--color-teal);
    color: var(--color-teal) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.header-btn-secondary:hover {
    background-color: var(--color-teal);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 204, 188, 0.2);
    transform: translateY(-2px);
}

/* Blog Article Video Container (Vertical Portrait Formatting) */
.blog-video-container {
    max-width: 360px;
    width: 100%;
    margin: 2.5rem auto;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background-color: #000;
}

.blog-video-player {
    width: 100%;
    aspect-ratio: 9/16;
    display: block;
    object-fit: cover;
    border: none;
}

.blog-video-caption {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-dark-muted);
    padding: 0.75rem 1rem;
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================================
   Product Detail Page & Retail Portal Styling
   ========================================================================== */

.product-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Product Gallery System */
.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

@media (max-width: 992px) {
    .product-gallery {
        position: relative;
        top: 0;
    }
}

.gallery-featured {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 1/1;
    background-color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: zoom-in;
}

.gallery-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-featured:hover img {
    transform: scale(1.04);
}

.gallery-thumbnails {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    border: 2px solid var(--color-border);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-bounce);
    background-color: white;
    padding: 3px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
    border-color: var(--color-teal);
}

.gallery-thumb.active {
    border-color: var(--color-purple);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}

/* Product Buy Box Elements */
.product-page-header {
    display: block;
    margin-bottom: 2.5rem;
    margin-top: 0;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-border);
}

.product-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-teal);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.product-tagline {
    font-size: 1.15rem;
    color: var(--color-dark-muted);
    line-height: 1.6;
    max-width: 850px;
    margin-bottom: 0;
}

.product-price-box {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price-box span {
    font-size: 0.95rem;
    color: var(--color-dark-muted);
    font-weight: 500;
    font-family: var(--font-body);
}

/* Color & Size Selectors */
.selector-group {
    margin-bottom: 1.75rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.selector-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-dark-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.swatch-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.swatch-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    outline: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    padding: 0;
}

.swatch-btn:hover {
    transform: scale(1.1);
}

.swatch-btn.selected {
    outline-color: var(--color-purple);
    outline-width: 3px;
    transform: scale(1.05);
}

.size-list {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.size-pill {
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    border: 2px solid var(--color-border);
    background-color: white;
    color: var(--color-dark);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-bounce);
}

.size-pill:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
    transform: translateY(-2px);
}

.size-pill.selected {
    background-color: var(--color-purple);
    border-color: var(--color-purple);
    color: white;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

/* Retail Purchase Portal */
.retailer-portal {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 1.5rem;
}

.retailer-portal-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.retailer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.retailer-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-radius: 18px;
    border: 2px solid var(--color-border);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition-bounce);
    background-color: var(--color-bg-light);
}

.retailer-btn span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.retailer-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
}

.retailer-btn:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: var(--retailer-hover-border, var(--color-teal));
    box-shadow: 0 8px 20px var(--retailer-glow, rgba(0, 204, 188, 0.15));
    background-color: white;
}

.retailer-btn.amazon {
    --retailer-hover-border: #ff9900;
    --retailer-glow: rgba(255, 153, 0, 0.15);
}

.retailer-btn.target {
    --retailer-hover-border: #cc0000;
    --retailer-glow: rgba(204, 0, 0, 0.15);
}

.retailer-btn.walmart {
    --retailer-hover-border: #0071dc;
    --retailer-glow: rgba(0, 113, 220, 0.15);
}

.retailer-btn.cvs {
    --retailer-hover-border: #cc0000;
    --retailer-glow: rgba(204, 0, 0, 0.15);
}

/* Specifications Table */
.spec-section {
    margin-top: 4rem;
}

.spec-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.spec-table tr:nth-child(even) {
    background-color: var(--color-bg-light);
}

.spec-table td {
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.5;
}

.spec-table td:first-child {
    font-weight: 700;
    color: var(--color-dark-muted);
    width: 35%;
    border-right: 1px solid var(--color-border);
}

.spec-table tr:last-child td {
    border-bottom: none;
}

/* Accordion FAQs */
.faq-details {
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1.15rem 1.25rem;
    margin-bottom: 0.875rem;
    background-color: white;
    transition: var(--transition-bounce);
}

.faq-details[open] {
    border-color: var(--color-purple);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.04);
}

.faq-summary {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    font-size: 1.35rem;
    color: var(--color-purple);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-details[open] .faq-summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-details .faq-answer {
    margin-top: 1rem;
    color: var(--color-dark-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    max-height: none;
    overflow: visible;
}

