/* =============================================
   TARUGITOS — Components
   Phase 1
   ============================================= */

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */
.announce-bar {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  position: relative;
  z-index: var(--z-nav);
  line-height: var(--announce-height);
  height: var(--announce-height);
}

.announce-bar span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.announce-bar .announce-icon {
  font-size: 1em;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--black);
  height: var(--nav-height);
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--section-pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.nav-logo {
  display: block;
  flex-shrink: 0;
}

.nav-wordmark {
  display: block;
  width: clamp(145px, 17vw, 205px);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(236, 28, 112, .22));
}

@media (max-width: 420px) {
  .nav-wordmark {
    width: 142px;
  }
}

/* Desktop links */
.nav-links {
  display: none;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-light);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease-base);
  position: relative;
  padding-block: var(--space-2);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--ease-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

.nav-link--cta {
  color: var(--pink) !important;
}

.nav-link--cta::after {
  background: var(--pink);
}

/* Mobile hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--ease-base);
}

@media (min-width: 768px) {
  .nav-hamburger {
    display: none;
  }
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease-base), opacity var(--ease-base);
}

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

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: calc(var(--nav-height) + var(--announce-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  padding: var(--space-8) var(--space-6);
  gap: var(--space-2);
  transform: translateX(100%);
  transition: transform var(--ease-slow);
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer .nav-link {
  font-size: var(--text-xl);
  padding-block: var(--space-4);
  color: var(--white);
  border-bottom: 1px solid var(--black-border);
}

.nav-drawer .nav-link::after {
  display: none;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  min-height: 52px;
  transition: transform var(--ease-bounce), box-shadow var(--ease-base), background var(--ease-base);
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn--primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 6px 24px var(--pink-glow);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
  font-size: var(--text-base);
  font-weight: 800;
  padding: var(--space-4) var(--space-8);
}

.btn--yellow:hover {
  background: var(--yellow-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
  min-height: 58px;
}

.btn--full {
  width: 100%;
}

.btn--instagram {
  background: var(--pink);
  color: var(--white);
  gap: var(--space-3);
  font-size: var(--text-base);
  min-height: 58px;
  box-shadow: var(--shadow-pink);
}

.btn--instagram:hover {
  background: var(--pink-dark);
}

.btn-icon {
  font-size: 1.2em;
}

/* ==========================================
   CANDY CARDS (Builder Step 1)
   ========================================== */
.candy-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-2) var(--space-2);
  cursor: pointer;
  transition: border-color var(--ease-base), transform var(--ease-bounce), box-shadow var(--ease-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  min-height: 126px;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.candy-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.candy-card.selected {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-pink);
  transform: translateY(-2px) scale(1.02);
}

.candy-card.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0) scale(1.02); }
  20%       { transform: translateX(-6px) scale(1.02); }
  40%       { transform: translateX(6px) scale(1.02); }
  60%       { transform: translateX(-4px) scale(1.02); }
  80%       { transform: translateX(4px) scale(1.02); }
}

.candy-card-img {
  width: 76px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 7px rgba(30, 8, 4, .22));
  transition: transform var(--ease-bounce);
}

.candy-card:hover .candy-card-img {
  transform: scale(1.08);
}

.candy-card-name {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.candy-card-check {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--gray-border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease-base), border-color var(--ease-base);
  font-size: 10px;
  color: transparent;
}

.candy-card.selected .candy-card-check {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Candy emoji placeholder (when no image) */
.candy-emoji {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* ==========================================
   SIZE CARDS (Builder Step 2)
   ========================================== */
.size-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  cursor: pointer;
  transition: border-color var(--ease-base), box-shadow var(--ease-base), transform var(--ease-bounce);
  position: relative;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.size-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-md);
}

.size-card.selected {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), var(--shadow-pink);
}

.size-card-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--ease-base);
}

.size-card.selected .size-card-icon {
  opacity: 1;
}

.size-card-info {
  flex: 1;
}

.size-card-oz {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--black);
  line-height: 1;
}

.size-card-desc {
  font-size: var(--text-xs);
  color: var(--gray-text);
  margin-top: 2px;
}

.size-card-dot {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--gray-border);
  background: var(--white);
  flex-shrink: 0;
  transition: background var(--ease-base), border-color var(--ease-base);
  position: relative;
}

.size-card.selected .size-card-dot {
  background: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-glow);
}

.size-badge {
  position: absolute;
  top: -10px;
  left: var(--space-3);
  background: var(--pink);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* ==========================================
   BAG PREVIEW / STICKER
   ========================================== */
.bag-preview-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bag-visual {
  position: relative;
  width: 200px;
  max-width: 100%;
}

/* CSS Bag Shape */
.bag-shape {
  width: 200px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 12px 12px 16px 16px;
  aspect-ratio: 0.65;
  position: relative;
  box-shadow:
    inset -8px 0 16px rgba(255,255,255,0.03),
    inset 8px 0 16px rgba(255,255,255,0.02),
    0 20px 60px rgba(0,0,0,0.5),
    0 4px 12px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* Bag sheen/highlight */
.bag-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
  pointer-events: none;
}

/* Zip-lock top detail */
.bag-zipper {
  width: 100%;
  height: 14px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 3px 3px 0 0;
  border-bottom: 2px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bag-zipper-line {
  width: 80%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #333 0px,
    #333 4px,
    #444 4px,
    #444 8px
  );
  border-radius: 2px;
  opacity: 0.6;
}

.bag-zipper-dot {
  position: absolute;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

/* Tear notch corners */
.bag-notch-left,
.bag-notch-right {
  position: absolute;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--cream);
  border-radius: 50%;
}
.bag-notch-left  { left: -3px; }
.bag-notch-right { right: -3px; }

/* Sticker area on bag */
.bag-sticker-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 120px;
  height: 120px;
}

/* Round CSS Sticker */
.sticker {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
  box-shadow: none;
  transition: opacity var(--ease-slow);
}

.sticker-logo {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(236, 28, 112, .35));
}

.sticker-mascot-hidden {
  display: none;
}

/* Sticker ring pattern */
.sticker::before {
  content: none;
}

.sticker-brand {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-top: 16px;
  line-height: 1;
}

.sticker-mascot {
  font-size: 2rem;
  line-height: 1;
  margin-block: 2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.sticker-candy {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  min-width: 104px;
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.52rem;
  color: var(--black);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 3px 10px rgba(0,0,0,.35);
  z-index: 3;
}

.sticker-sub {
  display: none;
}

/* Curved text bottom of sticker */
.sticker-bottom-text {
  position: absolute;
  bottom: 14px;
  font-size: 0.38rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* Placeholder sticker state */
.sticker.placeholder .sticker-brand {
  font-size: 0.6rem;
}

.sticker.placeholder .sticker-mascot {
  font-size: 1.5rem;
  opacity: 0.5;
}

.sticker.placeholder .sticker-candy {
  color: var(--gray-text);
  font-size: 0.55rem;
}

/* Bag bottom clear window */
.bag-window {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

/* Size label on bag */
.bag-size-label {
  position: absolute;
  bottom: 24px;
  right: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Bag summary below visual */
.bag-summary {
  margin-top: var(--space-4);
  text-align: center;
}

.bag-summary-candy {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--black);
  letter-spacing: 0.04em;
}

.bag-summary-size {
  font-size: var(--text-xs);
  color: var(--gray-text);
  margin-top: 2px;
}

.bag-summary-chamoy {
  font-size: var(--text-xs);
  color: var(--pink);
  font-weight: 600;
  margin-top: 2px;
}

/* ==========================================
   STEP HEADERS (Builder)
   ========================================== */
.step-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-pink);
}

.step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
}

.step-desc {
  font-size: var(--text-xs);
  color: var(--gray-text);
  margin-top: 2px;
}

/* ==========================================
   SELECTION COUNTER
   ========================================== */
.selection-counter {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.counter-dots {
  display: flex;
  gap: var(--space-1);
}

.counter-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  transition: background var(--ease-base);
}

.counter-dot.filled {
  background: var(--pink);
}

.max-notice {
  display: none;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: fadeIn 0.3s ease;
}

.max-notice.show {
  display: flex;
}

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

/* ==========================================
   POPULAR PICKS CARD
   ========================================== */
.pick-card {
  flex: 0 0 240px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease-bounce), box-shadow var(--ease-base);
  cursor: pointer;
}

.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pick-card-top {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pick-card-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  transition: transform var(--ease-bounce);
}

.pick-card-img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(30, 8, 4, .28));
  transition: transform var(--ease-bounce);
}

.pick-card:hover .pick-card-emoji,
.pick-card:hover .pick-card-img {
  transform: scale(1.12) rotate(-5deg);
}

.pick-card-bottom {
  padding: var(--space-4);
  background: var(--white);
}

.pick-card-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--black);
  letter-spacing: 0.04em;
}

.pick-card-tag {
  font-size: var(--text-xs);
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ==========================================
   TRUST BAR ITEMS
   ========================================== */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  flex: 1;
}

.trust-icon {
  font-size: 2rem;
  line-height: 1;
}

.trust-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--pink);
  letter-spacing: 0.06em;
}

.trust-desc {
  font-size: var(--text-xs);
  color: var(--gray-light);
  max-width: 140px;
  line-height: 1.4;
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-base);
  padding: var(--space-4);
}

@media (min-width: 600px) {
  .modal-overlay {
    align-items: center;
  }
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-2xl) var(--radius-2xl) var(--radius-lg) var(--radius-lg);
  padding: var(--space-8);
  width: 100%;
  max-width: 460px;
  text-align: center;
  transform: translateY(60px) scale(0.95);
  transition: transform var(--ease-spring);
  position: relative;
}

@media (min-width: 600px) {
  .modal {
    border-radius: var(--radius-2xl);
  }
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--gray-text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease-base);
}

.modal-close:hover {
  background: var(--cream-border);
}

.modal-emoji {
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-2);
}

.modal-title .accent { color: var(--pink); }

.modal-subtitle {
  font-size: var(--text-base);
  color: var(--gray-text);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.modal-input {
  width: 100%;
  padding: var(--space-4);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--cream);
  transition: border-color var(--ease-base);
}

.modal-input:focus {
  border-color: var(--pink);
  outline: none;
}

.modal-input::placeholder {
  color: var(--gray-light);
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gray-light);
  font-size: var(--text-sm);
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-border);
}

.modal-note {
  font-size: var(--text-xs);
  color: var(--gray-text);
  margin-top: var(--space-2);
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: var(--z-toast);
  transition: transform var(--ease-spring), opacity var(--ease-base);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xl);
}

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

/* ==========================================
   STICKY BAG SUMMARY (mobile)
   ========================================== */
.sticky-bag-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-float);
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateY(100%);
  transition: transform var(--ease-slow);
}

.sticky-bag-bar.visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .sticky-bag-bar {
    display: none;
  }
}

.sticky-bag-info {
  flex: 1;
}

.sticky-bag-label {
  font-size: var(--text-xs);
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sticky-bag-summary {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--white);
  letter-spacing: 0.04em;
}
