/* Variant 3: Etsy-First Layout - Emphasizes main CTA */

:root {
    --color-primary: #7f54b3;
    --color-primary-dark: #5d3d85;
    --color-primary-light: #9b74c7;
    --color-bg: #f5f1e8;
    --color-white: #ffffff;
    --color-cream: #faf8f4;
    --color-text: #3d3028;
    --color-text-muted: #8d7d6d;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg);
    background-image: url('https://nikyscreations.com/wp-content/uploads/2020/11/nikybackSemiScuro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.container {
    width: 100%;
    max-width: 700px;
}

.content-wrapper {
    animation: fadeIn 0.8s ease-out;
}

/* Header & Logo */
.site-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.logo {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

/* Social Stack */
.social-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Etsy Highlight - Main CTA */
.etsy-highlight {
    background: #F56400;
    color: var(--color-white);
    padding: 1.75rem 2rem;
    gap: 1.25rem;
    box-shadow:
        0 8px 24px rgba(245, 100, 0, 0.25),
        0 2px 8px rgba(245, 100, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.etsy-highlight:hover {
    transform: translateY(-4px) scale(1.02);
    background: #e55a00;
    box-shadow:
        0 16px 40px rgba(245, 100, 0, 0.35),
        0 4px 12px rgba(245, 100, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.etsy-highlight .icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    opacity: 0.95;
}

.etsy-highlight .etsy-logo {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.primary-label {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.secondary-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Social Row - Secondary CTAs */
.social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.social-compact {
    background: var(--color-white);
    padding: 1.25rem 1rem;
    gap: 0.875rem;
    justify-content: center;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.social-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.social-compact .icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.social-compact.instagram .icon {
    color: #e4405f;
}

.social-compact.facebook .icon {
    color: #3b5998;
}

.compact-label {
    font-size: 1rem;
    font-weight: 600;
}

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

/* Responsive */
@media (max-width: 640px) {
    body {
        padding: 1.5rem 1rem;
    }

    .etsy-highlight {
        padding: 1.5rem 1.5rem;
    }

    .primary-label {
        font-size: 1.25rem;
    }

    .secondary-label {
        font-size: 0.875rem;
    }

    .etsy-highlight .icon {
        width: 36px;
        height: 36px;
    }
}

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

    .etsy-highlight {
        padding: 1.25rem 1.25rem;
        gap: 1rem;
    }

    .social-compact {
        padding: 1rem;
    }

    .logo {
        max-width: 450px;
    }
}
