/* =========================================
   JamenTaylor / Latest Drop
   ========================================= */

/* ---------- Hero ---------- */
.ld-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--brand-black);
}
.ld-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
  z-index: 1;
}
.ld-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  z-index: 1;
}
.ld-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 850px;
  padding: 6rem 2rem;
  animation: ldFadeUp .8s ease-out;
}
.ld-hero-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.25);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--brand-gold-light);
}
.ld-hero-content h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.ld-hero-content h1 span {
  display: block;
  color: var(--brand-gold-light);
  font-size: .55em;
  font-weight: 400;
  letter-spacing: .08em;
  margin-top: .3em;
  font-style: italic;
}
.ld-hero-content p {
  font-size: clamp(1rem, .4vw + .9rem, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: .75;
  line-height: 1.7;
  font-weight: 300;
}
.ld-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--brand-gold);
  margin: 0 auto 2rem;
  opacity: .5;
}
.ld-hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes ldFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn-ld-primary {
  background: var(--brand-black);
  color: #fff !important;
  padding: 14px 36px;
  border: 1px solid var(--brand-gold);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
.btn-ld-primary:hover {
  background: var(--brand-gold);
  color: var(--brand-black) !important;
}
.btn-ld-outline {
  background: transparent;
  color: #fff !important;
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,.4);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
.btn-ld-outline:hover {
  background: #fff;
  color: var(--brand-black) !important;
  border-color: #fff;
}
.btn-ld-shop {
  display: inline-block;
  padding: 10px 24px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  background: var(--brand-black);
  color: #fff !important;
}
.btn-ld-shop:hover {
  background: var(--brand-gold);
  color: var(--brand-black) !important;
}

/* ---------- Section Headings ---------- */
.ld-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.ld-section-header h2 {
  font-size: clamp(1.8rem, 2.5vw + .5rem, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: .75rem;
  letter-spacing: .06em;
}
.ld-section-header p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.ld-section-header .ld-heading-line {
  width: 50px;
  height: 1px;
  background: var(--brand-gold);
  margin: 1rem auto 0;
}

/* ---------- Product Grid ---------- */
.ld-products {
  padding: 100px 0;
  background: #fff;
}
.ld-product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--brand-gold);
}
.ld-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ld-product-image {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: var(--brand-cream);
}
.ld-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.ld-product-card:hover .ld-product-image img {
  transform: scale(1.04);
}
.ld-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
}
.ld-badge-limited {
  background: #ef4444;
  color: #fff;
}
.ld-badge-exclusive {
  background: var(--brand-black);
  color: var(--brand-gold-light);
  border: 1px solid rgba(201,169,110,.3);
}
.ld-product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ld-product-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: .5rem;
  line-height: 1.3;
  letter-spacing: .02em;
}
.ld-product-price {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.ld-product-price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: .85rem;
  margin-right: .4rem;
}
.ld-product-price ins {
  text-decoration: none;
  color: var(--brand-gold);
  font-weight: 500;
}
.ld-product-footer {
  margin-top: auto;
}

/* ---------- Promo Banner ---------- */
.ld-promo {
  padding: 80px 0;
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
}
.ld-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(201,169,110,.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.03) 0%, transparent 40%);
}
.ld-promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.ld-promo-content .ld-promo-tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.2);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--brand-gold-light);
}
.ld-promo-content h2 {
  font-size: clamp(1.8rem, 3vw + .5rem, 3.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .04em;
}
.ld-promo-content h2 em {
  color: var(--brand-gold-light);
  font-style: italic;
}
.ld-promo-content p {
  font-size: 1rem;
  opacity: .7;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}
.btn-ld-promo {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  background: var(--brand-gold);
  color: var(--brand-black) !important;
}
.btn-ld-promo:hover {
  background: var(--brand-gold-light);
  color: var(--brand-black) !important;
}

/* ---------- CTA / Next Drop ---------- */
.ld-cta {
  padding: 100px 0;
  background: var(--brand-cream);
}
.ld-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ld-cta-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.ld-cta-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--brand-gold);
}
.ld-cta h2 {
  font-size: clamp(2rem, 2.5vw + .5rem, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: .04em;
}
.ld-cta h2 em {
  color: var(--brand-gold);
  font-style: italic;
}
.ld-cta p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.ld-cta-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ld-cta-tag {
  padding: 8px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #fff;
  color: var(--text-primary);
  border: 1px solid rgba(0,0,0,.08);
}

/* ---------- Back to Top ---------- */
.ld-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  width: 44px;
  height: 44px;
  background: var(--brand-black);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.ld-to-top:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
  border-color: var(--brand-gold);
}
.ld-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .ld-product-image { height: 320px; }
}
@media (max-width: 768px) {
  .ld-hero { min-height: 60vh; }
  .ld-hero-content { padding: 4rem 1.5rem; }
  .ld-products { padding: 70px 0; }
  .ld-promo { padding: 60px 0; }
  .ld-cta { padding: 70px 0; }
  .ld-product-image { height: 300px; }
}
@media (max-width: 576px) {
  .ld-hero-content h1 { letter-spacing: .02em; }
  .ld-product-image { height: 280px; }
  .ld-hero-buttons { flex-direction: column; align-items: center; }
  .ld-hero-buttons a { width: 100%; max-width: 280px; text-align: center; }
}

/* ---------- Category Filter Tabs (Shop page) ---------- */
.ld-cta-tags a.ld-cta-tag {
  transition: all .3s ease;
  cursor: pointer;
}
.ld-cta-tags a.ld-cta-tag:hover {
  background: var(--brand-black);
  color: #fff;
  border-color: var(--brand-black);
}
.ld-cta-tag.ld-tag-active {
  background: var(--brand-black) !important;
  color: var(--brand-gold-light) !important;
  border-color: var(--brand-gold) !important;
}

/* ---------- Pagination ---------- */
.ld-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ld-pagination li { display: inline-block; }
.ld-pagination a,
.ld-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: var(--text-primary);
  transition: all .3s ease;
}
.ld-pagination a:hover {
  background: var(--brand-black);
  color: #fff;
  border-color: var(--brand-black);
}
.ld-pagination .current {
  background: var(--brand-black);
  color: var(--brand-gold-light);
  border-color: var(--brand-gold);
}
