/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.15) 60%,
    rgba(0, 0, 0, 0.45) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  padding-top: 60px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 36px;
  animation: fadeUp 1.2s ease-out both;
}

.hero-cta {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  padding: 16px 40px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  animation: fadeUp 1.2s ease-out 0.3s both;
}

.hero-cta:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== SHOP BY CATEGORY ===== */
.category-section {
  background: #fff;
  padding: 80px 48px 90px;
  text-align: center;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  color: #111;
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.category-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  background: #ededed;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.05);
}

.category-card:hover .category-img {
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #222;
  text-transform: uppercase;
}

/* ===== JEWELRY CAROUSEL ===== */
.carousel-section {
  background: #fff;
  padding: 60px 0 70px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 32px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-item {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-4px);
}

.carousel-img {
  width: 240px;
  height: 240px;
  background: #ededed;
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-item:hover .carousel-img img {
  transform: scale(1.05);
}

.carousel-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.3px;
}

.carousel-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
  max-width: 220px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 48px;
}

.carousel-arrow {
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}

.carousel-arrow:hover {
  color: #666;
  transform: scale(1.15);
}

.carousel-progress {
  width: 280px;
  height: 2px;
  background: #ddd;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.carousel-progress-bar {
  height: 100%;
  background: #111;
  border-radius: 2px;
  width: 30%;
  transition: width 0.15s ease, left 0.15s ease;
  position: absolute;
  left: 0;
}

/* ===== MONTHLY ARTICLE ===== */
.article-section {
  background: #fff;
  padding: 0;
}

.article-wrap {
  display: flex;
  align-items: stretch;
  max-width: 100%;
}

.article-img {
  flex: 0 0 55%;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.article-img:hover img {
  transform: scale(1.03);
}

.article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 64px;
}

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  color: #111;
  line-height: 1.25;
  margin-bottom: 24px;
  max-width: 380px;
}

.article-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 380px;
}

.article-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #111;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px solid #111;
  transition: color 0.25s, border-color 0.25s;
}

.article-cta:hover {
  color: #888;
  border-color: #888;
}

/* ===== RESPONSIVE (home) ===== */
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .category-section {
    padding: 48px 20px 56px;
  }

  .carousel-track {
    padding: 0 20px;
    gap: 20px;
  }

  .carousel-item {
    flex: 0 0 180px;
  }

  .carousel-img {
    width: 180px;
    height: 180px;
  }

  .carousel-controls {
    padding: 0 20px;
  }

  .carousel-progress {
    width: 180px;
  }

  .article-wrap {
    flex-direction: column;
  }

  .article-img {
    flex: none;
  }

  .article-content {
    padding: 48px 24px;
  }
}

/* ── Shop the Look ── */
.shop-look-section {
  padding: 28px 40px 60px;
  background: #fff;
  max-width: 1120px;
  margin: 0 auto;
}

.shop-look-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.shop-look-item {
  display: flex;
  flex-direction: column;
}

.shop-look-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.shop-look-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shop-look-img-wrap:hover img {
  transform: scale(1.03);
}

.shop-look-info {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.shop-look-title {
  font-size: 18px;
  font-weight: 400;
  color: #111;
  margin: 0;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  letter-spacing: 0.3px;
}

.shop-look-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.shop-look-btn:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .shop-look-section {
    padding: 48px 16px;
  }
  .shop-look-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
