/* Cotton Candy Station - Modern Design System 2025 */

/* ================ CSS Variables ================ */
:root {
    /* Brand Colors */
    --primary-pink: #fad6dc;
    --secondary-pink: #f7b5c4;
    --accent-pink: #ff69b4;
    --light-pink: #ffe0ec;
    --dark-pink: #d1477a;
    
    /* Pastel Palette */
    --pastel-blue: #e3f2fd;
    --pastel-blue-light: #f1f8ff;
    --pastel-blue-dark: #81c7f5;
    
    --pastel-yellow: #fff5d6;
    --pastel-yellow-light: #fffae8;
    --pastel-yellow-dark: #f4a261;
    
    --pastel-mint: #d6fff0;
    --pastel-mint-light: #e8fff7;
    --pastel-mint-dark: #2a9d8f;
    
    --pastel-lavender: #e6d6ff;
    --pastel-lavender-light: #f0e8ff;
    --pastel-lavender-dark: #8b5cf6;
    
    --pastel-peach: #ffd6d6;
    --pastel-peach-light: #ffe8e8;
    --pastel-peach-dark: #e76f51;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #ff69b4 0%, #ffc0cb 100%);
    --gradient-secondary: linear-gradient(135deg, #fad6dc 0%, #f7b5c4 100%);
    --gradient-rainbow: linear-gradient(135deg, #ff6b9d, #feca57, #48dbfb, #ff9ff3, #ff6b9d);
    
    /* Base Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-900: #1a1a1a;
    --gray-800: #2d2d2d;
    --gray-700: #404040;
    --gray-600: #525252;
    --gray-500: #666666;
    --gray-400: #858585;
    --gray-300: #a3a3a3;
    --gray-200: #d4d4d4;
    --gray-100: #f5f5f5;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.08);
    --shadow-pink: 0 10px 30px rgba(255,105,180,0.3);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

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

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* But allow navbar to show menu on mobile */
@media (max-width: 768px) {
    .navbar {
        overflow: visible !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================ Typography ================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

/* ================ Utility Classes ================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================ Modern Navbar ================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

@media (min-width: 769px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

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

.logo-text {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--accent-pink);
    margin: 0;
}

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

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width var(--transition-base);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-pink);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================ Hero Section ================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--light-pink) 0%, 
        var(--primary-pink) 25%, 
        var(--pastel-lavender-light) 50%, 
        var(--pastel-peach-light) 75%, 
        var(--pastel-yellow-light) 100%);
    opacity: 0.9;
}

.animated-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--pastel-lavender);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--pastel-peach);
    bottom: 20%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--pastel-yellow);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.title-gradient {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
}

/* Mobile-specific white shadow for better readability */
@media (max-width: 768px) {
    .title-gradient {
        text-shadow: 0 0 0px rgba(255, 255, 255, 0.8), 
                     0 0 0px rgba(255, 255, 255, 0.6),
                     0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.title-accent {
    display: block;
    color: var(--gray-800);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,105,180,0.4);
}

.btn-secondary {
    background: white;
    color: var(--accent-pink);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--light-pink);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--light-pink);
    box-shadow: var(--shadow-lg);
}

.btn-icon {
    font-size: 1.25rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--gray-700);
}

.hero-badge .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: var(--accent-pink);
    color: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge .badge-icon i {
    font-size: 1rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-candy {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatCandy 15s ease-in-out infinite;
}

.candy-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.candy-2 {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.candy-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: 6s;
}

.candy-4 {
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes floatCandy {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--accent-pink);
    animation: bounce 2s ease-in-out infinite;
}

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

/* ================ About Section ================ */
.about {
    padding: 5rem 0;
    background: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-pink);
    transition: all var(--transition-base);
}

.text-block:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--dark-pink);
    margin-bottom: 0.5rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,105,180,0.1) 100%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    min-width: 150px;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.feature-card.featured .feature-icon {
    background: white;
    color: var(--accent-pink);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: var(--light-pink);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
    aspect-ratio: 1;
    box-sizing: border-box;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* ================ Products Section ================ */
.products {
    padding: 5rem 0;
    background: var(--pastel-yellow-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

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

.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.product-tag {
    background: var(--accent-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.product-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.flavors-count {
    color: var(--accent-pink);
}

.trending {
    color: var(--pastel-peach-dark);
}

.new {
    color: var(--pastel-mint-dark);
}

.celebration {
    color: var(--pastel-lavender-dark);
}

.portable {
    color: var(--pastel-blue-dark);
}

.refreshing {
    color: var(--pastel-yellow-dark);
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-pink);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.product-link:hover {
    gap: 1rem;
}

.products-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.btn.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ================ Services Section ================ */
.services {
    padding: 5rem 0;
    background: var(--gray-100);
}

.service-hero {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.animated-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--primary-pink) 100%);
    opacity: 0.1;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-badge {
    display: inline-block;
    background: var(--accent-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 2.5rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-types {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.event-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.event-icon {
    width: 80px;
    height: 80px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-pink);
    transition: all var(--transition-base);
}

.event-type:hover .event-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-pink);
}

.event-type span {
    font-weight: 600;
    color: var(--gray-700);
}

.flavours-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.flavours-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.flavours-number {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-pink);
}

.circle-progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-progress circle {
    fill: none;
    stroke: var(--light-pink);
    stroke-width: 10;
}

.circle-progress circle:last-child {
    stroke: var(--accent-pink);
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    animation: fillCircle 2s ease-out forwards;
}

@keyframes fillCircle {
    from {
        stroke-dashoffset: 283;
    }
    to {
        stroke-dashoffset: 0;
    }
}

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

.flavours-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    display: block;
}

.additional-services {
    margin-bottom: 4rem;
}

.services-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.service-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-pink);
    color: var(--accent-pink);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.diy-section {
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.diy-container {
    position: relative;
}

.diy-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-pink);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.diy-badge.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.diy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diy-title {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.diy-subtitle {
    font-size: 1.25rem;
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.diy-description {
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.diy-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    color: var(--accent-pink);
    font-size: 1.25rem;
}

.diy-highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-pink);
}

.diy-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diy-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.diy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.diy-image-wrapper:hover .diy-image {
    transform: scale(1.05);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-cta h3 {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ================ Instagram Section ================ */
.instagram {
    padding: 5rem 0;
    background: var(--pastel-lavender-light);
}

.instagram-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.instagram-feed-widget {
    min-height: 400px;
}

.instagram-cta {
    text-align: center;
    padding: 1rem 0 2rem 0;
}

.instagram-cta .cta-content {
    max-width: 600px;
    padding: 0;
    gap: 0;
}

.instagram-cta .social-stats {
    margin-bottom: 1rem;
}

.instagram-cta .btn-instagram {
    margin: 1rem 0 0.5rem 0;
}

.instagram-cta .instagram-note {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.cta-content {
    margin: 0 auto;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-stats .stat {
    text-align: center;
}

.social-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--pastel-lavender-dark);
    margin-bottom: 0.25rem;
}

.social-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.btn-instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
    color: white;
    padding: 1rem 2.5rem;
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: auto;
    justify-content: center;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(131, 58, 180, 0.4);
}

.instagram-note {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ================ Safety Section ================ */
.safety {
    padding: 5rem 0;
    background: var(--light-pink);
}

.safety-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.safety-badge {
    position: relative;
}

.badge-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.badge-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.badge-content h3 {
    font-size: 1.25rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.badge-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
}

.badge-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--light-pink);
    border-radius: 50%;
    opacity: 0.5;
}

.safety-certifications {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.cert-title {
    font-size: 2rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: var(--light-pink);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cert-item span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

/* ================ Testimonials Section ================ */
.testimonials {
    padding: 5rem 0;
    background: var(--pastel-peach-light);
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-carousel {
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all var(--transition-base);
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
}

.quote-icon {
    font-size: 3rem;
    color: var(--pastel-peach);
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
}

.author-type {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-pink);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-base);
    pointer-events: all;
}

.carousel-btn:hover {
    background: var(--accent-pink);
    color: white;
    transform: scale(1.1);
}

.carousel-btn.prev {
    transform: translateX(-100%);
}

.carousel-btn.next {
    transform: translateX(100%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--pastel-peach);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.dot.active {
    width: 30px;
    border-radius: var(--radius-full);
    background: var(--pastel-peach-dark);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pastel-peach-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: var(--gray-200);
}

/* ================ Shop Section ================ */
.shop-section {
    padding: 5rem 0;
    background: var(--gray-100);
}

.shop-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.shop-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.shop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
}

.shop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.shop-card:hover::before {
    transform: translateX(0);
}

.shop-card.active {
    background: var(--gradient-primary);
    color: white;
}

.shop-card.active .card-icon {
    background: white;
    color: var(--accent-pink);
}

.shop-card.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
}

.shop-card.coming-soon:hover {
    transform: none;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--light-pink);
    color: var(--accent-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.shop-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.card-badge {
    display: inline-block;
    background: var(--light-pink);
    color: var(--accent-pink);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.shop-card.active .card-badge {
    background: white;
    color: var(--accent-pink);
}

.card-badge.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.card-hover {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.shop-card:hover .card-hover {
    opacity: 1;
    transform: translateX(0);
}

/* ================ Business Opportunity Section ================ */
.distribution-cta {
    padding: 5rem 0;
    background: var(--gray-100);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-background-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
}

.cta-background-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.cta-content {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    color: var(--gray-800);
}

.cta-badge {
    display: inline-block;
    background: var(--accent-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.profit-highlight {
    background: var(--pastel-yellow);
    color: var(--gray-900);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    border-color: var(--accent-pink);
    background: var(--light-pink);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    aspect-ratio: 1;
    box-sizing: border-box;
    transition: all var(--transition-base);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-text span {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.cta-action {
    text-align: center;
    padding: 2rem;
    background: var(--light-pink);
    border-radius: var(--radius-lg);
}

.action-wrapper {
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-pink);
    transition: all var(--transition-base);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,105,180,0.4);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.cta-stats .stat {
    text-align: center;
}

.cta-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-pink);
    margin-bottom: 0.25rem;
}

.cta-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.cta-stats .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

/* ================ Contact Section ================ */
.contact {
    padding: 5rem 0;
    background: var(--light-pink);
    text-align: center;
}

.contact .social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.contact .social-link {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact .social-link::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact .social-link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: 1;
    transition: all var(--transition-base);
}

.contact .social-link i {
    position: relative;
    z-index: 2;
}

.contact .social-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.contact .social-link:hover {
    transform: translateY(-12px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact .social-link.facebook {
    background: #1877f2;
    color: white;
}

.contact .social-link.facebook:hover {
    background: #0d5bb8;
    box-shadow: 0 20px 40px rgba(24, 119, 242, 0.4);
}

.contact .social-link.instagram {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F56040);
    color: white;
    padding: 0;
}

.contact .social-link.instagram:hover {
    box-shadow: 0 20px 40px rgba(131, 58, 180, 0.4);
    transform: translateY(-12px) scale(1.1) rotate(5deg);
}

.contact .social-link.whatsapp {
    background: #25d366;
    color: white;
}

.contact .social-link.whatsapp:hover {
    background: #1ea952;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* ================ Footer ================ */
.footer {
    background: var(--gray-900);
    color: white;
}

.footer-top {
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
}

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

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

.footer-logo h3 {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin: 0;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: var(--gray-800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-base);
    aspect-ratio: 1;
    box-sizing: border-box;
}

.social-icon:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.footer-menu a:hover {
    color: var(--accent-pink);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

.footer-contact i {
    color: var(--accent-pink);
    margin-top: 0.25rem;
}

.footer-bottom {
    padding: 2rem 0;
    background: var(--gray-900);
}

.footer-bottom-content {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-bottom-content p {
    margin: 0.5rem 0;
}

.trademark {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* ================ WhatsApp Float Button ================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transition: all var(--transition-base);
    z-index: 999;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 0.5rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .whatsapp-float {
        right: 0.25rem;
        bottom: 0.75rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: #25d366;
    border-radius: 50%;
    opacity: 0.3;
    animation: ripple 2s ease-out infinite;
}

@media (max-width: 768px) {
    .whatsapp-float::before {
        inset: -5px;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ================ Back to Top Button ================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-pink);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-pink);
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,105,180,0.4);
}

/* ================ Animations ================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================ Responsive Design ================ */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper,
    .cta-content,
    .diy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .product-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 1001;
        overflow-y: auto;
        border-left: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Logo Mobile */
    .logo-text {
        font-size: 1.5rem;
    }
    
    /* Hero Mobile */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections Mobile */
    .features-grid,
    .services-grid,
    .product-grid,
    .shop-options {
        grid-template-columns: 1fr;
    }
    
    .event-types {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .form {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo img {
        margin-bottom: 0.5rem;
    }
    
    .footer-contact {
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-contact p {
        justify-content: flex-start;
        text-align: left;
        width: 100%;
    }
    
    .footer-contact i {
        min-width: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Typography Mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Utility Adjustments */
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* About Section Mobile Fix */
    .about-visual,
    .visual-container,
    .image-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-image {
        max-width: 100%;
        height: auto;
    }
    
    .floating-badge {
        right: 1rem !important;
        transform: scale(0.8);
    }
    
    /* Fix testimonial cards overflow */
    .testimonials-wrapper {
        overflow: visible !important;
        padding: 0 2rem;
    }
    
    .testimonials-carousel {
        min-height: 350px;
        position: relative;
    }
    
    .testimonial-card {
        position: absolute !important;
        max-width: calc(100vw - 2rem);
        padding: 2rem;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-author {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    /* Fix other absolutely positioned elements */
    .image-overlay {
        max-width: 100%;
    }
    
    /* Ensure body doesn't overflow */
    body {
        position: relative;
        overflow-x: hidden;
    }
    
    /* Instagram Section Mobile */
    .instagram-wrapper {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .instagram-feed-widget {
        min-height: 250px;
    }
    
    .instagram-cta {
        padding: 0.5rem 0 1rem 0;
    }
    
    .instagram-cta .social-stats {
        flex-direction: row !important;
        gap: 1rem;
        justify-content: center;
    }
    
    .instagram-cta .stat {
        padding: 0.5rem;
        flex: 1;
        max-width: 100px;
    }
    
    /* Fix carousel buttons positioning */
    .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        pointer-events: none;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        position: absolute;
        pointer-events: all;
    }
    
    .carousel-btn.prev {
        left: 0.5rem;
        transform: none;
    }
    
    .carousel-btn.next {
        right: 0.5rem;
        transform: none;
    }
    
    /* DIY Section Mobile */
    .diy-section {
        padding: 2rem 1rem;
    }
    
    .diy-badge {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        display: inline-block;
        margin-bottom: 1rem;
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
    }
    
    .diy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diy-title {
        font-size: 1.5rem;
    }
    
    .diy-subtitle {
        font-size: 1rem;
    }
    
    /* Hide elements on mobile */
    .shape-3,
    .shape-4 {
        display: none;
    }
    
    .floating-candy:nth-child(3),
    .floating-candy:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Logo Extra Small */
    .logo-text {
        font-size: 1.2rem;
    }
    
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .social-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ================ Print Styles ================ */
@media print {
    .navbar,
    .whatsapp-float,
    .back-to-top,
    .hero-buttons,
    .social-links,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    section {
        page-break-inside: avoid;
    }
}
/* =
=============== SEO Enhanced Shop Section Styles ================ */
.shop-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--light-pink);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-pink);
}

.featured-store {
    position: relative;
    border: 3px solid var(--accent-pink) !important;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3) !important;
    transform: scale(1.05);
}

.featured-store::before {
    content: "⭐ OFFICIAL STORE";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.shop-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.shop-note {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-700);
    margin-top: 1rem;
    padding: 1rem;
    background: var(--pastel-yellow-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--pastel-yellow-dark);
}

.shop-note a {
    color: var(--accent-pink);
    font-weight: 600;
    text-decoration: none;
}

.shop-note a:hover {
    text-decoration: underline;
}

.card-badge.premium {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile Responsive for Enhanced Shop Section */
@media (max-width: 768px) {
    .featured-store {
        transform: scale(1);
        margin: 1rem 0;
    }
    
    .shop-buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .shop-buttons-container .btn {
        width: 100%;
        max-width: 300px;
    }
}