/* ============================================
   KLEIN BABY - Main Stylesheet
   Color Palette: Vivid Multicolor (Pink, Blue, Green, Orange, Yellow, Purple)
   Inspired by the store's colorful branding
   ============================================ */

/* === CSS Variables === */
:root {
    /* Primary colors from the neon sign */
    --pink: #FF1493;
    --pink-light: #FF69B4;
    --pink-dark: #D4006A;
    --blue: #1E90FF;
    --blue-light: #5BB5FF;
    --blue-dark: #0066CC;
    /* Vivid accent colors from store decorations */
    --green: #4CAF50;
    --green-light: #81C784;
    --orange: #FF9800;
    --orange-light: #FFB74D;
    --yellow: #FFD600;
    --yellow-light: #FFF176;
    --purple: #AB47BC;
    --purple-light: #CE93D8;
    --red: #EF5350;
    /* Gradients - rainbow/multicolor */
    --primary-gradient: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #D4006A 100%);
    --primary-gradient-h: linear-gradient(90deg, #FF69B4 0%, #FF1493 50%, #D4006A 100%);
    --accent-gradient: linear-gradient(135deg, #5BB5FF 0%, #1E90FF 50%, #0066CC 100%);
    --rainbow-gradient: linear-gradient(135deg, #FF1493 0%, #FF9800 25%, #FFD600 40%, #4CAF50 55%, #1E90FF 75%, #AB47BC 100%);
    --rainbow-gradient-h: linear-gradient(90deg, #FF1493 0%, #FF9800 20%, #FFD600 40%, #4CAF50 60%, #1E90FF 80%, #AB47BC 100%);
    --shine: linear-gradient(135deg, #FF69B4 0%, #FF9800 20%, #FFD600 35%, #4CAF50 50%, #1E90FF 70%, #AB47BC 85%, #FF69B4 100%);
    --pink-blue-gradient: linear-gradient(135deg, #FF1493 0%, #AB47BC 50%, #1E90FF 100%);
    --white: #ffffff;
    --off-white: #FFFDF7;
    --cream: #FFF8F0;
    --marble-bg: linear-gradient(135deg, #FFFDF7 0%, #FFF0F6 25%, #F0F8FF 50%, #FFFFF0 75%, #FFF0F6 100%);
    --dark: #1a1a2e;
    --dark-soft: #16213e;
    --text: #333333;
    --text-light: #555555;
    --text-muted: #888888;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-pink: 0 4px 30px rgba(255, 20, 147, 0.25);
    --shadow-blue: 0 4px 30px rgba(30, 144, 255, 0.25);
    --shadow-rainbow: 0 4px 30px rgba(255, 20, 147, 0.15), 0 4px 30px rgba(30, 144, 255, 0.1);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Fredoka', 'Arial Rounded MT Bold', sans-serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }
.pink-text { color: var(--pink); }
.rainbow-text {
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite linear;
    font-weight: 700;
}
.blue-text { color: var(--blue); }
.green-text { color: var(--green); }
.orange-text { color: var(--orange); }

/* === Preloader === */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--shine);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* === Navigation === */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.7rem 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink-light);
}

.nav-logo .logo-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-light);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rainbow-gradient);
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--pink-light);
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* === Hero Section === */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(255, 20, 147, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 40%, rgba(30, 144, 255, 0.15) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(76, 175, 80, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 152, 0, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.8) 100%);
    z-index: 1;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    opacity: 0;
    animation: float-particle 6s infinite;
}

.particle.pink { background: var(--pink-light); }
.particle.blue { background: var(--blue-light); }
.particle.purple { background: var(--purple-light); }
.particle.yellow { background: var(--yellow); }
.particle.green { background: var(--green-light); }
.particle.orange { background: var(--orange-light); }
.particle.red { background: var(--red); }

@keyframes float-particle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.hero-logo-wrapper {
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    width: 220px;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(30, 144, 255, 0.3), 0 10px 40px rgba(255, 20, 147, 0.2);
}

#hero h1 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--pink-light);
}

.hero-title-accent {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    background: var(--rainbow-gradient-h);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s infinite linear;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.hero-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.4), 0 4px 20px rgba(30, 144, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--blue-light);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-lg {
    padding: 1.1rem 3rem;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Scroll Indicator === */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: bounce 2s infinite;
}

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

/* === Sections === */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

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

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--pink);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-dark .section-title {
    color: var(--white);
}

.title-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.title-divider span {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rainbow-gradient);
    border-radius: 2px;
}

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

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* === Chi Siamo === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid transparent;
    border-image: var(--rainbow-gradient-h) 1;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
}

.stat-item:nth-child(2) .stat-number { color: var(--blue); }
.stat-item:nth-child(3) .stat-number { color: var(--green); }

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
    margin-top: 0.3rem;
}

.about-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--blue);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* === Brands === */
.brands-showcase {
    margin-bottom: 3rem;
    overflow: hidden;
}

.brands-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

.brand-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.brand-marquee::before,
.brand-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brand-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.brand-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brand-marquee.reverse .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.brand-name:hover {
    color: var(--pink-light);
}

.brand-dot {
    width: 6px;
    height: 6px;
    background: var(--rainbow-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.brands-grid {
    display: flex;
    justify-content: center;
}

.brand-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
}

.brand-card img {
    width: 100%;
    transition: transform 0.5s;
}

.brand-card:hover img {
    transform: scale(1.02);
}

/* === Gallery / Collezioni === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-brand {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-light);
}

.gallery-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === Collezioni Placeholder Cards === */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(30, 144, 255, 0.08);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-rainbow);
    border-color: rgba(30, 144, 255, 0.3);
}

.collection-icon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.collection-icon.neonati {
    background: linear-gradient(135deg, #FFF0F6, #FFD6EC);
    color: var(--pink);
}

.collection-icon.bambini {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: var(--blue);
}

.collection-icon.ragazzi {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: var(--green);
}

.collection-icon.cerimonia {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    color: var(--orange);
}

.collection-body {
    padding: 1.5rem;
    text-align: center;
}

.collection-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.collection-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* === Promozioni === */
.section-promo {
    position: relative;
    padding: 8rem 0;
    background: var(--marble-bg);
    overflow: hidden;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(255, 152, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(30, 144, 255, 0.06) 0%, transparent 50%);
}

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

.promo-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: var(--shine);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite linear;
    margin-bottom: 0.3rem;
}

.promo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.promo-prices {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.price-tag {
    background: var(--white);
    border: 2px solid rgba(30, 144, 255, 0.15);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 150px;
}

.price-tag:nth-child(1) { border-color: rgba(255, 20, 147, 0.2); }
.price-tag:nth-child(2) { border-color: rgba(255, 152, 0, 0.2); }
.price-tag:nth-child(3) { border-color: rgba(76, 175, 80, 0.2); }

.price-tag:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rainbow);
}

.price-tag:nth-child(1):hover { border-color: var(--pink); }
.price-tag:nth-child(2):hover { border-color: var(--orange); }
.price-tag:nth-child(3):hover { border-color: var(--green); }

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-dark);
}

.price-tag:nth-child(1) .price-value { color: var(--pink-dark); }
.price-tag:nth-child(2) .price-value { color: var(--orange); }
.price-tag:nth-child(3) .price-value { color: var(--green); }

.price-value sup {
    font-size: 1rem;
}

.promo-cta-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* === Negozi / Stores === */
.stores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.store-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rainbow);
    border-color: rgba(30, 144, 255, 0.3);
}

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

.store-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.store-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.store-details {
    margin-bottom: 1.5rem;
}

.store-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-detail i {
    color: var(--blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.store-detail span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.store-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* === News === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--dark-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.4);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dark);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.news-icon-placeholder.pink { color: var(--pink-light); background: linear-gradient(135deg, rgba(255,20,147,0.12), rgba(255,20,147,0.04)); }
.news-icon-placeholder.blue { color: var(--blue-light); background: linear-gradient(135deg, rgba(30,144,255,0.12), rgba(30,144,255,0.04)); }
.news-icon-placeholder.green { color: var(--green-light); background: linear-gradient(135deg, rgba(76,175,80,0.12), rgba(76,175,80,0.04)); }
.news-icon-placeholder.orange { color: var(--orange-light); background: linear-gradient(135deg, rgba(255,152,0,0.12), rgba(255,152,0,0.04)); }
.news-icon-placeholder.purple { color: var(--purple-light); background: linear-gradient(135deg, rgba(171,71,188,0.12), rgba(171,71,188,0.04)); }

.news-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.news-body {
    padding: 1.5rem;
}

.news-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-link:hover {
    color: var(--orange-light);
    gap: 0.8rem;
}

/* === Contatti === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(30, 144, 255, 0.3);
    box-shadow: var(--shadow-rainbow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.contact-card p,
.contact-card a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--pink);
}

/* === Contact Form === */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid #ede0e8;
    border-radius: var(--radius);
    background: var(--off-white);
    color: var(--text);
    transition: var(--transition);
    outline: none;
}

.form-group label {
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
    background: var(--white);
    padding: 0 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* === Footer === */
#footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 4rem 0 3rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 1rem;
}

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

.footer-logo .logo-sub {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blue-light);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--pink-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.contact-icon-whatsapp {
    background: #25D366 !important;
}

.contact-icon-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

.contact-card-link {
    cursor: pointer;
}

.contact-card-link:hover {
    border-color: #25D366;
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.2);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-rainbow);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.4), 0 4px 20px rgba(30, 144, 255, 0.2);
}

/* === Policy Pages === */
.policy-page {
    padding: 8rem 0 4rem;
    background: var(--off-white);
    min-height: 80vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.8;
}

.policy-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--blue-dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(30, 144, 255, 0.2);
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin: 1.5rem 0 0.8rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.policy-content a {
    color: var(--pink);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--pink-dark);
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.policy-content table thead {
    background: var(--primary-gradient);
    color: var(--white);
}

.policy-content table th {
    padding: 0.8rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.policy-content table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
    color: var(--text-light);
}

.policy-content table tbody tr:last-child td {
    border-bottom: none;
}

.policy-content table tbody tr:hover {
    background: rgba(30, 144, 255, 0.03);
}

.policy-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 1.5rem 0;
    text-decoration: none !important;
}

.policy-back:hover {
    color: var(--pink-dark);
    gap: 0.8rem;
}

/* === Map Placeholder === */
.map-placeholder {
    background: var(--cream);
    border: 2px dashed rgba(30, 144, 255, 0.25);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
    display: block;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.map-placeholder-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.map-placeholder-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-rainbow);
}

.store-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--radius);
}

/* === AOS-like Animations === */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
    }

    .image-frame img {
        height: 350px;
    }

    .stores-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .promo-prices {
        flex-direction: column;
        align-items: center;
    }

    .price-tag {
        width: 100%;
        max-width: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .hero-logo-img {
        width: 160px;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-stats {
        justify-content: center;
    }
}
