/* ============================================
   GAC by Sonya - Design System & Global Styles
   ============================================ */

/* -- Google Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garant:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Self-hosted fonts extracted from Canva Pro PDF export */
@font-face {
  font-family: 'Amsterdam Three';
  src: url('../fonts/AmsterdamThree.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playwrite US Modern';
  src: url('../fonts/PlaywriteUSModern.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* -- Design Tokens -- */
:root {
  --cream:        #FDF6EC;
  --warm-white:   #FFFAF5;
  --chocolate:    #2E1503;
  --mocha:        #6B3A2A;
  --blush:        #D9917A;
  --gold:         #B8813A;
  --gold-light:   #E8C98A;
  --text:         #2D1A0E;
  --text-light:   #7A5C4E;
  --border:       #EDE0D4;
  --card-bg:      #FFFAF5;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1DA851;

  --font-heading:    'Playfair Display', Georgia, serif;
  --font-sub:        'Cormorant Garant', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;
  --font-logo-main:  'Amsterdam Three', 'Playfair Display', Georgia, serif;  /* Amsterdam Three: self-host .woff2 when available */
  --font-logo-byline:'Playwrite US Modern', cursive;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;

  --shadow-sm:    0 2px 8px rgba(46,21,3,0.07);
  --shadow-md:    0 6px 24px rgba(46,21,3,0.10);
  --shadow-lg:    0 16px 48px rgba(46,21,3,0.13);

  --max-width:    1200px;
  --nav-height:   96px;
}

/* -- Reset & Base -- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* -- Typography Scale -- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--chocolate);
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }

p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--mocha);
  font-weight: 300;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* -- Layout Helpers -- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 56px 0;
}

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

.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

/* -- Divider -- */
.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 20px auto;
}

.divider.left {
  margin-left: 0;
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--chocolate);
  color: #fff;
}
.btn-primary:hover {
  background: var(--mocha);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid var(--chocolate);
}
.btn-outline:hover {
  background: var(--chocolate);
  color: #fff;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--mocha);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* -- Navigation -- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(253,246,236,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 100%;
}

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

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo img {
  height: 88px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1.2;
}

.nav__logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* -- Hamburger -- */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -- Mobile Menu -- */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile-follow {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: var(--gold) !important;
  font-weight: 600 !important;
}

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

.nav__mobile .btn-whatsapp,
.nav__mobile .btn-gold {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

/* -- Page offset for fixed nav -- */
.page-content {
  padding-top: var(--nav-height);
}

/* -- Floating WhatsApp Button -- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: all 0.25s ease;
  animation: float-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.6); }
}

/* -- Hero Section -- */
.hero {
  position: relative;
  min-height: max(440px, calc(100svh - var(--nav-height) - 216px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--chocolate);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/brand/hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46,21,3,0.75) 0%,
    rgba(46,21,3,0.4) 60%,
    rgba(46,21,3,0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__content .section-label {
  color: var(--gold-light);
  margin-bottom: 56px;
  display: block;
}

.hero__headline {
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-logo-main);
  white-space: nowrap;
  line-height: 1;
}

.hero__byline {
  font-family: var(--font-logo-byline);
  font-size: clamp(0.65rem, 0.85vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 52px;
  text-align: right;
  display: block;
  line-height: 1;
}

.hero__content .tagline {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -- Section Headers -- */
.section-header {
  margin-bottom: 36px;
}

.section-header .section-label {
  display: block;
  margin-bottom: 10px;
}

/* -- Feature Strip -- */
.features {
  background: var(--chocolate);
  padding: 22px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.feature-item {
  color: rgba(255,255,255,0.9);
}

.feature-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: 0.9;
}

.feature-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.feature-item__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* -- Story Section (Home) -- */
.story {
  background: var(--warm-white);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--border);
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__content .section-label {
  margin-bottom: 14px;
  display: block;
}

.story__content h2 {
  margin-bottom: 20px;
}

.story__content p {
  margin-bottom: 16px;
}

.story__content p:last-of-type {
  margin-bottom: 32px;
}

/* -- Featured Products (Home) -- */
.featured {
  background: var(--cream);
}

.featured .products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

@media (max-width: 600px) {
  .featured .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* -- Footer -- */
.footer {
  background: var(--chocolate);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 80px;
  margin-bottom: 16px;
}

.footer__brand-wordmark {
  display: block;
  margin-bottom: 8px;
  max-width: 280px;
}

.footer__brand-name {
  font-family: var(--font-logo-main);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
}

.footer__brand-byline {
  display: block;
  font-family: var(--font-logo-byline);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-align: right;
  line-height: 1;
}

.footer__tagline {
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--gold-light);
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  transition: all 0.2s;
}

.footer__social a:hover {
  background: var(--gold);
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* -- Product card shared styles (used on home featured grid) -- */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card__photo {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #EDE0D4 0%, #D9C4B0 100%);
  overflow: hidden;
}
.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__photo img { transform: scale(1.04); }
.product-card__info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--chocolate);
  margin-bottom: 5px;
  line-height: 1.3;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.product-card__price .price-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}
.product-card__cta { margin-top: auto; }
.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
}
.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.22s ease;
}
.btn-order:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-order svg { width: 16px; height: 16px; flex-shrink: 0; }

/* -- Placeholder image -- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EDE0D4 0%, #D9C4B0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mocha);
  font-size: 2.5rem;
}

/* -- Seasonal Badge -- */
.badge-seasonal {
  display: inline-block;
  background: var(--blush);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

/* -- Responsive -- */
@media (max-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story__image {
    aspect-ratio: 16/9;
    max-height: 380px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }

  section {
    padding: 40px 0;
  }

  .nav__center {
    display: none;
  }

  .nav__follow {
    display: none !important;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo img {
    height: 68px;
  }

  .hero {
    min-height: max(300px, calc(100svh - var(--nav-height) - 248px));
  }

  .hero__content {
    text-align: center;
  }

  .hero__content .section-label {
    margin-bottom: 32px;
  }

  .hero__headline {
    font-size: 1.75rem;
    display: inline-block;
  }

  .hero__byline {
    font-size: 0.65rem;
    margin-top: 10px;
    margin-bottom: 28px;
    text-align: center;
  }

  .hero__content .tagline {
    margin-bottom: 16px;
  }

  .hero__actions .btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }

  .features {
    padding: 14px 0;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    text-align: center;
  }

  .feature-item {
    display: block;
    text-align: center;
  }

  .feature-item__icon {
    margin-bottom: 6px;
    margin-top: 0;
  }

  .feature-item__icon svg {
    width: 18px;
    height: 18px;
  }

  .feature-item__title {
    font-size: 0.75rem;
    margin-bottom: 2px;
  }

  .feature-item__text {
    font-size: 0.65rem;
    line-height: 1.3;
    color: rgba(255,255,255,0.55);
  }

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

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

  .whatsapp-float span.float-text {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--chocolate);
  border-top: 2px solid rgba(184,129,58,0.35);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 -6px 32px rgba(46,21,3,0.25);
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.cookie-banner__text strong {
  color: #fff;
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--gold);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  color: var(--chocolate);
}

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.18);
}

.cookie-btn-reject:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
    gap: 16px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================
   Bestsellers Ticker Carousel
   ============================================ */

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.carousel-ticker {
  overflow: hidden;
  width: 100%;
  position: relative;
  transform: translateZ(0);
}

.carousel-ticker::before,
.carousel-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-ticker::before {
  left: 0;
  background: linear-gradient(to right, #FFFAF5, transparent);
}

.carousel-ticker::after {
  right: 0;
  background: linear-gradient(to left, #FFFAF5, transparent);
}

.carousel-ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* animation handled by JS for Safari/iOS compatibility */
}

.carousel-card {
  flex: 0 0 300px;
  min-width: 0;
}

@media (max-width: 640px) {
  .carousel-card {
    flex: 0 0 260px;
  }
  .carousel-ticker-track {
    gap: 16px;
  }
  .carousel-ticker::before,
  .carousel-ticker::after {
    width: 32px;
  }
}
