﻿/* ============================================================
   Estel BiliÅŸim â€” Desktop Premium UI/UX
   Scroll reveals Â· 3D cards Â· Gradient mesh Â· Micro-interactions
   ============================================================ */

/* â”€â”€ Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --d-blue:       #007AFF;
  --d-blue-dark:  #0055D4;
  --d-purple:     #AF52DE;
  --d-green:      #34C759;
  --d-red:        #FF3B30;
  --d-text:       #111114;
  --d-muted:      #6e6e73;
  --d-surface:    #ffffff;
  --d-bg:         #f5f5f7;
  --d-line:       rgba(0,0,0,0.08);
  --d-ease:       cubic-bezier(0.25,0.46,0.45,0.94);
  --d-spring:     cubic-bezier(0.34,1.56,0.64,1);
  --d-r-lg:       16px;
  --d-r-xl:       22px;
  --d-r-2xl:      32px;
  --d-shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --d-shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --d-shadow-lg:  0 20px 60px rgba(0,0,0,0.13);
  --d-shadow-xl:  0 32px 80px rgba(0,0,0,0.18);
}

/* â”€â”€ Smooth scroll â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
html { scroll-behavior: smooth; }

/* â”€â”€ Page entry animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes dPageIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dSlideRight {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dSlideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes dGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,122,255,0); }
  50%     { box-shadow: 0 0 0 8px rgba(0,122,255,0.18); }
}
@keyframes dShimmer {
  from { background-position: -600px 0; }
  to   { background-position: 600px 0; }
}
@keyframes dFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@keyframes dPulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes dGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body:not(.estel-m) main { animation: dPageIn 0.5s var(--d-ease) both; }

/* â”€â”€ Scroll Reveal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.d-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--d-ease), transform 0.65s var(--d-ease);
}
.d-reveal.d-reveal--left  { transform: translateX(-32px); }
.d-reveal.d-reveal--right { transform: translateX(32px); }
.d-reveal.d-reveal--scale { transform: scale(0.94); }
.d-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.d-reveal:nth-child(2) { transition-delay: 0.08s; }
.d-reveal:nth-child(3) { transition-delay: 0.16s; }
.d-reveal:nth-child(4) { transition-delay: 0.24s; }
.d-reveal:nth-child(5) { transition-delay: 0.32s; }
.d-reveal:nth-child(6) { transition-delay: 0.40s; }

/* â”€â”€ Background mesh overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.estel-home-body:not(.estel-m)::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 900px 600px at 15% 10%, rgba(0,122,255,0.055), transparent 65%),
    radial-gradient(ellipse 700px 500px at 85% 90%, rgba(175,82,222,0.04), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(52,199,89,0.025), transparent 55%);
}
body.estel-home-body:not(.estel-m) > * { position: relative; z-index: 1; }

/* â”€â”€ Navbar enhancements â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-frost-nav {
  transition: box-shadow 0.4s var(--d-ease), background 0.4s var(--d-ease),
              border-color 0.4s var(--d-ease);
}
body:not(.estel-m) .estel-frost-nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 8px 32px rgba(0,0,0,0.06);
  background: rgba(251,251,253,0.96);
}

/* Prevent horizontal overflow without creating inner scroll */
body:not(.estel-m) { overflow-x: hidden; }

/* â”€â”€ Homepage: hide spacer + transparent dark nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:has(.dh-hero) .estel-frost-spacer,
body.estel-home-body:not(.estel-m) .estel-frost-spacer { display: none !important; }

body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled),
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) {
  background: #06060f !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: rgba(255,255,255,0.05) !important;
  box-shadow: none !important;
}
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__mini-link,
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__brand,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__mini-link,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__brand { color: #fff !important; }
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__brand img,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__brand img { filter: brightness(0) invert(1) !important; }
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__icon svg,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__icon svg { stroke: rgba(255,255,255,0.9) !important; }
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__toggle span,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__toggle span { background-color: rgba(255,255,255,0.9) !important; }

/* Nav menu collapse bar â€” beyaz arka planÄ± hero rengiyle eÅŸit */
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__menu,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__menu {
  background: #06060f !important;
  border-top-color: rgba(255,255,255,0.07) !important;
}
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__list a,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__list a {
  color: rgba(255,255,255,0.72) !important;
}
body:has(.dh-hero) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__list a:hover,
body.estel-home-body:not(.estel-m) .estel-frost-nav:not(.is-scrolled) .estel-frost-nav__list a:hover {
  color: #fff !important;
}
body:not(.estel-m) .estel-frost-nav__brand {
  transition: transform 0.22s var(--d-spring), opacity 0.22s;
}
body:not(.estel-m) .estel-frost-nav__brand:hover { transform: scale(1.04); opacity: 0.85; }

body:not(.estel-m) .estel-frost-nav__mini-link {
  position: relative;
  transition: color 0.2s, background 0.2s, transform 0.2s var(--d-spring);
}
body:not(.estel-m) .estel-frost-nav__mini-link:hover { transform: translateY(-1px); }
body:not(.estel-m) .estel-frost-nav__mini-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--d-blue);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s var(--d-ease);
}
body:not(.estel-m) .estel-frost-nav__mini-link:hover::after { width: 70%; }

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-hero__eyebrow {
  animation: dSlideRight 0.55s var(--d-ease) 0.1s both;
}
body:not(.estel-m) .estel-home-hero__title {
  animation: dFadeUp 0.65s var(--d-ease) 0.2s both;
  background: linear-gradient(135deg, #111114 0%, #1d1d1f 40%, #0071e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body:not(.estel-m) .estel-home-hero__subtitle {
  animation: dFadeUp 0.65s var(--d-ease) 0.35s both;
}
body:not(.estel-m) .estel-home-hero__actions {
  animation: dFadeUp 0.55s var(--d-ease) 0.5s both;
}
body:not(.estel-m) .estel-home-hero__visual {
  animation: dSlideLeft 0.75s var(--d-ease) 0.15s both;
}
body:not(.estel-m) .estel-home-hero__slide {
  transition: opacity 0.7s var(--d-ease);
}
body:not(.estel-m) .estel-home-hero__slide img {
  transition: transform 6s linear;
}
body:not(.estel-m) .estel-home-hero__slide.is-active img {
  transform: scale(1.04);
}

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .btn-estel--primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s var(--d-spring), box-shadow 0.2s var(--d-ease), filter 0.2s;
  box-shadow: 0 4px 14px rgba(0,113,227,0.3);
}
body:not(.estel-m) .btn-estel--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,113,227,0.38);
  filter: brightness(1.06);
}
body:not(.estel-m) .btn-estel--primary:active { transform: scale(0.97); }
body:not(.estel-m) .btn-estel--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}

body:not(.estel-m) .btn-estel--secondary {
  transition: transform 0.2s var(--d-spring), box-shadow 0.2s;
}
body:not(.estel-m) .btn-estel--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--d-shadow-sm);
}

/* â”€â”€ Bento grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-bento__item {
  border-radius: var(--d-r-xl);
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s var(--d-ease), background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
body:not(.estel-m) .estel-home-bento__item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,122,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}
body:not(.estel-m) .estel-home-bento__item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--d-shadow-md);
}
body:not(.estel-m) .estel-home-bento__item:hover::before { opacity: 1; }

/* â”€â”€ Series cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-series__card {
  border-radius: var(--d-r-xl);
  transition: transform 0.35s var(--d-spring), box-shadow 0.35s var(--d-ease);
  position: relative;
  overflow: hidden;
}
body:not(.estel-m) .estel-home-series__card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--d-shadow-lg);
}
body:not(.estel-m) .estel-home-series__card .estel-home-series__visual img {
  transition: transform 0.6s var(--d-ease);
}
body:not(.estel-m) .estel-home-series__card:hover .estel-home-series__visual img {
  transform: scale(1.06);
}

/* â”€â”€ Product cards (home showcase) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-product-card {
  border-radius: var(--d-r-lg);
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s var(--d-ease);
  position: relative;
  overflow: hidden;
}
body:not(.estel-m) .estel-home-product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--d-shadow-md);
}
body:not(.estel-m) .estel-home-product-card .estel-home-product-card__media img {
  transition: transform 0.5s var(--d-ease);
}
body:not(.estel-m) .estel-home-product-card:hover .estel-home-product-card__media img {
  transform: scale(1.07);
}
body:not(.estel-m) .estel-home-product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.06) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
body:not(.estel-m) .estel-home-product-card:hover::after { opacity: 1; }

/* â”€â”€ Catalog product cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-product-card {
  border-radius: var(--d-r-lg) !important;
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s var(--d-ease) !important;
  position: relative;
  overflow: hidden;
}
body:not(.estel-m) .estel-product-card:hover {
  transform: translateY(-8px) scale(1.012) !important;
  box-shadow: var(--d-shadow-lg) !important;
}
body:not(.estel-m) .estel-product-card .estel-product-card__img {
  transition: transform 0.5s var(--d-ease) !important;
}
body:not(.estel-m) .estel-product-card:hover .estel-product-card__img {
  transform: scale(1.07) !important;
}

/* Card price highlight on hover */
body:not(.estel-m) .estel-product-card:hover .estel-product-card__price {
  color: var(--d-blue);
  transition: color 0.2s;
}
body:not(.estel-m) .estel-product-card:hover .estel-product-card__price-current {
  color: var(--d-red);
}

/* â”€â”€ Section headers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-showcase__header h2,
body:not(.estel-m) .estel-home-series__header h2 {
  position: relative;
  display: inline-block;
}
body:not(.estel-m) .estel-home-showcase__header h2::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 42px; height: 3px;
  background: linear-gradient(90deg, var(--d-blue), var(--d-purple));
  border-radius: 3px;
}

/* â”€â”€ Showcase section head â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-showcase__section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
body:not(.estel-m) .estel-home-showcase__all-btn {
  position: relative;
  transition: color 0.2s, transform 0.2s var(--d-spring);
}
body:not(.estel-m) .estel-home-showcase__all-btn:hover {
  color: var(--d-blue);
  transform: translateX(3px);
}
body:not(.estel-m) .estel-home-showcase__all-btn::after {
  content: ' â†’';
  transition: letter-spacing 0.2s;
}
body:not(.estel-m) .estel-home-showcase__all-btn:hover::after {
  letter-spacing: 2px;
}

/* â”€â”€ Ecosystem / trust strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-ecosystem__inner > div {
  border-radius: var(--d-r-lg);
  transition: transform 0.25s var(--d-spring), background 0.25s, box-shadow 0.25s;
  padding: 14px 20px;
}
body:not(.estel-m) .estel-home-ecosystem__inner > div:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--d-shadow-sm);
}

/* â”€â”€ Promo cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-promo-card {
  border-radius: var(--d-r-xl) !important;
  overflow: hidden;
  transition: transform 0.35s var(--d-spring), box-shadow 0.35s var(--d-ease);
}
body:not(.estel-m) .estel-home-promo-card:hover,
body:not(.estel-m) .estel-home-promo-card.is-clickable:hover {
  transform: scale(1.015);
  box-shadow: var(--d-shadow-lg);
}
body:not(.estel-m) .estel-home-promo-card__media img {
  transition: transform 0.6s var(--d-ease);
}
body:not(.estel-m) .estel-home-promo-card:hover .estel-home-promo-card__media img {
  transform: scale(1.05);
}

/* â”€â”€ WhatsApp floating CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: dScaleIn 0.4s var(--d-spring) 1.5s both;
  transition: transform 0.25s var(--d-spring), box-shadow 0.25s;
}
body:not(.estel-m) .d-wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.5);
  animation: dPulseRing 2.5s var(--d-ease) infinite;
}
body:not(.estel-m) .d-wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
body:not(.estel-m) .d-wa-float svg { width: 26px; height: 26px; color: #fff; }

/* Scroll-to-top button */
body:not(.estel-m) .d-scroll-top { position: fixed; bottom: 100px; right: 28px;
  z-index: 800;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s var(--d-spring), box-shadow 0.25s;
  box-shadow: var(--d-shadow-sm);
}
body:not(.estel-m) .d-scroll-top.is-visible {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
body:not(.estel-m) .d-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--d-shadow-md);
}
body:not(.estel-m) .d-scroll-top svg { width: 18px; height: 18px; color: #1d1d1f; }

/* â”€â”€ Filter chips (catalog) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-catalog-filter__chip {
  transition: transform 0.18s var(--d-spring), box-shadow 0.18s, background 0.18s;
}
body:not(.estel-m) .estel-catalog-filter__chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--d-shadow-sm);
}
body:not(.estel-m) .estel-catalog-filter__chip.is-active {
  animation: dGlow 2s var(--d-ease) infinite;
}

/* â”€â”€ Detail page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-detail-gallery__thumb {
  transition: transform 0.2s var(--d-spring), box-shadow 0.2s, border-color 0.2s;
}
body:not(.estel-m) .estel-detail-gallery__thumb:hover {
  transform: scale(1.06);
  box-shadow: var(--d-shadow-sm);
}
body:not(.estel-m) .estel-detail-gallery__thumb.is-active {
  border-color: var(--d-blue);
  box-shadow: 0 0 0 3px rgba(0,122,255,0.18);
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-footer a {
  transition: color 0.2s, transform 0.2s var(--d-spring);
  display: inline-block;
}
body:not(.estel-m) .estel-footer a:hover {
  color: var(--d-blue) !important;
  transform: translateX(2px);
}

/* â”€â”€ Reveal utility applied by JS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--d-ease), transform 0.7s var(--d-ease);
}
body:not(.estel-m) .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* â”€â”€ Typing cursor â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-typing-cursor {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--d-blue);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 2px;
  animation: dTypingBlink 0.8s step-end infinite;
}
@keyframes dTypingBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* â”€â”€ Loading shimmer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-shimmer {
  background: linear-gradient(90deg, #f0f0f3 25%, #e8e8ec 50%, #f0f0f3 75%);
  background-size: 600px 100%;
  animation: dShimmer 1.4s infinite;
  border-radius: var(--d-r-lg);
}

/* â”€â”€ Link underline animation â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-link-anim {
  position: relative;
  text-decoration: none;
}
body:not(.estel-m) .d-link-anim::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: width 0.25s var(--d-ease);
}
body:not(.estel-m) .d-link-anim:hover::after { width: 100%; }

/* â”€â”€ Section title gradient â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-title-gradient {
  background: linear-gradient(135deg, var(--d-text) 0%, #3a3a3c 50%, var(--d-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* â”€â”€ Product section divider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-showcase__section {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 12px;
}
body:not(.estel-m) .estel-home-showcase__section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--d-line) 20%, var(--d-line) 80%, transparent);
}
body:not(.estel-m) .estel-home-showcase__section:last-child::after { display: none; }

/* â”€â”€ Number counter badge â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-counter {
  display: inline-flex;
  align-items: baseline; gap: 4px;
}
body:not(.estel-m) .d-counter__num {
  font-size: clamp(32px,4vw,56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--d-text);
  line-height: 1;
}
body:not(.estel-m) .d-counter__label {
  font-size: 14px; color: var(--d-muted); font-weight: 500;
}

/* â”€â”€ Frosted glass card utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .d-glass {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--d-r-xl);
  box-shadow: var(--d-shadow-sm);
}

/* â”€â”€ Stagger grid items â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-products .estel-home-product-card,
body:not(.estel-m) .estel-products-grid .estel-product-card,
body:not(.estel-m) .estel-products-grid > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--d-ease), transform 0.5s var(--d-ease);
}
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card,
body:not(.estel-m) .estel-products-grid.is-animated .estel-product-card,
body:not(.estel-m) .estel-products-grid.is-animated > * {
  opacity: 1;
  transform: none;
}
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(1),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(1) { transition-delay: 0.00s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(2),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(2) { transition-delay: 0.06s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(3),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(3) { transition-delay: 0.12s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(4),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(4) { transition-delay: 0.18s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(5),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(5) { transition-delay: 0.24s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(6),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(6) { transition-delay: 0.30s; }
body:not(.estel-m) .estel-home-products.is-animated .estel-home-product-card:nth-child(n+7),
body:not(.estel-m) .estel-products-grid.is-animated > *:nth-child(n+7) { transition-delay: 0.34s; }

/* ================================================================
   DESKTOP HOME 2.0  â€” dh-*  (Apple-inspired full redesign)
   ================================================================ */

.dh-page { background: #fff; }

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}
.dh-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #06060f 0%, #0a0a1a 50%, #060610 100%);
  overflow: hidden;
}
.dh-hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 8% 52%, rgba(0,80,220,0.22), transparent 55%),
    radial-gradient(ellipse 48% 58% at 88% 18%, rgba(110,40,220,0.15), transparent 50%);
  animation: dhOrbA 13s ease-in-out infinite alternate;
  will-change: transform;
}
.dh-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 42% 52% at 60% 88%, rgba(52,211,153,0.06), transparent 55%),
    radial-gradient(ellipse 38% 46% at 28% 12%, rgba(96,165,250,0.08), transparent 50%);
  animation: dhOrbB 17s ease-in-out infinite alternate-reverse;
  will-change: transform;
}
@keyframes dhOrbA {
  0%   { transform: translate(0,0)        scale(1); }
  40%  { transform: translate(3%,-5%)    scale(1.07); }
  100% { transform: translate(-2%,4%)    scale(0.96); }
}
@keyframes dhOrbB {
  0%   { transform: translate(0,0)        scale(1); }
  45%  { transform: translate(-4%,3%)    scale(1.05); }
  100% { transform: translate(3%,-3%)    scale(0.97); }
}
.dh-hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 90px 0 48px;
}
.dh-hero__grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 48px;
  align-items: center;
}
/* â”€â”€ Left text column â”€â”€ */
.dh-hero__left { max-width: 560px; }
/* â”€â”€ Right image column â”€â”€ */
.dh-hero__right {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center;
}
.dh-hero__slider {
  position: relative;
  width: 100%;
  height: 580px;
}
.dh-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s var(--d-ease);
  display: flex; align-items: center; justify-content: center;
  padding: 20px 8px 20px 0;
}
.dh-hero__slide.is-active { opacity: 1; }
.dh-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 56px rgba(0,0,0,0.55)) drop-shadow(0 0 72px rgba(96,165,250,0.1));
  transition: transform 7s ease-out;
  transform-origin: center bottom;
}
.dh-hero__slide.is-active img { transform: scale(1.04) translateY(-5px); }
.dh-hero__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0;
  animation: dSlideRight 0.55s ease 0.1s forwards;
}
.dh-hero__eyebrow::before {
  content: ''; flex-shrink: 0; width: 26px; height: 1px;
  background: rgba(255,255,255,0.32);
}
.dh-hero__title {
  font-size: clamp(36px, 4.8vw, 72px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.045em;
  color: #fff; margin-bottom: 20px;
  opacity: 0;
  animation: dFadeUp 0.65s ease 0.2s forwards;
}
.dh-hero__accent {
  display: block;
  background: linear-gradient(110deg, #60a5fa 0%, #a78bfa 48%, #34d399 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dGradientShift 5s ease infinite;
}
.dh-hero__sub {
  font-size: clamp(15px, 1.2vw, 17px); color: rgba(255,255,255,0.62);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
  opacity: 0;
  animation: dFadeUp 0.65s ease 0.32s forwards;
}
.dh-hero__btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: dFadeUp 0.6s ease 0.44s forwards;
}
.dh-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #000;
  padding: 13px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 22px rgba(255,255,255,0.16);
  transition: transform 0.22s var(--d-spring), box-shadow 0.22s;
}
.dh-btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 32px rgba(255,255,255,0.24); color: #000; }
.dh-btn-primary:active { transform: scale(0.97); }
.dh-btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22);
  color: #fff; padding: 13px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 0.22s var(--d-spring), background 0.22s;
}
.dh-btn-glass:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); color: #fff; }
.dh-hero__trust {
  display: flex; gap: 26px; flex-wrap: wrap;
  opacity: 0;
  animation: dFadeIn 0.5s ease 0.6s forwards;
}
.dh-hero__trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 500;
}
.dh-hero__trust-item svg { width: 14px; height: 14px; flex-shrink: 0; color: rgba(255,255,255,0.55); }
.dh-hero__dots {
  display: flex; gap: 8px; margin-top: 18px;
  justify-content: center;
  opacity: 0;
  animation: dFadeIn 0.4s ease 0.75s forwards;
}
.dh-hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.28); cursor: pointer;
  transition: width 0.3s var(--d-ease), background 0.3s;
}
.dh-hero__dot.is-active { width: 28px; border-radius: 4px; background: #fff; }
.dh-scroll-hint {
  position: absolute; right: 40px; bottom: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  opacity: 0;
  animation: dFadeIn 0.4s ease 0.9s forwards;
}
.dh-scroll-hint__label {
  writing-mode: vertical-rl; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.32); font-weight: 600;
}
.dh-scroll-hint__line {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0.48), transparent);
  animation: dScrollLine 2s ease-in-out infinite;
}
@keyframes dScrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.35) translateY(6px); opacity: 1; }
}

/* â”€â”€ Hero reduced-motion / animation safety fallback â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (prefers-reduced-motion: reduce) {
  .dh-hero__eyebrow, .dh-hero__title, .dh-hero__sub,
  .dh-hero__btns, .dh-hero__trust, .dh-hero__dots,
  .dh-scroll-hint { opacity: 1 !important; animation: none !important; transform: none !important; }
}

/* â”€â”€ Stats â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-stats {
  background: #fff; border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 20px 0;
}
.dh-stats__row { display: flex; align-items: center; justify-content: center; }
.dh-stat {
  flex: 1; text-align: center; padding: 0 20px; position: relative;
}
.dh-stat + .dh-stat::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 38px; background: rgba(0,0,0,0.09);
}
.dh-stat__num {
  font-size: 30px; font-weight: 800; letter-spacing: -0.05em;
  color: #111; line-height: 1; margin-bottom: 3px;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.dh-stat__num sup { font-size: 15px; font-weight: 700; }
.dh-stat__label {
  font-size: 10px; color: #8a8a8e; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600;
}

/* â”€â”€ Section header utilities â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-section-head { margin-bottom: 32px; }
.dh-section-head--center { text-align: center; }
.dh-section-head__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--d-blue); margin-bottom: 10px;
}
.dh-section-head__title {
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -0.04em; color: #111; margin-bottom: 8px; line-height: 1.1;
}
.dh-section-head__sub { font-size: 16px; color: #6e6e73; line-height: 1.55; }
.dh-section-head--split { display: flex; align-items: flex-end; justify-content: space-between; }
.dh-section-head--split .dh-section-head__title { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 3px; }
.dh-all-link {
  font-size: 14px; font-weight: 600; color: var(--d-blue);
  text-decoration: none; white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
  transition: gap 0.2s var(--d-ease);
}
.dh-all-link:hover { gap: 10px; }

/* â”€â”€ Category Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-cats-section { padding: 60px 0; background: #f5f5f7; }
.dh-cats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.dh-cat-card {
  border-radius: 22px; padding: 28px 22px 24px;
  text-decoration: none; display: flex; flex-direction: column;
  gap: 14px; position: relative; overflow: hidden; min-height: 175px;
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s;
}
.dh-cat-card:hover { transform: translateY(-10px) scale(1.02); }
.dh-cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: inherit; pointer-events: none;
}
.dh-cat-card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dh-cat-card__icon svg { width: 24px; height: 24px; color: #fff; }
.dh-cat-card__name {
  font-size: 16px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 3px;
}
.dh-cat-card__count { font-size: 12px; color: rgba(255,255,255,0.62); font-weight: 500; }
.dh-cat-card__arrow {
  position: absolute; bottom: 16px; right: 18px;
  font-size: 22px; color: rgba(255,255,255,0.42);
  transition: transform 0.22s var(--d-ease), color 0.22s;
}
.dh-cat-card:hover .dh-cat-card__arrow { transform: translateX(6px); color: rgba(255,255,255,0.8); }
.dh-cat-card--blue   { background: linear-gradient(145deg,#007AFF,#0055D4); box-shadow:0 6px 26px rgba(0,122,255,.28); }
.dh-cat-card--purple { background: linear-gradient(145deg,#AF52DE,#7B2FBE); box-shadow:0 6px 26px rgba(175,82,222,.28); }
.dh-cat-card--teal   { background: linear-gradient(145deg,#32ADE6,#0076A8); box-shadow:0 6px 26px rgba(50,173,230,.28); }
.dh-cat-card--orange { background: linear-gradient(145deg,#FF9500,#CC6F00); box-shadow:0 6px 26px rgba(255,149,0,.28); }
.dh-cat-card--green  { background: linear-gradient(145deg,#34C759,#1A8C38); box-shadow:0 6px 26px rgba(52,199,89,.28); }

/* â”€â”€ Product Sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-products-section { padding: 52px 0; }
.dh-products-section--alt { background: #f5f5f7; }
.dh-products-section--dark { background: #000; }
.dh-products-section--dark .dh-section-head__eyebrow { color: rgba(255,255,255,0.42); }
.dh-products-section--dark .dh-section-head__title   { color: #fff; }
.dh-products-section--dark .dh-all-link { color: #60a5fa; }
.dh-products-section--dark .estel-home-product-card { background: #1c1c1e; }
.dh-products-section--dark .estel-home-product-card h3 { color: #fff; }
.dh-products-section--dark .estel-home-product-card p  { color: rgba(255,255,255,0.55); }

/* â”€â”€ Apple Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-apple-section { padding: 64px 0; background: #000; }
.dh-apple-section .dh-section-head__eyebrow { color: rgba(255,255,255,0.4); }
.dh-apple-section .dh-section-head__title   { color: #fff; }
.dh-apple-typing {
  font-size: clamp(28px,3.5vw,44px); font-weight: 800;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 0;
  display: flex; align-items: center; gap: 10px;
}
.dh-apple-typing svg { fill: #fff; flex-shrink: 0; }
.dh-apple-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 42px;
}
.dh-apple-card {
  background: #1c1c1e; border-radius: 22px; overflow: hidden;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s;
}
.dh-apple-card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.55); }
.dh-apple-card__img {
  width: 100%; aspect-ratio: 1; overflow: hidden; background: #2c2c2e;
  display: flex; align-items: center; justify-content: center;
}
.dh-apple-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  mix-blend-mode: lighten;
  transition: transform 0.5s var(--d-ease);
}
.dh-apple-card:hover .dh-apple-card__img img { transform: scale(1.07); }
.dh-apple-card__body { padding: 18px 20px 22px; }
.dh-apple-card__name {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 4px; letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dh-apple-card__price { font-size: 14px; color: rgba(255,255,255,0.48); }
.dh-apple-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: #60a5fa; margin-top: 12px;
  transition: gap 0.2s;
}
.dh-apple-card:hover .dh-apple-card__cta { gap: 9px; }
.dh-apple-empty {
  color: rgba(255,255,255,0.35); font-size: 15px; padding: 40px 0; text-align: center;
}

/* â”€â”€ Promo Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-promo-section { padding: 76px 0; background: #f5f5f7; }
.dh-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dh-promo-card {
  border-radius: 20px; overflow: hidden; display: block; position: relative;
  transition: transform 0.3s var(--d-spring), box-shadow 0.3s;
}
.dh-promo-card:hover { transform: scale(1.013); box-shadow: var(--d-shadow-lg); }
.dh-promo-card img { width: 100%; display: block; transition: transform 0.5s var(--d-ease); }
.dh-promo-card:hover img { transform: scale(1.04); }

/* â”€â”€ Trust Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-trust-section { padding: 64px 0; background: #000; }
.dh-trust-section .dh-section-head__eyebrow { color: rgba(255,255,255,0.4); }
.dh-trust-section .dh-section-head__title   { color: #fff; }
.dh-trust-section .dh-section-head__sub     { color: rgba(255,255,255,0.45); }
.dh-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 32px; }
.dh-trust-card {
  background: #111; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px; padding: 34px 28px;
  transition: transform 0.28s var(--d-spring), background 0.28s;
}
.dh-trust-card:hover { transform: translateY(-7px); background: #1c1c1e; }
.dh-trust-card__icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.dh-trust-card__icon svg { width: 24px; height: 24px; }
.dh-trust-card__title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; letter-spacing: -0.02em; }
.dh-trust-card__desc { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.68; }
.dh-tc--blue   .dh-trust-card__icon { background: rgba(0,122,255,.15);   } .dh-tc--blue   .dh-trust-card__icon svg { color: #60a5fa; }
.dh-tc--green  .dh-trust-card__icon { background: rgba(52,199,89,.15);   } .dh-tc--green  .dh-trust-card__icon svg { color: #4ade80; }
.dh-tc--purple .dh-trust-card__icon { background: rgba(175,82,222,.15);  } .dh-tc--purple .dh-trust-card__icon svg { color: #c084fc; }
.dh-tc--orange .dh-trust-card__icon { background: rgba(255,149,0,.15);   } .dh-tc--orange .dh-trust-card__icon svg { color: #fb923c; }

/* â”€â”€ WA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dh-wa-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #064E3B 0%, #065F46 45%, #047857 100%);
  position: relative; overflow: hidden;
}
.dh-wa-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 75% at 72% 50%, rgba(52,211,153,.16), transparent);
}
.dh-wa-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 64px;
}
.dh-wa-graphic {
  flex-shrink: 0; width: 104px; height: 104px;
  background: rgba(255,255,255,0.12); border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px rgba(255,255,255,0.05);
  animation: dFloat 4.5s ease-in-out infinite;
}
.dh-wa-graphic svg { width: 54px; height: 54px; color: #fff; }
.dh-wa-copy { flex: 1; }
.dh-wa-copy .dh-wa-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.48); margin-bottom: 10px;
}
.dh-wa-copy h2 {
  font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: #fff;
  letter-spacing: -0.04em; margin-bottom: 12px; line-height: 1.08;
}
.dh-wa-copy .dh-wa-desc {
  font-size: 16px; color: rgba(255,255,255,0.62); margin-bottom: 32px; line-height: 1.62;
}
.dh-wa-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.dh-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #064E3B;
  padding: 16px 34px; border-radius: 999px;
  font-size: 16px; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: transform 0.22s var(--d-spring), box-shadow 0.22s;
}
.dh-wa-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(0,0,0,0.28); color: #064E3B; }
.dh-wa-btn svg { width: 20px; height: 20px; }
.dh-wa-phone {
  font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.dh-wa-phone:hover { color: #fff; }

/* ================================================================
   DESKTOP INNER PAGES â€” Catalog & Product Detail
   ================================================================ */

/* â”€â”€ Sayfa giriÅŸ animasyonu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-page-content,
body:not(.estel-m) .estel-detail-page {
  animation: dpPageIn 0.42s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes dpPageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Catalog: Dark hero banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-showcase--page { background: #fff; }
body:not(.estel-m) .estel-showcase--page .container {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}

body:not(.estel-m) .estel-zero-page__hero {
  background:
    radial-gradient(ellipse 60% 80% at 5% 60%, rgba(0,80,220,0.18), transparent 55%),
    radial-gradient(ellipse 45% 55% at 92% 15%, rgba(110,40,220,0.12), transparent 50%),
    linear-gradient(135deg, #06060f 0%, #0a0a1a 60%, #060610 100%);
  padding: 88px max(24px, calc(50% - 570px)) 56px;
  border-radius: 0 0 28px 28px;
  margin-bottom: 0;
  animation: dpBannerIn 0.55s ease both;
  position: relative;
  overflow: hidden;
  width: 100%;
}
body:not(.estel-m) .estel-zero-page__hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 8% 52%, rgba(0,80,220,0.14), transparent 55%),
    radial-gradient(ellipse 42% 52% at 88% 20%, rgba(110,40,220,0.1), transparent 50%);
  animation: dhOrbA 14s ease-in-out infinite alternate;
}
@keyframes dpBannerIn {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
body:not(.estel-m) .estel-zero-page__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: dSlideRight 0.5s ease 0.1s forwards;
}
body:not(.estel-m) .estel-zero-page__eyebrow::before {
  content: ''; width: 22px; height: 1px; background: rgba(255,255,255,0.28); flex-shrink: 0;
}
body:not(.estel-m) .estel-showcase__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
  color: #fff; margin-bottom: 14px;
  opacity: 0; animation: dFadeUp 0.55s ease 0.18s forwards;
}
body:not(.estel-m) .estel-showcase__subtitle {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 540px;
  opacity: 0; animation: dFadeUp 0.55s ease 0.26s forwards;
}
body:not(.estel-m) .estel-zero-page__chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
  opacity: 0; animation: dFadeUp 0.5s ease 0.34s forwards;
}
body:not(.estel-m) .estel-zero-page__chips span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  border-radius: 999px; padding: 5px 15px;
  font-size: 12px; font-weight: 500;
  transition: background 0.2s;
}
body:not(.estel-m) .estel-zero-page__chips span:hover { background: rgba(255,255,255,0.14); }

/* â”€â”€ Catalog: Filter bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-filter-bar {
  background: #f9f9fb;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; padding: 16px 20px;
  display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap;
  margin: 28px max(24px, calc(50% - 570px)) 28px;
  transition: box-shadow 0.3s;
  opacity: 0; animation: dFadeUp 0.5s ease 0.3s forwards;
}
body:not(.estel-m) .estel-filter-bar:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
body:not(.estel-m) .estel-filter-bar__label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #86868b; margin-bottom: 6px;
}
body:not(.estel-m) .estel-filter-bar__select {
  border: 1px solid rgba(0,0,0,0.1); border-radius: 10px;
  padding: 9px 14px; font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s; min-width: 140px;
  background: #fff;
}
body:not(.estel-m) .estel-filter-bar__select:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0,113,227,0.12); outline: none;
}
body:not(.estel-m) .estel-filter-bar__btn.btn-estel--primary {
  background: #0071e3; color: #fff; border: none;
  padding: 10px 26px; border-radius: 999px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
body:not(.estel-m) .estel-filter-bar__btn.btn-estel--primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,113,227,0.3);
}
body:not(.estel-m) .estel-filter-bar__btn.btn-estel--secondary {
  background: transparent; color: #6e6e73;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
body:not(.estel-m) .estel-filter-bar__btn.btn-estel--secondary:hover {
  border-color: #0071e3; color: #0071e3;
}

/* Restore product grid padding */
body:not(.estel-m) .estel-showcase--page .row.reveal-on-scroll {
  padding-left: max(24px, calc(50% - 570px));
  padding-right: max(24px, calc(50% - 570px));
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-bottom: 80px;
}

/* â”€â”€ Catalog: Product card stagger â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"] {
  opacity: 0; transform: translateY(22px);
  animation: dpCardIn 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(1)  { animation-delay: 0.06s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(2)  { animation-delay: 0.12s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(3)  { animation-delay: 0.18s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(4)  { animation-delay: 0.24s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(5)  { animation-delay: 0.30s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(6)  { animation-delay: 0.36s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(7)  { animation-delay: 0.40s; }
body:not(.estel-m) .row.reveal-on-scroll [class*="col-"]:nth-child(n+8){ animation-delay: 0.44s; }
@keyframes dpCardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* â”€â”€ Catalog: Card premium hover â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-home-product-card {
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.07);
  background: linear-gradient(180deg,#fff 0%,#fdfdff 100%);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s ease, border-color 0.32s;
}
body:not(.estel-m) .estel-home-product-card:hover {
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 22px 52px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  border-color: rgba(0,113,227,0.16);
}
body:not(.estel-m) .estel-home-product-card__media img {
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
body:not(.estel-m) .estel-home-product-card:hover .estel-home-product-card__media img {
  transform: scale(1.07) translateY(-4px);
}
body:not(.estel-m) .estel-home-product-card__body h3 {
  font-size: 14px; font-weight: 600; color: #1d1d1f;
  line-height: 1.35; margin-bottom: 6px;
}
body:not(.estel-m) .estel-home-product-card__body p {
  font-size: 16px; font-weight: 800; color: #0071e3; letter-spacing: -0.02em;
}

/* â”€â”€ Product Detail: Page layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-detail-page { background: #fff; padding-bottom: 80px; }

body:not(.estel-m) .estel-breadcrumb {
  padding: 20px 0 12px;
  opacity: 0; animation: dpPageIn 0.4s ease 0.05s forwards;
}
body:not(.estel-m) .estel-breadcrumb__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 8px; flex-wrap: wrap; font-size: 13px; color: #86868b;
}
body:not(.estel-m) .estel-breadcrumb__list li + li::before {
  content: '/'; margin-right: 8px; opacity: 0.4;
}
body:not(.estel-m) .estel-breadcrumb__list a {
  color: #6e6e73; text-decoration: none; transition: color 0.2s;
}
body:not(.estel-m) .estel-breadcrumb__list a:hover { color: #0071e3; }

body:not(.estel-m) .estel-product-detail { padding: 8px 0 40px; }
body:not(.estel-m) .estel-product-detail__grid {
  display: grid; grid-template-columns: 52fr 48fr; gap: 56px; align-items: start;
}

/* â”€â”€ Product Detail: Image stage â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-product-detail__visual {
  opacity: 0; animation: dpImgIn 0.6s ease 0.05s forwards;
}
@keyframes dpImgIn {
  from { opacity: 0; transform: translateX(-16px) scale(0.98); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
body:not(.estel-m) .estel-product-detail__stage { position: sticky; top: 90px; }
body:not(.estel-m) .estel-product-detail__img-wrap {
  background: linear-gradient(160deg, #f4f4f8 0%, #ebebf2 100%);
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  position: relative; cursor: zoom-in;
}
body:not(.estel-m) .estel-product-detail__img {
  max-width: 85%; max-height: 85%;
  width: auto; height: auto; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.13));
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
body:not(.estel-m) .estel-product-detail__img.is-switching { opacity: 0; transform: scale(0.96); }
body:not(.estel-m) .estel-product-detail__img-wrap:hover .estel-product-detail__img {
  transform: scale(1.06);
}
body:not(.estel-m) .estel-product-detail__gallery {
  display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap;
}
body:not(.estel-m) .estel-product-detail__gallery-thumb {
  width: 64px; height: 64px; border-radius: 14px; overflow: hidden;
  border: 2px solid rgba(0,0,0,0.07); background: #f4f4f8; cursor: pointer;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  flex-shrink: 0;
}
body:not(.estel-m) .estel-product-detail__gallery-thumb:hover {
  transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
body:not(.estel-m) .estel-product-detail__gallery-thumb--active {
  border-color: #0071e3; box-shadow: 0 0 0 1px #0071e3;
}
body:not(.estel-m) .estel-product-detail__gallery-thumb img {
  width: 100%; height: 100%; object-fit: contain;
}
body:not(.estel-m) .estel-product-detail__nav {
  position: absolute; top: 50%; z-index: 4;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  cursor: pointer; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
body:not(.estel-m) .estel-product-detail__nav--prev { left: 12px; transform: translateY(-50%); }
body:not(.estel-m) .estel-product-detail__nav--next { right: 12px; transform: translateY(-50%); }
body:not(.estel-m) .estel-product-detail__nav--prev:hover { transform: translateY(-52%) scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
body:not(.estel-m) .estel-product-detail__nav--next:hover { transform: translateY(-52%) scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* â”€â”€ Product Detail: Info section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body:not(.estel-m) .estel-product-detail__info {
  opacity: 0; animation: dpInfoIn 0.6s ease 0.12s forwards;
}
@keyframes dpInfoIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
body:not(.estel-m) .estel-product-detail__category {
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: #0071e3; margin-bottom: 8px;
}
body:not(.estel-m) .estel-product-detail__brand-model {
  font-size: 13px; color: #86868b; margin-bottom: 8px;
}
body:not(.estel-m) .estel-product-detail__title {
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.12;
  color: #1d1d1f; margin-bottom: 16px;
}
body:not(.estel-m) .estel-product-detail__badge-wrap {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
body:not(.estel-m) .estel-product-detail__badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 12px; border-radius: 999px;
}
body:not(.estel-m) .estel-product-detail__badge--new {
  background: rgba(0,113,227,0.1); color: #0055b3;
}
body:not(.estel-m) .estel-product-detail__badge--used {
  background: rgba(255,149,0,0.12); color: #b45309;
}
body:not(.estel-m) .estel-product-detail__badge--sale {
  background: rgba(255,59,48,0.1); color: #c0392b;
}
body:not(.estel-m) .estel-product-detail__price-wrap {
  margin-bottom: 12px; display: flex; align-items: baseline; gap: 8px;
}
body:not(.estel-m) .estel-product-detail__price {
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800; letter-spacing: -0.04em; color: #1d1d1f; line-height: 1;
}
body:not(.estel-m) .estel-product-detail__price-currency {
  font-size: 0.52em; vertical-align: super; font-weight: 700; color: #6e6e73;
}
body:not(.estel-m) .estel-product-detail__price-old {
  font-size: 18px; color: #86868b; text-decoration: line-through;
}

/* Stock badge with pulse */
body:not(.estel-m) .estel-product-detail__stock { margin-bottom: 20px; }
body:not(.estel-m) .estel-product-detail__stock-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
}
body:not(.estel-m) .estel-product-detail__stock-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: dpPulse 2.2s ease-in-out infinite;
}
body:not(.estel-m) .estel-product-detail__stock-badge.is-in_stock    { background: rgba(52,199,89,0.1);  color: #1a7f37; }
body:not(.estel-m) .estel-product-detail__stock-badge.is-limited_stock { background: rgba(255,149,0,0.1); color: #b45309; }
body:not(.estel-m) .estel-product-detail__stock-badge.is-out_of_stock { background: rgba(255,59,48,0.1);  color: #c0392b; }
body:not(.estel-m) .estel-product-detail__stock-badge.is-preorder     { background: rgba(110,40,220,0.1); color: #6828d0; }
@keyframes dpPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: 0.6; }
}

/* Storage picker */
body:not(.estel-m) .estel-storage-picker__label,
body:not(.estel-m) .estel-color-picker__label {
  font-size: 12px; font-weight: 600; color: #6e6e73; margin-bottom: 10px;
}
body:not(.estel-m) .estel-storage-picker__options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
body:not(.estel-m) .estel-storage-option {
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: 12px;
  padding: 9px 18px; background: #fff; cursor: pointer;
  font-size: 13px; font-weight: 600; color: #1d1d1f;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
}
body:not(.estel-m) .estel-storage-option:hover {
  border-color: #0071e3; transform: translateY(-2px);
}
body:not(.estel-m) .estel-storage-option--selected {
  border-color: #0071e3; background: rgba(0,113,227,0.07); color: #0071e3;
}

/* Color swatches */
body:not(.estel-m) .estel-color-picker__swatches { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
body:not(.estel-m) .estel-color-swatch {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  background: var(--swatch-color, #888);
  border: 2px solid rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
body:not(.estel-m) .estel-color-swatch:hover { transform: scale(1.18); }
body:not(.estel-m) .estel-color-swatch--selected {
  box-shadow: 0 0 0 2.5px #fff, 0 0 0 4.5px #0071e3;
  transform: scale(1.12);
}
body:not(.estel-m) .estel-color-swatch__inner { display: none; }

/* CTA Buttons */
body:not(.estel-m) .estel-product-detail__actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 24px;
}
body:not(.estel-m) .estel-product-detail__btn.btn-estel--primary {
  flex: 1; min-width: 180px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #0071e3 0%, #0055b3 100%);
  color: #fff; border: none; padding: 16px 24px; border-radius: 999px;
  font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s;
  box-shadow: 0 4px 20px rgba(0,113,227,0.25);
}
body:not(.estel-m) .estel-product-detail__btn.btn-estel--primary:hover {
  transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,113,227,0.4); color: #fff;
}
body:not(.estel-m) .estel-product-detail__btn.btn-estel--secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: #1d1d1f;
  border: 1.5px solid rgba(0,0,0,0.14); padding: 16px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer;
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}
body:not(.estel-m) .estel-product-detail__btn.btn-estel--secondary:hover {
  transform: translateY(-3px); border-color: #0071e3; color: #0071e3;
  background: rgba(0,113,227,0.04);
}

/* Product features */
body:not(.estel-m) .estel-product-detail__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px;
}
body:not(.estel-m) .estel-product-detail__feature {
  display: flex; align-items: center; gap: 10px;
  background: #f5f5f7; border-radius: 14px; padding: 12px 14px;
  transition: background 0.2s;
}
body:not(.estel-m) .estel-product-detail__feature:hover { background: #ebebef; }
body:not(.estel-m) .estel-product-detail__feature-label {
  font-size: 11px; color: #86868b; display: block;
}
body:not(.estel-m) .estel-product-detail__feature-value {
  font-size: 13px; font-weight: 700; color: #1d1d1f; display: block;
}

/* Share section */
body:not(.estel-m) .estel-product-detail__share {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.07);
}
body:not(.estel-m) .estel-product-detail__share-label { font-size: 12px; color: #86868b; font-weight: 600; }
body:not(.estel-m) .estel-product-detail__share-icons { display: flex; gap: 10px; }
body:not(.estel-m) .estel-share-icon {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1);
  background: #f5f5f7; display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none; color: #1d1d1f;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
body:not(.estel-m) .estel-share-icon:hover { transform: translateY(-3px) scale(1.1); }
body:not(.estel-m) .estel-share-icon--wa:hover  { background: #25d366; color: #fff; border-color: #25d366; }
body:not(.estel-m) .estel-share-icon--x:hover   { background: #000; color: #fff; border-color: #000; }
body:not(.estel-m) .estel-share-icon--fb:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
body:not(.estel-m) .estel-share-icon--link:hover { background: #0071e3; color: #fff; border-color: #0071e3; }

/* Detail tabs */
body:not(.estel-m) .estel-detail-tabs {
  margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08);
  opacity: 0; animation: dpPageIn 0.5s ease 0.3s forwards;
}
body:not(.estel-m) .estel-detail-tabs__bar {
  display: flex; gap: 0; border-bottom: 1.5px solid rgba(0,0,0,0.08); margin-bottom: 28px;
}
body:not(.estel-m) .estel-detail-tabs__tab {
  padding: 12px 20px; font-size: 13px; font-weight: 600; color: #86868b;
  background: none; border: none; cursor: pointer; border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px; transition: color 0.2s, border-color 0.2s;
}
body:not(.estel-m) .estel-detail-tabs__tab:hover { color: #1d1d1f; }
body:not(.estel-m) .estel-detail-tabs__tab.is-active { color: #0071e3; border-bottom-color: #0071e3; }
body:not(.estel-m) .estel-detail-tabs__count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(0,113,227,0.1); color: #0071e3; font-size: 10px; margin-left: 4px;
}
body:not(.estel-m) .estel-detail-tabs__panel {
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
body:not(.estel-m) .estel-detail-tabs__panel.is-active {
  opacity: 1; transform: translateY(0); display: block !important;
}
body:not(.estel-m) .estel-detail-tabs__specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px;
}
body:not(.estel-m) .estel-detail-tabs__specs div {
  background: #f5f5f7; border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 0.2s;
}
body:not(.estel-m) .estel-detail-tabs__specs div:hover { background: #ebebef; }
body:not(.estel-m) .estel-detail-tabs__specs span { font-size: 11px; color: #86868b; }
body:not(.estel-m) .estel-detail-tabs__specs strong { font-size: 14px; color: #1d1d1f; }
body:not(.estel-m) .estel-detail-tabs__list {
  padding-left: 18px; display: flex; flex-direction: column; gap: 10px; margin-top: 12px;
}
body:not(.estel-m) .estel-detail-tabs__list li { font-size: 14px; color: #3d3d3f; line-height: 1.6; }
body:not(.estel-m) .estel-detail-tabs__rich-content { font-size: 15px; line-height: 1.7; color: #3d3d3f; }

/* Related products */
body:not(.estel-m) .estel-related { padding: 52px 0 0; }
body:not(.estel-m) .estel-related__title {
  font-size: 22px; font-weight: 800; color: #1d1d1f;
  letter-spacing: -0.03em; margin-bottom: 24px;
}
body:not(.estel-m) .estel-showcase--related {
  padding: 48px 0 72px;
  opacity: 0; animation: dpPageIn 0.5s ease 0.35s forwards;
}
body:not(.estel-m) .estel-showcase--related .estel-showcase__title {
  font-size: 22px; font-weight: 800; color: #1d1d1f;
  letter-spacing: -0.03em; margin-bottom: 6px;
  opacity: 1; animation: none;
}
body:not(.estel-m) .estel-showcase--related .estel-showcase__subtitle {
  font-size: 14px; color: #86868b;
  opacity: 1; animation: none;
}
body:not(.estel-m) .estel-product-card {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: linear-gradient(180deg,#fff 0%,#fdfdff 100%);
  text-decoration: none; color: inherit;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.32s ease, border-color 0.32s;
}
body:not(.estel-m) .estel-product-card:hover {
  transform: translateY(-7px) scale(1.012);
  box-shadow: 0 22px 52px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  border-color: rgba(0,113,227,0.16); color: inherit;
}
body:not(.estel-m) .estel-product-card__visual {
  position: relative; background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  min-height: 180px; overflow: hidden;
}
body:not(.estel-m) .estel-product-card__img {
  max-width: 80%; max-height: 160px;
  object-fit: contain; display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
body:not(.estel-m) .estel-product-card:hover .estel-product-card__img {
  transform: scale(1.07) translateY(-4px);
}
body:not(.estel-m) .estel-product-card__badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 10px; border-radius: 999px;
}
body:not(.estel-m) .estel-product-card__badge--new  { background: rgba(0,113,227,0.1); color: #0055b3; }
body:not(.estel-m) .estel-product-card__badge--used { background: rgba(255,149,0,0.12); color: #b45309; }
body:not(.estel-m) .estel-product-card__info { padding: 14px 16px 16px; flex: 1; }
body:not(.estel-m) .estel-product-card__title {
  font-size: 13px; font-weight: 600; color: #1d1d1f;
  line-height: 1.35; margin-bottom: 6px;
}
body:not(.estel-m) .estel-product-card__price {
  font-size: 16px; font-weight: 800; color: #0071e3; letter-spacing: -0.02em;
}
/* Related product stagger */
body:not(.estel-m) .estel-showcase--related .row [class*="col-"] {
  opacity: 0; transform: translateY(20px);
  animation: dpCardIn 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
body:not(.estel-m) .estel-showcase--related .row [class*="col-"]:nth-child(1) { animation-delay: 0.40s; }
body:not(.estel-m) .estel-showcase--related .row [class*="col-"]:nth-child(2) { animation-delay: 0.46s; }
body:not(.estel-m) .estel-showcase--related .row [class*="col-"]:nth-child(3) { animation-delay: 0.52s; }
body:not(.estel-m) .estel-showcase--related .row [class*="col-"]:nth-child(4) { animation-delay: 0.58s; }

/* â”€â”€ Inner pages responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  body:not(.estel-m) .estel-product-detail__grid { gap: 36px; }
}
@media (max-width: 991px) {
  body:not(.estel-m) .estel-product-detail__grid { grid-template-columns: 1fr; gap: 28px; }
  body:not(.estel-m) .estel-product-detail__stage { position: static; }
  body:not(.estel-m) .estel-product-detail__img-wrap { max-width: 480px; margin: 0 auto; }
  body:not(.estel-m) .estel-detail-tabs__tab { padding: 10px 14px; font-size: 12px; }
  body:not(.estel-m) .estel-product-detail__features { grid-template-columns: 1fr 1fr; }
}

/* â”€â”€ dh-* Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1199px) {
  .dh-cats-grid { grid-template-columns: repeat(3,1fr); }
  .dh-apple-grid { grid-template-columns: repeat(3,1fr); }
  .dh-trust-grid { grid-template-columns: repeat(2,1fr); }
  .dh-wa-inner { gap: 40px; }
}
@media (max-width: 991px) {
  .dh-hero { min-height: auto; }
  .dh-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .dh-hero__left { max-width: 100%; order: 2; }
  .dh-hero__right { order: 1; }
  .dh-hero__slider { height: 320px; }
  .dh-hero__content { padding: 44px 0 56px; }
  .dh-cats-grid { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .dh-apple-grid { grid-template-columns: repeat(2,1fr); }
  .dh-trust-grid { grid-template-columns: repeat(2,1fr); }
  .dh-wa-inner { flex-direction: column; gap: 28px; text-align: center; }
  .dh-wa-row { justify-content: center; }
}
@media (max-width: 767px) {
  .dh-hero { min-height: auto; }
  .dh-hero__slider { height: 260px; }
  .dh-hero__content { padding: 28px 0 40px; }
  .dh-cats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .dh-apple-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .dh-trust-grid { grid-template-columns: 1fr; }
  .dh-promo-grid { grid-template-columns: 1fr; }
  .dh-section-head--split { flex-direction: column; gap: 8px; align-items: flex-start; }
  .dh-hero__trust { gap: 14px; }
  .dh-stats__row { flex-wrap: wrap; }
  .dh-stat { flex: 0 0 50%; padding: 8px 10px; }
}


