/* ═══════════════════════════════════════════════
   FLORA — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* --- Reset & Variables --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #fafafa;
  --bg-light: #f5f0eb;
  --bg-sand: #f0ebe3;
  --accent: #c9a87c;
  --accent-dark: #a8825a;
  --dark: #1a1a1a;
  --sale: #e63946;
  --new: #1a1a1a;
  --text: #333333;
  --text-muted: #666666;
  --border: #e8e0d8;
  --white: #ffffff;
  --nav-h: 72px;
  --radius: 4px;
  --radius-pill: 4px;
  --shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .14);
  --shadow-gold: 0 8px 30px rgba(201, 168, 124, .25);
  --trans: .3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-brand: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: var(--nav-h);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-sale {
  background: var(--sale);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.btn-sale:hover {
  background: #c0303a;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: .78rem;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 5px 11px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  line-height: 1.4;
}

.badge-new {
  background: var(--dark);
  color: var(--white);
}

.badge-sale {
  background: var(--sale);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: transparent;
  z-index: 999;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

/* When page starts scrolled or no hero (non-index pages) */
.navbar--solid {
  background: var(--dark) !important;
  backdrop-filter: none !important;
}

.navbar__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.35s ease;
}

.navbar.scrolled .navbar__logo {
  color: var(--dark);
}

.navbar__logo-text {
  letter-spacing: -0.5px;
  color: inherit;
}

.navbar__logo-initial {
  font-size: 1.8em;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.20em;
  margin-right: 1px;
}

.navbar__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: block;
  padding: 8px 14px;
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 0.35s ease;
  border-radius: var(--radius-pill);
}

.navbar.scrolled .navbar__link {
  color: var(--text);
}

.navbar__link:hover,
.navbar__link:focus {
  color: var(--accent);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--accent);
}

.navbar__link--sale {
  color: var(--sale) !important;
  font-weight: 700;
}

.navbar__link--sale:hover {
  color: #ff6b6b !important;
}

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans);
  white-space: nowrap;
  pointer-events: none;
  min-width: 180px;
}

.has-dropdown:hover .navbar__dropdown,
.has-dropdown:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.navbar__dropdown-inner {
  padding: 8px 0;
}

.navbar__dropdown-link {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
  transition: background var(--trans), color var(--trans);
}

.navbar__dropdown-link:hover {
  background: var(--bg-light);
  color: var(--accent);
}

/* Icons */
.navbar__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.navbar__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: 50%;
  transition: background 0.35s ease, color 0.35s ease;
}

.navbar.scrolled .navbar__icon-btn {
  color: var(--dark);
}

.navbar__icon-btn:hover {
  background: rgba(255, 255, 255, .15);
}

.navbar.scrolled .navbar__icon-btn:hover {
  background: rgba(0, 0, 0, .05);
}

.navbar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--sale);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}

.navbar.scrolled .navbar__hamburger span {
  background: var(--dark);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Search Bar */
.navbar__search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: transparent;
  padding: 14px 24px;
}

.navbar__search-bar[hidden] {
  display: none;
}

.navbar__search-bar form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.navbar.scrolled .navbar__search-bar form,
.navbar--solid .navbar__search-bar form {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.navbar__search-bar input {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: .95rem;
  outline: none;
}

.navbar.scrolled .navbar__search-bar input,
.navbar--solid .navbar__search-bar input {
  color: var(--dark);
}

.navbar__search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .navbar__search-bar input::placeholder,
.navbar--solid .navbar__search-bar input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.navbar__search-bar button {
  padding: 10px 18px;
  color: var(--white);
  transition: color var(--trans);
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar.scrolled .navbar__search-bar button,
.navbar--solid .navbar__search-bar button {
  color: var(--dark);
}

.navbar__search-bar button:hover {
  color: var(--accent);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: background 0.35s ease, color 0.35s ease;
}

.navbar.scrolled .lang-switcher__btn {
  color: var(--dark);
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.navbar.scrolled .lang-switcher__btn:hover {
  background: rgba(0, 0, 0, .05);
  color: var(--dark);
}

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all var(--trans);
  min-width: 80px;
  overflow: hidden;
}

.lang-switcher.open .lang-switcher__dropdown,
.lang-switcher:focus-within .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__option {
  display: block;
  padding: 10px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .1em;
  transition: background var(--trans);
}

.lang-switcher__option:hover {
  background: var(--bg-light);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1100;
}

.mobile-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--dark);
  z-index: 1101;
  transform: translateX(-100%);
  transition: transform .35s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu__logo {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .15em;
}

.mobile-menu__close {
  color: var(--white);
  font-size: 1.5rem;
  opacity: .7;
}

.mobile-menu__list {
  padding: 16px 0;
  flex: 1;
}

.mobile-menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-menu__link {
  display: block;
  padding: 14px 24px;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
  transition: color var(--trans);
}

.mobile-menu__link:hover {
  color: var(--white);
}

.mobile-menu__link--sale {
  color: var(--sale) !important;
}

.mobile-menu__sub {
  background: rgba(255, 255, 255, .04);
}

.mobile-menu__sub li a {
  display: block;
  padding: 10px 24px 10px 36px;
  color: rgba(255, 255, 255, .6);
  font-size: .85rem;
  transition: color var(--trans);
}

.mobile-menu__sub li a:hover {
  color: var(--white);
}

.mobile-menu__langs {
  display: flex;
  gap: 8px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.mobile-menu__lang {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .2);
  transition: all var(--trans);
}

.mobile-menu__lang.active,
.mobile-menu__lang:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background var(--trans), color var(--trans), transform var(--trans), border-color var(--trans);
}

.mobile-menu__social-link:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.mobile-menu__social-link--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

/* ═══════════════════════════════════════════════
   HERO BANNER
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  /* Pull hero up behind the fixed transparent navbar */
  margin-top: calc(-1 * var(--nav-h));
  min-height: calc(90vh + var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 8s ease;
  filter: brightness(0.82);
}

.hero.loaded .hero__bg {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.08) 40%,
      rgba(0, 0, 0, 0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 680px;
  margin: 0 auto 0 8%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.3s;
}

.hero__title {
  font-family: var(--font-brand);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.5s;
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.7s;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards 0.9s;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════════════════ */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 40px 0;
}

.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-light);
}

.cat-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-tile:hover .cat-tile__img {
  transform: scale(1.06);
}

.cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, .7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.cat-tile__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cat-tile__sub {
  font-size: .75rem;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-6px);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-light);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.product-card__wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--trans);
  color: var(--text-muted);
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: translateY(0);
}

.product-card__wishlist.active {
  color: var(--sale);
}

.product-card__wishlist:hover {
  color: var(--sale);
  transform: scale(1.1);
}

.product-card__body {
  padding: 14px 12px;
}

.product-card__name {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.product-card__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.product-card__old-price {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card__price.sale {
  color: var(--sale);
}

.product-card__colors {
  display: flex;
  gap: 6px;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color var(--trans), transform var(--trans);
  cursor: pointer;
  flex-shrink: 0;
}

.color-swatch:hover,
.color-swatch.active,
.color-swatch.selected {
  border-color: var(--dark);
  outline: 2px solid var(--dark);
  outline-offset: 2px;
  transform: scale(1.2);
}

/* ═══════════════════════════════════════════════
   FLASH SALE
   ═══════════════════════════════════════════════ */
.flash-sale {
  background: var(--dark);
  padding: 60px 0;
  color: var(--white);
}



.flash-sale__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 16px;
}

.flash-sale__title {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.flash-sale__title svg {
  color: var(--sale);
}

.flash-sale__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.countdown {
  display: flex;
  gap: 8px;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  min-width: 56px;
  padding: 8px 4px;
}

.countdown__num {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   EDITORIAL / LOOKBOOK TEASER
   ═══════════════════════════════════════════════ */
.editorial-wrapper {
  position: relative;
  width: 100%;
}

.editorial-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.editorial-strip::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.editorial-item {
  position: relative;
  flex: 0 0 33.3333%;
  min-width: 0;
  width: 33.3333%;
  aspect-ratio: 2/3;
  overflow: hidden;
  display: block;
}

.editorial-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.editorial-item:hover .editorial-item__img {
  transform: scale(1.06);
}

.editorial-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--trans);
}

.editorial-item:hover .editorial-item__overlay {
  background: rgba(26, 26, 26, .45);
}

.editorial-item__content {
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--trans);
}

.editorial-item:hover .editorial-item__content {
  opacity: 1;
  transform: translateY(0);
}

.editorial-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.editorial-item__link {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  padding-bottom: 2px;
}

/* Slider Arrows */
.btn-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 10;
  transition: all var(--trans);
  opacity: 0.9;
}

.btn-slider:hover {
  background: var(--dark);
  color: var(--white);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.btn-slider-left {
  left: 16px;
}

.btn-slider-right {
  right: 16px;
}

/* Mobile: stack vertically, max 3 items, no arrows */
@media (max-width: 768px) {
  .editorial-strip {
    flex-direction: column !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  .editorial-item {
    flex: none !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 3/2;
    /* landscape on mobile for better readability */
  }

  /* Hide items beyond the 3rd */
  .editorial-item:nth-child(n+4) {
    display: none !important;
  }

  .btn-slider {
    display: none !important;
  }
}


/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-sand) 0%, #ede5d8 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '✦';
  position: absolute;
  font-size: 8rem;
  color: var(--accent);
  opacity: .06;
  top: -20px;
  right: 5%;
  pointer-events: none;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-title {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--dark);
}

.newsletter-subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.7;
}

.newsletter-inputs {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .10);
  background: var(--white);
}

.newsletter-inputs input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-size: .95rem;
  background: transparent;
}

.newsletter-inputs .btn {
  border-radius: var(--radius-pill);
  margin: 4px;
}

.newsletter-msg {
  margin-top: 12px;
  font-size: .9rem;
}

.newsletter-msg.success {
  color: var(--accent-dark);
}

.newsletter-msg.error {
  color: var(--sale);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .75);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__logo {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: .8rem;
}

.footer__tagline {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all var(--trans);
}

.footer__social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--trans);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.footer__contact-item a {
  color: rgba(255, 255, 255, .6);
  transition: color var(--trans);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 600;
  transition: opacity var(--trans), transform var(--trans);
  margin-top: 8px;
}

.footer__whatsapp:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__hours-item {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  gap: 12px;
}

.footer__hours-day {
  color: rgba(255, 255, 255, .7);
}

.footer__hours-closed {
  color: var(--sale);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 24px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.footer__bottom-langs {
  display: flex;
  gap: 12px;
}

.footer__bottom-langs a {
  color: rgba(255, 255, 255, .4);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  transition: color var(--trans);
}

.footer__bottom-langs a.active,
.footer__bottom-langs a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════════════ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 900;
  flex-direction: row;
}

.mobile-bottom-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  transition: color var(--trans);
}

.mobile-bottom-bar__item:hover {
  color: var(--accent);
}

.mobile-bottom-bar__badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 18px);
  background: var(--sale);
  color: var(--white);
  font-size: .55rem;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ═══════════════════════════════════════════════
   COLLECTIONS / FILTER BAR
   ═══════════════════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  transition: all var(--trans);
}

.filter-tab:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.filter-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.sort-select {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   PRODUCT PAGE
   ═══════════════════════════════════════════════ */
.product-page {
  padding: 40px 0 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.product-gallery__main {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.product-gallery__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-gallery__thumb {
  width: 70px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--trans);
}

.product-gallery__thumb.active {
  border-color: var(--dark);
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__brand {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-info__name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.product-info__prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-info__price {
  font-size: 1.4rem;
  font-weight: 700;
}

.product-info__old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-info__price.sale {
  color: var(--sale);
}

.product-info__section {
  margin-bottom: 24px;
}

.product-info__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.size-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--trans);
  min-width: 52px;
  text-align: center;
}

.size-btn:hover {
  border-color: var(--dark);
}

.size-btn.active,
.size-btn.selected {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.size-btn.out-of-stock {
  opacity: .35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stock-indicator {
  font-size: .85rem;
  padding: 8px 0;
}

.stock-indicator.low {
  color: var(--sale);
}

.product-tabs {
  border-top: 1px solid var(--border);
  margin-top: 32px;
}

.product-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.product-tab-btn {
  padding: 14px 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all var(--trans);
}

.product-tab-btn.active {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

.product-tab-content {
  padding: 24px 0;
  display: none;
}

.product-tab-content.active {
  display: block;
}

.product-tab-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Sticky Add to Cart (mobile) */
.sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 58px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 890;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
}

.sticky-cart-bar .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   LOOKBOOK
   ═══════════════════════════════════════════════ */
.lookbook-grid {
  columns: 3;
  column-gap: 16px;
  padding: 40px 0;
}

.lookbook-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.lookbook-item img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}

.lookbook-item:hover img {
  transform: scale(1.04);
}

.lookbook-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background var(--trans);
}

.lookbook-item:hover .lookbook-item__overlay {
  background: rgba(26, 26, 26, .5);
}

.lookbook-item__content {
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--trans);
}

.lookbook-item:hover .lookbook-item__content {
  opacity: 1;
  transform: translateY(0);
}

.lookbook-item__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lookbook-item__link {
  font-size: .75rem;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  padding-bottom: 2px;
}

/* ═══════════════════════════════════════════════
   PAGE HERO (Contact, Collections, etc.)
   ═══════════════════════════════════════════════ */
.page-hero {
  height: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin-top: .6rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  position: relative;
  z-index: 1;
}

/* Collections photo hero */
.collections-hero {
  height: 380px;
  /* Pull the hero up behind the fixed transparent navbar (same as homepage .hero) */
  margin-top: calc(-1 * var(--nav-h));
  background: none;
}

.collections-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-size: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

@media (min-width: 768px) {
  .collections-hero__bg {
    background-position: center 10%;
  }
}

.collections-hero.loaded .collections-hero__bg {
  transform: scale(1);
}

.collections-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.30) 0%,
      rgba(0, 0, 0, 0.55) 100%);
}

.collections-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}

.collections-hero__title {
  font-family: var(--font-brand);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.7s ease forwards 0.15s;
}

.collections-hero__sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.7s ease forwards 0.35s;
}



/* ═══════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  transition: border-color var(--trans);
  outline: none;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--accent);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE LAYOUTS
   ═══════════════════════════════════════════════ */
.about-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ── Perks Row ────────────────────────────── */
.perks-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: none;
  border-radius: 0;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow var(--trans), transform var(--trans);
}

.perk:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.perk:last-child {
  border-right: 1px solid var(--border);
}

.perk__icon {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  background: var(--bg-sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perk__title {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark);
}

.perk__desc {
  font-size: .76rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--trans);
}

.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb__sep {
  opacity: .4;
}

/* ═══════════════════════════════════════════════
   ALERTS
   ═══════════════════════════════════════════════ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
}

.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #4caf50;
}

.alert-error {
  background: #fdecea;
  color: #c62828;
  border-left: 3px solid var(--sale);
}

.alert-info {
  background: #e3f2fd;
  color: #1565c0;
  border-left: 3px solid #2196f3;
}

/* ═══════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 40px 0;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--trans);
}

.pagination a:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.pagination .active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.placeholder-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e8e0d5 0%, #d4c9bb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}

.placeholder-img.hero-ph {
  aspect-ratio: 16/7;
}

/* ═══════════════════════════════════════════════
   ADMIN GLOBAL
   ═══════════════════════════════════════════════ */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: #f0f2f5;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  padding: 32px 0;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS & EFFECTS
   ═══════════════════════════════════════════════ */

/* Button ripple */
@keyframes btnRipple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Skeleton shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0ebe5 25%, #e6dfd8 50%, #f0ebe5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

/* View-all link */
.view-all-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--trans);
}

.view-all-link:hover {
  gap: 8px;
}