/* ============================================
   PinkLemon Crochet - Main Stylesheet
   Aesthetic: Kawaii, Cottagecore, Handmade
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Richer Pinks */
    --pink-light: #F8D7DA;
    --pink-medium: #F1A7B4;
    --pink-dark: #D4768C;
    --pink-accent: #E991A3;
    --pink-deep: #C25D78;
    
    /* Soft Pinks for backgrounds */
    --pink-soft: #FFF0F3;
    --pink-blush: #FFE4E9;
    
    /* Neutral Colors */
    --cream: #FFF8F9;
    --cream-dark: #FCEEF0;
    --beige: #F5E1E4;
    --brown-light: #C9A7A7;
    --brown-medium: #9D7373;
    --brown-dark: #7A5555;
    
    /* Accent Colors */
    --yellow-soft: #FFF5F0;
    --yellow-medium: #FFE4D6;
    --lemon: #FFF0E8;
    
    /* Text Colors */
    --text-dark: #5C3D4A;
    --text-medium: #8B6B78;
    --text-light: #B89DA8;
    
    /* Shadows & Effects - Pink tinted */
    --shadow-soft: 0 4px 15px rgba(212, 118, 140, 0.15);
    --shadow-medium: 0 8px 30px rgba(212, 118, 140, 0.2);
    --shadow-hover: 0 12px 40px rgba(212, 118, 140, 0.25);
    
    /* Border Radius */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --radius-round: 50px;
    
    /* Fonts */
    --font-heading: 'Caveat', cursive;
    --font-body: 'Quicksand', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Theme Variations */
body.theme-lavender {
    --pink-light: #E6E6FA;
    --pink-medium: #D8BFD8;
    --pink-dark: #BA55D3;
    --pink-accent: #DDA0DD;
}

body.theme-mint {
    --pink-light: #D4EDDA;
    --pink-medium: #A8E6CF;
    --pink-dark: #56AB91;
    --pink-accent: #88D8B0;
}

body.theme-peach {
    --pink-light: #FFDAB9;
    --pink-medium: #FFB347;
    --pink-dark: #FF7F50;
    --pink-accent: #FFDEAD;
}

body.theme-lemon {
    --pink-light: #FFFACD;
    --pink-medium: #FFE4B5;
    --pink-dark: #FFD700;
    --pink-accent: #FFF8DC;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
    /* Cute seamless pattern background */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext x='20' y='45' font-size='16' opacity='0.08'%3E🎀%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='45' y='60' font-size='14' opacity='0.06'%3E🌸%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='50' y='70' font-size='18' opacity='0.05'%3E💕%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='20' y='40' font-size='12' opacity='0.07'%3E✿%3C/text%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--pink-soft) 0%, var(--cream) 50%, var(--pink-blush) 100%);
    background-size: 160px 160px, 200px 200px, 240px 240px, 120px 120px, 100% 100%;
    background-attachment: fixed;
}

/* ============================================
   Custom Cursor - DISABLED
   ============================================ */
.custom-cursor,
.cursor-trail {
    display: none !important;
}

.custom-cursor.clicking {
    display: none !important;
}

.custom-cursor.hovering {
    display: none !important;
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: var(--pink-dark);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.5;
    transition: transform 0.2s ease;
}

/* ============================================
   Theme Customizer
   ============================================ */
.customizer-toggle {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--pink-medium);
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    transition: var(--transition-medium);
}

.customizer-toggle:hover {
    transform: translateY(-50%) scale(1.1) rotate(15deg);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 160, 168, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(232, 160, 168, 0); }
}

.customizer-panel {
    position: fixed;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: white;
    border-radius: var(--radius-large) 0 0 var(--radius-large);
    padding: 25px;
    z-index: 1000;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--pink-medium);
    border-right: none;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.customizer-panel.open {
    right: 0;
}

.customizer-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.customizer-section {
    margin-bottom: 20px;
}

.customizer-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
}

.color-btn:hover {
    transform: scale(1.15);
}

.color-btn.active {
    border-color: var(--text-dark);
}

.color-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--beige);
    transition: var(--transition-medium);
    border-radius: 30px;
}

.toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition-medium);
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: var(--pink-dark);
}

.toggle-switch input:checked + .slider::before {
    transform: translateX(30px);
}

/* ============================================
   Floating Background Animals
   ============================================ */
.floating-animals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-animal {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: floatAround 20s ease-in-out infinite;
    filter: grayscale(20%);
    transition: opacity 0.5s ease;
}

.bg-animal:hover {
    opacity: 0.8;
    filter: grayscale(0%);
    pointer-events: auto;
    cursor: pointer;
}

.animal-1 { top: 5%; left: 10%; animation-delay: 0s; animation-duration: 25s; }
.animal-2 { top: 15%; right: 15%; animation-delay: -3s; animation-duration: 22s; }
.animal-3 { top: 30%; left: 5%; animation-delay: -6s; animation-duration: 28s; }
.animal-4 { top: 45%; right: 8%; animation-delay: -9s; animation-duration: 20s; }
.animal-5 { top: 60%; left: 12%; animation-delay: -12s; animation-duration: 24s; }
.animal-6 { top: 75%; right: 20%; animation-delay: -15s; animation-duration: 26s; }
.animal-7 { top: 85%; left: 8%; animation-delay: -18s; animation-duration: 23s; }
.animal-8 { top: 20%; left: 25%; animation-delay: -2s; animation-duration: 30s; }
.animal-9 { top: 50%; left: 3%; animation-delay: -5s; animation-duration: 27s; }
.animal-10 { top: 70%; right: 5%; animation-delay: -8s; animation-duration: 21s; }
.animal-11 { top: 10%; right: 5%; animation-delay: -11s; animation-duration: 29s; }
.animal-12 { top: 90%; left: 20%; animation-delay: -14s; animation-duration: 25s; }

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -20px) rotate(10deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translate(15px, 15px) rotate(5deg) scale(1.05);
    }
}

/* Animal Pop Animation */
.bg-animal.pop {
    animation: animalPop 0.5s ease;
}

@keyframes animalPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.8) rotate(20deg); opacity: 1; }
    100% { transform: scale(1); }
}

/* ============================================
   Sparkle Effects
   ============================================ */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnim 1s ease-out forwards;
}

@keyframes sparkleAnim {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(360deg) translateY(-50px);
    }
}

/* ============================================
   Bubble Effects
   ============================================ */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(232, 160, 168, 0.2));
    border-radius: 50%;
    animation: bubbleRise 8s ease-in infinite;
    pointer-events: auto;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.bubble:hover {
    animation-play-state: paused;
}

.bubble.pop {
    animation: bubblePop 0.3s ease-out forwards;
}

@keyframes bubbleRise {
    0% {
        bottom: -100px;
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(var(--drift));
    }
}

@keyframes bubblePop {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

/* ============================================
   Click Effects
   ============================================ */
.click-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

.click-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: clickHeart 1s ease-out forwards;
    pointer-events: none;
}

@keyframes clickHeart {
    0% {
        opacity: 1;
        transform: scale(0) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) translateY(-20px);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) translateY(-60px);
    }
}

/* ============================================
   Floating Action Buttons
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: var(--shadow-medium);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 3px solid var(--pink-medium);
}

.fab:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-hover);
}

.fab.active {
    background: var(--pink-light);
    animation: fabPulse 1s infinite;
}

@keyframes fabPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   Pop-up Mascot
   ============================================ */
.mascot-container {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 999;
}

.mascot {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.mascot-body {
    font-size: 4rem;
    cursor: pointer;
    animation: mascotBounce 2s ease-in-out infinite;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.mascot-body:hover {
    transform: scale(1.2) rotate(-10deg);
}

@keyframes mascotBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mascot-speech {
    background: white;
    padding: 15px 20px;
    border-radius: 20px 20px 20px 5px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--pink-medium);
    max-width: 200px;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.mascot-speech.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.mascot-speech p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

.mascot-speech::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-right-color: white;
    border-left: 0;
}

/* ============================================
   Confetti Effect
   ============================================ */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 10000;
    animation: confettiFall 3s ease-out forwards;
    pointer-events: none;
}

@keyframes confettiFall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* Decorative Stars - Enhanced */
.star {
    position: fixed;
    font-size: 2rem;
    color: var(--brown-light);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    animation: twinkle 3s ease-in-out infinite, starFloat 15s ease-in-out infinite;
    cursor: pointer;
}

.star:hover {
    opacity: 1;
    animation: starSpin 0.5s ease;
    pointer-events: auto;
}

.star-1 { top: 15%; left: 5%; animation-delay: 0s; }
.star-2 { top: 40%; right: 8%; animation-delay: 0.5s; }
.star-3 { top: 65%; left: 3%; animation-delay: 1s; }
.star-4 { bottom: 20%; right: 5%; animation-delay: 1.5s; }
.star-5 { bottom: 40%; left: 8%; animation-delay: 2s; }
.star-6 { top: 25%; right: 3%; animation-delay: 2.5s; }
.star-7 { top: 80%; right: 12%; animation-delay: 3s; }
.star-8 { top: 55%; left: 6%; animation-delay: 3.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes starFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--pink-light), var(--pink-medium));
    color: var(--brown);
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 10001;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    border: 2px solid white;
}

.cart-notification.show {
    transform: translateX(0);
}

/* Cart notification cute animation */
.cart-notification::before {
    content: '🛒';
    margin-right: 10px;
}

/* Responsive cart notification */
@media (max-width: 768px) {
    .cart-notification {
        right: 10px;
        left: 10px;
        text-align: center;
        transform: translateY(-120%);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 3px dotted var(--pink-medium);
    z-index: 1000;
    padding: 0;
    min-height: 480px;
    overflow: hidden;
    transition: min-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.5s ease,
                box-shadow 0.5s ease;
}

/* Scrolled state - compact navbar */
.navbar.scrolled {
    min-height: 70px !important;
    box-shadow: 0 2px 20px rgba(232, 160, 168, 0.2);
    background: rgba(253, 248, 245, 0.98) !important;
}

.navbar.scrolled .nav-banner-bg {
    opacity: 0 !important;
    pointer-events: none;
}

.navbar.scrolled .nav-container {
    padding: 10px 20px;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 70px !important;
}

.navbar.scrolled .logo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.navbar.scrolled .nav-menu {
    margin-bottom: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar.scrolled .logo-text {
    font-size: 1.6rem;
}

/* Full banner background */
.nav-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    min-height: inherit;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-container {
    flex-direction: row;
    justify-content: space-between;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: absolute;
    top: 15px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: var(--radius-round);
    box-shadow: 0 3px 15px rgba(232, 160, 168, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .logo {
    position: relative;
    top: auto;
    left: auto;
    background: transparent;
    box-shadow: none;
    padding: 5px 10px;
}

.logo-mascot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--pink-medium);
    box-shadow: 0 3px 10px rgba(232, 160, 168, 0.3);
    transition: var(--transition-medium);
}

.logo-mascot:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--pink-dark);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--pink-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 var(--cream-dark);
    transition: font-size 0.4s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: var(--radius-round);
    box-shadow: 0 5px 20px rgba(232, 160, 168, 0.2);
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-menu {
    background: transparent;
    box-shadow: none;
    padding: 10px;
    margin-bottom: 0;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 22px;
    text-decoration: none;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
    border-color: var(--pink-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 118, 140, 0.3);
}

.nav-icon {
    font-size: 1.2rem;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brown-light);
    border-radius: 3px;
    transition: var(--transition-medium);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, transparent 0%, var(--pink-blush) 30%, var(--pink-soft) 100%);
    padding-top: 500px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='2' fill='%23D4768C' opacity='0.15'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='35' y='60' font-size='20' opacity='0.08'%3E♡%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext x='25' y='50' font-size='16' opacity='0.06'%3E✿%3C/text%3E%3C/svg%3E");
    background-size: 60px 60px, 200px 200px, 160px 160px;
    opacity: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 243, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 45px;
    border-radius: var(--radius-large);
    border: 2px solid var(--pink-medium);
    box-shadow: 
        0 15px 50px rgba(212, 118, 140, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-badge {
    display: inline-block;
    background: var(--yellow-soft);
    color: var(--brown-medium);
    padding: 8px 20px;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px dashed var(--yellow-medium);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-title span {
    font-size: 4.5rem;
    color: var(--pink-dark);
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: var(--radius-round);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
    color: white;
    border-color: var(--pink-deep);
    box-shadow: 0 4px 15px rgba(212, 118, 140, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--pink-deep) 0%, var(--brown-medium) 100%);
    border-color: var(--brown-medium);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 118, 140, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--pink-deep);
    border-color: var(--pink-medium);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--pink-light);
    border-color: var(--pink-dark);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(212, 118, 140, 0.3);
}

.full-width {
    width: 100%;
}

/* Hero Background Banner */
.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(253, 248, 245, 0.95) 0%, 
        rgba(250, 218, 221, 0.85) 50%, 
        rgba(253, 248, 245, 0.95) 100%);
    z-index: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Mascot Image Styling */
.hero-mascot-img {
    max-width: 100%;
    max-height: 550px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-large);
    filter: drop-shadow(0 10px 30px rgba(232, 160, 168, 0.3));
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-image-frame {
    background: white;
    border-radius: var(--radius-large);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--beige);
    position: relative;
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--pink-medium);
    border-radius: 35px;
    z-index: -1;
}

.hero-placeholder,
.about-placeholder,
.product-placeholder,
.gallery-placeholder,
.pattern-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
    border-radius: var(--radius-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    font-size: 5rem;
    gap: 10px;
}

.hero-placeholder {
    flex-direction: row;
    gap: 20px;
}

.hero-yarn {
    font-size: 4rem;
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.hero-placeholder p,
.gallery-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float 4s ease-in-out infinite;
}

.float-1 { top: -20px; right: 20px; animation-delay: 0s; }
.float-2 { bottom: 30px; left: -30px; animation-delay: 1s; }
.float-3 { top: 50%; right: -20px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Scallop Border */
.scallop-border {
    height: 50px;
    background: 
        radial-gradient(circle at 50% 0%, var(--pink-blush) 25px, transparent 25px);
    background-size: 50px 50px;
    background-position: 0 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.scallop-border-top {
    height: 50px;
    background: 
        radial-gradient(circle at 50% 100%, var(--pink-blush) 25px, transparent 25px);
    background-size: 50px 50px;
    background-position: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

/* ============================================
   About Section
   ============================================ */
/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink-soft) 50%, var(--pink-blush) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 2rem;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(194, 93, 120, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item.hidden-item {
    display: none;
}

.portfolio-grid.expanded .portfolio-item.hidden-item {
    display: block;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(194, 93, 120, 0.25);
    z-index: 10;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-toggle {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 8px;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 0;
    margin-top: 480px;
    background: linear-gradient(180deg, var(--pink-blush) 0%, var(--cream) 30%, var(--cream) 100%);
    position: relative;
    /* Cute subtle pattern */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23D4768C' opacity='0.1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext x='30' y='50' font-size='14' opacity='0.06'%3E♡%3C/text%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--pink-blush) 0%, var(--cream) 30%, var(--cream) 100%);
    background-size: 40px 40px, 160px 160px, 100% 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-frame {
    background: white;
    border-radius: var(--radius-large);
    padding: 15px;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--beige);
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: calc(var(--radius-large) - 10px);
    display: block;
}

.about-placeholder {
    min-height: 400px;
    font-size: 6rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--pink-deep);
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--pink-light);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.title-decoration {
    color: var(--pink-dark);
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 10px;
}

.title-decoration.center {
    text-align: center;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--pink-light);
    padding: 10px 20px;
    border-radius: var(--radius-round);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

/* ============================================
   Marketplace Section
   ============================================ */
.marketplace {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink-blush) 20%, var(--pink-light) 80%, var(--pink-blush) 100%);
    position: relative;
    /* Cute subtle pattern */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23D4768C' opacity='0.12'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='40' y='60' font-size='12' opacity='0.07'%3E♡%3C/text%3E%3C/svg%3E"),
        linear-gradient(180deg, var(--cream) 0%, var(--pink-blush) 20%, var(--pink-light) 80%, var(--pink-blush) 100%);
    background-size: 40px 40px, 200px 200px, 100% 100%;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--pink-medium);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-round);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink-deep);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
    border-color: var(--pink-deep);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 118, 140, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    align-items: start;
}

.product-card {
    background: linear-gradient(145deg, #ffffff 0%, var(--pink-soft) 100%);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(212, 118, 140, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--pink-medium);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: 
        0 20px 40px rgba(212, 118, 140, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--pink-dark);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover::before {
    transform: translateX(100%);
}

/* Wiggle animation on hover */
.product-card:hover .product-placeholder {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink-deep) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-round);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(212, 118, 140, 0.3);
}

.product-image {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Product Variant Buttons */
.product-variants {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.variant-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
}

.variant-btn {
    padding: 4px 10px;
    border: 2px solid var(--pink-medium);
    border-radius: var(--radius-round);
    background: white;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn:hover {
    background: var(--pink-soft);
    border-color: var(--pink-dark);
}

.variant-btn.active {
    background: var(--variant-color, var(--pink-medium));
    border-color: var(--pink-deep);
    color: var(--text-dark);
}

.variant-btn.custom-variant {
    border-style: dashed;
    font-style: italic;
}

.variant-btn.custom-variant.active {
    background: var(--variant-color, #DDA0DD);
    border-style: solid;
}

.coming-soon-box {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(145deg, #ffffff 0%, var(--pink-soft) 100%);
    border-radius: var(--radius-large);
    border: 2px dashed var(--pink-medium);
    margin: 20px 0;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.coming-soon-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--pink-deep);
    margin-bottom: 10px;
}

.coming-soon-box p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.custom-colour-input {
    margin-top: 8px;
    margin-bottom: 4px;
}

.custom-colour-field {
    width: 100%;
    padding: 8px 12px;
    border: 2px dashed var(--pink-medium);
    border-radius: var(--radius-round);
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: var(--pink-soft);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-colour-field:focus {
    border-color: var(--pink-deep);
    border-style: solid;
}

.custom-colour-field::placeholder {
    color: var(--pink-dark);
    opacity: 0.6;
}

.file-input {
    width: 100%;
    padding: 10px;
    border: 2px dashed var(--pink-medium);
    border-radius: var(--radius-medium);
    background: var(--pink-soft);
    font-family: var(--font-body);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-input:hover {
    border-color: var(--pink-deep);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-medium);
    margin-top: 4px;
    font-style: italic;
}

.product-placeholder {
    min-height: 200px;
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-dark);
}

.add-to-cart {
    padding: 8px 20px;
    background: var(--pink-dark);
    color: white;
    border: none;
    border-radius: var(--radius-round);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
}

.add-to-cart:hover {
    background: var(--brown-medium);
}

/* ============================================
   Inspo Gallery Section
   ============================================ */
.inspo {
    padding: 100px 0;
    background: var(--cream);
    /* Cute flowers and stars pattern */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext x='25' y='50' font-size='20' opacity='0.06'%3E🌸%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='40' y='60' font-size='18' opacity='0.05'%3E⭐%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ctext x='50' y='70' font-size='22' opacity='0.04'%3E🌷%3C/text%3E%3C/svg%3E");
    background-color: var(--cream);
    background-size: 160px 160px, 200px 200px, 240px 240px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--beige);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: auto;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--cream) 100%);
    font-size: 3rem;
}

.gallery-item.large .gallery-placeholder {
    font-size: 5rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232, 160, 168, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-placeholder span {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   Patterns Section
   ============================================ */
.patterns {
    padding: 100px 0;
    background: var(--pink-light);
    position: relative;
    /* Cute pattern with yarn and needles */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Ctext x='20' y='45' font-size='20' opacity='0.07'%3E📝%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Ctext x='35' y='55' font-size='18' opacity='0.05'%3E🪡%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='45' y='60' font-size='22' opacity='0.06'%3E✨%3C/text%3E%3C/svg%3E");
    background-color: var(--pink-light);
    background-size: 140px 140px, 180px 180px, 200px 200px;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pattern-card {
    background: white;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 3px solid var(--beige);
    position: relative;
}

.pattern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.pattern-card:hover .pattern-placeholder {
    animation: jelly 0.5s ease;
}

@keyframes jelly {
    0%, 100% { transform: scale(1, 1); }
    25% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.1, 0.9); }
    75% { transform: scale(0.95, 1.05); }
}

.pattern-card.featured {
    border-color: var(--pink-dark);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-dark), var(--pink-accent));
    color: white;
    padding: 8px 25px;
    border-radius: var(--radius-round);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

.pattern-image {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--yellow-soft) 100%);
}

.pattern-placeholder {
    min-height: 150px;
    font-size: 4rem;
    background: transparent;
}

.difficulty {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: var(--radius-round);
    font-size: 0.75rem;
    font-weight: 600;
}

.difficulty.easy {
    background: #D4EDDA;
    color: #155724;
}

.difficulty.medium {
    background: #FFF3CD;
    color: #856404;
}

.pattern-info {
    padding: 20px;
}

.pattern-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pattern-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.pattern-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.pattern-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px dotted var(--beige);
}

.pattern-footer .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Patterns Info Box */
.patterns-info-box {
    display: flex;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-large);
    border: 3px dashed var(--beige);
}

.info-icon {
    font-size: 3rem;
}

.info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.info-content li {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================
   Cart Slide Panel
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-panel.active {
    right: 0;
}

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--pink-medium) 0%, var(--pink-dark) 100%);
    color: white;
}

.cart-panel-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cart-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-panel .cart-items {
    background: transparent;
    border: none;
    padding: 0;
    min-height: auto;
}

.cart-panel .cart-empty {
    padding: 40px 20px;
}

.cart-panel .empty-cart-icon {
    font-size: 4rem;
}

.cart-panel .cart-empty h3 {
    font-size: 1.5rem;
}

.cart-panel-footer {
    padding: 20px 25px;
    background: var(--pink-soft);
    border-top: 2px solid var(--pink-light);
}

.cart-panel-footer .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cart-panel-footer .summary-line.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink-deep);
}

.cart-panel-footer .summary-divider {
    height: 1px;
    background: var(--pink-medium);
    margin: 15px 0;
}

.cart-panel-footer .btn {
    margin-top: 10px;
}

.cart-panel-footer .clear-cart-btn {
    margin-top: 8px;
}

/* Cart Item in Panel */
.cart-panel .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--pink-soft);
    border-radius: 12px;
    margin-bottom: 12px;
    border: none;
}

.cart-panel .cart-item:hover {
    background: var(--pink-light);
}

.cart-panel .cart-item-image {
    width: 60px;
    height: 60px;
    font-size: 2rem;
}

.cart-panel .cart-item-details h4 {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* Legacy Cart Section Styles (keeping for cart items) */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.cart-items {
    background: white;
    border-radius: var(--radius-large);
    padding: 30px;
    border: 3px solid var(--beige);
    min-height: 300px;
}

.cart-empty {
    text-align: center;
    padding: 50px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* Cart Item */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 2px dashed var(--beige);
    transition: var(--transition-medium);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--cream);
    border-radius: var(--radius-medium);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 100%);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid var(--beige);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cart-item-details .item-type {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pink-dark);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid var(--beige);
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--pink-light);
    border-color: var(--pink-medium);
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
    padding: 5px;
}

.cart-item-remove:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 120px;
}

.summary-card {
    background: white;
    border-radius: var(--radius-large);
    padding: 30px;
    border: 3px solid var(--beige);
}

.summary-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-medium);
}

.summary-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.summary-line.total span:last-child {
    color: var(--pink-dark);
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--beige), transparent);
    margin: 20px 0;
}

.checkout-btn {
    margin-bottom: 15px;
}

.clear-cart-btn {
    background: transparent;
    color: var(--text-light);
    border-color: var(--beige);
}

.clear-cart-btn:hover {
    background: #ffebee;
    color: #c62828;
    border-color: #ffcdd2;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-content {
    background: white;
    border-radius: var(--radius-large);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition-medium);
    border: 3px solid var(--pink-medium);
}

.checkout-modal.open .checkout-modal-content {
    transform: scale(1);
}

.checkout-success-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 0.5s ease;
}

.checkout-modal h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.checkout-modal p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.close-modal-btn {
    margin-top: 10px;
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 100px 0;
    background: var(--cream);
    /* Cute stars and hearts */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Ctext x='20' y='45' font-size='18' opacity='0.06'%3E⭐%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Ctext x='35' y='55' font-size='20' opacity='0.05'%3E💖%3C/text%3E%3C/svg%3E");
    background-color: var(--cream);
    background-size: 140px 140px, 180px 180px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.hidden-review {
    display: none;
}

.reviews-grid.show-all .hidden-review {
    display: block;
}

.reviews-toggle-container {
    text-align: center;
    margin-top: 40px;
}

.reviews-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--beige);
    text-align: center;
}

.review-product {
    font-size: 0.85rem;
    color: var(--pink-dark);
    font-weight: 600;
    margin-bottom: 10px;
    padding: 5px 15px;
    background: var(--pink-soft);
    border-radius: var(--radius-round);
    display: inline-block;
}

.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 5px;
}

.review-text {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-info {
    text-align: left;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--pink-light);
    position: relative;
    /* Cute mail and love pattern */
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ctext x='25' y='50' font-size='20' opacity='0.07'%3E💌%3C/text%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ctext x='40' y='60' font-size='18' opacity='0.05'%3E💕%3C/text%3E%3C/svg%3E");
    background-color: var(--pink-light);
    background-size: 160px 160px, 200px 200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-medium);
    text-align: center;
    border: 3px solid var(--beige);
}

.contact-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: var(--pink-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--brown-medium);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-large);
    border: 3px solid var(--beige);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-medium);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-dark);
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ============================================
   Tiled Banner Above Footer
   ============================================ */
.tiled-banner {
    width: 100%;
    height: 80px;
    background-image: url('image3.png');
    background-size: auto 100%;
    background-position: center;
    background-repeat: repeat-x;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--pink-soft) 0%, var(--pink-blush) 50%, var(--pink-light) 100%);
    padding: 60px 0 40px;
    border-top: none;
    position: relative;
    overflow: hidden;
}

.footer .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--pink-deep);
}

.footer-tagline {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--pink-dark);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition-medium);
}

.footer-social-link:hover {
    background: var(--pink-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px dotted var(--beige);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.made-with {
    margin-top: 10px;
}

.footer-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--pink-medium);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item.large,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 3px dotted var(--pink-medium);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-medium);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title span {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .hero-mascot-img {
        max-height: 400px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .products-grid,
    .patterns-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content ul {
        grid-template-columns: 1fr;
    }
    
    .patterns-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .star {
        display: block;
        font-size: 1.5rem;
    }
    
    .mascot-container {
        bottom: 80px;
        left: 15px;
    }
    
    .mascot-body {
        font-size: 3rem;
    }
    
    .mascot-speech {
        max-width: 150px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .customizer-toggle {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .customizer-panel {
        width: 250px;
    }
    
    /* Disable custom cursor on mobile */
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title span {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .add-to-cart {
        width: 100%;
    }
    
    .pattern-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .pattern-footer .btn {
        width: 100%;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.pattern-card,
.review-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================
   Custom Orders Section
   ============================ */

.custom-orders-section {
    background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink-blush) 50%, var(--pink-light) 100%);
    padding: 5rem 0;
}

.custom-orders-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.custom-orders-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(194, 93, 120, 0.15);
}

.custom-orders-info h3 {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--pink-deep);
    margin-bottom: 1.5rem;
    text-align: center;
}

.custom-terms {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.term-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--pink-soft);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.term-item:hover {
    transform: translateX(5px);
}

.term-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.term-item strong {
    display: block;
    color: var(--pink-deep);
    margin-bottom: 0.25rem;
}

.term-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.custom-order-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(194, 93, 120, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--pink-deep);
    font-size: 0.9rem;
}

.custom-order-link {
    color: var(--pink-deep);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-order-link:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

/* Custom Orders Responsive */
@media (max-width: 900px) {
    .custom-orders-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Pinterest Embed */
.pinterest-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem;
}

.pinterest-board-link {
    text-decoration: none;
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(194, 93, 120, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pinterest-board-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(194, 93, 120, 0.3);
}

.pinterest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    width: 500px;
    height: 500px;
}

.pinterest-img {
    overflow: hidden;
}

.pinterest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pinterest-board-link:hover .pinterest-img img {
    transform: scale(1.05);
}

.pinterest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(194, 93, 120, 0.9));
    padding: 2rem 1rem 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pinterest-board-link:hover .pinterest-overlay {
    opacity: 1;
}

.pinterest-overlay-text {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

@media (max-width: 600px) {
    .pinterest-grid {
        width: 300px;
        height: 300px;
    }
}

/* Smooth scrolling for all anchor links */
html {
    scroll-padding-top: 100px;
}
