/* Watches Home Variant */

/* ── Hero ── */
.wtc-hero { position: relative; overflow: hidden; background: #0a0a0a; }
.wtc-hero-track { position: relative; height: 580px; }
.wtc-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.wtc-hero-slide.active { opacity: 1; }
.wtc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 55%, transparent 100%);
}
.wtc-hero-caption {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 0; right: 0;
}
.wtc-hero-sub {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--molla-accent); margin-bottom: 16px;
}
.wtc-hero-title {
  font-size: 3.4rem; font-weight: 300; color: #fff;
  letter-spacing: 3px; line-height: 1.2; margin-bottom: 32px;
  text-transform: uppercase; max-width: 540px;
}
.wtc-hero-btn {
  display: inline-block; padding: 14px 36px;
  border: 1px solid var(--molla-accent); color: var(--molla-accent);
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
}
.wtc-hero-btn:hover { background: var(--molla-accent); color: #fff; }

.wtc-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.wtc-hero-arrow:hover { border-color: var(--molla-accent); background: var(--molla-accent); }
.wtc-prev { left: 24px; }
.wtc-next { right: 24px; }
.wtc-hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.wtc-dot {
  width: 24px; height: 2px; background: rgba(255,255,255,.3);
  border: none; cursor: pointer; transition: background .2s, width .2s;
}
.wtc-dot.active { background: var(--molla-accent); width: 40px; }

/* ── Category Strip ── */
.wtc-cats-section { padding: 28px 0; border-bottom: 1px solid #eee; }
.wtc-cats-strip { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.wtc-cat-pill {
  display: inline-block; padding: 8px 22px;
  border: 1px solid #ddd; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; color: #555;
  text-decoration: none; transition: border-color .15s, color .15s;
}
.wtc-cat-pill:hover { border-color: var(--molla-accent); color: var(--molla-accent); }

/* ── Section shared ── */
.wtc-products-section { padding: 70px 0; }
.wtc-section-dark { background: #0f0f0f; }
.wtc-section-dark .wtc-section-label { color: var(--molla-accent); }
.wtc-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.wtc-section-label {
  display: block; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--molla-accent); margin-bottom: 6px;
}
.wtc-section-title {
  font-size: 24px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; color: #111;
}
.wtc-view-all {
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--molla-accent); text-decoration: none; display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--molla-accent); padding-bottom: 2px;
}
.wtc-view-all:hover { color: var(--molla-accent); opacity: .8; }

/* ── Products Grid ── */
.wtc-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wtc-products-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Brands ── */
.wtc-brands-section { padding: 50px 0; background: #f9f7f4; }
.wtc-brands-label {
  text-align: center; font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #999; margin-bottom: 28px;
}
.wtc-brands-inner { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.wtc-brand-item { text-decoration: none; opacity: .4; transition: opacity .2s; }
.wtc-brand-item:hover { opacity: 1; }
.wtc-brand-item img { max-height: 32px; max-width: 100px; object-fit: contain; filter: grayscale(100%); transition: filter .2s; }
.wtc-brand-item:hover img { filter: none; }
.wtc-brand-name { font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #333; }

/* ── Blog ── */
.wtc-blog-section { padding: 70px 0; background: #fafafa; }
.wtc-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wtc-blog-card { display: block; text-decoration: none; color: inherit; }
.wtc-blog-card:hover { color: inherit; }
.wtc-blog-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 20px; }
.wtc-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wtc-blog-card:hover .wtc-blog-img img { transform: scale(1.04); }
.wtc-blog-title { font-size: 15px; font-weight: 600; color: #111; margin-bottom: 10px; line-height: 1.5; }
.wtc-blog-excerpt { font-size: 13px; color: #777; line-height: 1.7; margin-bottom: 14px; }
.wtc-blog-more { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--molla-accent); display: flex; align-items: center; gap: 6px; }

/* ── Promo Banners ── */
.wtc-promo-banners { padding: 50px 0; }
.wtc-promo-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.wtc-promo-card {
  position: relative; overflow: hidden; border-radius: 2px;
  min-height: 200px; display: flex; align-items: center;
}
.wtc-promo-dark { background: #111; }
.wtc-promo-accent { background: #e04040; justify-content: center; }
.wtc-promo-body { padding: 28px 32px; position: relative; z-index: 2; }
.wtc-promo-body--center { text-align: center; padding: 28px 40px; }
.wtc-promo-tag {
  display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: 10px;
}
.wtc-promo-title {
  font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 18px;
  text-transform: uppercase; letter-spacing: 1px;
}
.wtc-promo-btn {
  display: inline-block; color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-bottom: 2px solid #fff; padding-bottom: 2px;
}
.wtc-promo-sup {
  display: block; font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 10px;
}
.wtc-promo-sale {
  font-size: 64px; font-weight: 900; color: #fff; letter-spacing: 6px; margin: 0;
}
.wtc-promo-img-wrap {
  position: absolute; right: -10px; bottom: 0; height: 100%;
  display: flex; align-items: flex-end;
}
.wtc-promo-img-wrap--right { right: -20px; }
.wtc-promo-img-wrap img { max-height: 180px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(0,0,0,.4)); }

/* ── Services ── */
.wtc-services-section { padding: 56px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.wtc-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.wtc-service-item { display: flex; align-items: flex-start; gap: 18px; }
.wtc-service-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1.5px solid #ddd; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #555;
}
.wtc-service-icon--accent { border-color: var(--molla-accent); color: var(--molla-accent); }
.wtc-service-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 6px; }
.wtc-service-desc { font-size: 12px; color: #888; line-height: 1.6; margin: 0; }

/* ── Instagram ── */
.wtc-insta-section { padding: 56px 0; }
.wtc-insta-header { text-align: center; margin-bottom: 28px; }
.wtc-insta-title {
  font-size: 22px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: #111;
}
.wtc-insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wtc-insta-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.wtc-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wtc-insta-item:hover img { transform: scale(1.06); }
.wtc-insta-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  font-size: 28px; color: #fff;
}
.wtc-insta-item:hover .wtc-insta-overlay { opacity: 1; }

/* ── Newsletter ── */
.wtc-nl-section { padding: 64px 0; text-align: center; border-top: 1px solid #eee; }
.wtc-nl-title { font-size: 18px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: #111; margin-bottom: 10px; }
.wtc-nl-sub { font-size: 13px; color: #888; margin-bottom: 28px; }
.wtc-nl-form { display: flex; max-width: 480px; margin: 0 auto; }
.wtc-nl-input {
  flex: 1; border: 1px solid #ddd; border-right: none;
  padding: 12px 18px; font-size: 14px; outline: none;
}
.wtc-nl-input:focus { border-color: var(--molla-accent); }
.wtc-nl-btn {
  padding: 12px 28px; background: var(--molla-accent); color: #fff;
  border: none; font-size: 13px; font-weight: 600; cursor: pointer; white-space: nowrap;
  transition: opacity .2s;
}
.wtc-nl-btn:hover { opacity: .85; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .wtc-products-grid, .wtc-products-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .wtc-services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .wtc-hero-track { height: 420px; }
  .wtc-hero-title { font-size: 2.2rem; }
  .wtc-products-grid, .wtc-products-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .wtc-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .wtc-brands-inner { gap: 28px; }
  .wtc-promo-grid { grid-template-columns: 1fr; }
  .wtc-promo-card { min-height: 160px; }
  .wtc-promo-sale { font-size: 48px; }
  .wtc-insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wtc-hero-track { height: 300px; }
  .wtc-hero-title { font-size: 1.6rem; letter-spacing: 1px; }
  .wtc-products-grid, .wtc-products-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wtc-blog-grid { grid-template-columns: 1fr; }
  .wtc-services-grid { grid-template-columns: 1fr; gap: 20px; }
  .wtc-nl-form { flex-direction: column; }
  .wtc-nl-input { border-right: 1px solid #ddd; border-bottom: none; }
}
