:root {
    --skims-beige: #e5d3c5;
    --skims-dark-beige: #c4a484;
    --skims-text: #2a2a2a;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--skims-text);
    background-color: #faf9f6;
    line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--skims-beige);
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
    padding: 20px 40px;
    background: transparent;
}

header.scrolled {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 15px 40px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-logo a {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    text-decoration: none;
    color: var(--skims-text);
    letter-spacing: -2px;
}

.nav-right a {
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    margin-left: 15px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), 
        url('products/0W1A0456.JPG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 80px;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-btns {
    margin-top: 25px;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary { background: white; color: black; }
.btn-secondary { background: rgba(0,0,0,0.5); color: white; border: 1px solid white; }

/* Product Grid */
.product-section {
    padding: 60px 40px;
}

.product-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 15px 0;
    text-align: left;
}

.product-name { font-size: 14px; font-weight: 600; }
.product-price { font-size: 14px; color: #666; }
.product-colors { font-size: 12px; color: #999; margin-top: 5px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 40px; }
    .hero-content h1 { font-size: 2rem; }
}