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

body { font-family: 'Inter', sans-serif; color: #2C2C2C; line-height: 1.6; background: #FAFAFA; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.header { background: #FFFFFF; border-bottom: 1px solid #E5E5E5; position: sticky; top: 0; z-index: 100; }

.header-content { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }

.logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: #2C2C2C; text-decoration: none; letter-spacing: 0.5px; }

.nav { display: flex; gap: 32px; }

.nav-link { color: #6B6B6B; text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }

.nav-link:hover, .nav-link.active { color: #2C2C2C; }

.header-actions { display: flex; gap: 20px; }

.icon-btn { background: none; border: none; color: #2C2C2C; font-size: 14px; cursor: pointer; font-family: 'Inter', sans-serif; }

.hero { position: relative; height: 600px; overflow: hidden; }

.hero-image { width: 100%; height: 100%; }

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3)); display: flex; align-items: center; justify-content: center; }

.hero-content { text-align: center; color: #FFFFFF; max-width: 600px; padding: 0 24px; }

.hero-title { font-size: 64px; font-weight: 300; margin-bottom: 16px; letter-spacing: 1px; }

.hero-subtitle { font-size: 18px; margin-bottom: 32px; font-weight: 300; }

.section { padding: 80px 0; }

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

.section-title { font-size: 42px; font-weight: 300; margin-bottom: 12px; color: #2C2C2C; }

.section-description { font-size: 16px; color: #6B6B6B; font-weight: 300; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.product-grid-large { grid-template-columns: repeat(3, 1fr); }

.product-card { background: #FFFFFF; transition: transform 0.3s; }

.product-card:hover { transform: translateY(-4px); }

.product-image-link { position: relative; display: block; overflow: hidden; background: #F5F5F5; }

.product-image { width: 100%; height: auto; display: block; transition: transform 0.4s; }

.product-image-link:hover .product-image { transform: scale(1.05); }

.product-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; opacity: 0; transition: opacity 0.3s; }

.product-image-link:hover .product-overlay { opacity: 1; }

.product-info { padding: 16px 0; }

.product-name { font-size: 16px; font-weight: 400; color: #2C2C2C; margin-bottom: 8px; }

.product-price { font-size: 15px; color: #6B6B6B; font-weight: 400; }

.product-colors { display: flex; gap: 8px; margin-top: 8px; }

.color-swatch { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; transition: transform 0.2s; }

.color-swatch:hover { transform: scale(1.2); }

.btn { padding: 14px 32px; border: none; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; text-decoration: none; display: inline-block; text-align: center; letter-spacing: 0.5px; }

.btn-primary { background: #2C2C2C; color: #FFFFFF; }

.btn-primary:hover { background: #1A1A1A; }

.btn-secondary { background: #FFFFFF; color: #2C2C2C; border: 1px solid #2C2C2C; }

.btn-secondary:hover { background: #2C2C2C; color: #FFFFFF; }

.btn-outline { background: transparent; color: #2C2C2C; border: 1px solid #2C2C2C; }

.btn-outline:hover { background: #2C2C2C; color: #FFFFFF; }

.btn-large { width: 100%; padding: 16px; font-size: 15px; margin-bottom: 12px; }

.cta-center { text-align: center; margin-top: 48px; }

.feature-banner { background: #F5F5F5; padding: 0; }

.feature-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }

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

.feature-text { padding: 60px; }

.feature-title { font-size: 48px; font-weight: 300; margin-bottom: 20px; }

.feature-description { font-size: 18px; color: #6B6B6B; margin-bottom: 32px; font-weight: 300; line-height: 1.7; }

.footer { background: #2C2C2C; color: #FFFFFF; padding: 60px 0 24px; }

.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-bottom: 40px; }

.footer-heading { font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }

.footer-link { display: block; color: #B8B8B8; text-decoration: none; margin-bottom: 12px; font-size: 14px; transition: color 0.2s; }

.footer-link:hover { color: #FFFFFF; }

.footer-text { color: #B8B8B8; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }

.newsletter-form { display: flex; gap: 8px; }

.newsletter-input { flex: 1; padding: 12px; border: 1px solid #4A4A4A; background: transparent; color: #FFFFFF; font-size: 14px; font-family: 'Inter', sans-serif; }

.newsletter-input::placeholder { color: #6B6B6B; }

.footer-bottom { border-top: 1px solid #4A4A4A; padding-top: 24px; text-align: center; }

.footer-copyright { color: #6B6B6B; font-size: 13px; }

.breadcrumb { background: #FFFFFF; border-bottom: 1px solid #E5E5E5; padding: 16px 0; }

.breadcrumb-link { color: #6B6B6B; text-decoration: none; font-size: 13px; transition: color 0.2s; }

.breadcrumb-link:hover { color: #2C2C2C; }

.breadcrumb-separator { color: #B8B8B8; margin: 0 8px; }

.breadcrumb-current { color: #2C2C2C; font-size: 13px; }

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

.collection-title { font-size: 36px; font-weight: 300; margin-bottom: 4px; }

.collection-count { color: #6B6B6B; font-size: 14px; }

.collection-filters { display: flex; gap: 12px; }

.filter-select { padding: 10px 16px; border: 1px solid #E5E5E5; background: #FFFFFF; font-size: 14px; font-family: 'Inter', sans-serif; cursor: pointer; }

.product-detail { padding: 60px 0; background: #FFFFFF; }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.product-gallery { position: sticky; top: 100px; }

.gallery-main { width: 100%; margin-bottom: 16px; background: #F5F5F5; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.thumb { width: 100%; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; border: 2px solid transparent; }

.thumb:hover, .thumb.active { opacity: 1; border-color: #2C2C2C; }

.product-detail-title { font-size: 36px; font-weight: 400; margin-bottom: 12px; }

.product-detail-price { font-size: 24px; color: #2C2C2C; margin-bottom: 16px; }

.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }

.stars { color: #2C2C2C; font-size: 16px; }

.rating-count { color: #6B6B6B; font-size: 14px; }

.product-description { color: #6B6B6B; font-size: 15px; line-height: 1.7; margin-bottom: 32px; }

.product-options { margin-bottom: 32px; }

.option-group { margin-bottom: 24px; }

.option-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 12px; }

.size-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; margin-bottom: 8px; }

.size-btn { padding: 10px; border: 1px solid #E5E5E5; background: #FFFFFF; cursor: pointer; font-size: 14px; transition: all 0.2s; font-family: 'Inter', sans-serif; }

.size-btn:hover, .size-btn.active { border-color: #2C2C2C; background: #2C2C2C; color: #FFFFFF; }

.size-guide-link { color: #6B6B6B; font-size: 13px; text-decoration: underline; }

.inseam-options { display: flex; gap: 12px; }

.inseam-btn { padding: 12px 20px; border: 1px solid #E5E5E5; background: #FFFFFF; cursor: pointer; font-size: 14px; transition: all 0.2s; font-family: 'Inter', sans-serif; }

.inseam-btn:hover, .inseam-btn.active { border-color: #2C2C2C; background: #2C2C2C; color: #FFFFFF; }

.product-features { border-top: 1px solid #E5E5E5; padding-top: 24px; margin-top: 32px; }

.feature-item { color: #6B6B6B; font-size: 14px; margin-bottom: 8px; }

.feature-item strong { color: #2C2C2C; font-weight: 500; }

.product-recommendations { margin-top: 80px; padding-top: 60px; border-top: 1px solid #E5E5E5; }

@media (max-width: 768px) {
.product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product-grid-large { grid-template-columns: repeat(2, 1fr); }
.hero { height: 400px; }
.hero-title { font-size: 36px; }
.feature-content { grid-template-columns: 1fr; }
.feature-image { height: 300px; }
.footer-content { grid-template-columns: 1fr; gap: 32px; }
.product-layout { grid-template-columns: 1fr; gap: 40px; }
.size-grid { grid-template-columns: repeat(4, 1fr); }
.collection-header { flex-direction: column; align-items: flex-start; gap: 16px; }
.collection-filters { width: 100%; flex-direction: column; }
.filter-select { width: 100%; }
}