:root {
  --bc-bg: #f8f4ed;
  --bc-accent: #d4b8a8;
  --bc-dark: #1f1f1f;
}

body {
  background-color: var(--bc-bg);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero {
  background: linear-gradient(135deg, #1f1f1f, #3A7040);
  color: white;
  padding: 8px 0;
}

.main-mockup {
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
}

/* ✅ GRID SİSTEM */
.color-grid {
  display: grid;
  grid-template-columns: repeat(8, 20px);
  grid-auto-rows: 20px;
  gap: 6px;
  justify-content: center;
}

/* ✅ KARE SWATCH */
.color-swatch {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #ccc;
  transition: all 0.2s ease;
}

/* Hover efekti */
.color-swatch:hover {
  transform: scale(1.2);
  z-index: 2;
}

/* Aktif renk */
.color-swatch.active {
  border: 2px solid var(--bc-dark);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
  transform: scale(1.15);
}

.product-info {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HERO KÜÇÜLTME */
.hero {
  padding: 18px 0;
}

.hero h1 {
  font-size: 24px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.hero .lead {
  font-size: 13px;
  margin-bottom: 0;
  opacity: 0.85;
}

.product-info h3.color-title {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  margin: 0 0 8px 0 !important;
  line-height: 1 !important;
}

.product-info {
  position: relative;
  top: -10px;
}

.clock-badge {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  min-width: 90px;
}

#clock {
  display: block;
  line-height: 1.2;
}

#clock .date {
  font-size: 16px;
  font-weight: 500;
}

#clock .time {
  font-size: 20px;
  font-weight: 700;
}

.mockup-wrapper {
  min-height: 600px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
