:root {
  --primary: #1a1a1a;
  --secondary: #f4f4f4;
  --accent: #ff4d00;
  --text-main: #1a1a1a;
  --text-muted: #666;
  --bg-main: #ffffff;
  --bg-offset: #fafafa;
  --border: #e5e5e5;
  --white: #ffffff;
  
  --card-shadow: 0 4px 20px rgba(0,0,0,0.05);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
  15 │ 
  16 │   --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
  --spacing-xxl: 128px;

  --font-display: 'Instrument Serif', serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

section {
  padding: var(--spacing-xxl) 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: var(--spacing-lg);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-actions {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-offset);
  padding-top: 80px;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: var(--spacing-md);
  color: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: var(--spacing-lg);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
}

 149 │ .hero-visual {
 150 │   position: absolute;
 151 │   top: 0;
 152 │   right: 0;
 153 │   width: 50%;
 154 │   height: 100%;
 155 │   background: #e5e5e5;
 156 │   overflow: hidden;
 157 │ }

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e5e5e5;
  background-image: 
    radial-gradient(at 0% 0%, hsla(253,16%,7%,1) 0, transparent 50%), 
    radial-gradient(at 50% 0%, hsla(225,39%,30%,1) 0, transparent 50%), 
    radial-gradient(at 100% 0%, hsla(339,49%,30%,1) 0, transparent 50%);
}

@keyframes move-stripes {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-lg);
}

.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }

/* Product Cards */
.product-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.product-image-container {
  aspect-ratio: 3/4;
  background-color: var(--bg-offset);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-md);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  background: var(--white);
  padding: 4px 12px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-info {
  text-align: left;
}

.product-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
}

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(100%);
  transition: var(--transition);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
}

 300 │ /* Placeholders */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  margin: 0 40px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.placeholder-image {
  width: 100%;
  height: 100%;
 304 │   background: #f0f0f0;
 305 │   display: flex;
 306 │   align-items: center;
 307 │   justify-content: center;
 308 │   position: relative;
 309 │ }
 310 │ 
 311 │ .placeholder-image::before {
 312 │   content: '';
 313 │   position: absolute;
 314 │   inset: 0;
 315 │   background: linear-gradient(135deg, transparent 45%, rgba(0,0,0,0.03) 50%, transparent 55%);
 316 │   background-size: 20px 20px;
 317 │ }

.placeholder-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* Section Header */
.section-header {
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title {
  font-size: 3rem;
}

/* Category Grid */
.category-card {
  height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-lg);
  color: var(--white);
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: -1;
  transition: var(--transition);
}

.category-card:hover .category-bg {
  transform: scale(1.1);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8));
}

.category-content {
  position: relative;
  z-index: 1;
}

.category-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--white);
}

.category-tagline {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* Value Items */
.value-item {
  padding: var(--spacing-md);
}

.value-icon {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  stroke-width: 1.5;
  margin-bottom: var(--spacing-md);
}

.value-title {
  margin: var(--spacing-md) 0 var(--spacing-sm);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.value-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Product Details Page */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.gallery-main {
  aspect-ratio: 4/5;
  background: var(--bg-offset);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

.gallery-thumb {
  aspect-ratio: 4/5;
  background: var(--bg-offset);
}

.product-sidebar {
  position: sticky;
  top: 120px;
}

.product-breadcrumb {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.product-header-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
}

.product-header-price {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
}

.product-options {
  margin-bottom: var(--spacing-xl);
}

.option-group {
  margin-bottom: var(--spacing-lg);
}

.option-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.size-selector {
  display: flex;
  gap: var(--spacing-sm);
}

.size-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.size-btn:hover, .size-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.color-selector {
  display: flex;
  gap: var(--spacing-sm);
}

.color-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
}

.color-btn.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.product-details-accordion {
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  padding: var(--spacing-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.accordion-content {
  padding-bottom: var(--spacing-md);
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--bg-offset);
  text-align: center;
  border-top: 1px solid var(--border);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.newsletter-text {
  margin: var(--spacing-md) 0 var(--spacing-lg);
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
}

.newsletter-input {
  flex: 1;
  padding: var(--spacing-md);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

/* Utils */
.ml-10 { margin-left: 10px; }
.dark-section { background: #111; color: var(--white); }
.border-white { border-color: var(--white); color: var(--white); }
.text-center { text-align: center; }

 452 │ /* Footer */
 453 │ .footer-description {
 454 │   font-size: 0.875rem;
 455 │   color: #999;
 456 │   margin-top: var(--spacing-md);
 457 │ }
 458 │ 
 459 │ footer {
  background: var(--primary);
  color: var(--white);
  padding: var(--spacing-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
}

.footer-links-title {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  letter-spacing: 1px;
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: var(--spacing-sm);
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: var(--spacing-lg);
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
  .col-3 { grid-column: span 6; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 768px) {
  .col-6, .col-4, .col-3 { grid-column: span 12; }
  .section-title { font-size: 2rem; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
