/* Google Fonts - Distinctive Typography */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=Lora:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;600;700&display=swap');

/* Amazonic Art Design System - Enhanced */
:root {
    /* Enhanced Color Palette */
    --color-bg-cream: #FAF8F3;
    --color-bg-warm: #F5F1E8;
    --color-olive-dark: #3A4837;
    --color-olive: #4D5C4A;
    --color-olive-light: #6B7C65;
    --color-black: #1A1A1A;
    --color-gray: #626160;
    --color-gray-light: #8B8A89;
    --color-salmon: #F8A888;
    --color-salmon-deep: #E6896F;
    --color-mint: #CCEAEA;
    --color-mint-light: #E0F5F5;
    --color-accent-gold: #D4A574;
    --color-accent-terracotta: #C86B4E;
    --color-dark-text: #2F2E2E;
    --color-light-gray: #D3D3D3;
    --color-dark-bg: #2C2C2C;

    /* Typography System */
    --font-display: 'Crimson Text', serif;
    --font-body: 'Lora', serif;
    --font-decorative: 'Cormorant Garamond', serif;

    /* Spacing & Rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--color-bg-cream) 0%, var(--color-bg-warm) 100%);
    color: var(--color-dark-text);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

/* Enhanced Typography */
h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 600;
    color: var(--color-olive-dark);
    line-height: 1.3;
}

h4 {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 600;
    color: var(--color-olive);
    line-height: 1.4;
}

.subtitle-decorative {
    font-family: var(--font-decorative);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-olive);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.8;
    max-width: 65ch;
}

/* Header - Enhanced */
header {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(77, 92, 74, 0.1);
    transition: all var(--transition-smooth);
}

header:hover {
    background: rgba(250, 248, 243, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-olive-dark);
    letter-spacing: 10px;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.logo:hover {
    color: var(--color-olive);
    letter-spacing: 12px;
}

.logo-underline {
    text-decoration: underline;
    text-decoration-color: var(--color-salmon);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

nav {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    text-decoration: none;
    position: relative;
    transition: all var(--transition-smooth);
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-salmon), var(--color-accent-terracotta));
    transition: width var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-salmon-deep);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-btn, .cart-btn {
    background: none;
    border: 1px solid var(--color-olive-light);
    color: var(--color-olive-dark);
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-body);
    padding: 10px 24px;
    border-radius: 30px;
    transition: all var(--transition-smooth);
    font-weight: 500;
}

.login-btn:hover, .cart-btn:hover {
    background: var(--color-olive-dark);
    color: var(--color-bg-cream);
    border-color: var(--color-olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 92, 74, 0.2);
}

/* Enhanced Buttons */
.btn-salmon {
    background: linear-gradient(135deg, var(--color-salmon) 0%, var(--color-salmon-deep) 100%);
    color: var(--color-dark-text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(248, 168, 136, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-salmon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(248, 168, 136, 0.4);
    background: linear-gradient(135deg, var(--color-salmon-deep) 0%, var(--color-salmon) 100%);
}

.btn-mint {
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-light) 100%);
    color: var(--color-dark-text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(204, 234, 234, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-mint:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(204, 234, 234, 0.4);
    background: linear-gradient(135deg, var(--color-mint-light) 0%, var(--color-mint) 100%);
}

/* Decorative Line - Enhanced */
.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-salmon), var(--color-accent-gold));
    margin: 20px 0;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(248, 168, 136, 0.3);
}

/* Hero Section - With Animations */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 80px;
    align-items: center;
    min-height: 85vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(204, 234, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(248, 168, 136, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    animation: fadeInScale 1s ease-out;
    animation-fill-mode: both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(77, 92, 74, 0.1);
    transition: all var(--transition-smooth);
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(77, 92, 74, 0.15);
}

.hero-content {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero-content .subtitle-decorative {
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

.hero-content .decorative-line {
    animation: expandWidth 1s ease-out 0.7s;
    animation-fill-mode: both;
    transform-origin: left;
}

.hero-content h1 {
    margin: 24px 0;
    animation: fadeInUp 1s ease-out 0.9s;
    animation-fill-mode: both;
}

.hero-content p {
    margin: 30px 0;
    animation: fadeInUp 1s ease-out 1.1s;
    animation-fill-mode: both;
}

.hero-content button {
    animation: fadeInUp 1s ease-out 1.3s;
    animation-fill-mode: both;
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Two Column Section */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 120px 80px;
    align-items: center;
    position: relative;
}

.two-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-smooth);
}

.two-column img:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--color-bg-warm) 100%);
    padding: 120px 80px;
    text-align: center;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-olive-light), transparent);
}

/* Enhanced Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 60px 0;
}

/* Enhanced Product Card */
.product-card {
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 12px;
    transition: all var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 234, 234, 0.1) 0%, rgba(248, 168, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(77, 92, 74, 0.08);
}

/* Product Card — Image Hover Crossfade */
.product-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.5s ease, transform var(--transition-smooth);
}

.product-card-img-default {
    opacity: 1;
    z-index: 1;
}

.product-card-img-hover {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .product-card-img-default {
    opacity: 0;
}

.product-card:hover .product-card-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* When no hover image exists, scale the default */
.product-card:hover .product-card-img-default:only-child {
    opacity: 1;
    transform: scale(1.05);
}

/* Product Card — Bilingual Names */
.product-name-es {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-olive-dark);
    margin: 8px 0 2px;
    line-height: 1.3;
    transition: color var(--transition-smooth);
}

.product-card:hover .product-name-es {
    color: var(--color-salmon-deep);
}

.product-name-en {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gray-light);
    font-style: italic;
    margin: 0 0 4px;
    line-height: 1.4;
}

.product-dimensions {
    font-size: 13px;
    color: var(--color-gray);
    margin: 4px 0;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin: 6px 0;
}

.product-tag {
    font-size: 11px;
    font-family: var(--font-body);
    color: var(--color-olive);
    background: rgba(77, 92, 74, 0.08);
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.02em;
}

.card-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--color-salmon) 0%, var(--color-accent-terracotta) 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 3;
    letter-spacing: 0.03em;
}

/* Product Card — Price & Discount */
.product-card .price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gray);
    margin: 8px 0;
}

.price-has-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-original {
    text-decoration: line-through;
    color: var(--color-gray-light);
    font-size: 15px;
    font-weight: 400;
}

.price-sale {
    color: var(--color-accent-terracotta);
    font-size: 20px;
    font-weight: 700;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-salmon) 0%, var(--color-accent-terracotta) 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}

/* Sidebar — Active Filter */
.sidebar a.active-filter {
    color: var(--color-salmon-deep);
    font-weight: 600;
}

/* Banner Section */
.banner {
    background: linear-gradient(to right,
        var(--color-olive-dark) 20%,
        var(--color-salmon) 20%,
        var(--color-salmon) 80%,
        var(--color-olive-dark) 80%);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.banner-content {
    background-color: var(--color-bg-cream);
    display: inline-block;
    padding: 40px 80px;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.banner-content em {
    font-size: 24px;
    font-family: var(--font-decorative);
    color: var(--color-gray);
    font-style: italic;
}

/* Hashtag Section */
.hashtag-section {
    background: white;
    padding: 120px 80px;
    text-align: center;
}

.image-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.image-row img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-row img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* CTA Dark Section */
.cta-dark {
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-olive-dark) 100%);
    color: white;
    padding: 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(248, 168, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(204, 234, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-dark h3,
.cta-dark h2 {
    color: white;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    font-size: 80px;
    margin-top: 30px;
    filter: drop-shadow(0 8px 16px rgba(37, 211, 102, 0.3));
    transition: all var(--transition-smooth);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

.whatsapp-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 12px 24px rgba(37, 211, 102, 0.5));
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-warm) 100%);
    padding: 80px 80px 40px;
    border-top: 1px solid rgba(77, 92, 74, 0.15);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 24px;
    color: var(--color-olive-dark);
}

.footer-tagline {
    font-size: 16px;
    color: var(--color-gray);
    max-width: 450px;
    line-height: 1.8;
}

.newsletter-form {
    text-align: right;
}

.newsletter-form h4 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--color-olive-dark);
}

.newsletter-form input {
    padding: 14px 20px;
    width: 280px;
    border: 2px solid var(--color-olive-light);
    border-radius: 30px;
    margin-right: 12px;
    font-family: var(--font-body);
    transition: all var(--transition-smooth);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-salmon);
    box-shadow: 0 4px 16px rgba(248, 168, 136, 0.2);
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(77, 92, 74, 0.15);
}

.footer-column h5 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--color-olive-dark);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(77, 92, 74, 0.1);
    font-size: 14px;
    color: var(--color-gray);
}

/* Contact Page */
.contact-section {
    background: linear-gradient(to bottom, var(--color-salmon), #FFD4C8);
    padding: 100px 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 2px solid rgba(26, 26, 26, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    transition: all var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-olive-dark);
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

/* About Page Sections */
.about-intro {
    padding: 100px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, white 100%);
}

.about-intro h4 {
    font-size: 22px;
    color: var(--color-olive);
    font-weight: 400;
    font-style: italic;
    margin-top: 40px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-section {
    background: linear-gradient(135deg, var(--color-light-gray) 0%, #E0DFDF 100%);
    padding: 80px 80px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.about-section h4 {
    font-size: 20px;
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* Shop Page */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding: 60px 80px;
}

.sidebar {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sidebar h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-olive-dark);
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin-bottom: 14px;
}

.sidebar a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 15px;
    transition: all var(--transition-smooth);
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.sidebar a:hover {
    color: var(--color-salmon-deep);
    background: rgba(248, 168, 136, 0.1);
    transform: translateX(4px);
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.product-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-grid-shop .product-name-es {
    font-size: 20px;
    margin: 4px 0 2px;
}

.product-grid-shop .product-name-en {
    font-size: 12px;
}

.product-grid-shop .price {
    font-size: 15px;
    margin: 4px 0;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, var(--color-salmon), var(--color-salmon-deep));
    color: white;
    padding: 18px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(248, 168, 136, 0.4);
    transition: all var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
    display: block;
}

/* Social Links */
.social-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-olive-dark);
    text-decoration: none;
    padding: 12px 28px;
    border: 2px solid var(--color-olive-light);
    border-radius: 30px;
    transition: all var(--transition-smooth);
    letter-spacing: 0.05em;
}

.social-link:hover {
    background: var(--color-olive-dark);
    color: var(--color-bg-cream);
    border-color: var(--color-olive-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(77, 92, 74, 0.2);
}

/* Carousel */
.mockup-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.carousel-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-widget:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(248, 168, 136, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }

    .hero,
    .two-column,
    .product-grid,
    .footer-top,
    .contact-section,
    .about-section,
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }

    header {
        padding: 20px 30px;
    }

    .product-grid-shop {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
    }
}
