.header-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .header-logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
  }

  .logo-left {
    order: 1;
  }

  .logo-right {
    order: 2;
  }

  .header-welcome {
    order: 3;
    flex: 0 0 100% !important;
  }

  .header-welcome-title {
    font-size: 16px;
  }

  .countdown-timer {
    font-size: 11px;
  }

  .logo-slot {
    height: 44px;
  }

  .logo-left {
    height: 52px;
  }

  .site-header {
    padding: 12px 0;
  }
}

.logo-slot {
  display: flex;
  align-items: center;
  height: 82px;
}

.logo-left {
  height: 96px;
}

.logo-slot img {
  height: 100%;
  width: auto;
}

.logo-fallback {
  color: var(--eggshell);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.products-intro {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 28px;
  max-width: 640px;
}

.products-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.products-main {
  flex: 0 1 900px;
  min-width: 0;
}

.cart-column {
  position: sticky;
  top: 24px;
  margin-top: -55px;
  flex: 1;
  min-width: 360px;
  max-height: calc(100vh - 44px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.delivery-notice {
  background: var(--sand);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
}

.already-used-notice {
  background: var(--blush);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.already-used-notice p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.already-used-notice .btn-footer {
  background: var(--navy);
  color: var(--eggshell);
}

.already-used-notice .btn-footer:hover {
  background: var(--deep-rose);
}

.cart-sidebar {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(31, 46, 70, 0.12);
}

.cart-empty-msg {
  color: var(--ink);
  opacity: 0.7;
  font-size: 14px;
}

.cart-sidebar h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 14px;
}

.cart-sidebar-lines {
  margin-bottom: 12px;
}

.cart-sidebar-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--sand);
}

.cart-sidebar-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.cart-sidebar-price {
  color: var(--deep-rose);
  font-weight: 500;
  white-space: nowrap;
}

.cart-sidebar-line .remove-line-btn {
  background: none;
  border: none;
  color: var(--ink);
  opacity: 0.5;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.cart-sidebar-line .remove-line-btn:hover {
  opacity: 1;
  color: var(--deep-rose);
}

.cart-progress {
  font-size: 13px;
  color: var(--deep-rose);
  background: var(--blush);
  border-radius: 6px;
  padding: 8px 10px;
  margin: 10px 0;
}

.cart-progress-done {
  color: #3f6b47;
  background: #dcead9;
}

.cart-sidebar-totals {
  border-top: 1.5px solid var(--navy);
  padding-top: 10px;
}

.cart-sidebar-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 4px 0;
}

.cart-sidebar-discount {
  color: #3f6b47;
}

.cart-sidebar-total {
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
}

.cart-checkout-btn {
  width: 100%;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .products-layout {
    flex-direction: column;
  }

  .cart-column {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100vh;
    max-height: 100vh;
    margin-top: 0;
    background: var(--eggshell);
    padding: 20px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 60;
    overflow-y: auto;
  }

  .cart-column.open {
    transform: translateX(0);
  }

  .cart-toggle-btn {
    display: flex !important;
  }

  .cart-overlay {
    display: block !important;
  }

  .cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
}

.cart-toggle-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(216, 196, 167, 0.5);
  z-index: 55;
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.cart-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .cart-close-btn {
    display: block;
  }
}

.mobile-section-tabs {
  display: none;
}

@media (max-width: 640px) {
  .mobile-section-tabs {
    display: flex;
    gap: 8px;
    position: sticky;
    top: 0;
    z-index: 15;
    background: var(--eggshell);
    padding: 10px 0;
    margin-bottom: 8px;
  }

  .mobile-tab-btn {
    flex: 1;
    background: #fff;
    border: 1.5px solid var(--sand);
    border-radius: 20px;
    padding: 8px 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }

  .mobile-tab-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--eggshell);
  }

  .mobile-tab-btn:active {
    background: var(--blush);
  }
}

.vc-main {
  padding: 48px 0 100px;
  max-width: 640px;
  transition: max-width 0.2s ease;
}

@media (max-width: 640px) {
  .vc-main {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.vc-main-wide {
  max-width: 1600px;
  margin-left: 24px;
  margin-right: 24px;
}

.header-welcome {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.header-welcome-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
}

.countdown-timer {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--sand);
  margin-top: 4px;
}

.welcome-banner {
  background: var(--blush);
  padding: 20px 24px;
  text-align: center;
}

.welcome-banner p {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.vc-step h1 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 8px;
}

.not-found-tagline {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.75;
  margin-bottom: 24px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.vc-step p {
  margin-bottom: 24px;
}

#name-form label,
#household-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}

#name-form input[type="text"] {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--sand);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#name-form input[type="text"]:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(201, 112, 127, 0.2);
}

.household-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  border-bottom: 1px solid var(--sand);
  border-radius: 6px;
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.household-option:hover {
  background-color: var(--blush);
}

.btn-select-all {
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: var(--eggshell);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.btn-select-all:hover {
  border-color: var(--rose-gold);
  background: var(--deep-rose);
}

.btn-select-all:active {
  transform: scale(0.96);
}

.household-option input {
  width: 18px;
  height: 18px;
}

.btn-primary {
  display: inline-block;
  box-sizing: border-box;
  background: var(--navy);
  color: var(--eggshell);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: normal;
  cursor: pointer;
  margin-top: 16px;
  transition: background-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary:hover:not(:disabled) {
  background: var(--deep-rose);
  box-shadow: 0 2px 8px rgba(31, 46, 70, 0.25);
}

.btn-primary:active:not(:disabled) {
  transform: scale(0.96);
  background: var(--deep-rose);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.discount-banner {
  background: #DCEAD9;
  color: #3F6B47;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-weight: 500;
}

.product-card {
  cursor: default;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(31, 46, 70, 0.15);
}

.product-card .image-wrap {
  position: relative;
  border-radius: 8px 8px 0 0;
}

.product-card .image-wrap img {
  display: block;
  cursor: none;
}

.view-thumb-btn {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 8;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.view-thumb-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.view-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid var(--navy);
  border-radius: 50%;
  cursor: none;
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: none;
  pointer-events: none;
  z-index: 5;
}

.product-card .qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.product-card .qty-row .add-to-cart-btn {
  flex: 1;
  min-width: 120px;
}

.bubble-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  margin: 10px 0 6px;
  text-align: center;
}

.bubble-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.bubble-row[hidden] {
  display: none;
}

.size-row-youth {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.bubble {
  border: 1.5px solid var(--sand);
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.15s ease;
}

.bubble:hover:not(:disabled) {
  border-color: var(--rose-gold);
}

.bubble:active:not(:disabled) {
  transform: scale(0.95);
}

.bubble.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--eggshell);
}

.bubble:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.product-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.product-card .price {
  font-weight: 500;
  color: var(--deep-rose);
  margin: 4px 0;
}

.size-hint {
  font-size: 12px;
  color: var(--ink);
  opacity: 0.6;
  text-align: right;
  white-space: nowrap;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sand);
  border-radius: 20px;
  overflow: hidden;
}

.qty-btn {
  background: var(--eggshell);
  border: none;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.qty-btn:hover {
  background: var(--blush);
}

.qty-btn:active {
  transform: scale(0.9);
}

.qty-stepper .qty-input {
  width: 36px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  -moz-appearance: textfield;
}

.qty-stepper .qty-input::-webkit-outer-spin-button,
.qty-stepper .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.size-select {
  transition: border-color 0.15s ease;
  cursor: pointer;
}

.vc-cart-summary {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--navy);
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.cart-line button {
  background: none;
  border: none;
  color: var(--deep-rose);
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
  transition: color 0.15s ease, transform 0.1s ease;
}

.cart-line button:hover {
  color: var(--navy);
}

.cart-line button:active {
  transform: scale(0.94);
}

.cart-total {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 12px 0;
}

.footer-cta-text {
  font-size: 15px;
  margin-bottom: 14px;
  opacity: 0.9;
}

.btn-footer {
  display: inline-block;
  background: var(--eggshell);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-footer:hover {
  background: var(--blush);
}

.btn-footer:active {
  transform: scale(0.96);
}
