@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f7f7f7;
    --color-bg-dark: #1a1a1a;
    --color-bg-darker: #111111;
    --color-text: #000000;
    --color-text-muted: #6b6b6b;
    --color-text-light: #999999;
    --color-primary: #3b270c;
    --color-primary-hover: #2c1d09;
    --color-primary-light: rgba(59, 39, 12, 0.06);
    --color-accent: #de81ac;
    --color-border: #e8e8e8;
    --color-border-light: #f2f2f2;
    --font-body: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --header-height: 72px;
    --container-max: 1280px;
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-text);
    flex-shrink: 0;
}

.header-logo span { color: var(--color-primary); }

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav a:hover { color: var(--color-primary); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions button,
.header-actions a {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    position: relative;
}

.header-actions button:hover,
.header-actions a:hover { color: var(--color-primary); }

.header-actions .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.header-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 1px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg);
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 700px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll i {
    font-size: 1rem;
    animation: bounce 2s infinite;
}

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

/* ============ BANNER PROMO ============ */
.banner-promo {
    padding: 12px 0;
    background: var(--color-primary);
    text-align: center;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.banner-promo a { color: #fff; text-decoration: underline; }

/* ============ SECTION ============ */
.section {
    padding: 64px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ============ COLLECTION GRID ============ */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--color-bg-alt);
}

.collection-card.large {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img { transform: scale(1.05); }

.collection-card .collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    transition: var(--transition);
}

.collection-card:hover .collection-overlay {
    background: rgba(0,0,0,0.25);
}

.collection-card .collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.collection-card .collection-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.collection-card .collection-link {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.collection-card .collection-link:hover { color: #fff; }

/* ============ PRODUCT GRID ============ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    transition: var(--transition);
}

.product-card .product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-bg-alt);
    margin-bottom: 12px;
}

.product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-card .product-image-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image { opacity: 0; }
.product-card:hover .product-image-hover { opacity: 1; }

.product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
}

.product-card .product-swatches {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    gap: 4px;
}

.product-card .swatch-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    cursor: pointer;
}

.product-card .product-info {
    padding: 0 4px;
    text-align: center;
}

.product-card .product-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
    display: block;
}

.product-card .product-name:hover { color: var(--color-primary); }

.product-card .product-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.product-card .product-price .compare {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-right: 6px;
    font-weight: 400;
}

/* ============ BANNER FULL ============ */
.banner-full {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.banner-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-full .banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.banner-full .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 600px;
}

.banner-full .banner-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    display: block;
}

.banner-full .banner-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.banner-full .banner-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.6;
}

.banner-full .banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.banner-full .banner-cta:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ============ INSTAGRAM BANNER ============ */
.instagram-banner {
    padding: 48px 0;
    text-align: center;
    background: var(--color-bg-alt);
}

.instagram-banner .insta-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.instagram-banner .insta-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.instagram-banner .insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.instagram-banner .insta-grid-item {
    aspect-ratio: 1;
    background: var(--color-border);
    overflow: hidden;
}

.instagram-banner .insta-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-banner .insta-grid-item:hover img { transform: scale(1.05); }

.instagram-banner .insta-handle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.instagram-banner .insta-handle i { color: var(--color-primary); margin-right: 4px; }

/* ============ NEWSLETTER ============ */
.newsletter {
    padding: 64px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-text {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus { border-color: var(--color-primary); }

.newsletter-form input::placeholder { color: var(--color-text-light); }

.newsletter-form button {
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover { background: var(--color-primary-hover); }

/* ============ FOOTER ============ */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-column h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column ul li { margin-bottom: 8px; }

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

.footer-column ul li a:hover { color: #fff; }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-primary);
    color: #fff;
    background: var(--color-primary);
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.footer-contact a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover { color: #fff; }

.footer-payment-methods {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-payment-methods .pm-icon {
    padding: 6px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 32px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .header-nav.open { display: flex; }
    .header-mobile-toggle { display: flex; }
    .collection-grid { grid-template-columns: 1fr; gap: 12px; }
    .collection-card.large { grid-column: span 1; aspect-ratio: 3/4; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .banner-full { min-height: 300px; }
    .instagram-banner .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero { min-height: 70vh; }
    .hero-title { font-size: 2rem; }
}

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

@media (min-width: 769px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .collection-grid { grid-template-columns: repeat(3, 1fr); }
    .collection-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}
