/* === RESET === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

/* === THEME === */
/* ============ 0. PRELOADER ============ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.preloader-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: #1A4031;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1)
}

.preloader-panel--top {
  top: 0
}

.preloader-panel--bottom {
  bottom: 0
}

.preloader-content {
  position: relative;
  z-index: 10001;
  transition: opacity 0.5s, transform 0.5s
}

.preloader-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(234, 206, 168, 0.4))
}

#preloader.loaded .preloader-panel--top {
  transform: translateY(-100%)
}

#preloader.loaded .preloader-panel--bottom {
  transform: translateY(100%)
}

#preloader.loaded .preloader-content {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none
}

#preloader.loaded {
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.8s
}

:root {
  --color-bg-cream: #FCF9F2;
  --color-bg-beige: #F1E6D8;
  --color-bg-dark-teal: #1A4031;
  --color-bg-white: #FFFFFF;
  --color-text-primary: #1A4031;
  --color-text-secondary: #8A8276;
  --color-text-white: #FFFFFF;
  --color-accent-line: #C4A882;
  --color-divider: #C8BFB2;
  --color-gold: #B58444;
  --font-serif: 'Cormorant Garamond', 'Aspect', 'Bodoni Moda', 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
  --max-width: 1360px;
  --border-radius-arch: 200px 200px 0 0;
}

/* === BASE === */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg-cream);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 500
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .3s, opacity .3s
}

img {
  max-width: 100%;
  display: block
}

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5)
}

/* === SCROLL REVEAL SYSTEM === */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.4s cubic-bezier(.215, .61, .355, 1) var(--reveal-delay, 0s),
    transform 1.4s cubic-bezier(.215, .61, .355, 1) var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal-left {
  transform: translateX(-100px) translateY(0) scale(1);
}

.reveal-right {
  transform: translateX(100px) translateY(0) scale(1);
}


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

  .explore-text-ring {
    animation: none
  }

  .hero-product-img {
    opacity: 1;
    animation: none
  }

  html {
    scroll-behavior: auto
  }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--color-text-primary);
  color: var(--color-text-white);
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

/* Rotating Gradient Button (from Tailwind removal) */
.gradient-btn-container {
  text-align: center;
  color: #eee;
}

.rotating-btn-inner {
  position: relative;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 56px;
  overflow: hidden;
  background: #1A4031;
}

.rotating-btn-inner::after {
  content: '';
  display: block;
  position: absolute;
  background: #fffaf5;
  inset: 2px;
  border-radius: 48px;
  z-index: 1;
  transition: all 0.3s linear;
}

.rotating-btn-label {
  position: relative;
  z-index: 10;
  color: #1A4031;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 10px;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* Utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.relative {
  position: relative;
}

.uppercase {
  text-transform: uppercase;
}

.font-bold {
  font-weight: 700;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.text-xs {
  font-size: 0.75rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--color-text-primary);
  color: var(--color-text-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: all .35s;
  border: 2px solid var(--color-text-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-text-primary)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--color-text-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  border: 1px solid var(--color-divider);
  gap: 8px
}

.btn-outline:hover {
  border-color: var(--color-text-primary)
}

/* ============ 1. HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background .4s, box-shadow .4s, backdrop-filter .4s
}

.site-header.scrolled {
  background: rgba(255, 250, 245, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative
}

.nav-links {
  display: none
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: .02em;
  transition: color .3s
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary)
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--color-text-primary);
  margin-right: auto
}

.logo-image {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block
}

.nav-icons {
  display: flex;
  gap: var(--space-3);
  align-items: center
}

.nav-icon-link {
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  transition: opacity .3s
}

.nav-icon-link:hover {
  opacity: .6
}

/* ============ 2. HERO ============ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.hero-pin-wrapper {
  position: relative;
  height: 250vh;
  /* Scroll runway */
  background: #fffaf5;
}

.hero-sticky-content {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero {
  /* Keep .hero for any residual references but shift main work to sticky content */
  display: contents;
}

.hero-bg-text {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  width: 100%;
  gap: 0;
  will-change: transform;
}

.hero-bg-line {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #EACEA8;
  opacity: 0.85;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.03));
}

.hero-bg-line .fm-char {
  display: inline-block;
  padding-bottom: 0.1em;
  /* Extra space for descenders */
}

.hero-bg-line--top {
  font-size: clamp(80px, 11vw, 160px);
  transform: translateX(-5vw)
}

.hero-bg-line--bottom {
  font-size: clamp(80px, 11vw, 160px);
  margin-top: -5px;
  transform: translateX(5vw)
}

/* Layer 2 — Bottom-aligned product image */
.hero-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.hero-product-img {
  max-height: 85vh;
  width: auto;
  max-width: 85%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 30px 80px rgba(26, 64, 49, 0.08));
  opacity: 1
}

/* Layer 3 — Left-side Editorial Subtitle & CTA */
.hero-foreground {
  position: absolute;
  bottom: 8%;
  left: var(--space-10);
  z-index: 3;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  max-width: 280px
}

.hero-subtitle {
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  opacity: 0.8
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3)
}

/* ============ GRADIENT BUTTON STYLES ============ */
@property --r {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.rotatingGradient {
  background: conic-gradient(from var(--r), #EACEA8, #B58444, #1A4031, #EACEA8) !important;
  animation: rotateGradientAnim 4s linear infinite;
}

/* Hover Effect for Gradient Button */
.gradient-btn-container:hover .rotating-btn-inner::after {
  background: #1A4031 !important;
  opacity: 1;
}

.gradient-btn-container:hover .rotating-btn-label {
  color: #FFFFFF !important;
}

@keyframes rotateGradientAnim {
  from {
    --r: 0deg;
  }

  to {
    --r: 360deg;
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: scale(1.05)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}


/* ============ 3. STATS BAND ============ */
.stats-band {
  display: flex;
  width: 100%;
  min-height: 220px;
  background: var(--color-bg-cream);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp .8s ease .75s forwards;
  align-items: stretch;
  justify-content: space-between;
}

.stats-intro {
  flex: 0 0 300px;
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--color-divider);
}

.stats-intro-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2);
}

.stats-intro-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.1;
  margin: 0;
}

.stats-grid {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-5) var(--space-6);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1;
  font-style: italic;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-divider);
  opacity: 0.5;
  flex-shrink: 0;
}

.stats-explore {
  flex: 0 0 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  border-left: 1px solid var(--color-divider);
}

.explore-badge {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.explore-text-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateBadge 18s linear infinite
}

.explore-text-ring text {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  fill: var(--color-text-primary);
  letter-spacing: 2.5px;
  text-transform: uppercase
}

.explore-arrow {
  width: 48px;
  height: 48px;
  background: var(--color-bg-dark-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  z-index: 2;
  transition: transform .3s;
  cursor: pointer
}

.explore-arrow:hover {
  transform: scale(1.08)
}

/* ============ 4. DISCOVER ============ */
.discover {
  padding: var(--space-16) 0;
  background: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
  width: 100%;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--color-text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.discover-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-12);
  position: relative;
}







/* Rows & Columns */
.discover-row {
  display: flex;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
  align-items: flex-start;
}

.discover-row.row-2 {
  margin-bottom: 0;
  align-items: center;
}

.discover-col {
  flex: 1;
}

/* Typography */
.editorial-title {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  margin: var(--space-6) 0;
  color: var(--color-text-primary);
}

.editorial-title-md {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.section-small-title {
  font-size: 28px;
  margin-bottom: var(--space-4);
}

.sub-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sub-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  max-width: 180px;
}

.about-text,
.detail-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 420px;
  margin-bottom: var(--space-8);
}

.story-sub-cols {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-8);
}

/* Products */
.product-hero-wrap {
  width: 100%;
  margin-bottom: var(--space-6);
}

.product-img-hero {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}

.product-with-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.product-img-portrait {
  height: 320px;
  width: auto;
  object-fit: contain;
}

.horizontal-product-wrap {
  width: 100%;
  padding-right: var(--space-10);
}

.product-img-horizontal {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
}

/* Interactive Elements */




/* Responsive */
@media (max-width: 1024px) {
  .discover-row {
    flex-direction: column;
    gap: var(--space-10);
  }

  .discover-container {
    padding: 0 var(--space-6);
  }

  .product-with-action {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============ 5. NEW ARRIVAL ============ */
.new-arrival {
  background: var(--color-bg-dark-teal);
  color: var(--color-text-white);
  padding: var(--space-12) 0
}

.new-arrival-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-8)
}

.new-arrival-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: var(--space-2)
}

.new-arrival-header h2 em {
  font-style: italic
}

.new-arrival-header p {
  max-width: 400px;
  font-size: 14px;
  opacity: .8
}

.arrival-highlight {
  position: relative;
  display: inline-block;
  padding: 0 15px;
  font-style: normal;
}

.arrival-highlight::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-2deg);
  width: 110%;
  height: 140%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50% / 50%;
  pointer-events: none;
  z-index: -1;
}


.slider-controls {
  display: flex;
  gap: var(--space-2)
}

.slider-controls button {
  color: var(--color-text-white);
  font-size: 24px;
  opacity: .5;
  transition: opacity .3s
}

.slider-controls button:hover {
  opacity: 1
}

.products-grid {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding: var(--space-4) 0;
}

.products-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.product-card {
  flex: 0 0 300px;
  transition: transform .4s
}

.product-card:hover {
  transform: translateY(-4px)
}

.product-image-container {
  background: var(--color-bg-cream);
  position: relative;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image-container img {
  transform: scale(1.08)
}


.product-like {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: transform .3s
}

.product-like:hover {
  transform: scale(1.15)
}

.product-like.liked {
  color: #E25555
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.product-title {
  font-size: 16px;
  font-weight: 500
}

.product-price {
  font-size: 14px;
  opacity: .8
}

.add-to-cart {
  color: var(--color-text-white);
  transition: opacity .3s
}

.add-to-cart:hover {
  opacity: .7
}

/* ============ 6. TRADITION ============ */
.tradition {
  padding: var(--space-16) 0
}

.tradition .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center
}

.tradition-image {
  position: relative
}

.tradition-img-main {
  width: 100%;
  border-radius: var(--border-radius-arch);
  transition: transform .6s
}

.tradition-image:hover .tradition-img-main {
  transform: scale(1.02)
}

.tradition-img-sub {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 10px solid var(--color-bg-cream);
  object-fit: cover;
  box-shadow: 0 14px 45px rgba(26, 64, 49, .14);
  transition: transform .5s
}

.tradition-image:hover .tradition-img-sub {
  transform: scale(1.05)
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(181, 132, 68, 0.1);
  color: var(--color-gold);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-4);
}

.tradition-content h2,
.tradition-content h3 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.tradition-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  font-size: 15px;
  max-width: 420px;
  line-height: 1.8
}

/* ============ 7. TESTIMONIALS (COLUMNS) ============ */
.testimonials {
  padding: var(--space-20) 0 var(--space-32);
  background: var(--color-bg-cream);
  overflow: hidden;
}


.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.testimonials-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--color-divider);
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  color: var(--color-text-secondary);
}

.testimonials-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.testimonials-header p {
  color: var(--color-text-secondary);
  font-size: 16px;
}

.testimonials-columns-container {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  max-height: 740px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  animation: scrollVertical linear infinite;
}

@keyframes scrollVertical {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.testimonial-card {
  background: var(--color-text-white);
  padding: var(--space-8);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(26, 64, 49, 0.05);
  max-width: 340px;
  width: 100%;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
}

.testimonial-user {
  display: flex;
  items-center: center;
  gap: var(--space-3);
}

.testimonial-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-user-info p {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 0;
}

/* Hide columns on mobile */
@media (max-width: 1024px) {
  .testimonials-column:nth-child(3) {
    display: none;
  }
}

@media (max-width: 768px) {
  .testimonials-column:nth-child(2) {
    display: none;
  }
}


/* ============ 8. ARC GALLERY HERO ============ */
.arc-gallery-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-16) 0;
}

.arc-gallery-background {
  position: relative;
  width: 100%;
  height: 480px;
  /* Base height for arc */
  margin: 0 auto;
}

.arc-pivot {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.arc-card {
  position: absolute;
  opacity: 0;
  transform: translate(-50%, 50%);
  animation: arc-fade-in-up 0.8s ease-out forwards;
  z-index: 1;
  cursor: pointer;
}

.arc-card-inner {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 64, 49, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  background: white;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.8s ease;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.arc-card:hover {
  z-index: 100 !important;
}

.arc-card:hover .arc-card-inner {
  transform: scale(1.2);
  box-shadow: 0 30px 60px rgba(26, 64, 49, 0.25);
}

.arc-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arc-gallery-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -340px;
  pointer-events: none;
  /* Let clicks pass through to images behind */
}

.arc-gallery-content .reveal {
  pointer-events: auto;
  /* Re-enable for the actual text and buttons */
}

.arc-gallery-content .section-title {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.arc-actions {
  margin-top: var(--space-8);
}

@keyframes arc-fade-in-up {
  from {
    opacity: 0;
    transform: translate(-50%, 60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 50%);
  }
}

/* === INSTA 3D CARD === */
.insta-3d-container {
  perspective: 1000px;
  display: flex;
  justify-content: center;
  margin-top: var(--space-4);
}

.insta-3d-card {
  position: relative;
  width: 320px;
  height: 400px;
  text-decoration: none;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.insta-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(26, 64, 49, 0.15);
  border: 1px solid var(--color-divider);
  overflow: hidden;
  transform-style: preserve-3d;
}

.insta-card-front {
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: translateZ(50px);
}

.insta-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 12px;
}

.insta-card-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-card-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-bg-cream);
}

.insta-card-info {
  display: flex;
  flex-direction: column;
}

.insta-card-handle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.insta-card-tag {
  font-size: 10px;
  color: var(--color-text-secondary);
}

.insta-dot {
  width: 4px;
  height: 4px;
  background: var(--color-divider);
  border-radius: 50%;
}

.insta-card-image {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-bg-cream);
}

.insta-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 64, 49, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.insta-card-overlay span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta-3d-card:hover .insta-card-overlay {
  opacity: 1;
}

.insta-card-footer {
  padding: 16px 4px 8px;
  display: flex;
  justify-content: center;
}

.insta-cta-pill {
  padding: 10px 24px;
  background: var(--color-gold);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.insta-3d-card:hover .insta-cta-pill {
  background: var(--color-bg-dark-teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 64, 49, 0.2);
}

.insta-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.insta-3d-card:hover .insta-card-glow {
  opacity: 1;
}

@media (max-width: 768px) {
  .insta-3d-card {
    width: 280px;
    height: 360px;
  }
}





/* ============ 9. FOOTER ============ */
.footer {
  background: var(--color-bg-dark-teal);
  color: var(--color-text-white);
  padding: var(--space-10) 0 var(--space-5)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-8)
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-3)
}

.footer-logo .logo-image {
  height: 55px
}

.footer-contact {
  font-size: 14px;
  opacity: .7;
  margin-bottom: var(--space-3);
  line-height: 1.8
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-socials {
  display: flex;
  gap: var(--space-2)
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, border-color .3s
}

.footer-socials a:hover {
  background: var(--color-text-white);
  color: var(--color-bg-dark-teal);
  border-color: var(--color-text-white)
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 16px;
  margin-bottom: var(--space-3)
}

.footer-links li {
  margin-bottom: 12px
}

.footer-links a {
  font-size: 14px;
  opacity: .7;
  transition: opacity .3s
}

.footer-links a:hover {
  opacity: 1
}

.footer-newsletter p {
  font-size: 14px;
  opacity: .7;
  margin-bottom: var(--space-2)
}

.newsletter-title {
  font-weight: 500;
  opacity: 1 !important
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: var(--space-1)
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: var(--color-text-white);
  flex: 1;
  outline: none;
  font-size: 14px;
  font-family: var(--font-sans)
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .4)
}

.newsletter-form button {
  color: var(--color-text-white);
  transition: opacity .3s
}

.newsletter-form button:hover {
  opacity: .7
}

.footer-brand-container {
  padding-top: var(--space-12);
  margin-top: var(--space-12);
  text-align: center;
  overflow: hidden;
}

.footer-big-text {
  font-size: clamp(60px, 15vw, 200px);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 0.8;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.3;
  mask-image: linear-gradient(to bottom, black 30%, transparent 98%);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 98%);
}

.footer-bottom {
  border-top: none;
  padding-top: var(--space-8);
  display: flex;
  justify-content: center;
  /* Centered since links are gone */
  text-align: center;
}

.footer-bottom p {
  font-size: 10px;
  /* Even smaller as requested */
  opacity: 0.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === KEYFRAMES === */
@keyframes fadeIn {
  to {
    opacity: 1
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

/* === MOBILE MENU === */
.hamburger {
  display: flex;
  align-items: center;
  color: var(--color-text-primary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-dark-teal);
  color: var(--color-text-white);
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at calc(100% - 40px) 40px);
  transition: clip-path 0.7s cubic-bezier(0.7, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-menu::before,
.mobile-menu::after {
  content: '';
  position: absolute;
  background: var(--color-gold);
  opacity: 0.15;
}

.mobile-menu::before {
  top: 0;
  left: 15%;
  width: 1px;
  height: 100%;
}

.mobile-menu::after {
  top: 35%;
  left: 0;
  width: 100%;
  height: 1px;
}

.mobile-menu-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.mobile-menu-inner::before {
  content: '';
  position: absolute;
  top: -50vh;
  right: 20%;
  width: 1px;
  height: 150vh;
  background: var(--color-gold);
  opacity: 0.15;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: all;
}

.mobile-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  color: var(--color-text-white);
  opacity: 0;
  transform: rotate(90deg);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
  z-index: 15;
}

.mobile-menu.open .mobile-close {
  opacity: 1;
  transform: rotate(0);
  transition-delay: 0.4s;
}

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(32px, 8vw, 48px);
  color: var(--color-gold);
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-link:hover {
  color: var(--color-text-white);
  transform: translateY(-2px);
  letter-spacing: 0.04em;
}

.mobile-nav-link:hover::after {
  width: 100%;
}

.mobile-nav-link.active {
  color: var(--color-text-white);
}

.mobile-nav-link.active::after {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-link {
    transition: none;
  }

  .mobile-nav-link::after {
    transition: none;
  }
}

/* === RESPONSIVE === */
@media(max-width:1200px) {
  .stats-pendant {
    flex: 0 0 180px
  }

  .stats-explore {
    flex: 0 0 200px
  }
}

@media(max-width:1024px) {
  .nav-logo .logo-image {
    height: 48px
  }

  .hero {
    min-height: 100vh
  }

  .hero-product-image {
    height: 100vh
  }

  .hero-foreground {
    bottom: var(--space-6)
  }

  .stats-band {
    flex-wrap: wrap;
    align-items: center;
  }

  .stats-intro {
    flex: 1;
    min-width: 250px;
    border-right: none;
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-4);
  }

  .stats-grid {
    flex: 1;
    min-width: 300px;
    gap: var(--space-4);
    padding: var(--space-4);
  }

  .stats-explore {
    flex: 0 0 180px;
    border-left: 1px solid var(--color-divider);
  }

  .masonry-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .masonry-item:nth-child(3) {
    margin-top: 0
  }

  .products-grid {
    gap: var(--space-4)
  }

  .product-card {
    flex: 0 0 280px;
  }


  .tradition .container,
  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .tradition-image {
    max-width: 500px;
    margin: 0 auto var(--space-6)
  }

  .tradition-img-sub {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -20px;
    border-width: 6px;
  }

  .arc-gallery-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-10);
  }

  .arc-gallery-background {
    height: 360px;
  }

  .arc-gallery-content {
    margin-top: -180px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .navbar {
    padding: 0 var(--space-3);
    justify-content: space-between
  }

  .nav-logo {
    margin-right: 0
  }

  .site-header {
    padding: var(--space-3) 0
  }

  .nav-logo .logo-image {
    height: 52px
  }

  .footer-logo .logo-image {
    height: 45px
  }

  .hero-bg-text {
    top: 50%;
    /* Lower it on mobile to avoid logo conflict */
  }

  .hero-bg-line--top,
  .hero-bg-line--bottom {
    font-size: clamp(56px, 13vw, 110px);
    /* Slightly smaller to fit */
    transform: none !important;
  }

  .hero-foreground {
    top: 15% !important;
    /* Slightly higher to give image more room */
    bottom: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    align-items: center !important;
    width: 85% !important;
    max-width: 320px !important;
    padding: 0 !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    /* Caveman fix for readability */
  }

  .hero-subtitle {
    text-align: center !important;
    font-size: 13px !important;
    max-width: 100% !important;
  }

  .hero-product-img {
    max-height: 95vh !important;
    max-width: none !important;
    width: 160% !important;
    /* Total screen dominance */
    object-position: center bottom;
    transform: scale(1.15);
    /* Maximum zoom */
  }

  .stats-band {
    flex-direction: column;
    align-items: center;
  }

  .stats-intro {
    flex: none;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-4) var(--space-3);
    text-align: center;
  }

  .stats-grid {
    flex: none;
    width: 100%;
    padding: var(--space-4) var(--space-3);
    gap: var(--space-3);
    flex-direction: column;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-number {
    font-size: 36px
  }

  .stats-explore {
    flex: none;
    width: 100%;
    padding: var(--space-5);
    border-left: none;
    border-top: 1px solid var(--color-divider);
  }

  .masonry-grid {
    grid-template-columns: 1fr
  }

  .masonry-item:nth-child(1),
  .masonry-item:nth-child(3) {
    margin-top: 0
  }

  .products-grid {
    gap: var(--space-2)
  }

  .product-card {
    flex: 0 0 calc(50% - 8px);
  }

  .product-image-container {
    height: 240px !important;
  }


  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .nav-logo .logo-image {
    height: 45px
  }

  .footer-logo .logo-image {
    height: 36px
  }

  .hero-bg-line--top,
  .hero-bg-line--bottom {
    font-size: clamp(40px, 14vw, 80px);
    transform: none !important;
  }

  .footer-big-text {
    font-size: clamp(50px, 12vw, 100px) !important;
  }

  .hero-foreground {
    left: 50% !important;
    top: 15% !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    max-width: 280px !important;
    width: 90% !important;
    text-align: center !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center !important;
    width: 100%;
  }

  .gradient-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .stats-grid {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .stat-item {
    text-align: center;
    align-items: center
  }

  .stat-divider {
    width: 48px;
    height: 1px
  }

  .instagram-section {
    padding: var(--space-8) 0;
  }

  .instagram-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin-bottom: var(--space-8);
  }

  .insta-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1/1;
  }

  .insta-item:nth-child(1) {
    /* Keeping arch consistent */
  }
}

/* ============ 3D CARD STACK (Right Side) ============ */
.hero-right-side {
  position: absolute;
  bottom: 2%;
  right: var(--space-12);
  z-index: 3;
  pointer-events: auto;
}

.card-stack-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card {
  position: absolute;
  width: 162px;
  height: 240px;
  background: #FFFFFF;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  /* Crucial: Disable transitions so they don't fight with JS scroll animation */
  transition: none !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Re-enable transitions ONLY for hover when not scrolling? 
   Actually, it's better to keep it off or use a very specific selector if needed. */
.photo-card:hover {
  /* Only apply transition if we really want a pop effect on hover */
  transform: scale(1.05) !important;
  z-index: 20;
}

.card-back {
  top: 20px;
  left: 0;
  transform: rotate(-8deg);
  z-index: 1;
  transition-delay: 0.2s;
}

.card-front {
  top: 10px;
  right: 0;
  transform: rotate(15deg);
  z-index: 2;
  transition-delay: 0.4s;
}

.photo-card:hover {
  z-index: 20;
  transform: scale(1.05) rotate(0deg) !important;
}

.card-back:hover {
  transform: scale(1.05) rotate(-2deg) !important;
}

.card-front:hover {
  transform: scale(1.05) rotate(5deg) !important;
}

.photo-card-img-wrap {
  width: 100%;
  height: 85%;
  border-radius: 4px;
  overflow: hidden;
  background: #f3f4f6;
}

.photo-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.1);
}

.photo-card-label {
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Zeyada', cursive;
  font-size: 16px;
  color: #1A4031;
  letter-spacing: -0.02em;
}

/* Responsive adjustments for Card Stack */
@media(max-width:1024px) {
  .hero-right-side {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
  }
}

@media(max-width:768px) {
  .card-stack-container {
    width: 220px;
    height: 220px;
  }

  .photo-card {
    width: 120px;
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-stack-grid {
    animation: none;
  }
}

/* ============================================================
   RATES TICKER — Surat City Today's Rates
   ============================================================ */
.rates-ticker-section {
  position: relative;
  width: 100%;
  background: var(--color-bg-dark-teal);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  z-index: 1;
}

/* ---- Left label badge ---- */
.rates-ticker-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #B58444 0%, #EACEA8 50%, #B58444 100%);
  position: relative;
  z-index: 2;
}

.rates-ticker-badge::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 0;
  bottom: 0;
  width: 28px;
  background: linear-gradient(90deg, rgba(26, 64, 49, 0.35), transparent);
  z-index: 2;
  pointer-events: none;
}

.rtb-city {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-bg-dark-teal);
  letter-spacing: 0.06em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.rtb-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(26, 64, 49, 0.65);
  line-height: 1;
}

.rtb-date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(26, 64, 49, 0.5);
  line-height: 1;
  margin-top: 2px;
}

/* ---- Live dot ---- */
.rtb-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.rtb-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1A4031;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.65); }
}

.rtb-live-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(26, 64, 49, 0.55);
}

/* ---- Scrolling track ---- */
.rates-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.rates-ticker-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
  --ticker-duration: 40s;
}

.rates-ticker-scroll.is-running {
  animation: tickerScroll var(--ticker-duration) linear infinite;
}



@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

/* ---- Rate item (two-row card) ---- */
.rt-item {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  padding: 12px 28px;
  flex-shrink: 0;
}

.rt-metal {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(234, 206, 168, 0.45);
  line-height: 1;
}

.rt-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.rt-price {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: #EACEA8;
  letter-spacing: 0.03em;
}

.rt-unit {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(234, 206, 168, 0.35);
  letter-spacing: 0.03em;
}

.rt-change {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 20px;
  line-height: 1;
  margin-left: 2px;
}

.rt-change.rt-up {
  color: #6EEEA0;
  background: rgba(110, 238, 160, 0.1);
}

.rt-change.rt-down {
  color: #FF7B7B;
  background: rgba(255, 123, 123, 0.1);
}

/* ---- Separator: thin vertical line ---- */
.rt-sep {
  display: inline-block;
  flex-shrink: 0;
  width: 1px;
  align-self: center;
  height: 32px;
  background: rgba(234, 206, 168, 0.12);
  margin: 0 4px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .rates-ticker-badge {
    padding: 10px 14px;
  }

  .rtb-city {
    font-size: 11px;
  }

  .rt-price {
    font-size: 18px;
  }

  .rt-item {
    padding: 10px 18px;
  }

  .rt-metal {
    font-size: 8px;
  }

  .rt-change {
    font-size: 8px;
    padding: 2px 6px;
  }

  .rt-unit {
    font-size: 9px;
  }

  .rt-sep {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .rates-ticker-badge {
    padding: 8px 10px;
  }

  .rtb-city {
    font-size: 9px;
  }

  .rtb-label,
  .rtb-date {
    font-size: 7px;
  }

  .rt-price {
    font-size: 15px;
  }

  .rt-item {
    padding: 8px 12px;
  }

  .rt-sep {
    height: 20px;
  }
}

/* === SECURITY FEATURES === */
/* Disable text selection globally, except on contact page */
body.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent images from being dragged or touched (helps prevent saving on mobile) */
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* Print Media Query to prevent taking screenshots via print (doesn't stop OS-level screenshot) */
@media print {
  html, body {
    display: none !important;
  }
}

/* ============================================================
   AUTH POPUP — Profile Icon + Modal
   ============================================================ */

/* Profile icon button in header */
#profile-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-text-primary);
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#profile-icon-btn:hover {
  background: rgba(181, 132, 68, 0.15);
  color: var(--color-gold);
}

#profile-icon-btn.logged-in {
  color: var(--color-gold);
  box-shadow: 0 0 0 2px var(--color-gold);
}

/* Overlay */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(12, 32, 24, 0.45);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.5s ease;
}

.auth-overlay.open {
  opacity: 1;
  pointer-events: all;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: overlayFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-overlay.closing {
  animation: overlayFadeOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes overlayFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(12px);
  }
}

@keyframes overlayFadeOut {
  from {
    opacity: 1;
    backdrop-filter: blur(12px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
}

/* Main Popup */
.auth-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.92);
  z-index: 9999;
  width: 880px;
  max-width: 92%;
  max-height: 90vh;
  background: #ffffff;
  border: 1px solid rgba(196, 168, 130, 0.18);
  border-radius: 28px;
  box-shadow:
    0 40px 120px rgba(12, 32, 24, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.auth-popup.open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
  visibility: visible;
  animation: popupSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-popup.closing {
  animation: popupSlideOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes popupSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -44%) scale(0.88);
    filter: blur(4px);
  }
  50% {
    opacity: 0.8;
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0px);
  }
}

@keyframes popupSlideOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.92);
    filter: blur(3px);
  }
}

/* Close button */
.auth-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #B58444;
  cursor: pointer;
  padding: 9px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-popup-close:hover {
  background: #B58444;
  color: #FCF9F2;
  border-color: #B58444;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 4px 16px rgba(26, 64, 49, 0.25);
}

/* Split wrapper */
.auth-popup-split-wrapper {
  display: flex;
  width: 100%;
}

/* Left side (Forms) */
.auth-popup-left {
  flex: 1.15;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  color: #1A4031;
}

.auth-popup-left::-webkit-scrollbar {
  display: none;
}

/* Header blocks */
.auth-header-block {
  margin-bottom: 22px;
}

.auth-popup-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: #1A4031;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.auth-popup-subtitle {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: #8A8276;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Tabs styling */
.auth-popup-tabs {
  display: flex;
  margin-bottom: 26px;
  background: #f7f5f1;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) inset;
}

.auth-popup-tab {
  flex: 1;
  padding: 11px 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8A8276;
  background: none;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-popup-tab:hover {
  color: #B58444;
}

.auth-popup-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, #B58444, #c9985a);
  box-shadow: 0 4px 14px rgba(181, 132, 68, 0.22);
}

/* Panels */
.auth-popup-panel {
  display: none;
  height: 100%;
}

.auth-popup-panel.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: authFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.auth-popup-panel.fade-out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: authFadeOut 0.18s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes authFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* Form Styles */
.auth-popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-popup-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.auth-popup-field label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d5a4e;
}

.auth-popup-field input {
  width: 100%;
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: #1A4031;
  background: #faf8f5;
  border: 1.5px solid rgba(196, 168, 130, 0.22);
  border-radius: 12px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02) inset;
}

.auth-popup-field input::placeholder {
  color: rgba(138, 130, 118, 0.4);
  font-weight: 400;
}

.auth-popup-field input:focus {
  border-color: #1A4031;
  box-shadow: 0 0 0 3.5px rgba(26, 64, 49, 0.12), 0 1px 3px rgba(0, 0, 0, 0.02) inset;
  background: #ffffff;
}

/* Password field with show/hide icon */
.password-field-wrapper {
  position: relative;
}

.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-input-container input {
  padding-right: 48px;
}

.password-toggle-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a09a90;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border-radius: 6px;
}

.password-toggle-btn:hover {
  color: #1A4031;
  background: rgba(26, 64, 49, 0.06);
}

/* Recovery password */
.recovery-password-container {
  text-align: right;
  margin-top: -2px;
}

.recovery-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #8A8276;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.recovery-link:hover {
  color: #1A4031;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Submit button */
.auth-popup-submit {
  width: 100%;
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FCF9F2;
  background: linear-gradient(135deg, #B58444 0%, #c9985a 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(181, 132, 68, 0.2);
  position: relative;
  overflow: hidden;
}

.auth-popup-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.6s ease;
}

.auth-popup-submit:hover::after {
  left: 100%;
}

.auth-popup-submit:hover {
  background: linear-gradient(135deg, #1A4031 0%, #245c46 100%);
  box-shadow: 0 6px 24px rgba(26, 64, 49, 0.3);
  transform: translateY(-1px);
}

.auth-popup-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(26, 64, 49, 0.2);
}

/* Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 22px 0 18px;
  color: #a09a90;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 130, 0.25), transparent);
}

.auth-divider:not(:empty)::before {
  margin-right: 1em;
}

.auth-divider:not(:empty)::after {
  margin-left: 1em;
}

/* Social Buttons */
.social-login-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}

.social-btn {
  flex: 1;
  max-width: none;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: #1A4031;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.social-btn.google-btn {
  border: 1px solid #1A4031;
}

.social-btn:hover {
  border-color: #1A4031;
  background: #faf8f5;
  box-shadow: 0 6px 20px rgba(26, 64, 49, 0.15);
  transform: translateY(-2px);
}

.social-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 64, 49, 0.08);
}

.social-btn svg {
  transition: transform 0.3s ease;
}

.social-btn:hover svg {
  transform: scale(1.1);
}

/* ---- Right side: Carousel / Images ---- */
.auth-popup-right {
  flex: 0.85;
  background: #B58444;
  padding: 14px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
}

.auth-carousel-container {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Slides */
.auth-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.9s;
  z-index: 1;
}

.auth-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.auth-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}

.auth-slide.active .auth-slide-img {
  transform: scale(1.04);
}

/* Dark gradient overlay for readable text */
.auth-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 32, 24, 0.88) 0%, rgba(12, 32, 24, 0.3) 55%, rgba(12, 32, 24, 0.08) 100%);
  z-index: 2;
}

/* Text inside slide */
.auth-slide-content {
  position: absolute;
  bottom: 80px;
  left: 28px;
  right: 28px;
  color: #FCF9F2;
  z-index: 3;
}

.auth-slide-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: #FCF9F2;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.auth-slide-content p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(241, 230, 216, 0.78);
  line-height: 1.5;
}

/* Slider Controls */
.auth-slider-controls {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

/* Arrow buttons */
.auth-slider-arrows {
  display: flex;
  gap: 8px;
}

.auth-arrow-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FCF9F2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(6px);
}

.auth-arrow-btn:hover {
  background: #FCF9F2;
  color: #1A4031;
  border-color: #FCF9F2;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Dots navigation */
.auth-slider-dots {
  display: flex;
  gap: 6px;
}

.auth-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.auth-dot.active {
  background: #FCF9F2;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(252, 249, 242, 0.3);
}

/* ---- Logged-in User View ---- */
.auth-popup-user-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-popup-avatar {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26, 64, 49, 0.05), rgba(26, 64, 49, 0.1));
  border: 1.5px solid rgba(26, 64, 49, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A4031;
}

.auth-popup-email-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #1A4031;
  word-break: break-all;
  margin: 0;
}

.auth-popup-menu-item {
  display: block;
  width: 100%;
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #1A4031;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  box-sizing: border-box;
}

.auth-popup-menu-item:hover {
  background: #faf8f5;
  color: #1A4031;
  transform: translateX(2px);
}

.auth-popup-logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #c44b4b;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0 0 12px 12px;
  padding-top: 16px;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.auth-popup-logout-btn:hover {
  color: #e35252;
  background: rgba(196, 75, 75, 0.04);
}

/* ---- Toast Notification ---- */
.auth-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(12, 32, 24, 0.3);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.auth-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.auth-toast--success {
  background: linear-gradient(135deg, #1A4031, #245c46);
  border: 1px solid rgba(196, 168, 130, 0.25);
  color: #FCF9F2;
}

.auth-toast--error {
  background: linear-gradient(135deg, #8c2a2a, #c44b4b);
}

.auth-toast--info {
  background: linear-gradient(135deg, #B58444, #C4A882);
}

/* ============================================================
   RESPONSIVE LAYOUTS
   ============================================================ */

/* Collapse side-by-side to forms only on smaller desktop/tablets */
@media (max-width: 850px) {
  .auth-popup {
    width: 440px;
    max-height: 95vh;
  }
  .auth-popup-right {
    display: none;
  }
  .auth-popup-left {
    flex: 1;
    padding: 32px 28px;
    overflow-y: auto;
  }
  .auth-popup-close {
    top: 14px;
    right: 14px;
  }
}

/* Fullscreen on small mobile viewports */
@media (max-width: 480px) {
  .auth-popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100%;
    border-radius: 0;
    border: none;
    transform: none;
  }
  
  .auth-popup.open {
    transform: none;
    animation: popupMobileSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .auth-popup.closing {
    animation: popupMobileSlideOut 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  .auth-popup-split-wrapper {
    height: 100%;
  }

  .auth-popup-left {
    height: 100%;
    padding: 48px 24px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

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

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

/* === LENIS SMOOTH SCROLL STYLES === */
html.lenis, html.lenis body {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

/* === BUTTON LOADING SPINNER === */
.btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  pointer-events: none;
}

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

.btn-loading-text {
  visibility: hidden;
  opacity: 0;
}

/* Hide header cart button on tablet and mobile view */
@media (max-width: 1024px) {
  #cart-icon-btn {
    display: none !important;
  }
}