/* ==========================================================================
   DS HOME — HOME PAGE STYLES
   ========================================================================== */

/* ============== HERO — EDITORIAL CINEMATOGRÁFICO ============== */
.hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/capa-dshome.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroSubtleZoom 28s ease-in-out infinite alternate;
  filter: brightness(0.85) contrast(1.05);
}

@keyframes heroSubtleZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.75) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.85) 100%);
}

/* Vignette dourado nas bordas */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(212, 175, 55, 0.04) 80%,
    rgba(0,0,0,0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  width: 100%;
  max-width: 920px;
}

.hero__content {
  color: var(--white);
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Cinzel', serif;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 8px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-400);
  opacity: 0.6;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 32px;
  letter-spacing: -2px;
  color: var(--white);
}

.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #F0D77A 0%, #D4AF37 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.hero__description {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 56px;
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all var(--t-base);
  padding: 14px 8px;
  position: relative;
}

.hero__cta-secondary::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 36px;
  height: 1px;
  background: var(--gold-400);
  opacity: 0.5;
  transition: all var(--t-base);
}

.hero__cta-secondary:hover {
  color: var(--gold-300);
}

.hero__cta-secondary:hover::after {
  opacity: 1;
  right: 8px;
}

.hero__cta-secondary i {
  width: 16px;
  height: 16px;
  transition: transform var(--t-base);
}

.hero__cta-secondary:hover i {
  transform: translateX(6px);
}

/* Scroll indicator no fim do hero */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-400));
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

@media (max-width: 768px) {
  .hero {
    min-height: 88vh;
  }
  .hero__container {
    padding: 80px 0;
  }
  .hero__eyebrow {
    letter-spacing: 5px;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after {
    width: 24px;
  }
  .hero__title {
    font-size: clamp(44px, 11vw, 64px);
  }
  .hero__description {
    font-size: 16px;
    margin-bottom: 40px;
  }
  .hero__scroll {
    display: none;
  }
}

/* ============== CATEGORIAS ============== */
.categories-section {
  padding: 100px 0;
  background: var(--off-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 24px;
  }
}

.cat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  min-height: 180px;
  border: 1px solid var(--gray-pale);
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.cat-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  padding: 40px;
  align-items: flex-start;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
  border: none;
}

.cat-card--featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cat-card--featured:hover {
  border: none;
}

.cat-card__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  border-radius: var(--r-md);
}

.cat-card--featured .cat-card__icon {
  font-size: 64px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold-400);
  width: 100px;
  height: 100px;
  align-self: flex-start;
}

.cat-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-align: center;
}

.cat-card--featured .cat-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  margin-bottom: 12px;
  line-height: 1.1;
}

.cat-card__description {
  display: none;
}

.cat-card--featured .cat-card__description {
  display: block;
  color: var(--gold-300);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 320px;
  line-height: 1.6;
}

.cat-card__link {
  display: none;
}

.cat-card--featured .cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 13px;
  text-transform: uppercase;
}

.cat-card__count {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

/* ============== LINHA PRÓPRIA — EDITORIAL PREMIUM ============== */
.own-line {
  padding: 100px 0 30px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Watermark gigante "DS" no fundo */
.own-line::before {
  content: 'DS';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: 480px;
  font-weight: 900;
  color: var(--gold-50);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.own-line > .container {
  position: relative;
  z-index: 1;
}

/* Bloco de destaque sobre a marca antes dos produtos */
.own-line__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  color: var(--white);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .own-line__intro {
    grid-template-columns: 1.1fr 1fr;
    padding: 80px;
  }
}

.own-line__intro::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 60%);
  pointer-events: none;
}

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

.own-line__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cinzel', serif;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.own-line__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-400);
}

.own-line__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: -1px;
}

.own-line__title em {
  font-style: italic;
  display: block;
  background: linear-gradient(135deg, #F0D77A 0%, #D4AF37 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 8px;
}

.own-line__description {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.own-line__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.own-line__feature {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}

.own-line__feature:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold-400);
  transform: translateY(-4px);
}

.own-line__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  margin-bottom: 14px;
}

.own-line__feature-icon i {
  width: 22px;
  height: 22px;
}

.own-line__feature strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-300);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.own-line__feature span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  display: block;
}

/* Lines decorativas nos lados do título da grid */
.own-line__divider {
  text-align: center;
  margin: 48px auto 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.own-line .section-footer {
  margin-top: 24px;
}

.own-line__divider::before,
.own-line__divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-300), transparent);
}

.own-line__divider span {
  font-family: 'Cinzel', serif;
  color: var(--gold-600);
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}

@media (max-width: 768px) {
  .own-line::before {
    font-size: 280px;
    opacity: 0.4;
  }
  .own-line__intro {
    padding: 40px 28px;
  }
  .own-line__features {
    grid-template-columns: 1fr;
  }
}

/* ============== PRODUCT GRID ============== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* PRODUCT CARD - PREMIUM VERSION */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--gray-pale);
  transition: all var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxe);
}

.product-card__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.product-card__wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
  transition: all var(--t-fast);
}

.product-card__wishlist:hover {
  background: var(--gold-100);
  transform: scale(1.1);
}

.product-card__wishlist.is-active {
  background: var(--gold-400);
  color: var(--black);
}

.product-card__wishlist.is-active i {
  fill: currentColor;
}

.product-card__wishlist i {
  width: 18px;
  height: 18px;
  color: var(--dark-gray);
}

.product-card__image {
  aspect-ratio: 1/1;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--t-luxe);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__quick-action {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, var(--black), transparent);
  display: flex;
  justify-content: center;
  transition: bottom var(--t-base);
}

.product-card:hover .product-card__quick-action {
  bottom: 0;
}

.product-card__quick-btn {
  padding: 10px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-card__quick-btn i {
  width: 16px;
  height: 16px;
}

.product-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__line {
  font-size: 10px;
  color: var(--gold-600);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.product-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 46px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  color: var(--gold-400);
  font-size: 13px;
  letter-spacing: 2px;
}

.rating-count {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.product-card__price {
  margin-bottom: 20px;
  flex: 1;
}

.product-card__price-old {
  display: block;
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.product-card__price-current {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  font-family: 'Inter', sans-serif;
}

.product-card__price-current sup {
  font-size: 16px;
  font-weight: 700;
}

.product-card__price-installments {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 500;
}

.product-card__price-installments strong {
  color: var(--success);
}

.product-card__btn {
  background: var(--black);
  color: var(--white);
  padding: 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--t-base);
}

.product-card__btn:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--black);
  transform: translateY(-2px);
}

.product-card__btn i {
  width: 16px;
  height: 16px;
}

/* ============== BANNER MEIO ============== */
.middle-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.middle-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.middle-banner__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .middle-banner__content {
    grid-template-columns: 2fr 1fr;
  }
}

.middle-banner__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--gold-400);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.middle-banner__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.middle-banner__title em {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.middle-banner__description {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.middle-banner__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.middle-banner__form input {
  flex: 1;
  min-width: 250px;
  padding: 18px 22px;
  border: 1px solid var(--dark-gray);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: var(--r-sm);
  outline: none;
  font-size: 15px;
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}

.middle-banner__form input::placeholder {
  color: var(--gray-light);
}

.middle-banner__form input:focus {
  border-color: var(--gold-400);
  background: rgba(255,255,255,0.08);
}

.middle-banner__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.middle-banner__discount {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 800;
  box-shadow: 0 24px 64px rgba(212, 175, 55, 0.3);
  animation: pulse 2.5s ease-in-out infinite;
  position: relative;
}

.middle-banner__discount::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.4);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.middle-banner__discount span {
  font-family: 'Playfair Display', serif;
  font-size: 84px;
  line-height: 1;
}

.middle-banner__discount small {
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 700;
}

/* ============== BENEFITS ============== */
.benefits {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-pale);
  border-bottom: 1px solid var(--gray-pale);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
}

.benefits__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
  flex-shrink: 0;
}

.benefits__icon i {
  width: 28px;
  height: 28px;
}

.benefits__item strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 4px;
}

.benefits__item span {
  font-size: 13px;
  color: var(--gray);
}

/* ============== PARTNERS CTA ============== */
.partners-cta {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
}

.partners-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.partners-cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .partners-cta__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.partners-cta__card {
  padding: 48px 36px;
  border: 1px solid var(--dark-gray);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-base);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.partners-cta__card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold-400), transparent, var(--gold-400));
  border-radius: var(--r-lg);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
}

.partners-cta__card:hover::before {
  opacity: 0.8;
}

.partners-cta__card:hover {
  transform: translateY(-8px);
}

.partners-cta__icon {
  width: 72px;
  height: 72px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-400);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold-400);
}

.partners-cta__icon i {
  width: 36px;
  height: 36px;
}

.partners-cta__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.partners-cta__card p {
  color: var(--gray-light);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}

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

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.testimonial {
  background: var(--white);
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--t-base);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold-200);
  line-height: 1;
  font-weight: 800;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial__stars {
  color: var(--gold-400);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial__text {
  font-size: 15px;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-pale);
}

.testimonial__avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
}

.testimonial__author-info strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  font-weight: 700;
}

.testimonial__author-info span {
  font-size: 13px;
  color: var(--gray);
}

/* ============== NEWSLETTER ============== */
.newsletter {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gold-50) 0%, var(--gold-100) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}

.newsletter__content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}

.newsletter__description {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__form input {
  flex: 1;
  min-width: 280px;
  padding: 18px 24px;
  border: 2px solid var(--white);
  background: var(--white);
  border-radius: var(--r-sm);
  outline: none;
  transition: all var(--t-base);
  font-size: 15px;
  box-shadow: var(--shadow-sm);
}

.newsletter__form input:focus {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

/* ============== MOBILE ============== */
@media (max-width: 1023px) {
  .hero { min-height: 600px; }
  .hero__container { padding: 60px 0; }
  .hero__badge, .hero__stats { display: none; }

  .search-bar input { font-size: 14px; padding: 14px 8px; }
  .search-bar__btn { padding: 10px 16px; font-size: 12px; }
}

@media (max-width: 640px) {
  .hero { min-height: 540px; }
  .hero__title { font-size: 44px; }
  .hero__description { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__features { gap: 16px; }
}
