/* ==========================================================================
   HOGARA HOME v2 – Furniture Store (Muebleria)
   Mobile-first · Warm palette · Performance-optimized
   ========================================================================== */

:root {
  --hg-gold: #D4A84B;
  --hg-gold-light: #E8C76E;
  --hg-gold-dark: #B8912F;
  --hg-cream: #FDF6EC;
  --hg-cream-dark: #F3EADB;
  --hg-warm: #F9F1E4;
  --hg-dark: #1A1A1A;
  --hg-text: #2D2D2D;
  --hg-muted: #7A7A7A;
  --hg-white: #FFFFFF;
  --hg-radius: 14px;
  --hg-radius-sm: 8px;
  --hg-radius-lg: 20px;
  --hg-shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --hg-shadow: 0 4px 20px rgba(0,0,0,0.07);
  --hg-shadow-lg: 0 12px 40px rgba(0,0,0,0.10);
  --hg-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --hg-font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Base ── */
.hg-home {
  font-family: var(--hg-font);
  color: var(--hg-text);
  background: var(--hg-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient gradient blobs (decorative background) ── */
.hg-home::before,
.hg-home::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  opacity: 0.35;
}
.hg-home::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,75,0.25), transparent 70%);
  top: -100px;
  right: -150px;
  animation: hg-float 20s ease-in-out infinite;
}
.hg-home::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,199,110,0.2), transparent 70%);
  bottom: 20%;
  left: -120px;
  animation: hg-float 25s ease-in-out infinite reverse;
}
@keyframes hg-float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 15px); }
}

/* All sections above blobs */
.hg-home > * {
  position: relative;
  z-index: 1;
}

.hg-home *, .hg-home *::before, .hg-home *::after { box-sizing: border-box; }
.hg-home img { max-width: 100%; height: auto; display: block; }
.hg-home a { text-decoration: none; color: inherit; }

.hg-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Focus Visible ── */
.hg-home a:focus-visible,
.hg-home button:focus-visible {
  outline: 2px solid var(--hg-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Reveal Animations ── */
.hg-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--hg-ease), transform 0.5s var(--hg-ease);
}
.hg-reveal.is-visible { opacity: 1; transform: translateY(0); }

.hg-stagger-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--hg-ease), transform 0.4s var(--hg-ease);
}
.hg-stagger-child.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hg-reveal, .hg-stagger-child { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons ── */
.hg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hg-font);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--hg-ease);
  white-space: nowrap;
}

.hg-btn--primary {
  background: linear-gradient(135deg, var(--hg-gold) 0%, var(--hg-gold-light) 100%);
  color: var(--hg-white);
  position: relative;
  overflow: hidden;
}
.hg-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s var(--hg-ease);
}
.hg-btn--primary:hover::before { left: 120%; }
.hg-btn--primary:hover { background: linear-gradient(135deg, var(--hg-gold-dark) 0%, var(--hg-gold) 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,75,0.4); }

.hg-btn--dark {
  background: var(--hg-white);
  color: var(--hg-dark);
}
.hg-btn--dark:hover { background: var(--hg-gold); color: var(--hg-white); transform: translateY(-1px); }

.hg-btn--outline {
  background: transparent;
  color: var(--hg-dark);
  border: 2px solid var(--hg-dark);
}
.hg-btn--outline:hover { background: var(--hg-dark); color: var(--hg-white); }

/* ── Section ── */
.hg-section { padding: 40px 0; }
.hg-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hg-section__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--hg-dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hg-section__icon { flex-shrink: 0; }
.hg-section__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--hg-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}
.hg-section__link:hover { color: var(--hg-gold-dark); gap: 8px; }
.hg-section__link::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A84B' stroke-width='2'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   1. HERO SLIDER
   ========================================================================== */
.hg-hero { background: var(--hg-dark); }

.hg-hero__slide {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hg-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 8s linear;
}

.swiper-slide-active .hg-hero__bg {
  transform: scale(1.05);
}

.hg-hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.hg-hero__content {
  position: relative;
  z-index: 2;
  padding: 32px 20px 52px;
  max-width: 600px;
}

.hg-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hg-gold-light);
  margin-bottom: 12px;
  padding: 5px 14px;
  background: rgba(212,168,75,0.15);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hg-hero__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--hg-white);
  line-height: 1.12;
  margin: 0 0 16px;
}

.hg-hero__meta { margin-bottom: 24px; }

.hg-hero__price {
  font-size: 20px;
  font-weight: 700;
  color: var(--hg-white);
}
.hg-hero__price del {
  font-weight: 400;
  opacity: 0.5;
  margin-right: 8px;
  font-size: 15px;
}
.hg-hero__price ins { text-decoration: none; }

.hg-hero__pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.hg-hero__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  transition: all 0.3s var(--hg-ease);
}
.hg-hero__pagination .swiper-pagination-bullet-active {
  background: var(--hg-gold);
  width: 28px;
}

/* ==========================================================================
   2. TRUST BAR
   ========================================================================== */
.hg-trust {
  background: linear-gradient(180deg, var(--hg-white) 0%, var(--hg-cream) 100%);
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hg-home .hg-trust__row {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
}

.hg-home .hg-trust__card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px !important;
  background: var(--hg-white) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: var(--hg-radius) !important;
  box-shadow: var(--hg-shadow-sm) !important;
  transition: transform 0.2s var(--hg-ease), box-shadow 0.2s var(--hg-ease);
}
.hg-trust__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--hg-shadow-sm);
}

.hg-trust__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hg-white);
  border-radius: 12px;
  color: var(--hg-gold);
  box-shadow: var(--hg-shadow-sm);
}

.hg-trust__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hg-trust__info strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--hg-dark);
}
.hg-trust__info span {
  font-size: 11px;
  color: var(--hg-muted);
}

/* ==========================================================================
   3. CATEGORIES – Rectangular Cards (high specificity for Foundation override)
   ========================================================================== */
.hg-home .hg-cats .hg-cats__grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hg-home .hg-cats__card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 14px !important;
  background: var(--hg-white) !important;
  border-radius: var(--hg-radius) !important;
  box-shadow: var(--hg-shadow-sm) !important;
  transition: all 0.25s var(--hg-ease);
  position: relative;
  overflow: hidden;
}
.hg-home .hg-cats__card:hover {
  box-shadow: var(--hg-shadow) !important;
  transform: translateY(-3px);
}
.hg-home .hg-cats__card:hover .hg-cats__card-arrow { opacity: 1; transform: translateX(0); }
.hg-home .hg-cats__card:hover .hg-cats__card-img img { transform: scale(1.08); }

.hg-home .hg-cats__card-img {
  width: 72px !important;
  height: 72px !important;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--hg-warm);
}
.hg-home .hg-cats__card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s var(--hg-ease);
}

.hg-home .hg-cats__card-info {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hg-home .hg-cats__card-name {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--hg-dark) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hg-home .hg-cats__card-count {
  font-size: 12px;
  color: var(--hg-muted);
}

.hg-home .hg-cats__card-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--hg-gold);
  color: var(--hg-white);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s var(--hg-ease);
}

/* ==========================================================================
   4. PRODUCT CARD
   ========================================================================== */
.hg-card {
  background: var(--hg-white);
  border-radius: var(--hg-radius);
  overflow: hidden;
  box-shadow: var(--hg-shadow-sm);
  transition: box-shadow 0.3s var(--hg-ease), transform 0.3s var(--hg-ease);
  position: relative;
}
.hg-card:hover {
  box-shadow: var(--hg-shadow-lg);
  transform: translateY(-6px);
}
/* Gold shimmer on card hover – bottom border glow */
.hg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 var(--hg-radius) var(--hg-radius);
  background: linear-gradient(90deg, var(--hg-gold), var(--hg-gold-light), var(--hg-gold));
  opacity: 0;
  transition: opacity 0.3s var(--hg-ease);
  pointer-events: none;
  z-index: 4;
}
.hg-card:hover::after {
  opacity: 1;
}

.hg-card__img {
  position: relative;
  aspect-ratio: 1;
  background: var(--hg-warm);
  overflow: hidden;
}
.hg-card__img a { display: block; width: 100%; height: 100%; overflow: hidden; }
.hg-home .hg-card__img img,
.hg-home .hg-card__img a img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  clip-path: none !important;
  transition: transform 0.5s var(--hg-ease);
}
.hg-card:hover .hg-card__img img { transform: scale(1.06); }

/* Badges */
.hg-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.hg-card__badge--sale {
  background: #E74C3C;
  color: var(--hg-white);
}
.hg-card__badge--stock {
  background: var(--hg-gold);
  color: var(--hg-white);
  top: auto;
  bottom: 10px;
  left: 10px;
  font-size: 10px;
}

/* Wishlist */
.hg-home .hg-card .hg-card__img .hg-card__wish-btn,
.hg-home .hg-card .hg-card__img a.hg-card__wish-btn {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 5 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 0 !important;
  max-width: 36px !important;
  min-height: 0 !important;
  max-height: 36px !important;
  border-radius: 50% !important;
  border: none !important;
  background: rgba(255,255,255,0.92) !important;
  color: var(--hg-text) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;
  overflow: hidden !important;
}
.hg-home .hg-card .hg-card__wish-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}
.hg-home .hg-card .hg-card__wish-btn:hover {
  background: var(--hg-white) !important;
  color: #E74C3C !important;
  transform: scale(1.1) !important;
}
.hg-home .hg-card .hg-card__wish-btn.is-loading {
  pointer-events: none !important;
  opacity: 0.6 !important;
}
.hg-home .hg-card .hg-card__wish-btn.is-added {
  background: #FFF0F0 !important;
  color: #E74C3C !important;
}
.hg-home .hg-card .hg-card__wish-btn.is-added:hover {
  transform: scale(1.15) !important;
}

/* Card body */
.hg-card__body { padding: 14px 16px 16px; }
.hg-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--hg-dark);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hg-card__name a { color: inherit; }
.hg-card__name a:hover { color: var(--hg-gold); }

.hg-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hg-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--hg-dark);
}
.hg-card__price del { font-size: 12px; font-weight: 400; color: var(--hg-muted); margin-right: 4px; }
.hg-card__price ins { text-decoration: none; }

.hg-card__cart {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--hg-gold);
  color: var(--hg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--hg-ease);
  box-shadow: 0 3px 10px rgba(212,168,75,0.3);
}
.hg-card__cart:hover { background: var(--hg-dark); transform: scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }

/* Cart added feedback */
.hg-card__cart.added { position: relative; }
.hg-card__cart.added::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 2px solid var(--hg-gold);
  animation: hg-ping 0.6s var(--hg-ease) forwards;
}
@keyframes hg-ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   5. OFFERS SLIDER
   ========================================================================== */
.hg-offers {
  background: linear-gradient(135deg, var(--hg-warm) 0%, #F5E8D4 50%, var(--hg-cream-dark) 100%);
  border-radius: 0;
  position: relative;
}
.hg-offers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hg-gold-light), transparent);
  opacity: 0.5;
}
.hg-offers__slider { overflow: visible; }
.hg-offers__slider .swiper-slide { height: auto; }
.hg-offers__slider .hg-card { height: 100%; display: flex; flex-direction: column; }
.hg-offers__slider .hg-card__body { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }
.hg-empty { color: var(--hg-muted); font-size: 14px; text-align: center; padding: 40px 0; }

/* ==========================================================================
   6. CTA BANNER
   ========================================================================== */
.hg-cta { padding: 16px 0 40px; }
.hg-cta__card {
  position: relative;
  background: var(--hg-dark);
  border-radius: var(--hg-radius-lg);
  padding: 40px 28px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.hg-cta__text { position: relative; z-index: 2; max-width: 480px; }
.hg-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hg-gold-light);
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(232,199,110,0.3);
  border-radius: 20px;
}
.hg-cta__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--hg-white);
  margin: 0 0 12px;
  line-height: 1.15;
}
.hg-cta__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Wood-grain decorative pattern */
.hg-cta__visual {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  z-index: 1;
  overflow: hidden;
}
.hg-cta__shape {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -50px;
  top: -50px;
  background: radial-gradient(circle, rgba(212,168,75,0.12) 0%, transparent 70%);
}
.hg-cta__shape--2 {
  width: 180px;
  height: 180px;
  right: 40px;
  top: auto;
  bottom: -40px;
  background: radial-gradient(circle, rgba(232,199,110,0.08) 0%, transparent 70%);
}
/* Lines pattern */
.hg-cta__visual::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 200px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(212,168,75,0.05) 8px,
    rgba(212,168,75,0.05) 9px
  );
  border-radius: 16px;
}

/* ==========================================================================
   7. PRODUCTS (TABS)
   ========================================================================== */
.hg-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 24px;
}
.hg-tabs::-webkit-scrollbar { display: none; }

.hg-tabs__btn {
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--hg-font);
  background: var(--hg-white);
  color: var(--hg-muted);
  cursor: pointer;
  transition: all 0.2s var(--hg-ease);
  box-shadow: var(--hg-shadow-sm);
}
.hg-tabs__btn--active {
  background: var(--hg-dark);
  color: var(--hg-white);
  border-color: var(--hg-dark);
  box-shadow: 0 4px 14px rgba(26,26,26,0.2);
}
.hg-tabs__btn:hover:not(.hg-tabs__btn--active) {
  border-color: var(--hg-gold);
  color: var(--hg-dark);
}

.hg-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  transition: opacity 0.3s;
}
.hg-products__grid.is-loading { opacity: 0.35; pointer-events: none; }

.hg-products__more {
  text-align: center;
  margin-top: 32px;
}

/* ==========================================================================
   RESPONSIVE – Tablet (640px+)
   ========================================================================== */
@media (min-width: 640px) {
  .hg-container { padding: 0 24px; }

  .hg-hero__slide { height: 560px; }
  .hg-hero__title { font-size: 40px; }
  .hg-hero__content { padding: 40px 36px 60px; }

  .hg-home .hg-trust__row { grid-template-columns: repeat(4, 1fr) !important; gap: 14px !important; }

  .hg-home .hg-cats .hg-cats__grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  .hg-home .hg-cats__card-img { width: 80px !important; height: 80px !important; }

  .hg-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hg-cta__card { padding: 48px 36px; }
  .hg-cta__title { font-size: 32px; }
}

/* ==========================================================================
   RESPONSIVE – Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  .hg-container { padding: 0 40px; }
  .hg-section { padding: 52px 0; }

  .hg-hero__slide { height: 600px; }
  .hg-hero__title { font-size: 48px; }
  .hg-hero__content { padding: 48px 60px 80px; }
  .hg-hero__price { font-size: 24px; }

  .hg-home .hg-trust { padding: 32px 0; }
  .hg-home .hg-trust__row { gap: 20px !important; }
  .hg-home .hg-trust__card { padding: 20px !important; }
  .hg-home .hg-trust__info strong { font-size: 14px; }
  .hg-home .hg-trust__info span { font-size: 12px; }

  .hg-home .hg-cats .hg-cats__grid { grid-template-columns: repeat(4, 1fr) !important; gap: 16px !important; }
  .hg-home .hg-cats__card { padding: 16px !important; }
  .hg-home .hg-cats__card-img { width: 88px !important; height: 88px !important; }
  .hg-home .hg-cats__card-name { font-size: 15px !important; }
  .hg-home .hg-cats__card-arrow { opacity: 0.6; transform: translateX(0); }

  .hg-section__title { font-size: 28px; }
  .hg-tabs__btn { font-size: 14px; padding: 11px 24px; }

  .hg-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .hg-cta__card { padding: 60px 52px; min-height: 320px; }
  .hg-cta__title { font-size: 38px; }
  .hg-cta__desc { font-size: 16px; max-width: 420px; }
  .hg-cta__shape { width: 350px; height: 350px; }
  .hg-cta__shape--2 { width: 240px; height: 240px; }
}

/* ==========================================================================
   RESPONSIVE – Wide (1440px+)
   ========================================================================== */
@media (min-width: 1440px) {
  .hg-hero__slide { height: 660px; }
  .hg-hero__title { font-size: 56px; }
}

/* ==========================================================================
   Performance: content-visibility for below-fold
   ========================================================================== */
.hg-offers,
.hg-cta,
.hg-products {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
