/**
 * B6 Luxe UI v16 — 100% zoom scale, coupon ticket, profile menu, hero bleed
 */

/* Readable at default browser zoom (~125% perceived) */
@media (min-width: 1024px) {
  .store-header-inner {
    padding: 12px 22px !important;
    gap: 12px 16px !important;
  }
  .store-logo img {
    height: 50px !important;
  }
  .store-nav-desktop .store-nav-link {
    font-size: 13px !important;
    padding: 8px 10px !important;
  }
  .store-nav-desktop .store-nav-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .store-search-pill {
    padding: 11px 16px !important;
    min-height: 46px;
  }
  .store-search-input {
    font-size: 14px !important;
  }
  .store-header-actions .store-icon-btn,
  .store-header-actions .store-user-luxe-btn {
    width: 44px !important;
    height: 44px !important;
  }
  .store-header-actions .store-icon-btn svg {
    width: 24px !important;
    height: 24px !important;
  }
  .store-header-main-spacer {
    height: 78px !important;
  }
  .store-coupon-ticker {
    max-width: 280px !important;
    min-width: 240px !important;
    height: 48px !important;
  }
  .store-cat-chip-circle {
    width: 58px !important;
    height: 58px !important;
  }
  .store-cat-chip-label {
    font-size: 10px !important;
  }
}

@media (max-width: 1023px) {
  .store-logo img {
    height: 40px !important;
  }
  .store-header-actions .store-icon-btn {
    width: 40px !important;
    height: 40px !important;
  }
  .store-cat-chip-circle {
    width: 52px !important;
    height: 52px !important;
  }
}

/* Coupon ticket — stub | perforation | COPY (no overlap) */
.coupon-ticket.coupon-tick-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0;
  padding: 0 !important;
  overflow: visible !important;
  background: #fff5f8 !important;
  border: 1px solid #f3c0d4 !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.12) !important;
  min-height: 38px;
}
.coupon-ticket.coupon-tick-item::before {
  display: none !important;
}
.coupon-ticket-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 12px;
  min-width: 0;
}
.coupon-ticket .coupon-tick-label {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c2185b !important;
  flex-shrink: 0;
}
.coupon-ticket .coupon-tick-code {
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  color: #1a1218 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.coupon-ticket-perforation {
  width: 0;
  align-self: stretch;
  margin: 6px 0;
  border-left: 2px dashed #f48fb1;
  opacity: 0.9;
}
.coupon-ticket .coupon-ticket-copy,
.coupon-ticket .coupon-tick-copy {
  margin: 0 !important;
  padding: 8px 12px !important;
  border-radius: 0 9px 9px 0 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  background: linear-gradient(135deg, #e91e63, #ff6b9d) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
  flex-shrink: 0;
  height: 100%;
  min-height: 38px;
  cursor: pointer;
}
.store-coupon-ticker .coupon-ticket.coupon-tick-item.active {
  position: relative;
  opacity: 1;
  transform: none;
}
.store-coupon-mobile .coupon-ticket.coupon-tick-item {
  width: 100%;
}

/* Profile dropdown */
.store-profile-menu {
  position: relative;
}
.store-profile-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
}
.store-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f8bbd0;
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.2);
}
.store-profile-avatar--admin {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.store-profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid #f3ecef;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(26, 18, 24, 0.14);
  padding: 8px 0;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.store-profile-menu.is-open .store-profile-dropdown,
.store-profile-menu:hover .store-profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.store-profile-dropdown-head {
  padding: 10px 14px 8px;
  border-bottom: 1px solid #f5eef1;
  margin-bottom: 4px;
}
.store-profile-dropdown-head strong {
  display: block;
  font-size: 14px;
  color: #1a1218;
}
.store-profile-dropdown-head small {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}
.store-profile-dropdown a,
.store-profile-logout {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.store-profile-dropdown a:hover,
.store-profile-logout:hover {
  background: #fff5f8;
  color: #e91e63;
}
.store-profile-admin-link {
  font-weight: 600;
  color: #9c27b0 !important;
}
.store-profile-logout,
.store-profile-logout-link {
  color: #e74c3c !important;
  border-top: 1px solid #f5eef1;
  margin-top: 4px;
}
@media (max-width: 1023px) {
  .store-profile-menu:hover .store-profile-dropdown {
    opacity: 0;
    visibility: hidden;
  }
  .store-profile-menu.is-open .store-profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Hero — full width, no white gutters; light curtains only */
.page-home .hero-app {
  background: transparent !important;
  padding: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.page-home .hero-app.hero-peek-mobile {
  margin-top: 4px !important;
  padding: 0 !important;
}
.page-home .hero-app.hero-peek-mobile .hero-app-track-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  .page-home .hero-app.hero-peek-mobile .hero-app-track-wrap {
    border-radius: 0 !important;
  }
  .page-home .hero-app-slide {
    border-radius: 0 !important;
    max-height: 360px !important;
  }
  .hero-peek-mobile .hero-app-track {
    padding: 0 !important;
    gap: 0 !important;
  }
}
@media (min-width: 1024px) {
  .page-home .hero-app-slide {
    max-height: 400px !important;
    aspect-ratio: 3 / 1 !important;
  }
}
.hero-curtain {
  background: linear-gradient(180deg, #fff 0%, #faf5f7 100%) !important;
}
.store-header-actions {
  gap: 2px !important;
}
