/* ================================================================
   CLAP TEES — INTERNATIONAL BRAND EDITION
   Clean · Consistent · Professional · Mobile-First
   Palette: Brown #3e2415 · Red #cd2536 · Orange #f49845 · Cream #fdf8f2
   Typography: Cormorant Garamond + Outfit
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,600;0,700;0,900;1,600;1,700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ══ Design Tokens ══ */
:root {
  /* Brand Colors (exact from logo) */
  --clr-brown:     #3e2415;
  --clr-brown-md:  #6b3a20;
  --clr-brown-lt:  #c4956a;
  --clr-red:       #cd2536;
  --clr-red-dk:    #a01c2a;
  --clr-red-lt:    #e84055;
  --clr-orange:    #f49845;
  --clr-orange-lt: #f7b570;
  --clr-orange-dk: #c47520;

  /* Surfaces */
  --surf-white:    #ffffff;
  --surf-cream:    #fdf8f2;
  --surf-warm:     #f8f0e6;
  --surf-sand:     #f2e8d8;
  --surf-dark:     #1a0d06;

  /* Text */
  --txt-primary:   #1a0d06;
  --txt-secondary: #6b4a35;
  --txt-muted:     #9a7a65;
  --txt-inverted:  #fdf8f2;

  /* Borders */
  --brd-light:     rgba(62,36,21,.1);
  --brd-medium:    rgba(62,36,21,.18);

  /* Fonts */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Outfit', sans-serif;

  /* Motion */
  --ease:  cubic-bezier(.22,1,.36,1);
  --t-sm:  .18s;
  --t-md:  .32s;
  --t-lg:  .55s;

  /* Space */
  --sp-section: clamp(3.5rem, 7vw, 7rem);
  --sp-container: clamp(1rem, 4vw, 2.5rem);

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  24px;
  --r-xl:  40px;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(62,36,21,.08);
  --sh-sm: 0 4px 16px rgba(62,36,21,.1);
  --sh-md: 0 10px 36px rgba(62,36,21,.13);
  --sh-lg: 0 24px 64px rgba(62,36,21,.18);
  --sh-red: 0 8px 28px rgba(205,37,54,.28);
}

/* ══ Reset ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: #fdf8f2;
  color: #1a0d06;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; font-family: 'Outfit', sans-serif; }

/* ══ Animations ══ */
@keyframes fadeUp     { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeIn     { from { opacity:0; } to { opacity:1; } }
@keyframes slideRight { from { opacity:0; transform:translateX(-20px); } to { opacity:1; transform:none; } }
@keyframes ticker     { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes float      { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
@keyframes spinSlow   { to { transform:rotate(360deg); } }
@keyframes scaleX     { from { transform:scaleX(0); } to { transform:scaleX(1); } }
@keyframes pulse      { 0%,100% { opacity:1; } 50% { opacity:.5; } }

/* ══ Shared Typography ══ */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px; border-radius: 1px;
  background: currentColor; flex-shrink: 0;
}
.eyebrow-red   { color: #cd2536; }
.eyebrow-brown { color: #3e2415; }
.eyebrow-white { color: rgba(253,248,242,.7); }
.eyebrow-white::before { background: rgba(253,248,242,.5); }

.display-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.dt-dark { color: #1a0d06; }
.dt-white { color: #fdf8f2; }
.dt-red   { color: #cd2536; }
em.gold   { font-style: italic; font-weight: 700; color: #c47520; }
em.red    { font-style: italic; color: #cd2536; }
em.white  { font-style: italic; color: #f7b570; }

/* ══ Buttons ══ */
.cta {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Outfit', sans-serif; font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 4px;
  border: 2px solid transparent;
  transition: all .18s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.cta .arr { font-size: 12px; transition: transform .18s cubic-bezier(.22,1,.36,1); }
.cta:hover .arr { transform: translateX(4px); }

.cta-primary { background: #cd2536; color: #fff; border-color: #cd2536; }
.cta-primary:hover { background: #a01c2a; border-color: #a01c2a; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(205,37,54,.28); }

.cta-dark { background: #3e2415; color: #fff; border-color: #3e2415; }
.cta-dark:hover { background: #1a0d06; border-color: #1a0d06; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 36px rgba(62,36,21,.13); }

.cta-outline { background: transparent; color: #1a0d06; border-color: rgba(62,36,21,.18); }
.cta-outline:hover { border-color: #3e2415; background: #3e2415; color: #fff; transform: translateY(-2px); }

.cta-outline-lt { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.cta-outline-lt:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; transform: translateY(-2px); }

.cta-orange { background: #f49845; color: #3e2415; border-color: #f49845; }
.cta-orange:hover { background: #f7b570; border-color: #f7b570; color: #3e2415; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #cd2536; border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: all .18s cubic-bezier(.22,1,.36,1);
}
.link-arrow i { font-size: 11px; transition: transform .18s cubic-bezier(.22,1,.36,1); }
.link-arrow:hover { color: #a01c2a; border-bottom-color: #cd2536; }
.link-arrow:hover i { transform: translateX(3px); }

.link-arrow-lt { color: rgba(253,248,242,.7); }
.link-arrow-lt:hover { color: #fff; border-bottom-color: rgba(253,248,242,.6); }

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  background: #3e2415;
  padding: .55rem 1rem;
  overflow: hidden; position: relative;
}
.topbar-track {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.topbar-track:hover { animation-play-state: paused; }
.topbar-item {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(253,248,242,.7);
  padding: 0 2.5rem; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.topbar-item::after { content: '·'; color: #f49845; font-size: 1rem; }
.topbar-close {
  position: absolute; right: .75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(253,248,242,.4);
  font-size: 16px; line-height: 1; padding: .25rem;
  transition: color .18s;
}
.topbar-close:hover { color: #fff; }

/* ══════════════════════════════════════
   NAVBAR — sticky, glass
══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 950;
  background: rgba(253,248,242,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(62,36,21,.1);
  box-shadow: 0 1px 4px rgba(62,36,21,.08);
}
.header-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding:0 20px;
}


.header-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu ul{
    display:flex;
    gap:0px;
}
.header-logo img {
  height: 80px; width: auto;
  transition: opacity .18s;
}
.header-logo:hover img { opacity: .8; }

/* Desktop nav */
.header-nav { display: flex; align-items: center; }
.header-nav li { position: relative; margin:0 5px !important; }
.nav-menu>ul>li>a {
    display: block !important;
    padding: .5rem 1.6rem .5rem .4rem !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: #6b4a35 !important;
    transition: color .18s;
}
.nav-menu>ul>li:last-child a {
    background-color: #cd2437;
    border-color: #cd2437;
    color: #FFF !important;
    text-align: center;
    padding: 7px 10px !important;
    border-radius: 5px;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: 0;
  left: .9rem; right: .9rem; height: 2px;
  background: #cd2536; border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.header-nav a:hover { color: #3e2415; }
.header-nav a:hover::after { transform: scaleX(1); }
.header-nav .hot-link { color: #cd2536; font-weight: 800; }
.header-nav .hot-link::after { background: #cd2536; }
/* ── Mega Dropdown ── */
.dropdown-mega {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(62,36,21,0.18), 0 4px 16px rgba(62,36,21,0.08);
  border: 1px solid rgba(62,36,21,0.08);
  border-top: none;
  min-width: 680px;
  padding: 2rem 2rem 1.75rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  z-index: 999;
}
.nav-item:hover .dropdown-mega {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-mega.dropdown-sm {
  min-width: 220px;
  padding: 1rem 0;
}
.dropdown-sm .dd-list { display: block !important; }
.dd-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.dd-col h6 {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #cd2536;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid rgba(205,37,54,0.12);
}
.dd-list { display: flex; flex-direction: column; gap: 0; }
.dd-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 13px;
  font-weight: 500;
  color: #6b4a35;
  transition: color 0.15s, padding-left 0.18s;
  border-bottom: 1px solid rgba(62,36,21,0.05);
}
.dd-list a:last-child { border-bottom: none; }
.dd-list a i {
  font-size: 11px;
  color: #cd2536;
  width: 14px;
  flex-shrink: 0;
}
.dd-list a:hover { color: #3e2415; padding-left: 4px; }
/* small dropdown */
.dropdown-mega.dropdown-sm a {
  padding: 0.6rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  color: #6b4a35;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(62,36,21,0.05);
  transition: all 0.15s;
}
.dropdown-mega.dropdown-sm a:last-child { border-bottom: none; }
.dropdown-mega.dropdown-sm a:hover { color: #cd2536; background: rgba(205,37,54,0.04); padding-left: 1.6rem; }
/* banner inside dropdown */
.dd-banner {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #3e2415 0%, #6b3a20 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.dd-banner-txt {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.dd-banner-txt span { color: #f49845; }
.dd-banner-cta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  background: #cd2536;
  color: #fff;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.15s;
}
.dd-banner-cta:hover { background: #a01c2a; color: #fff; }

/* Header actions */
a.wishlist_products_counter.top_wishlist-heart:before { display:none; }
.header-actions { display: flex; align-items: center; gap: .45rem; }
.hdr-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: none; border: 1px solid transparent;
  color: #6b4a35; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.hdr-btn:hover { color: #3e2415; border-color: rgba(62,36,21,.1); background: #f8f0e6; }
.cart-trigger {
  display: flex; align-items: center; gap: .55rem;
  background: #cd2536; color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .5rem 1.1rem;
  border-radius: 50px; border: none; margin-left: .35rem;
  transition: all .18s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.cart-trigger:hover { background: #a01c2a; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(205,37,54,.28); }
.cart-count {
  background: #fff; color: #cd2536;
  width: 17px; height: 17px; border-radius: 50%;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none; width: 40px; height: 40px;
  background: none; border: 1px solid rgba(62,36,21,.1);
  border-radius: 8px; color: #6b4a35;
  font-size: 16px; align-items: center; justify-content: center;
  transition: all .18s;
}
.menu-toggle:hover { border-color: rgba(62,36,21,.18); color: #3e2415; }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 1000;
  pointer-events: none; visibility: hidden;
}
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(26,13,6,.5); opacity: 0;
  transition: opacity .32s;
}
.drawer-panel {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #fdf8f2;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(62,36,21,.18);
  overflow-y: auto;
}
.mobile-drawer.open { pointer-events: all; visibility: visible; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(62,36,21,.1);
}
.drawer-head img { height: 38px; }
.drawer-close {
  width: 34px; height: 34px; border-radius: 50%;
  background: #f8f0e6; border: none; font-size: 16px; color: #6b4a35;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.drawer-close:hover { background: #cd2536; color: #fff; }

.drawer-nav { padding: 1.25rem 0; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.5rem; font-size: 13.5px; font-weight: 600;
  letter-spacing: .05em; color: #1a0d06;
  border-bottom: 1px solid rgba(62,36,21,.1);
  transition: color .18s, background .18s;
}
.drawer-nav a:hover { color: #cd2536; background: #f8f0e6; }
.drawer-nav a i { font-size: 11px; color: #9a7a65; }
.drawer-nav .d-hot { color: #cd2536; font-weight: 800; }

.drawer-foot {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(62,36,21,.1);
}
.drawer-foot .cta { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   HERO — Full viewport, split layout
══════════════════════════════════════ */
.hero {
  background: #fdf8f2;
  min-height: calc(100vh - 68px);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* subtle pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 70% 10%, rgba(244,152,69,.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 90%, rgba(205,37,54,.05) 0%, transparent 45%);
}

.hero-body {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0;
  max-width: 1440px; width: 100%; margin: 0 auto;
  padding: 4rem clamp(1rem, 4vw, 2.5rem) 2rem;
  position: relative; z-index: 2;
}

/* ── Hero Text ── */
.hero-text { padding-right: 3rem; }

.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(205,37,54,.08);
  border: 1px solid rgba(205,37,54,.2);
  border-radius: 50px; padding: .38rem .9rem;
  font-size: 10.5px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: #cd2536;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s cubic-bezier(.22,1,.36,1) .05s both;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #cd2536;
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  font-weight: 700; line-height: .93;
  letter-spacing: -.03em; color: #1a0d06;
  margin-bottom: 1.5rem;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .14s both;
}
.hero-h1 .line-accent { color: #cd2536; display: block; }
.hero-h1 .line-outline {
  display: block;
  -webkit-text-stroke: 1.5px #3e2415;
  color: transparent;
}

.hero-rule {
  width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #cd2536, #f49845);
  margin-bottom: 1.25rem;
  animation: scaleX .7s cubic-bezier(.22,1,.36,1) .28s both;
  transform-origin: left;
}

.hero-desc {
  font-size: clamp(14px, 1.6vw, 16px); font-weight: 300; line-height: 1.8;
  color: #6b4a35; max-width: 380px;
  margin-bottom: 2.25rem;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .36s both;
}

.hero-cta-row {
  display: flex; align-items: center; gap: .85rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .46s both;
}

.hero-trust {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  animation: fadeUp .7s cubic-bezier(.22,1,.36,1) .56s both;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: 12px; font-weight: 600; color: #9a7a65;
}
.trust-item i { font-size: 14px; color: #c47520; }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .9s cubic-bezier(.22,1,.36,1) .2s both;
}

.hero-img-stack { position: relative; width: 100%; max-width: 480px; }

.hero-main-photo {
  width: 100%; border-radius: 28px;
  box-shadow: 0 24px 64px rgba(62,36,21,.18);
  animation: float 9s ease-in-out infinite;
  aspect-ratio: 4/5; object-fit: cover;
}

.hero-img-accent {
  position: absolute; bottom: -20px; left: -24px;
  width: 42%; aspect-ratio: 1;
  border-radius: 20px; object-fit: cover;
  box-shadow: 0 10px 36px rgba(62,36,21,.13);
  border: 4px solid #fdf8f2;
}

/* spinning badge */
.hero-spin-ring {
  position: absolute; top: 16px; right: -18px;
  width: 88px; height: 88px;
  animation: spinSlow 18s linear infinite;
  z-index: 5;
}
.hero-spin-ring svg {
  width: 100%; height: 100%;
}

/* floating stat cards */
.hero-stat-card {
  position: absolute; z-index: 6;
  background: #ffffff; border-radius: 14px;
  padding: .85rem 1.1rem;
  box-shadow: 0 10px 36px rgba(62,36,21,.13); border: 1px solid rgba(62,36,21,.1);
  display: flex; align-items: center; gap: .75rem;
}
.hero-stat-card.pos-br { bottom: 56px; left: -32px; }
.hero-stat-card.pos-tr { top: 72px; right: -28px; }
.hsc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ic-red  { background: rgba(205,37,54,.1); color: #cd2536; }
.ic-org  { background: rgba(244,152,69,.15); color: #c47520; }
.ic-brn  { background: rgba(62,36,21,.08); color: #3e2415; }
.hsc-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9a7a65; }
.hsc-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.25rem; font-weight: 700; color: #1a0d06; line-height: 1; margin-top: .1rem; }

/* Hero stats bar */
.hero-stats-bar {
  border-top: 1px solid rgba(62,36,21,.1);
  max-width: 1440px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.hstat {
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  border-right: 1px solid rgba(62,36,21,.1);
  display: flex; align-items: center; gap: .85rem;
}
.hstat:last-child { border-right: none; }
.hstat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.hstat-num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #1a0d06; line-height: 1; }
.hstat-lbl { font-size: 10.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: #9a7a65; margin-top: .12rem; }

/* ══════════════════════════════════════
   TICKER / MARQUEE
══════════════════════════════════════ */
.ticker-bar {
  background: #3e2415; overflow: hidden;
  padding: .8rem 0;
  border-top: 2px solid #cd2536;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1rem; font-style: italic;
  color: rgba(253,248,242,.55); padding: 0 2rem;
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 2rem;
}
.ticker-item::after { content: '⬥'; font-style: normal; font-size: .5rem; color: #f49845; }

/* ══════════════════════════════════════
   SECTION WRAPPERS
══════════════════════════════════════ */
.section-cream   { background: #fdf8f2; }
.section-white   { background: #ffffff; }
.section-warm    { background: #f8f0e6; }
.section-sand    { background: #f2e8d8; }
.section-brown   { background: #3e2415; }
.section-dark    { background: #1a0d06; }
.section-red     { background: #cd2536; }

.section-pad { padding: clamp(3.5rem, 7vw, 7rem) clamp(1rem, 4vw, 2.5rem); }
.inner { max-width: 1440px; margin: 0 auto; }

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.section-head-center { text-align: center; justify-content: center; margin-bottom: 3rem; }
.section-head-center .eyebrow { justify-content: center; }
.section-head-center .eyebrow::before { display: none; }

/* ══════════════════════════════════════
   BRAND MESSAGE STRIP
══════════════════════════════════════ */
.brand-strip { background: #cd2536; padding: 3.5rem clamp(1rem, 4vw, 2.5rem); }
.brand-strip-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.brand-message {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.1;
  color: #fff;
}
.brand-message em { font-style: italic; color: #f7b570; }
.brand-perks { display: flex; gap: 2rem; flex-wrap: wrap; }
.brand-perk {
  display: flex; align-items: center; gap: .6rem;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
}
.brand-perk i { color: #f7b570; font-size: 16px; }

/* ══════════════════════════════════════
   FEATURED COLLECTIONS — bento grid
══════════════════════════════════════ */
.coll-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 360px 220px;
  gap: .85rem;
}
.coll-card { position: relative; border-radius: 24px; overflow: hidden; }
.coll-card.large { grid-row: span 2; border-radius: 30px; }
.coll-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.coll-card:hover .coll-photo { transform: scale(1.06); }
.coll-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,13,6,.88) 0%, rgba(26,13,6,.1) 55%);
  transition: opacity .32s;
}
.coll-card:hover .coll-veil { opacity: .96; }
.coll-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.75rem 1.6rem;
}
.coll-tag {
  font-size: 9.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: #f7b570;
  margin-bottom: .35rem;
}
.coll-name {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: .85rem;
}
.coll-card.large .coll-name { font-size: 2.4rem; }
.coll-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: all .32s cubic-bezier(.22,1,.36,1);
}
.coll-cta i { font-size: 12px; transition: transform .18s; }
.coll-card:hover .coll-cta { opacity: 1; transform: none; }
.coll-cta:hover i { transform: translateX(4px); }

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */
.prod-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.prod-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

.prod-card {
  background: #ffffff; border-radius: 14px;
  overflow: hidden; border: 1px solid rgba(62,36,21,.1);
  transition: transform .32s cubic-bezier(.22,1,.36,1),
              box-shadow .32s,
              border-color .32s;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(62,36,21,.13);
  border-color: rgba(205,37,54,.18);
}

.prod-img-box {
  position: relative; overflow: hidden;
  /*aspect-ratio: 3/4;*/ background: #f2e8d8;
}
.prod-photo {
  width: 100%; /*height: 100%;*/ object-fit: cover;
  transition: transform .65s cubic-bezier(.22,1,.36,1);
}
.prod-card:hover .prod-photo { transform: scale(1.06); }

.prod-badge {
  position: absolute; top: .8rem; left: .8rem;
  font-size: 9px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: .28rem .7rem;
  border-radius: 50px;
}
.badge-new   { background: #3e2415; color: #fff; }
.badge-sale  { background: #cd2536; color: #fff; }
.badge-hot   { background: #f49845; color: #3e2415; }
.badge-eco   { background: #2d7a4f; color: #fff; }

.prod-wishlist {
  position: absolute; top: .8rem; right: .8rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: #ffffff; border: 1px solid rgba(62,36,21,.1);
  color: #9a7a65; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .18s; box-shadow: 0 1px 4px rgba(62,36,21,.08);
}
.prod-card .prod-wishlist { opacity: 1; }
.prod-wishlist:hover { color: #cd2536; border-color: rgba(205,37,54,.3); }
.prod-wishlist.active { opacity: 1; color: #cd2536; }

.prod-quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(253,248,242,.98) 45%, transparent);
  padding: 2.5rem .85rem .85rem;
  transform: translateY(100%); transition: transform .32s cubic-bezier(.22,1,.36,1);
}
.prod-card:hover .prod-quick { transform: none; }
.quick-btn {
  width: 100%; font-family: 'Outfit', sans-serif; font-size: 11px;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .65rem; background: #3e2415; color: #fff;
  border: none; border-radius: 4px;
  transition: background .18s;
}
.quick-btn:hover { background: #1a0d06; }

.prod-info { padding: 1rem 1rem 1.15rem; }
.prod-cat {
  font-size: 9.5px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: #c47520;
  margin-bottom: .3rem;
}
.prod-name {
  font-size: 13.5px; font-weight: 500; color: #1a0d06;
  line-height: 1.4; margin-bottom: .5rem;
}
.prod-sizes { display: flex; gap: .3rem; margin-bottom: .6rem; flex-wrap: wrap; }
.sz-dot {
  font-size: 9px; font-weight: 700; width: 26px; height: 26px;
  border-radius: 5px; border: 1.5px solid rgba(62,36,21,.1);
  color: #9a7a65; display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
/*.sz-dot:hover, .sz-dot.on { background: #cd2536; border-color: #cd2536; color: #fff; }*/

.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.2rem; font-weight: 700; color: #1a0d06;
}
.prod-price .was {
  font-family: 'Outfit', sans-serif; font-size: .72rem; font-weight: 400;
  color: #9a7a65; text-decoration: line-through; margin-left: .3rem;
}
.prod-stars {
  display: flex; align-items: center; gap: .15rem;
  font-size: 10px; color: #c47520;
}
.prod-stars span { color: #9a7a65; font-size: 10px; margin-left: .2rem; }

/* NEW ARRIVALS — horizontal scroll on mobile */
.arrivals-scroll {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
}

/* ══════════════════════════════════════
   EDITORIAL SPLIT — organic banner
══════════════════════════════════════ */
.editorial-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px; overflow: hidden;
}
.ed-photo-side { position: relative; overflow: hidden; }
.ed-photo-side::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, #3e2415 100%);
}
.ed-photo-side img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.editorial-split:hover .ed-photo-side img { transform: scale(1.04); }
.ed-text-side {
  background: #3e2415; padding: 5rem 4.5rem;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.ed-deco-num {
  position: absolute; bottom: -1.5rem; right: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13rem;
  font-weight: 700; line-height: 1;
  color: rgba(253,248,242,.04); pointer-events: none;
}
.ed-content { position: relative; z-index: 2; max-width: 400px; }
.ed-features { display: flex; flex-direction: column; gap: .85rem; margin: 1.75rem 0; }
.ed-feat {
  display: flex; align-items: center; gap: .85rem;
  font-size: 13.5px; font-weight: 400; color: rgba(253,248,242,.6);
}
.ed-feat-ico {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(244,152,69,.12); border: 1px solid rgba(244,152,69,.2);
  display: flex; align-items: center; justify-content: center;
  color: #f49845; font-size: 13px; flex-shrink: 0;
}
.ed-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 2rem; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card {
  background: #ffffff; border-radius: 24px;
  padding: 2rem; border: 1px solid rgba(62,36,21,.1);
  position: relative; overflow: hidden;
  transition: transform .32s, box-shadow .32s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(62,36,21,.13); }
.testi-card::before {
  content: '"'; position: absolute; top: -.75rem; left: 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 8rem; font-weight: 700;
  color: rgba(205,37,54,.07); line-height: 1; pointer-events: none;
}
.testi-stars { color: #c47520; font-size: 11.5px; margin-bottom: .9rem; gap: .15rem; display: flex; }
.testi-text { font-size: 13.5px; font-weight: 400; line-height: 1.75; color: #6b4a35; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(62,36,21,.1); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 700; color: #1a0d06; }
.testi-sub { font-size: 11px; color: #9a7a65; margin-top: .1rem; }
.testi-verified {
  margin-left: auto; font-size: 9.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: #cd2536;
  display: flex; align-items: center; gap: .3rem;
}

/* ══════════════════════════════════════
   INSTAGRAM GALLERY
══════════════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  grid-template-rows: repeat(1, 200px); gap: .75rem;
}
.g-cell { border-radius: 14px; overflow: hidden; position: relative; }
.g-cell.tall { grid-row: span 2; border-radius: 24px; }
.g-cell.wide { grid-column: span 2; }
.g-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.22,1,.36,1), filter .35s;
}
.g-cell:hover img { transform: scale(1.07); filter: brightness(.72); }
.g-cell-over {
  position: absolute; inset: 0;
  background: rgba(205,37,54,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .32s;
}
.g-cell:hover .g-cell-over { opacity: 1; }
.g-cell-over i { color: #fff; font-size: 22px; }

/* ══════════════════════════════════════
   NEWSLETTER — red bg
══════════════════════════════════════ */
.nl-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  align-items: center; gap: 4rem;
}
.nl-h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem,4vw,3.25rem); font-weight: 700; color: #fff; line-height: 1.05; margin: .6rem 0 .65rem; }
.nl-h2 em { font-style: italic; color: #f7b570; }
.nl-sub { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 1.75rem; }
.nl-perks { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.nl-perk { display: flex; align-items: center; gap: .5rem; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.75); }
.nl-perk i { color: #f7b570; }
.nl-form-wrap {}
.nl-form { display: flex; gap: .5rem; margin-bottom: .75rem; }
.nl-input {
  flex: 1; height: 52px; padding: 0 1.2rem;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 4px; font-family: 'Outfit', sans-serif; font-size: 14px; color: #fff;
  transition: border-color .18s;
}
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { outline: none; border-color: rgba(255,255,255,.65); }
.nl-btn {
  height: 52px; padding: 0 1.75rem; font-family: 'Outfit', sans-serif;
  font-size: 11.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: #3e2415; color: #fff; border: none; border-radius: 4px;
  white-space: nowrap; transition: all .18s cubic-bezier(.22,1,.36,1);
}
.nl-btn:hover { background: #1a0d06; transform: translateY(-1px); }
.nl-fine { font-size: 11px; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #1a0d06; border-top: 3px solid #cd2536; padding: 5rem clamp(1rem, 4vw, 2.5rem) 0; }
.footer-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer-logo img { height: 48px; margin-bottom: 1rem; }
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(253,248,242,.38); line-height: 1.72; max-width: 240px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .45rem; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(253,248,242,.1);
  background: transparent; color: rgba(253,248,242,.4); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
}
.soc-btn:hover { background: #cd2536; border-color: #cd2536; color: #fff; }
.footer-col h6 { font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #f49845; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(253,248,242,.38); transition: color .18s, padding-left .18s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  border-top: 1px solid rgba(253,248,242,.07);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 12px; font-weight: 300; color: rgba(253,248,242,.25);
}
.footer-bottom a { color: rgba(253,248,242,.3); transition: color .18s; }
.footer-bottom a:hover { color: #f49845; }
.pay-list { display: flex; gap: .4rem; }
.pay-tag { background: rgba(253,248,242,.06); color: rgba(253,248,242,.35); font-size: 10.5px; font-weight: 700; padding: .28rem .6rem; border-radius: 4px; border: 1px solid rgba(253,248,242,.07); }

 footer {
      background: #1a0d06; border-top: 3px solid #cd2536; padding: 5rem clamp(1rem, 4vw, 2.5rem) 0;
      padding: 60px 0 0;
    }
    footer .footer-brand img { height: 60px; margin-bottom: 16px; }
    footer .footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
    footer .footer-social a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      margin-right: 6px;
      text-decoration: none;
      transition: all 0.3s;
    }
    footer .footer-social a:hover { background: #cd2536; color: #fff; }
    footer h6 {
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(255,255,255,0.08);
    }
    footer ul { list-style: none; padding: 0; }
    footer ul li { margin-bottom: 10px; }
    footer ul li a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
      display: flex; align-items: center; gap: 6px;
    }
    footer ul li a:hover { color: #FFF; }
    footer ul li a::before { content: '›'; color: #FFF; font-size: 16px; }
    .footer-bottom {
      background: rgba(0,0,0,0.3);
      padding: 18px 0;
      margin-top: 40px;
      font-size: 13px;
    }
    .footer-bottom a { color: #f49845; text-decoration: none; }

/* ══════════════════════════════════════
   MOBILE — comprehensive breakpoints
══════════════════════════════════════ */
@media (max-width: 1199px) {
  .prod-grid-4 { grid-template-columns: repeat(3,1fr); }
  .arrivals-scroll { grid-template-columns: repeat(3,1fr); }
  .coll-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .coll-card.large { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stat-card,.hero-img-accent,.hero-spin-ring { display: none; }
}

@media (max-width: 991px) {
  /* Nav */
  .header-nav { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero-body { grid-template-columns: 1fr; padding: 3rem clamp(1rem, 4vw, 2.5rem) 2rem; gap: 2.5rem; }
  .hero-text { padding-right: 0; order: 2; }
  .hero-visual { order: 1; }
  .hero-img-stack { max-width: 340px; }
  .hero-h1 { font-size: clamp(3.2rem, 9vw, 5rem); }

  /* Sections */
  .editorial-split { grid-template-columns: 1fr; }
  .ed-photo-side { height: 300px; }
  .ed-text-side { padding: 3.5rem 2.5rem; }
  .testi-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(4, 160px); }
  .g-cell.wide { grid-column: span 1; }

  .nl-inner { grid-template-columns: 1fr; gap: 2rem; }

  .brand-strip-inner { flex-direction: column; align-items: flex-start; }

  .hero-stats-bar { grid-template-columns: repeat(2,1fr); }
  .hstat:nth-child(2) { border-right: none; }
  .hstat:nth-child(3) { border-top: 1px solid rgba(62,36,21,.1); }
  .hstat:nth-child(4) { border-top: 1px solid rgba(62,36,21,.1); border-right: none; }
}

@media (max-width: 767px) {
  /* Typography */
  .hero-h1 { font-size: clamp(2.8rem, 10vw, 4rem); }

  /* Grids */
  .prod-grid-4, .prod-grid-3, .arrivals-scroll { grid-template-columns: repeat(2,1fr); gap: .85rem; }
  .coll-bento { grid-template-columns: 1fr; gap: .75rem; }
  .coll-card { height: 240px; }
  .coll-card.large { height: 280px; }
  .coll-photo, .coll-card img { position: absolute; }

  .testi-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(1,1fr); grid-template-rows: repeat(6,140px); }
  .g-cell.tall { grid-row: span 1; }

  .nl-form { flex-direction: column; }
  .nl-input { height: 48px; }
  .nl-btn { height: 48px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-stats-bar { grid-template-columns: 1fr 1fr; }

  .editorial-split { min-height: auto; }
  .ed-text-side { padding: 3rem 1.5rem; }

  /* Spacing */
  .section-pad { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); }
  .section-head { margin-bottom: 1.75rem; }

  .brand-perks { flex-direction: column; gap: .85rem; }

  /* Mobile product card improvements */
  .prod-info { padding: .85rem .85rem 1rem; }
  .prod-name { font-size: 12.5px; }
  .prod-sizes { gap: .25rem; }
  .sz-dot { width: 24px; height: 24px; font-size: 8.5px; }

  /* Hide decorative elements */
  .ed-deco-num { display: none; }
}

@media (max-width: 480px) {
  .hero-body { padding: 2rem clamp(1rem, 4vw, 2.5rem) 1.5rem; }
  .hero-h1 { font-size: clamp(2.5rem, 11vw, 3.5rem); }
  .hero-trust { gap: .85rem; }
  .hero-cta-row { gap: .6rem; }
  .cta { font-size: 11px; padding: .8rem 1.5rem; }
  .hstat { padding: 1rem 1.25rem; }
  .hstat-num { font-size: 1.25rem; }
  .prod-grid-4, .prod-grid-3, .arrivals-scroll { gap: .65rem; }
  .coll-card { height: 200px; }
  .testi-card { padding: 1.5rem; }
  .section-head-title { font-size: 2rem; }
  .brand-message { font-size: 1.5rem; }
}

/* Touch device hover fixes */
@media (hover: none) {
  .prod-quick { display: none; }
  .prod-wishlist { opacity: 1; }
  .coll-cta { opacity: 1; transform: none; }
  .prod-card:hover { transform: none; box-shadow: 0 4px 16px rgba(62,36,21,.1); }
  .coll-card:hover .coll-photo { transform: none; }
}

/* Custom cursor — desktop only */
#cur-dot, #cur-ring {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
}
#cur-dot { width: 8px; height: 8px; background: #cd2536; }
#cur-ring { width: 34px; height: 34px; border: 1.5px solid rgba(205,37,54,.3); }
body.cur-hov #cur-dot { width: 12px; height: 12px; background: #c47520; }
body.cur-hov #cur-ring { width: 50px; height: 50px; border-color: rgba(205,37,54,.5); }
@media (max-width: 1024px) { #cur-dot, #cur-ring { display: none; } body { cursor: auto; } }
