/* ===============
   DESIGN SYSTEM
   =============== */
:root {
  --brand: #FFDD00;
  --bg-main: #141414;
  --bg-darker: #0c0c0c;
  --bg-card: #222222;
  --text-white: #FFFFFF;
  --text-gray: #AAAAAA;

  --font-main: 'Montserrat', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.bg-black {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

/* ===== PAGE LOAD ANIMATION ===== */
body {
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

.site-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

/* ===============================
   TOP NAVIGATION
   =============================== */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(20, 20, 20, 0.95);
  /* Slightly transparent for modern feel */
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  margin: -24px -24px 24px -24px;
}

.logo-box {
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
  color: var(--brand);
  text-align: center;
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: logoGlow 3s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 221, 0, 0.3);
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 221, 0, 0.1);
  }

  50% {
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.25);
  }
}

.pill-links {
  display: none;
}

@media(min-width: 1024px) {
  .pill-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pill-link {
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.pill-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-50%);
}

.pill-link:hover::after,
.pill-link.active::after {
  width: 60%;
}

.pill-link:hover,
.pill-link.active {
  background-color: rgba(255, 221, 0, 0.1);
  transform: translateY(-2px);
}

.header-tools {
  display: flex;
  gap: 12px;
  align-items: center;
}

.city-btn {
  background: transparent;
  color: var(--text-white);
  cursor: pointer;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--brand);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.pop {
  transform: scale(1.5);
}

.btn-white {
  background: var(--text-white);
  color: #000;
}

.btn-yellow {
  background: var(--brand);
  color: #000;
}

/* ===============================
   HERO BANNER
   =============================== */
.hero-box {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

@media(min-width: 1024px) {
  .hero-box {
    height: 500px;
  }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, var(--brand) 50%, #fff 60%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 4s ease-in-out infinite;
}

@keyframes heroShimmer {

  0%,
  100% {
    background-position: 100% 0;
  }

  50% {
    background-position: -100% 0;
  }
}

.bean-o {
  display: inline-flex;
  position: relative;
  width: 0.8em;
  height: 0.8em;
  transform: rotate(-25deg);
  margin: 0 0.05em;
  vertical-align: middle;
  animation: beanSpin 8s ease-in-out infinite;
}

@keyframes beanSpin {

  0%,
  100% {
    transform: rotate(-25deg);
  }

  25% {
    transform: rotate(-20deg) scale(1.1);
  }

  50% {
    transform: rotate(-30deg);
  }

  75% {
    transform: rotate(-22deg) scale(0.95);
  }
}

.ring {
  position: absolute;
  top: 10%;
  width: 60%;
  height: 80%;
  border: 0.12em solid var(--brand);
  border-radius: 50%;
}

.r-left {
  left: 5%;
}

.r-right {
  right: 5%;
}

.btn-yellow-solid {
  background: var(--brand);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 221, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(255, 221, 0, 0);
  }
}

.btn-yellow-solid:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 221, 0, 0.4);
}

.btn-yellow-solid:active {
  transform: scale(0.97);
}

/* Ripple effect on click */
.btn-yellow-solid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s, opacity 0.6s;
  opacity: 0;
}

.btn-yellow-solid:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: 0s;
}

/* ===============================
   MENU SECTION SPLIT
   =============================== */
.menu-split-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 1024px) {
  .menu-split-container {
    grid-template-columns: 1.1fr 1.5fr;
  }
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-heading.right-align {
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media(min-width: 768px) {
  .section-heading.right-align {
    justify-content: space-between;
  }
}

.custom-z {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transform: translateY(2px);
}

.cup-icon {
  width: 32px;
  height: 32px;
  vertical-align: top;
  margin-left: 8px;
  transform: rotate(15deg);
}

/* WINTER CARD */
.winter-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.winter-watermark {
  position: absolute;
  top: -10%;
  right: -5%;
  font-size: 400px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.winter-card-inner {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.winter-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  margin-bottom: 32px;
}

@media(min-width: 768px) {
  .winter-card-inner {
    flex-direction: row;
    align-items: flex-end;
  }

  .winter-image {
    width: 50%;
    margin: 0;
    margin-right: 24px;
    align-self: center;
  }

  .winter-info {
    width: 50%;
  }
}

.winter-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.winter-info p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.winter-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.winter-price {
  font-size: 24px;
  font-weight: 700;
}

.nav-arrows {
  display: flex;
  gap: 8px;
}

.arrow-btn {
  background: var(--brand);
  color: #000;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

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

.card-pagination {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.dot.active {
  background: var(--brand);
}

/* CATALOG GRID */
.category-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  color: var(--text-gray);
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--brand);
  color: #000;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media(min-width: 600px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(min-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.catalog-item {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  cursor: pointer;
  perspective: 600px;
}

.catalog-item:hover {
  transform: translateY(-10px);
}

.item-img-box {
  background-color: var(--brand);
  border-radius: var(--radius-md);
  padding: 24px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Shine sweep on hover */
.item-img-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(25deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.catalog-item:hover .item-img-box::after {
  left: 130%;
}

.catalog-item:hover .item-img-box {
  box-shadow: 0 15px 40px rgba(255, 221, 0, 0.3);
  transform: rotateY(-5deg) rotateX(3deg);
}

.item-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.catalog-item:hover .item-img-box img {
  transform: translateY(-12px) scale(1.15) rotateZ(-3deg);
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.5));
}

.item-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.catalog-item:hover .item-text h4 {
  color: var(--brand);
}

.item-text span {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  transition: color 0.3s;
}

/* ===============================
   STUDENT PROMO
   =============================== */
.student-promo {
  margin-top: 40px;
  background-color: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  /* subtle wavy background simulation using gradients */
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #1a1a1a 10px), repeating-linear-gradient(#202020, #202020);
}

.promo-bg-swirls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='f' x='0' y='0'%3E%3CfeColorMatrix in='SourceGraphic' type='matrix' values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 1 0'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='%231a1a1a'/%3E%3Cpath opacity='0.5' fill='none' stroke='%23282828' stroke-width='4' d='M0,500 C150,400 350,600 500,500 C650,400 850,600 1000,500' /%3E%3Cpath opacity='0.3' fill='none' stroke='%23333333' stroke-width='8' d='M0,300 C200,500 300,200 500,300 C700,400 800,100 1000,300' /%3E%3Cpath opacity='0.2' fill='none' stroke='%23222' stroke-width='10' d='M0,700 C300,900 400,600 500,700 C600,800 900,500 1000,700' /%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.promo-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promo-sticker-wrap {
  position: relative;
  display: inline-block;
  align-self: center;
  transform: rotate(-3deg);
  margin-top: 20px;
}

.promo-bubble {
  background: var(--bg-main);
  border: 4px solid var(--text-white);
  border-radius: 24px;
  padding: 24px 48px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.promo-bubble h2 {
  font-size: clamp(32px, 6vw, 72px);
  color: var(--text-white);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.text-marker {
  color: var(--brand);
  font-family: 'Comic Sans MS', 'Chalkboard SE', 'Marker Felt', sans-serif;
  /* fallback marker style */
  font-size: 1.1em;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: inline-block;
  transform: rotate(-2deg);
  margin-top: 10px;
}

.student-card-item {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #3b5998;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(15deg);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0% {
    transform: translateY(0) rotate(15deg);
  }

  50% {
    transform: translateY(-10px) rotate(18deg);
  }

  100% {
    transform: translateY(0) rotate(15deg);
  }
}

.promo-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 24px;
}

@media(min-width: 900px) {
  .promo-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.promo-text {
  max-width: 480px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.6;
}

.promo-avatars {
  display: flex;
}

.promo-avatars img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand);
  margin-left: -20px;
  background-color: var(--bg-card);
  /* in case of transparency */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.promo-avatars img:first-child {
  margin-left: 0;
}

/* ===============================
   LOYALTY PROMO
   =============================== */
.loyalty-promo {
  margin-top: 40px;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loyalty-ribbon-bg {
  position: absolute;
  top: 60%;
  left: -10%;
  width: 120%;
  background-color: var(--brand);
  transform: translateY(-50%) rotate(-4deg);
  padding: 8px 0;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee-content span {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: 2px;
  padding-right: 16px;
  opacity: 0.8;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

.loyalty-container {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.loyalty-top-pill {
  width: max-content;
  margin: 0 auto 48px auto;
  padding: 8px 32px;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  background: #FFF;
}

.loyalty-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media(min-width: 900px) {
  .loyalty-content-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
  }
}

.loyalty-image-wrap {
  display: flex;
  justify-content: center;
}

.loyalty-circle {
  width: clamp(180px, 50vw, 250px);
  height: clamp(180px, 50vw, 250px);
  background-color: var(--brand);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loyalty-circle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-color: #f2f2f2;
  z-index: 1;
}

.loyalty-image-wrap img {
  width: 80%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.15));
}

.loyalty-big-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  /* Thick white stroke to prevent ribbon text from interfering */
  text-shadow:
    -4px -4px 0 #FFF,
    4px -4px 0 #FFF,
    -4px 4px 0 #FFF,
    4px 4px 0 #FFF,
    0px 0px 15px rgba(255, 255, 255, 0.8);
}

.loyalty-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 10;
}

.loyalty-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loyalty-step .step-num {
  font-size: 80px;
  font-weight: 800;
  color: var(--brand);
  line-height: 0.9;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0;
  /* Black outline so the yellow number never blends into the yellow ribbon */
  -webkit-text-stroke: 3px #000;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.loyalty-step p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  position: relative;
  z-index: 10;
  /* White glow to protect text from ribbon */
  text-shadow:
    -2px -2px 0 #FFF,
    2px -2px 0 #FFF,
    -2px 2px 0 #FFF,
    2px 2px 0 #FFF,
    0px 0px 8px #FFF;
}

/* ===============================
   SCROLL ANIMATIONS SYSTEM
   =============================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: blur(3px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Directional reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: blur(3px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: blur(3px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: blur(4px);
}

.reveal-rotate {
  opacity: 0;
  transform: translateY(30px) rotate(3deg);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
  filter: blur(2px);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-rotate.active {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

.st-delay-1 {
  transition-delay: 0.1s;
}

.st-delay-2 {
  transition-delay: 0.2s;
}

.st-delay-3 {
  transition-delay: 0.3s;
}

.st-delay-4 {
  transition-delay: 0.4s;
}

.st-delay-5 {
  transition-delay: 0.5s;
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-8px) rotate(2deg);
  }

  66% {
    transform: translateY(-4px) rotate(-1deg);
  }
}

/* ===== SECTION DIVIDER ANIMATION ===== */
.section-heading h2 {
  position: relative;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading h2.line-active::after {
  width: 60px;
}

/* ===============================
   LOCATIONS SECTION
   =============================== */
.locations-section {
  margin-top: 40px;
  background-color: #f2f2f2;
  border-radius: var(--radius-lg);
  padding: 64px 24px;
  color: #000;
  overflow: hidden;
}

.locations-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto 40px auto;
}

@media(min-width: 900px) {
  .locations-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.locations-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000;
}

.italic-line {
  font-style: italic;
  display: inline-block;
  transform: skewX(-5deg);
}

.locations-nav {
  display: flex;
  gap: 16px;
}

.loc-nav-btn {
  background-color: var(--brand);
  color: #000;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.loc-nav-btn:hover {
  transform: scale(1.05);
  background-color: #ffd000;
}

.locations-slider {
  max-width: 1300px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.locations-slider::-webkit-scrollbar {
  display: none;
}

.locations-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
}

.loc-card {
  background: transparent;
  width: calc(100vw - 48px);
  max-width: 380px;
}

@media(min-width: 768px) {
  .loc-card {
    width: 440px;
    max-width: none;
  }
}

.loc-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #FFF;
  border-radius: 32px;
  padding: 12px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.loc-mini-slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 20px;
}

.loc-mini-slider::-webkit-scrollbar {
  display: none;
}

.loc-mini-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.loc-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--brand);
  color: #000;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  text-transform: none;
}

.img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFF;
  color: #000;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.img-arrow.left {
  left: 24px;
  top: auto;
  bottom: 24px;
  transform: none;
}

.img-arrow.right {
  right: 24px;
  top: auto;
  bottom: 24px;
  transform: none;
}

.img-arrow.left:hover,
.img-arrow.right:hover {
  transform: scale(1.1);
}

.loc-info h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: #000;
}

/* ===============================
   ORIGIN SECTION
   =============================== */
.origin-promo {
  margin-top: 40px;
  background-color: #1a1a1a;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  color: #FFF;
  overflow: hidden;
}

.origin-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media(min-width: 900px) {
  .origin-promo {
    padding: 64px 48px;
  }

  .origin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.origin-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.origin-img-bags {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.origin-img-bags img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.origin-img-bags:hover img {
  transform: scale(1.05);
}

.origin-map {
  width: 100%;
  height: 250px;
  background-image: url('./assets/images/world_map.svg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media(min-width: 900px) {
  .origin-map {
    height: 350px;
  }
}

.map-pill {
  position: absolute;
  background-color: var(--brand);
  color: #000;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: transform 0.2s;
}

.map-pill:hover {
  transform: scale(1.1);
}

.pill-columbia {
  top: 65%;
  left: 15%;
}

.pill-uganda {
  top: 48%;
  left: 36%;
}

.pill-kenya {
  top: 50%;
  left: 52%;
}

.pill-rwanda {
  top: 66%;
  left: 44%;
}

.pill-china {
  top: 40%;
  left: 70%;
}

@media(max-width: 600px) {
  .pill-columbia {
    top: 55%;
    left: 5%;
    font-size: 12px;
  }

  .pill-uganda {
    top: 40%;
    left: 40%;
    font-size: 12px;
  }

  .pill-kenya {
    top: 45%;
    left: 55%;
    font-size: 12px;
  }

  .pill-rwanda {
    top: 60%;
    left: 50%;
    font-size: 12px;
  }

  .pill-china {
    top: 25%;
    left: 70%;
    font-size: 12px;
  }
}

.origin-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.origin-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.origin-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #CCC;
}

.origin-img-cherries {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  margin: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.origin-img-cherries img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.origin-img-cherries:hover img {
  transform: scale(1.05);
}

.origin-small-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #AAA;
}

.btn-origin-cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #E6E6E6;
  color: #000;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  max-width: 250px;
  margin-top: 10px;
  transition: background-color 0.2s, transform 0.2s;
}

.btn-origin-cat:hover {
  background-color: #FFF;
  transform: translateY(-2px);
}

.origin-note {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
  max-width: 300px;
}

/* ===============================
   REVIEWS SECTION
   =============================== */
.reviews-section {
  position: relative;
  background-color: #f2f2f2;
  padding: 100px 24px 140px 24px;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.reviews-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.3;
}

.reviews-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #000;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.reviews-subtitle {
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 20px 0;
}

.review-card {
  border-radius: 16px;
  padding: 32px;
  width: 320px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.review-card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  z-index: 10 !important;
}

.review-score {
  font-size: 32px;
  font-weight: 900;
  text-align: right;
  margin-bottom: 12px;
  line-height: 1;
}

.review-author {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
}

/* Card Specifics */
.rc-1 {
  background: #222;
  color: #FFF;
  transform: rotate(-8deg) translateY(20px);
  z-index: 2;
  margin-right: -40px;
}

.rc-1 .review-author {
  color: #AAA;
}

.rc-1 .review-score {
  color: var(--brand);
}

.rc-2 {
  background: var(--brand);
  color: #000;
  transform: rotate(4deg) translateY(-20px);
  z-index: 3;
  margin-right: -20px;
}

.rc-2 .review-author {
  color: #333;
}

.rc-2 .review-score {
  color: #000;
}

.rc-3 {
  background: #222;
  color: #FFF;
  transform: rotate(2deg) translateY(80px) translateX(-30px);
  z-index: 4;
}

.rc-3 .review-author {
  color: #AAA;
}

.rc-3 .review-score {
  color: var(--brand);
}

.rc-4 {
  background: #FFF;
  color: #000;
  transform: rotate(5deg) translateY(-40px);
  z-index: 1;
  margin-left: -50px;
}

.rc-4 .review-author {
  color: #666;
}

.rc-4 .review-score {
  color: #000;
}

@media(max-width: 900px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-bottom: 60px;
  }

  .rc-1,
  .rc-2,
  .rc-3,
  .rc-4 {
    margin: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
  }
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background-color: #222;
  color: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  padding: 64px 24px;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
}

@media(min-width: 900px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    padding: 64px 48px;
  }
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 700;
  color: var(--brand);
  line-height: 0.8;
  text-transform: uppercase;
}

.footer-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.f-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-col h4 {
  color: var(--brand);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.f-col a,
.f-col p,
.f-col li {
  color: #DDD;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  list-style: none;
}

.f-col a:hover {
  color: var(--brand);
}

.f-col ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-col li::before {
  content: "•";
  color: #DDD;
  display: inline-block;
  width: 1em;
}

.f-work-hours {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.f-email {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--brand);
}

.f-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.f-soc-btn {
  background-color: #FFF;
  color: #000 !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s, background-color 0.2s;
}

.f-soc-btn:hover {
  transform: scale(1.1);
  background-color: var(--brand);
}

.footer-middle {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 64px 24px;
  display: flex;
  justify-content: center;
}

@media(min-width: 900px) {
  .footer-middle {
    padding: 0 48px 64px 48px;
  }
}

.footer-video-box {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16/9;
  border: 4px solid var(--brand);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.footer-video-box:hover {
  transform: scale(1.02);
}

.video-icons-group {
  position: relative;
  display: inline-block;
}

.map-icon-svg {
  width: 90px;
  height: 90px;
}

.play-circle {
  position: absolute;
  bottom: -4px;
  right: -12px;
  width: 44px;
  height: 44px;
  background-color: #555;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #222;
}

.footer-wavy-wrap {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.wavy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

/* ===============================
   CATALOG PAGE
   =============================== */
.bg-white {
  background-color: #FFFFFF;
  color: #000000;
  font-family: var(--font-main);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.catalog-section {
  padding: 40px 0;
  text-align: center;
}

.cat-header {
  margin-bottom: 40px;
}

.cat-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.05em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.cat-title svg {
  width: clamp(40px, 8vw, 60px);
  height: auto;
}

/* ---- TABS ---- */
.cat-tabs {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  background: #EAEAEA;
  border-radius: 999px;
  padding: 4px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.cat-tab {
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
  background: transparent;
  color: #666;
  letter-spacing: 0.01em;
}

.cat-tab.active {
  background-color: var(--brand);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 221, 0, 0.4);
  transform: scale(1.02);
}

.cat-tab:not(.active) {
  background-color: transparent;
  color: #666;
}

.cat-tab:not(.active):hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.05);
}

.cat-tab:active {
  transform: scale(0.95);
}

/* ---- GRID ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
  perspective: 1200px;
}

/* Grid transition wrapper */
.cat-grid.animating-out {
  pointer-events: none;
}

.cat-grid.animating-out .cat-item {
  animation: catItemOut 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* ---- ITEM WITH STAGGERED ENTRANCE ---- */
.cat-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(60px) rotateX(15deg) scale(0.9);
  transform-origin: center bottom;
  animation: catItemIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cat-item:nth-child(1) {
  animation-delay: 0.05s;
}

.cat-item:nth-child(2) {
  animation-delay: 0.12s;
}

.cat-item:nth-child(3) {
  animation-delay: 0.19s;
}

.cat-item:nth-child(4) {
  animation-delay: 0.26s;
}

.cat-item:nth-child(5) {
  animation-delay: 0.33s;
}

.cat-item:nth-child(6) {
  animation-delay: 0.40s;
}

@keyframes catItemIn {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(15deg) scale(0.9);
    filter: blur(4px);
  }

  50% {
    opacity: 0.7;
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0px);
  }
}

@keyframes catItemOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-30px) scale(0.92);
    filter: blur(6px);
  }
}

/* ---- ITEM HOVER 3D TILT ---- */
.cat-img-box {
  background-color: #F8F8F8;
  border-radius: 20px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-img-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 221, 0, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cat-img-box:hover::before {
  opacity: 1;
}

.cat-img-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 221, 0, 0.15);
  background-color: #FFF;
}

/* Bag mockup CSS */
.bag-mockup {
  background: linear-gradient(135deg, #2a2a2a 0%, #111 100%);
  width: 140px;
  height: 190px;
  border-radius: 2px;
  position: relative;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.cat-img-box:hover .bag-mockup {
  transform: rotateY(-8deg) rotateX(4deg) translateY(-6px) scale(1.05);
  box-shadow: -12px 18px 30px rgba(0, 0, 0, 0.25), 8px -4px 20px rgba(255, 221, 0, 0.08);
}

.bag-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scaleY(10);
}

/* Shine sweep on hover */
.bag-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 5;
}

.cat-img-box:hover .bag-mockup::after {
  left: 140%;
}

.bag-brand {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  padding: 30px 16px 16px;
  line-height: 1.1;
}

.bag-label {
  background: var(--brand);
  color: #000;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 24px;
  transition: background-color 0.3s;
}

.cat-img-box:hover .bag-label {
  background: #ffe640;
}

.bag-label::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
}

.bag-label-small {
  font-size: 6px;
  font-weight: 400;
  margin-top: 4px;
  line-height: 1.2;
}

.cat-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  transition: color 0.3s;
}

.cat-item:hover .cat-name {
  color: #333;
}

/* ===============================
   DELIVERY SECTION (LIGHT)
   =============================== */
.deliv-section {
  padding: 64px 0 100px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.deliv-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.deliv-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.deliv-item {
  background-color: #F1F1F1;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.deliv-header {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.deliv-item:hover .deliv-header {
  background-color: #E8E8E8;
}

.deliv-header span {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  color: #000;
}

.deliv-plus {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--brand);
  border: none;
  font-size: 32px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  color: #000;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliv-item.open .deliv-plus {
  transform: rotate(45deg);
}

.deliv-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.deliv-content-inner {
  padding: 0 32px 32px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.deliv-content-inner p {
  margin-bottom: 8px;
}

.deliv-content-inner ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.deliv-content-inner li {
  margin-bottom: 6px;
}

/* ===============================
   BURGER MENU BUTTON
   =============================== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--brand);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn:hover {
  background-color: rgba(255, 221, 0, 0.1);
}

@media(max-width: 1023px) {
  .burger-btn {
    display: flex;
  }
}

/* ===============================
   MOBILE NAV OVERLAY + DRAWER
   =============================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background-color: #1a1a1a;
  z-index: 9999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 221, 0, 0.2);
}

.mobile-nav-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav-close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}

.mobile-nav-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--brand);
  color: var(--brand);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav-link {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 221, 0, 0.1);
  color: var(--brand);
  padding-left: 32px;
}

/* Prevent scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* ===============================
   MOBILE RESPONSIVE ADJUSTMENTS
   =============================== */

/* Header mobile fixes */
@media(max-width: 767px) {
  .top-nav {
    padding: 12px 16px;
    gap: 8px;
  }

  .site-wrapper {
    padding: 16px;
  }

  .top-nav {
    margin: -16px -16px 16px -16px;
  }

  .logo-box {
    padding: 6px 14px;
    font-size: 12px;
  }

  .city-btn {
    display: none;
  }

  .header-tools {
    gap: 8px;
  }

  .social-btn {
    width: 28px;
    height: 28px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }

  /* Hero */
  .hero-box {
    height: 300px;
    margin-bottom: 24px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .btn-yellow-solid {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* Menu split */
  .menu-split-container {
    gap: 24px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .winter-card {
    padding: 24px 16px;
    min-height: 400px;
  }

  .winter-info h3 {
    font-size: 18px;
  }

  .winter-info p {
    font-size: 13px;
    margin-bottom: 16px;
  }

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

  .card-pagination {
    right: 12px;
  }

  /* Catalog grid */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .item-img-box {
    padding: 16px;
  }

  .item-text h4 {
    font-size: 14px;
  }

  .item-text span {
    font-size: 12px;
  }

  /* Student Promo */
  .student-promo {
    padding: 32px 16px;
    margin-top: 24px;
  }

  .promo-bubble {
    padding: 16px 20px;
    border-radius: 16px;
  }

  .promo-bubble h2 {
    font-size: 28px;
  }

  .promo-text {
    font-size: 14px;
  }

  .promo-avatars img {
    width: 50px;
    height: 50px;
    margin-left: -12px;
  }

  /* Loyalty */
  .loyalty-promo {
    padding: 40px 16px;
    margin-top: 24px;
  }

  .loyalty-big-text {
    font-size: 28px;
  }

  .loyalty-step .step-num {
    font-size: 48px;
  }

  .loyalty-step p {
    font-size: 14px;
  }

  .loyalty-top-pill {
    padding: 6px 20px;
    font-size: 12px;
    margin-bottom: 24px;
  }

  /* Locations */
  .locations-section {
    padding: 40px 16px;
    margin-top: 24px;
  }

  .locations-title {
    font-size: 28px;
  }

  .loc-nav-btn {
    width: 44px;
    height: 44px;
  }

  .loc-info h3 {
    font-size: 20px;
  }

  /* Origin */
  .origin-promo {
    margin-top: 24px;
    padding: 32px 16px;
  }

  .origin-title {
    font-size: 28px;
  }

  .origin-desc {
    font-size: 14px;
  }

  .btn-origin-cat {
    max-width: 100%;
    text-align: center;
  }

  /* Reviews */
  .reviews-section {
    padding: 60px 16px 80px;
    margin-top: 24px;
  }

  .reviews-title {
    font-size: 48px;
  }

  .reviews-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .review-card {
    width: 100%;
    padding: 20px;
  }

  /* Footer */
  .site-footer {
    border-radius: 24px 24px 0 0;
    margin-top: 24px;
  }

  .footer-top {
    padding: 40px 16px;
    gap: 32px;
  }

  .footer-logo {
    font-size: 48px;
  }

  .footer-nav-grid {
    gap: 32px;
  }

  .f-work-hours {
    font-size: 28px;
  }

  .footer-middle {
    padding: 0 16px 40px;
  }

  .footer-video-box {
    max-width: 100%;
  }

  .map-icon-svg {
    width: 60px;
    height: 60px;
  }

  .play-circle {
    width: 32px;
    height: 32px;
  }

  .play-circle svg {
    width: 18px;
    height: 18px;
  }

  /* Catalog page */
  .catalog-section {
    padding: 24px 0;
  }

  .cat-title {
    font-size: 36px;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .bag-mockup {
    width: 110px;
    height: 150px;
  }

  .bag-brand {
    font-size: 12px;
    padding: 20px 10px 10px;
  }

  .bag-label {
    font-size: 11px;
    padding: 8px;
  }

  .cat-name {
    font-size: 14px;
  }

  /* Delivery */
  .deliv-section {
    padding: 40px 0 60px;
  }

  .deliv-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .deliv-header {
    padding: 14px 20px;
  }

  .deliv-header span {
    font-size: 16px;
  }

  .deliv-plus {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .deliv-content-inner {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* Extra small screens */
@media(max-width: 400px) {
  .hero-title {
    font-size: 32px;
  }

  .promo-bubble h2 {
    font-size: 24px;
  }

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

  .loyalty-big-text {
    font-size: 24px;
  }

  .reviews-title {
    font-size: 36px;
  }

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

/* Catalog page mobile nav theme override (white bg page) */
.bg-white .top-nav {
  background-color: rgba(255, 255, 255, 0.95);
}

.bg-white .logo-box {
  border-color: #000;
  color: #000;
}

.bg-white .pill-link {
  border-color: #000;
  color: #000;
}

.bg-white .burger-btn {
  border-color: #000;
}

.bg-white .burger-btn span {
  background-color: #000;
}

/* ===============================
   TOAST NOTIFICATION
   =============================== */
.toast-notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 16px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255, 221, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  z-index: 10000;
  transition: bottom 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  opacity: 0;
  white-space: nowrap;
  font-family: var(--font-main);
  overflow: hidden;
}

.toast-notification.show {
  bottom: 40px;
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  animation: toastIconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  filter: drop-shadow(0 0 6px rgba(255, 221, 0, 0.5));
}

.toast-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@keyframes toastIconBounce {
  0% {
    transform: scale(0) rotate(-20deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.toast-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Progress bar animation */
.toast-notification::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand), #ffaa00);
  border-radius: 0 0 16px 16px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 2.5s linear;
}

.toast-notification.show::after {
  transform: scaleX(0);
}

@media (max-width: 767px) {
  .toast-notification {
    padding: 14px 20px;
    border-radius: 12px;
    max-width: 90vw;
  }

  .toast-notification.show {
    bottom: 24px;
  }

  .toast-text {
    font-size: 14px;
  }
}