.m-1 {
  margin: .25rem!important;
}

.mx-auto {
  margin-right: auto!important;
  margin-left: auto!important;
}

.mt-0 {
  margin-top: 0!important;
}

.mt-3 {
  margin-top: 1rem!important;
}

.mt-4 {
  margin-top: 1.5rem!important;
}

.mt-5 {
  margin-top: 3rem!important;
}

.mt-6 {
  margin-top: 4.5rem !important;
}

.me-0 {
  margin-right: 0!important;
}

.me-1 {
  margin-right: .25rem!important;
}

.me-2 {
  margin-right: .5rem!important;
}

.mb-0 {
  margin-bottom: 0!important;
}

.mb-1 {
  margin-bottom: .25rem!important;
}

.mb-2 {
  margin-bottom: .5rem!important;
}

.mb-3 {
  margin-bottom: 1rem!important;
}

.mb-4 {
  margin-bottom: 1.5rem!important;
}

.mb-5 {
  margin-bottom: 3rem!important;
}

.ms-0 {
  margin-left: 0!important;
}

.ms-1 {
  margin-left: .25rem!important;
}

.p-0 {
  padding: 0!important;
}

.p-2 {
  padding: .5rem!important;
}

.p-3 {
  padding: 1rem!important;
}

.p-4 {
  padding: 1.5rem!important;
}

.py-2 {
  padding-top: .5rem!important;
  padding-bottom: .5rem!important;
}

.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}

.py-4 {
  padding-top: 1.5rem!important;
  padding-bottom: 1.5rem!important;
}

.py-5 {
  padding-top: 3rem!important;
  padding-bottom: 3rem!important;
}

.pt-4 {
  padding-top: 1.5rem!important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pe-4 {
  padding-right: 1.5rem!important;
}

.pb-0 {
  padding-bottom: 0!important;
}

.pb-3 {
  padding-bottom: 1rem!important;
}

.pb-4 {
  padding-bottom: 1.5rem!important;
}

.ps-4 {
  padding-left: 1.5rem!important;
}

@media (min-width:576px) {
  .p-sm-4 {
    padding: 1.5rem!important;
  }
}

@media (min-width:1200px) {
  .py-xl-5 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
  }
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 8px;
  background: var(--bs-body-bg);
  color: var(--bs-emphasis-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .55s, box-shadow .55s;
  margin-bottom: 4px;
}

.google-btn:hover {
  background: var(--bs-highlight-color);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  color: var(--bs-body-bg);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 9px 0;
  color: #aaa;
  font-size: 13px;
}

.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.auth-divider span {
  padding: 0 10px;
}

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bs-body-bg);
  padding: 32px 28px;
  border-radius: var(--bs-border-radius);
  box-shadow: .5rem .5rem 1rem var(--bs-border-color-translucent);
  text-align: center;
  animation: fadeIn .7s ease;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 6px;
  margin-top: 6px;
}

.auth-subtitle {
  color: var(--bs-primary);
  font-size: .95rem;
  margin-bottom: 22px;
}

.auth-card input {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 8px;
  background: var(--bs-bg-soft);
  font-size: .95rem;
  transition: .2s ease;
}

.auth-card input:focus {
  border-color: var(--bs-info);
  outline: 0;
}

.tos-check {
  margin-bottom: 14px;
}

input[type= "checkbox" ] {
  width: 15px!important;
  margin: 4px 10px;
  padding: 0!important;
  height: 15px;
}

.form-check-input:checked {
  background: url( "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%236a8a72' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e" );
  border-color: var(--bs-primary-bg-subtle);
}

.tos-check a {
  text-decoration: underline;
}

.auth-error {
  display: none;
  background: rgba(var(--bs-danger-rgb), .15);
  color: var(--bs-danger);
  padding: 10px 14px;
  border-radius: var(--bs-border-radius-sm);
  font-size: .9rem;
  margin-bottom: 14px;
  border: 1px solid rgba(var(--bs-danger-rgb), .4);
}

.auth-success {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--bs-border-radius-sm);
  background: rgba(var(--bs-success-rgb), .15);
  color: var(--bs-info);
  border: 1px solid rgba(var(--bs-success-rgb), .4);
  display: none;
}

.auth-btn {
  background: var(--bs-primary-text-emphasis);
  display: inline-block;
  color: var(--bs-light-bg-subtle);
  text-decoration: none;
  text-transform: capitalize;
  font-family: Sans-serif;
  font-size: 18px;
  padding: 4px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: .2s ease;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), .35);
  border: 0;
}

.auth-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), .45);
}

.auth-links {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
}

.auth-links a {
  color: var(--bs-emphasis-color);
  font-size: .9rem;
  text-decoration: none;
  transition: .2s ease;
}

.auth-links a:hover {
  opacity: .8;
  color: var(--bs-primary-text-emphasis);
}

.profile-page {
  padding: 80px 0 40px;
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
}

.profile-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.profile-card {
  background: var(--bs-bg-card);
  border-radius: var(--bs-border-radius);
  padding: 20px 18px;
  box-shadow: var(--bs-box-shadow);
  animation: fadeIn .4s ease;
}

.profile-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.profile-info p {
  margin-bottom: 8px;
  font-size: .95rem;
}

.profile-info strong {
  color: var(--bs-primary);
}

.logout-btn {
  margin-top: 16px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--bs-border-radius-pill);
  background: var(--bs-danger);
  color: #fff;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}

.logout-btn:hover {
  opacity: .9;
}

.orders-list {
  background: var(--bs-bg-soft);
  padding: 14px;
  border-radius: var(--bs-border-radius-sm);
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid var(--bs-border-color-translucent);
}

.orders-list p {
  color: var(--bs-text-muted);
}

#changePassForm input {
  color: var(--bs-body-color);
  font-size: .95rem;
}

#changePassForm input:focus {
  border-color: var(--bs-primary);
  outline: 0;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

@media (max-width:768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:600px) {
  .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width:480px) {
  .auth-card {
    padding: 26px 22px;
  }
}

@media (max-width:480px) {
  .auth-title {
    font-size: 1.6rem;
  }
}

img {
  -webkit-touch-callout: none;
}

.cart-page {
  padding: 20px 0 40px;
  min-height: 70vh;
}

.cart-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--bs-primary);
}

.cart-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
  display: none;
}

.cart-items {
  background: var(--bs-bg-card);
  padding: 24px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bs-border-color-translucent);
}

.cart-item:last-child {
  border-bottom: 0;
}

.cart-item-image {
  width: 100px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-bg-soft);
  cursor: pointer;
}

.qty-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.cart-item-details h3 {
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
  margin: 0;
}

.cart-item-details h3:hover {
  color: var(--bs-primary);
}

.cart-item-category {
  font-size: .85rem;
  color: var(--bs-text-muted);
  margin: 0;
}

.cart-item-stock {
  font-size: .8rem;
  color: var(--bs-primary);
  margin: 4px 0 0 0;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bs-bg-soft);
  border-radius: var(--bs-border-radius-pill);
  padding: 4px 10px;
}

.qty-btn {
  background: none;
  border: 0;
  color: var(--bs-body-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: .2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  color: var(--bs-light-bg-subtle);
  background: var(--bs-primary);
  border-radius: 5px;
}

.qty-input {
  width: 30px;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--bs-body-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 4px;
}

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

.cart-item-price {
  font-size: 1.5rem;
  font-weight: 1000;
  color: var(--bs-primary);
  align-self: center;
  min-width: 80px;
  text-align: center!important;
}

.cart-item-remove {
  background: rgba(var(--bs-danger-rgb), .15);
  color: var(--bs-primary);
  border: 0;
  padding: 4px 6px;
  border-radius: 15px;
  cursor: pointer;
  font-size: .7rem;
  font-weight: 600;
  transition: .2s ease;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.cart-item-remove:hover {
  background: rgba(var(--bs-danger-rgb), .25);
}

.compo {
  text-align: center;
  display: grid;
}

.cart-summary {
  background: var(--bs-bg-card);
  padding: 24px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  position: sticky;
  top: 110px;
  width: -webkit-fill-available;
  max-width: 400px;
}

.cart-summary h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cart-summary .gs-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bundle-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--bs-border-radius-pill);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.bundle-banner {
  background: var(--bs-bg-card);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 2px solid var(--bs-primary);
  animation: fadeIn .4s ease;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bundle-banner.applied {
  color: #fff;
  border: 0;
  background: radial-gradient(circle,var(--bs-primary) 25%, var(--bs-danger) 74%);
}

.bundle-banner.pending {
  background: var(--bs-bg-soft);
  border: 2px dashed var(--bs-primary);
}

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

.bundle-banner-content {
  flex: 1;
}

.bundle-banner-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bundle-banner-body {
  font-size: .9rem;
  line-height: 1.5;
}

.bundle-banner-body p {
  margin: 4px 0;
}

.bundle-banner-body strong {
  font-weight: 700;
}

.bundle-savings {
  margin-top: 8px;
  font-size: 1rem;
}

.bundle-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, .3);
  border-radius: 10px;
  overflow: hidden;
  margin: 12px 0 8px 0;
}

.bundle-progress-bar {
  height: 100%;
  background: var(--bs-primary);
  transition: width .3s ease;
}

.bundle-progress-text {
  font-size: .85rem;
  color: var(--bs-text-muted);
  margin-bottom: 12px;
}

.bundle-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--bs-primary);
  color: #fff;
  border-radius: var(--bs-border-radius-pill);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: .2s ease;
}

.bundle-cta:hover {
  opacity: .9;
  transform: translateX(4px);
}

.discount-amount {
  color: var(--bs-success);
  font-weight: 700;
}

@media (max-width:1100px) {
  .cart-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width:900px) {
  .cart-summary {
    position: static;
  }
}

@media (max-width:600px) {
  .cart-item {
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width:600px) {
  .cart-item-image {
    width: 80px;
  }
}

@media (max-width:600px) {
  .cart-item-details {
    flex: 1;
    min-width: 150px;
  }
}

@media (max-width:600px) {
  .cart-item-quantity {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width:600px) {
  .cart-item-price {
    width: auto;
    text-align: left;
  }
}

@media (max-width:600px) {
  .bundle-banner applied {
    flex-direction: column;
    text-align: center;
    justify-items: center;
  }
}

.bundle-banner.applied .bundle-banner-title {
  animation: blink-animation 2s steps(20, start) infinite;
}

@media (max-width:600px) {
  .bundle-banner-icon {
    font-size: 2.5rem;
  }
}

.summary-divider {
  height: 1px;
  background: var(--bs-border-color, #e5e7eb);
  margin: .5rem 0;
}

.coupon-block {
  margin: 1rem 0 .5rem;
}

.coupon-input-row {
  display: flex;
  gap: .4rem;
}

.coupon-input-row input[type= "text" ] {
  flex: 1;
  min-width: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: border-color .2s;
  margin-bottom: 0;
}

.coupon-input-row input[type= "text" ]:focus {
  outline: 0;
  border-color: var(--bs-primary, #000);
}

.coupon-input-row input:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.gs-btn-coupon {
  padding: .55rem .875rem;
  background: var(--bs-primary, #111);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity .2s;
}

.gs-btn-coupon:hover {
  opacity: .82;
}

.gs-btn-coupon-remove {
  padding: .55rem .6rem;
  background: transparent;
  color: #999;
  border: 1.5px solid var(--bs-border-color, #e5e7eb);
  border-radius: 8px;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
  transition: color .2s, border-color .2s;
  line-height: 1;
}

.gs-btn-coupon-remove:hover {
  color: #ef4444;
  border-color: #ef4444;
}

.coupon-feedback {
  margin-top: .4rem;
  font-size: .82rem;
  min-height: 1.1em;
}

.coupon-feedback.success {
  color: #10b981;
  font-weight: 600;
}

.coupon-feedback.error {
  color: #ef4444;
}

.coupon-row .discount-amount {
  color: #10b981;
  font-weight: 700;
}

.shipping-estimate-row {
  font-size: .9rem;
}

.shipping-estimate-row small {
  font-size: .78rem;
}

.shipping-note {
  font-size: .8rem;
  color: var(--bs-secondary-color, #888);
  margin: .5rem 0;
  text-align: center;
}

.category-page {
  padding-top: 80px;
  min-height: 100vh;
}

.category-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 0;
}

.cat-sidebar-spacer {
  flex: 0 0 260px;
  min-width: 260px;
}

.category-main {
  flex: 1;
  min-width: 0;
  padding: 24px 0 60px 24px;
}

.category-topbar {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.category-title {
  font-family: Anta, sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  margin: 0;
}

.cat-result-count {
  font-size: 13px;
  opacity: .45;
  font-family: Lato, sans-serif;
  letter-spacing: .3px;
}

.cat-sidebar {
  position: fixed;
  top: 15%;
  left: 0;
  width: 260px;
  height: 81vh;
  overflow-y: auto;
  padding: 80px 0 40px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-light-bg-subtle);
  z-index: 200;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: var(--bs-secondary) transparent;
  border-radius: 0 15px 15px 0;
  font-family: 'Acme';
}

.cat-sidebar::-webkit-scrollbar {
  width: 4px;
}

.cat-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.cat-sidebar::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 4px;
}

.cat-sidebar-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--bs-primary);
  margin-bottom: 8px;
}

.cat-sidebar-title {
  font-family: Anta, sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: var(--bs-dark);
}

.cat-sidebar-close {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--bs-dark);
  opacity: .5;
  padding: 0;
  transition: opacity .15s;
}

.cat-sidebar-close:hover {
  opacity: 1;
}

.cat-sidebar-body {
  padding: 8px 0;
}

.cat-filter-section {
  border-bottom: 1px solid var(--bs-border-color);
  padding: 0;
}

.cat-filter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  user-select: none;
  transition: opacity .15s;
}

.cat-filter-heading:hover {
  opacity: .7;
}

.cat-chevron {
  font-size: 12px;
  opacity: .5;
  transition: transform .2s;
}

.cat-filter-body {
  padding: 4px 20px 16px;
  overflow: hidden;
  transition: max-height .2s ease;
  text-transform: uppercase;
}

.cat-filter-body.collapsed {
  display: none;
}

.cat-badge-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  opacity: .4;
  margin: 10px 0 4px;
}

.cat-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 12px;
  font-family: Lato, sans-serif;
}

.cat-check-item input[type= "checkbox" ] {
  width: 15px;
  height: 15px;
  accent-color: var(--bs-secondary);
  cursor: pointer;
  flex-shrink: 0;
}

.cat-check-item:hover span {
  opacity: .75;
}

.cat-filter-hint {
  font-size: 12px;
  opacity: .5;
  margin: 6px 0 0;
}

.cat-filter-hint a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cat-filter-hint a:hover {
  opacity: .8;
}

.cat-reset-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  margin: 16px 20px 8px;
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--bs-border-color);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12.5px;
  font-family: Lato, sans-serif;
  font-weight: 600;
  color: var(--bs-dark);
  letter-spacing: .3px;
  transition: all .18s;
}

.cat-reset-btn:hover {
  background: var(--bs-primary);
  color: var(--bs-light);
}

.cat-nav-all {
  display: block;
  padding: 7px 20px;
  font-size: 13.5px;
  text-decoration: none;
  color: var(--bs-dark);
  border-radius: 0;
  transition: background .15s;
  font-weight: 700;
  text-transform: uppercase;
}

.cat-nav-all:hover {
  background: var(--bs-light);
}

.cat-nav-all.active {
  color: var(--bs-danger);
}

.cat-nav-group {
  margin-bottom: 2px;
}

.cat-nav-group-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 8px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 13.5px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  color: var(--bs-dark);
  text-align: left;
  transition: background .15s;
  text-transform: uppercase;
}

.cat-nav-group-btn:hover {
  background: var(--bs-dark);
}

.cat-nav-group-btn.active {
  color: var(--bs-danger);
}

.cat-nav-arrow {
  font-size: 11px;
  opacity: .45;
  transition: transform .2s;
}

.cat-nav-arrow.open {
  transform: rotate(90deg);
}

.cat-nav-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.cat-nav-children.open {
  max-height: 400px;
}

.cat-nav-child {
  display: block;
  padding: 6px 20px 6px 36px;
  font-size: 12px;
  text-decoration: none;
  color: var(--bs-dark);
  opacity: .75;
  transition: opacity .15s, background .15s;
  font-weight: 700;
  text-transform: uppercase;
}

.cat-nav-child:hover {
  opacity: 1;
  background: var(--bs-primary-bg-subtle);
}

.cat-nav-child.active {
  opacity: 1;
  font-weight: 900;
  color: var(--bs-danger);
}

.cat-nav-child-all {
  font-weight: 600;
  opacity: .9;
  border-bottom: 1px solid var(--bs-primary);
  margin-bottom: 3px;
  padding-bottom: 8px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}

.category-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bs-body-bg);
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.category-card-info {
  padding: 11px 13px 14px;
  background-color: var(--bs-light-bg-subtle);
}

.category-card-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  opacity: .6;
  display: block;
  margin-bottom: 3px;
  color: var(--bs-dark);
}

.category-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bs-dark);
}

.category-card-price {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  font-family: Anta, sans-serif;
  color: var(--bs-danger);
  text-align: right;
}

.loading {
  text-align: center;
  padding: 60px 0;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bs-primary);
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  opacity: .65;
}

.empty-icon {
  font-size: 44px;
  display: block;
  margin-bottom: 14px;
}

@media (max-width:999px) {
  .cat-sidebar {
    transform: translateX(-100%);
    padding-top: 0;
    width: 280px;
    box-shadow: 4px 0 24px rgba(0,0,0,.18);
    z-index: 1050;
  }
}

@media (max-width:999px) {
  .cat-sidebar.open {
    transform: translateX(0);
  }
}

@media (max-width:999px) {
  .cat-sidebar-header {
    display: flex;
  }
}

@media (max-width:999px) {
  .cat-sidebar-spacer {
    display: none;
  }
}

@media (max-width:999px) {
  .category-main {
    padding: 20px 0 60px;
  }
}

@media (max-width:999px) {
  .cat-sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1040;
  }
}

@media (max-width:999px) {
  .cat-sidebar-backdrop.show {
    display: block;
  }
}

@media (max-width:999px) {
  .cat-sidebar-tab {
    position: fixed;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1045;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 7px;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-primary);
    border-left: 0;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    box-shadow: 3px 0 12px rgba(0,0,0,.1);
    transition: opacity .2s, transform .2s;
    color: var(--bs-primary);
  }
}

@media (max-width:999px) {
  .cat-sidebar-tab:hover {
    opacity: .85;
  }
}

@media (max-width:999px) {
  .cat-sidebar-tab.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(-20px);
  }
}

@media (max-width:999px) {
  .cat-tab-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    font-family: Lato, sans-serif;
  }
}

@media (max-width:999px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (min-width:1000px) {
  .cat-sidebar-tab {
    display: none;
  }
}

@media (min-width:1000px) {
  .cat-sidebar-backdrop {
    display: none !important;
  }
}

@media (max-width:380px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width:380px) {
  .category-card h3 {
    font-size: 12px;
  }
}

@media (max-width:380px) {
  .category-card-price {
    font-size: 13px;
  }
}

#supportChatCard {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.sc-messages {
  height: 420px;
  overflow-y: auto;
  padding: 1.25rem 1rem;
  scroll-behavior: smooth;
}

.sc-messages::-webkit-scrollbar {
  width: 5px;
}

.sc-messages::-webkit-scrollbar-track {
  background: transparent;
}

.sc-messages::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 999px;
}

.sc-input {
  border-color: transparent !important;
  box-shadow: none !important;
  background: var(--bs-body-bg);
  border-radius: 2rem !important;
  font-size: .9rem;
  padding-left: 1rem;
}

.sc-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
}

.sc-icon-btn {
  background: var(--bs-secondary);
  border: 0;
  color: #6c757d;
  font-size: 1rem;
  padding: .4rem .5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: color .15s, background .15s;
  flex-shrink: 0;
  line-height: 1;
}

.sc-icon-btn:hover {
  color: var(--bs-primary);
  background: rgba(13, 110, 253, .08);
}

.sc-send-btn {
  color: var(--bs-primary);
}

.sc-send-btn:hover {
  color: #fff;
  background: var(--bs-primary);
}

.sc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  user-select: none;
}

.sc-avatar-sm {
  width: 32px;
  height: 32px;
  font-size: .7rem;
}

.sc-avatar-support {
  background: #1a1a2e;
  color: #fff;
}

.sc-avatar-user {
  background: var(--bs-primary);
  color: #fff;
  letter-spacing: .03em;
}

.sc-bubble {
  background: var(--bs-primary-bg-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
  color: var(--bs-dark);
}

.sc-attachment-img {
  max-width: 220px;
  max-height: 200px;
  border-radius: .75rem;
  cursor: pointer;
  object-fit: cover;
  transition: opacity .15s;
  display: block;
  margin-bottom: .25rem;
}

.sc-attachment-img:hover {
  opacity: .88;
}

.sc-image-preview {
  border-top: 1px solid var(--bs-border-color, #dee2e6);
  background: var(--bs-body-bg, #fff);
}

.sc-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
  flex-shrink: 0;
}

.sc-divider-label {
  font-size: .72rem;
  color: #adb5bd;
  white-space: nowrap;
}

.divider::after, .divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

[data-bs-theme= "dark" ] .sc-input {
  background: rgba(255, 255, 255, .06);
  color: #e9ecef;
}

[data-bs-theme= "dark" ] .divider::after, [data-bs-theme= "dark" ] .divider::before {
  background: rgba(255, 255, 255, .1);
}

[data-bs-theme= "dark" ] .sc-image-preview {
  border-color: rgba(255, 255, 255, .1);
}

[data-bs-theme= "dark" ] .sc-thumb {
  border-color: rgba(255, 255, 255, .15);
}

.sc-form-card {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

.contact-guest-notice {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: rgba(13, 110, 253, .07);
  border: 1px solid rgba(13, 110, 253, .2);
  border-radius: .6rem;
  padding: .75rem 1rem;
  font-size: .85rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.sc-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width:480px) {
  .sc-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 0 .75rem;
  }
}

.sc-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.sc-form-group label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  color: var(--bs-secondary-color, #6c757d);
}

.sc-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: .78rem;
}

.sc-form-group input, .sc-form-group select, .sc-form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: .65rem .9rem;
  font-size: 1rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
  border-radius: .6rem;
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #212529);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
  appearance: none;
}

.sc-form-group select {
  background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M6 8L0 0h12z'/%3E%3C/svg%3E" );
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
}

.sc-form-group textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.sc-form-group input:focus, .sc-form-group select:focus, .sc-form-group textarea:focus {
  outline: 0;
  border-color: var(--bs-primary, #0d6efd);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, .12);
}

.sc-upload-zone {
  border: 2px dashed var(--bs-border-color, #dee2e6);
  border-radius: .75rem;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: center;
}

.sc-upload-zone:hover, .sc-upload-zone.drag-over {
  border-color: var(--bs-primary, #0d6efd);
  background: rgba(13, 110, 253, .04);
}

.sc-upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  color: var(--bs-secondary-color, #6c757d);
  font-size: .9rem;
  pointer-events: none;
}

.sc-upload-hint {
  font-size: .75rem;
  opacity: .7;
}

.sc-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
  justify-content: center;
}

.sc-upload-previews .preview-item {
  position: relative;
  width: 72px;
  height: 72px;
}

.sc-upload-previews .preview-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid var(--bs-border-color, #dee2e6);
}

.sc-upload-previews .preview-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: #ef4444;
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sc-upload-error {
  color: #dc3545;
  font-size: .8rem;
  margin: .5rem 0 0;
}

.sc-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  min-height: 52px;
  background: var(--bs-danger);
  color: #fff;
  border: 0;
  border-radius: .75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .15s, transform .1s;
  -webkit-tap-highlight-color: transparent;
}

.sc-submit-btn:active {
  transform: scale(.98);
}

.sc-submit-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.sc-submit-btn .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

.sc-submit-btn.loading .btn-spinner {
  display: block;
}

.sc-submit-btn.loading .btn-text {
  opacity: .7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.sc-form-feedback {
  margin-top: .85rem;
  padding: .75rem 1rem;
  border-radius: .6rem;
  font-size: .875rem;
  font-weight: 500;
  display: none;
}

.sc-form-feedback:not(:empty) {
  display: block;
}

.sc-form-feedback.success {
  background: rgba(25, 135, 84, .1);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, .25);
}

.sc-form-feedback.error {
  background: rgba(220, 53, 69, .08);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, .2);
}

[data-bs-theme= "dark" ] .sc-form-group input, [data-bs-theme= "dark" ] .sc-form-group select, [data-bs-theme= "dark" ] .sc-form-group textarea {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .15);
  color: #e9ecef;
}

[data-bs-theme= "dark" ] .sc-upload-zone {
  border-color: rgba(255, 255, 255, .15);
}

[data-bs-theme= "dark" ] .sc-upload-previews .preview-item img {
  border-color: rgba(255, 255, 255, .15);
}

.sc-clear-btn {
  color: #adb5bd;
  font-size: .85rem;
}

.sc-clear-btn:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, .08);
}

.checkout-page {
  padding: 80px 0 40px;
  color: var(--bs-highlight-color);
}

.checkout-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}

.checkout-form {
  background: var(--bs-carousel-indicator-active-bg);
  padding: 24px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
}

.checkout-form h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.checkout-form input, .checkout-form select {
  margin-bottom: 14px;
  font-size: .95rem;
  transition: .2s ease;
  text-transform: uppercase;
}

.checkout-form input:focus, .checkout-form select:focus {
  border-color: var(--bs-secondary);
  outline: 0;
  background: var(--bs-light-bg-subtle);
}

.checkout-summary {
  background: var(--bs-carousel-indicator-active-bg);
  padding: 24px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  position: sticky;
  top: 90px;
}

.checkout-summary h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.dom-ready {
  background: var(--bs-danger)!important;
}

@media (max-width:900px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }
}

.shipping-methods-block {
  margin-top: 2rem;
}

.shipping-methods-block h2 {
  margin-bottom: 1rem;
}

.checkbox {
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
}

.shipping-loading {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem;
  color: var(--bs-primary);
  font-size: .9rem;
}

.spinner-sm {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,.1);
  border-top-color: var(--bs-secondary);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.shipping-unavailable {
  color: var(--bs-danger, #dc3545);
  font-size: .9rem;
  padding: .75rem;
}

.shipping-methods {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 1rem;
  border: 2px solid var(--bs-secondary);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--bs-body-bg);
  color: var(--bs-emphasis-color);
}

.shipping-option:hover {
  border-color: var(--bs-primary);
  background: var(--bs-carousel-indicator-active-bg);
}

.shipping-option.selected {
  border-color: var(--bs-primary);
  background: var(--bs-carousel-indicator-active-bg);
}

.shipping-option input[type= "radio" ] {
  width: 18px;
  height: 18px;
  accent-color: var(--bs-primary);
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}

.shipping-option-info {
  flex: 1;
}

.shipping-option-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.shipping-option-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--bs-highlight-color);
}

.shipping-option-cost {
  font-weight: 700;
  font-size: .95rem;
  color: var(--bs-highlight-color);
  white-space: nowrap;
}

.shipping-option-eta {
  display: block;
  font-size: .8rem;
  color: var(--bs-highlight-color);
  margin-top: 2px;
}

.free-badge {
  color: var(--bs-success);
  font-weight: 700;
}

.coupon-block {
  margin-top: 2rem;
}

.coupon-block h2 {
  margin-bottom: 1rem;
}

.coupon-input-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.coupon-input-row input:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.gs-btn-secondary {
  padding: .6rem 1.25rem;
  background: var(--bs-primary, #000);
  color: #fff;
  border: 2px solid var(--bs-primary, #000);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
  font-family: inherit;
  font-size: .9rem;
}

.gs-btn-secondary:hover {
  opacity: .85;
}

.gs-btn-ghost {
  padding: .6rem 1rem;
  background: transparent;
  color: var(--bs-secondary-color, #666);
  border: 2px solid var(--bs-secondary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
  font-family: inherit;
  font-size: .9rem;
}

.gs-btn-ghost:hover {
  border-color: var(--bs-danger, var(--bs-secondary));
  color: var(--bs-danger, #dc3545);
}

.coupon-feedback {
  margin-top: .5rem;
  font-size: .875rem;
  min-height: 1.2em;
}

.coupon-feedback.success {
  color: var(--bs-success);
  font-weight: 600;
}

.coupon-feedback.error {
  color: var(--bs-danger);
}

.summary-divider {
  height: 1px;
  background: var(--bs-secondary);
  margin: .5rem 0;
}

.shipping-row span:last-child {
  font-weight: 600;
}

.coupon-row span:last-child {
  font-weight: 600;
}

.checkout-error-banner {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: .875rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.payment-secure-text {
  text-align: center!important;
}

.save-address-label.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  user-select: none;
}

.save-address-label.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.save-address-label.checkbox span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: var(--bs-tertiary-bg);
  border: 2px solid var(--bs-border-color);
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 10px;
  transition: all .2s ease;
}

.save-address-label.checkbox span {
  position: relative;
}

.save-address-label.checkbox span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--bs-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

.save-address-label.checkbox input:checked ~ span::after {
  display: block;
}

.save-address-label.checkbox input:checked ~ span::before {
  border-color: var(--bs-primary);
}

.summary-item {
  margin-bottom: 15px;
  font-size: .9rem;
  text-align: left;
  border-color: var(--bs-secondary);
  border-width: 0 0 1px 0;
  border-style: solid;
}

.summary-item-name {
  white-space: pre-wrap;
}

@media (max-width:900px) {
  .summary-item-name {
    width: 370px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
  }
}

.summary-item-price {
  color: var(--bs-secondary);
  font-size: 1rem;
  font-weight: 600;
  text-align: end;
}

.summary-items {
  margin-bottom: 16px;
}

.summary-item-qty {
  text-align: start;
  color: var(--bs-secondary);
  font-weight: 600;
}

.summary-qty-prc {
  justify-content: space-between;
  display: flex;
}

.contact-page {
  padding: 4rem 0 6rem;
  min-height: 72vh;
}

.contact-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bs-primary);
  background: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-primary-border-subtle);
  padding: 4px 14px;
  border-radius: var(--bs-border-radius-pill);
  margin-bottom: .75rem;
  animation: fadeUp .4s ease both;
}

.contact-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bs-primary);
  flex-shrink: 0;
}

.contact-headline {
  font-family: 'DM Serif Display' , Anta, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  animation: fadeUp .4s .08s ease both;
}

.contact-headline em {
  font-style: italic;
  color: var(--bs-primary);
}

.contact-subline {
  font-size: 1rem;
  color: var(--bs-secondary);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 3rem;
  animation: fadeUp .4s .14s ease both;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: start;
}

@media (max-width:860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: var(--bs-body-bg);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 2.5rem;
  box-shadow: var(--bs-box-shadow);
  animation: fadeUp .45s .2s ease both;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width:520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.contact-form-card label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.contact-form-card input, .contact-form-card select, .contact-form-card textarea {
  font-family: Anta, 'DM Sans' , sans-serif;
  font-size: .95rem;
  color: var(--bs-highlight-color);
  background: var(--bs-light-bg-subtle);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: var(--bs-border-radius-sm);
  padding: .65rem .9rem;
  width: 100%;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  outline: 0;
  -webkit-appearance: none;
}

.contact-form-card input::placeholder, .contact-form-card textarea::placeholder {
  color: var(--bs-highlight-color);
}

.contact-form-card input:hover, .contact-form-card select:hover, .contact-form-card textarea:hover {
  border-color: var(--bs-primary-bg-subtle);
}

.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
  border-color: var(--bs-primary);
  background: var(--bs-secondary-bg);
  box-shadow: var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.contact-form-card textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form-card select {
  background-image: url( "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239F2C75' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E" );
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 12px;
  padding-right: 2.2rem;
  cursor: pointer;
}

.order-prefill-hint {
  font-size: .8rem;
  color: var(--bs-green);
  margin-top: 0.5rem;
  display: none;
}

.order-prefill-hint.show {
  display: block;
}

.upload-zone {
  border: 2px dashed var(--bs-border-color);
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-light-bg-subtle);
  transition: border-color .18s, background .18s;
  overflow: hidden;
}

.upload-zone.drag-over, .upload-zone:hover {
  border-color: var(--bs-primary);
  background: var(--bs-light-bg-subtle);
}

.upload-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: 1.4rem 1rem;
  cursor: pointer;
  text-align: center;
  color: var(--bs-emphasis-color);
  font-size: .88rem;
  transition: color .15s;
}

.upload-prompt:hover {
  color: var(--bs-primary);
}

.upload-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.upload-hint {
  font-size: .75rem;
  color: var(--bs-light-text-emphasis);
}

.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: .75rem;
}

.upload-previews:empty {
  display: none;
}

.preview-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--bs-border-radius-sm);
  overflow: hidden;
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  flex-shrink: 0;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.preview-remove:hover {
  background: var(--bs-danger);
}

.upload-error {
  font-size: .8rem;
  color: var(--bs-danger);
  padding: 0 .75rem .6rem;
}

.contact-submit {
  width: 100%;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-danger));
  color: var(--bs-light);
  border: 0;
  border-radius: var(--bs-border-radius-sm);
  font-family: Anta, 'DM Sans' , sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s ease, transform .15s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  box-shadow: 0 4px 20px rgba(var(--bs-primary-rgb), .35);
}

.contact-submit:hover:not(:disabled) {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), .45);
}

.contact-submit:active:not(:disabled) {
  transform: translateY(0);
}

.contact-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
  flex-shrink: 0;
}

.contact-submit.loading .btn-spinner {
  display: block;
}

.contact-submit.loading .btn-text {
  display: none;
}

.form-feedback {
  display: none;
  border-radius: var(--bs-border-radius-sm);
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-feedback.success {
  display: block;
  background: var(--bs-success-bg-subtle);
  color: var(--bs-success-text-emphasis);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-success-border-subtle);
}

.form-feedback.error {
  display: block;
  background: var(--bs-danger-bg-subtle);
  color: var(--bs-danger-text-emphasis);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-danger-border-subtle);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp .45s .28s ease both;
}

.info-card {
  background: var(--bs-body-bg);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 1.25rem 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.info-card:hover {
  box-shadow: var(--bs-box-shadow);
  border-color: var(--bs-primary-border-subtle);
  transform: translateY(-2px);
}

.info-icon {
  width: 42px;
  height: 42px;
  background: var(--bs-body-bg);
  border-radius: var(--bs-border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  align-self: center;
}

.info-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: .2rem;
}

.info-card-value {
  font-size: .97rem;
  font-weight: 600;
  color: var(--bs-highlight-color)!important;
}

.info-card-value a {
  color: var(--bs-highlight-color);
  text-decoration: none !important;
  transition: color .15s ease;
}

.info-card-value a:hover {
  color: var(--bs-link-hover-color);
}

.info-card-sub {
  font-size: .82rem;
  color: var(--bs-highlight-color);
  margin-top: .2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem 1rem;
  font-size: .85rem;
  margin-top: .4rem;
}

.hours-day {
  color: var(--bs-highlight-color);
  font-weight: 500;
  white-space: nowrap;
}

.hours-time {
  color: var(--bs-emphasis-color);
  font-weight: 400;
}

@media (max-width:820px) {
  .contact-info-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width:820px) {
  .info-card {
    flex: 1 1 200px;
  }
}

@media (max-width:480px) {
  .contact-info-panel {
    flex-direction: column;
  }
}

@media (max-width:480px) {
  .info-card {
    flex: unset;
  }
}

@media (max-width:480px) {
  .contact-form-card {
    padding: 1.5rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form-card input:focus-visible, .contact-form-card select:focus-visible, .contact-form-card textarea:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

.guest-promo-banner {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 999;
  animation: bannerSlideDown .45s cubic-bezier(.22, 1, .36, 1) both;
  background: var(--bs-secondary);
  background: linear-gradient(180deg, var(--bs-secondary) 8%, var(--bs-primary) 49%, var(--bs-secondary) 112%);
  padding: 1rem 1rem;
  height: 200px;
  align-content: center;
}

@keyframes bannerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.guest-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.guest-promo-tag {
  background: #e9b44c;
  color: #1a1a2e;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
}

.guest-promo-text {
  margin: 0;
  font-size: .95rem;
  color: #e2e8f0;
  line-height: 1.4;
}

.guest-promo-text strong {
  color: #fff;
}

.guest-promo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.guest-promo-btn-primary {
  display: inline-block;
  background: #e9b44c;
  color: #1a1a2e;
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.guest-promo-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(233, 180, 76, .45);
  color: #1a1a2e;
  text-decoration: none;
}

.guest-promo-btn-dismiss {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
  font-family: inherit;
}

.guest-promo-btn-dismiss:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

.guest-promo-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .15s;
}

.guest-promo-close:hover {
  color: #fff;
}

.guest-notice-bar {
  background: var(--bs-info-bg-subtle, #e8f4fd);
  border: 1px solid var(--bs-info-border-subtle, #b8daff);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .875rem;
  color: var(--bs-body-color);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.5;
}

.guest-notice-bar a {
  color: var(--bs-primary);
  font-weight: 600;
  text-decoration: underline;
}

#guestEmailBlock {
  margin-bottom: 8px;
}

#guestEmailBlock h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

#guestEmail {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 6px;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  color: var(--bs-highlight-color);
  font-size: .95rem;
  transition: .2s ease;
}

#guestEmail:focus {
  border-color: var(--bs-secondary);
  outline: 0;
  background: var(--bs-light-bg-subtle);
}

.guest-email-note {
  font-size: .8rem;
  color: var(--bs-secondary-color);
  margin-bottom: 20px;
  padding-left: 2px;
}

[data-bs-theme= "dark" ] .guest-notice-bar {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}

@media (max-width:600px) {
  .guest-promo-inner {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width:600px) {
  .guest-promo-banner {
    padding: 14px 44px 14px 14px;
  }
}

@media (max-width:600px) {
  .guest-promo-text {
    font-size: .85rem;
  }
}

:root {
  --gs-bg: #e8eaf0;
  --gs-bg-2: #d4d8e2;
  --gs-shadow-dark: #b8bcc8;
  --gs-shadow-light: #fff;
  --gs-shadow-d: #b8bcc8;
  --gs-shadow-l: #fff;
  --gs-primary: #5c4699;
  --gs-primary-d: #1b1254;
  --gs-text: #374151;
  --gs-text-muted: #6b7280;
  --gs-border: rgba(0,0,0,.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

i {
  color: var(--bs-light-bg-subtle);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
}

button, a, input, select {
  -webkit-tap-highlight-color: var(--bs-light-bg-subtle);
  touch-action: manipulation;
}

body, .gs-body {
  color: var(--bs-light-text-emphasis);
  -webkit-font-smoothing: antialiased;
  background-color: var(--bs-body-bg);
  color: var(--bs-light-text-emphasis);
  line-height: 1.6;
  font-family: Acme;
  transition: background-color .7s ease, color .7s ease;
}

[data-bs-theme= "dark" ] .bw-body img {
  filter: saturate(0.3);
  transition: filter .7s ease-in-out;
}

[data-bs-theme= "dark" ] .mainbanner {
  filter: saturate(0.3);
  transition: filter .7s ease-in-out;
}

.gs-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center !important;
  text-align: center;
}

.divider-wrapper {
  padding-bottom: 90px;
}

.divider {
  position: relative;
  margin-top: 1px;
  height: 1px;
}

.div-transparent:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  width: 90%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgb(48,49,51), transparent);
}

.div-arrow-down:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  background-color: #fff;
  border-bottom: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-tab-down:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: calc(50% - 10px);
  width: 20px;
  height: 14px;
  background-color: #fff;
  border-bottom: 1px solid rgb(48,49,51);
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
  border-radius: 0 0 8px 8px;
}

.div-stopper:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: calc(50% - 7px);
  width: 14px;
  height: 12px;
  background-color: #fff;
  border-left: 1px solid rgb(48,49,51);
  border-right: 1px solid rgb(48,49,51);
}

.div-dot:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -9px;
  left: calc(50% - 9px);
  width: 18px;
  height: 18px;
  background-color: var(--bs-primary);
  border: 1px solid rgb(48,49,51);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 4px #fff;
}

.btn-row {
  display: flex;
  justify-content: space-between;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bs-bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--bs-primary);
  border-radius: 4px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-to-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bs-light-text-emphasis);
}

.loading .spinner, .spinner {
  border: 4px solid rgba(255, 255, 255, .2);
  border-top: 4px solid var(--bs-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.empty, .empty-state {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--bs-bg-card);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  margin-top: 20px;
}

.empty-state .empty-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  opacity: .5;
}

.empty-state p {
  color: var(--bs-primary);
  margin-bottom: 16px;
}

#page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity .3s ease;
  background: color-mix(in srgb, var(--bs-body-bg), transparent 2%);
}

#page-loader .spinner {
  width: 42px;
  height: 42px;
}

.biglogo {
  filter: invert(100%) hue-rotate(182deg) contrast(133%) brightness(80%);
}

[data-bs-theme= "dark" ] .logo5 {
  filter: none;
}

[data-bs-theme= "dark" ] .biglogo {
  filter: none;
}

.btns-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-nua {
  background-image: linear-gradient(to right, var(--bs-secondary) 0, var(--bs-primary) 51%, var(--bs-secondary) 100%);
  white-space: nowrap;
  min-width: 115px;
}

.btn-nua {
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: .5s;
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 0 20px var(--bs-tertiary-color);
  border-radius: 10px;
  display: block;
  outline: 0;
  border: 0;
  max-width: 250px;
  display: inline-block;
  font-size: .7rem;
  min-width: 100px;
}

.btn-nua:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), .35);
  transform: translateY(-2px);
}

.gs-btn {
  display: inline-block;
  color: var(--bs-dark);
  text-decoration: none;
  text-transform: capitalize;
  font-family: Acme;
  font-size: 14px;
  padding: 5px 20px;
  border-radius: 7px;
  cursor: pointer;
  transition: .2s ease;
  border: 0;
  background: radial-gradient(circle,var(--bs-danger) 25%, var(--bs-warning) 74%);
}

.gs-btn-primary {
  background: linear-gradient(135deg, var(--bs-primary-bg-subtle), var(--bs-light-bg-subtle));
  color: var(--bs-light-text-emphasis);
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), .35);
}

.gs-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), .45);
}

.gs-btn-danger {
  background: var(--bs-danger);
  color: var(--bs-light);
}

.gs-btn-danger:hover {
  opacity: .9;
}

.NW-Badge {
  font-size: 16px;
  color: var(--bs-light);
  border-radius: 10px;
  text-transform: uppercase;
  width: 63px;
  z-index: 3;
  height: 38px;
  text-align: center;
  background-image: linear-gradient(to right, var(--bs-secondary) 0, var(--bs-primary) 51%, var(--bs-secondary) 100%);
  letter-spacing: .5px;
  text-align: center;
  align-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px var(--bs-tertiary-color);
  background-size: 200% auto;
  display: inline-block;
  transition: .5s;
  margin: 10px;
  min-width: 38px;
}

.NW-Badge:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), .35);
  transform: translateY(-1px);
}

.NS-Badge {
  font-size: 16px;
  color: var(--bs-light);
  border-radius: 100%;
  text-transform: uppercase;
  width: 30px;
  z-index: 3;
  height: 30px;
  text-align: center;
  background: var(--bs-danger);
  position: absolute;
  right: 30px;
  top: 25px;
  letter-spacing: .5px;
  text-align: center;
  align-content: center;
  cursor: pointer;
}

.NB-Badge {
  background: var(--bs-primary);
  text-align: center;
  font-size: 7px;
  line-height: 22px;
  font-family: sans-serif;
  color: var(--bs-light-bg-subtle);
  font-weight: 600;
  transform: rotate(-48deg);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .34);
  letter-spacing: 1px;
  position: absolute;
  top: 11px;
  left: -54px;
  width: 150px;
}

.NC-Badge {
  background: var(--bs-secondary);
  text-align: center;
  font-size: 10px;
  line-height: 22px;
  font-family: sans-serif;
  color: var(--bs-light-bg-subtle);
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .34);
  letter-spacing: 1px;
  position: absolute;
  top: 11px;
  right: -54px;
  width: 150px;
  text-transform: uppercase;
}

.NS-Icon {
  color: var(--bs-primary-bg-subtle);
}

.badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.product-badge-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.shop-badge, .product-badge {
  padding: 3px 6px;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 600;
  color: var(--bs-primary);
  background: var(--bs-primary-bg-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: Acme, sans-serif;
  scale: .8;
}

.shop-badge-bundle, .product-badge-bundle {
  background: rgba(255,212,224,.71);
  color: var(--bs-primary);
  cursor: pointer;
  text-align: center;
}

.shop-badge-bundle {
  border-radius: 15px;
  max-width: 130px;
}

.shop-badge-bundle:hover {
  background: var(--bs-secondary-text-emphasis);
  color: var(--bs-light-bg-subtle);
}

.product-badge-bundle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(var(--bs-primary-rgb), .45);
}

.shop-badge-custom {
  background: rgba(255,255,255,.52);
  color: var(--bs-primary);
}

.product-badge-custom {
  background: var(--bs-warning-text-emphasis);
  color: var(--bs-light-bg-subtle);
}

.header {
  width: 100%;
  background: var(--bs-body-bg);
  padding: 14px 0;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 90px;
  margin-bottom: 1em;
  font-family: Acme;
  position: sticky;
}

.nav-container {
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-secondary);
  letter-spacing: .5px;
  transition: .2s ease;
  display: contents;
}

.logo:hover {
  opacity: .85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-left: 10px;
}

.nav-links a {
  color: var(--bs-secondary);
  font-weight: 500;
  font-size: .95rem;
  transition: .2s ease;
  text-transform: uppercase;
  text-align: center;
  width: inherit;
}

.nav-links a:hover {
  color: var(--bs-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icon {
  color: var(--bs-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .2s ease;
}

.nav-btn {
  color: var(--bs-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .2s ease;
  border: none;
  background: none;
}

.nav-icon:hover {
  color: var(--bs-primary);
}

.nav-icon span {
  font-weight: 600;
}

.nav-auth {
  color: var(--bs-secondary);
  margin: 5px 10px;
  text-transform: uppercase;
}

.nav-auth:hover {
  color: var(--bs-primary);
}

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.user-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bs-light);
  color: var(--bs-secondary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.user-menu:hover .user-icon {
  opacity: .9;
}

.user-dropdown {
  position: absolute;
  top: 32px;
  right: 0;
  background: var(--bs-light-bg-subtle);
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  padding: 14px;
  min-width: 180px;
  display: none;
  flex-direction: column;
  animation: fadeIn .2s ease;
  z-index: 10000;
}

.user-menu:hover .user-dropdown {
  display: flex;
}

.user-dropdown .user-email {
  font-size: .85rem;
  color: var(--bs-light);
  margin-bottom: 10px;
  color: var(--bs-emphasis-color);
}

.user-dropdown a {
  padding: 8px 0;
  color: var(--bs-light);
  font-size: .95rem;
  transition: .2s ease;
  color: var(--bs-emphasis-color);
  padding: 6px;
}

.user-dropdown a:hover {
  color: var(--bs-light);
  background: var(--bs-primary);
  border-radius: 6px;
}

.menu-btn {
  display: none;
  font-size: 1.7rem;
  background: none;
  border: 0;
  color: var(--bs-secondary);
  cursor: pointer;
  transition: .2s ease;
}

.menu-btn:hover {
  color: var(--bs-primary);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 18px;
  margin: 12px 16px;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
  position: fixed;
  top: 90px;
  left: 5%;
  right: 5%;
  width: 90%;
  z-index: 10000;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  background: var(--bs-light-bg-subtle);
}

.mobile-menu a {
  padding: 14px 4px;
  color: var(--bs-secondary);
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--bs-border-color-translucent);
  transition: color .2s ease, padding-left .2s ease;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu a:hover {
  color: var(--bs-primary);
  padding-left: 10px;
}

.mobile-user-info {
  padding: 10px 0;
  font-size: .9rem;
  color: var(--bs-primary);
  border-bottom: 1px solid var(--bs-border-color-translucent);
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

#mobileAuthArea {
  display: none;
}

#theme-toggle-btn {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  transition: all .3s ease;
  background-color: var(--bs-primary-bg-subtle);
  color: var(--bs-primary);
  opacity: .3;
}

#theme-toggle-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

#theme-toggle-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

[data-bs-theme= "dark" ] .sun-icon {
  display: block;
}

[data-bs-theme= "dark" ] .moon-icon {
  display: none;
}

[data-bs-theme= "light" ] .sun-icon {
  display: none;
}

[data-bs-theme= "light" ] .moon-icon {
  display: block;
}

.banner-scroller-wrapper {
  overflow: hidden;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  height: 20px;
  display: flex;
  align-items: center;
  background: var(--bs-body-bg);
  border-bottom-style: groove;
  border-color: var(--bs-secondary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.banner-scroller-wrapper .banner-scroller-content {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  animation: slide-to-left 50s linear infinite;
  opacity: 1;
}

.banner-scroller-wrapper:hover .banner-scroller-content {
  animation-play-state: paused;
}

.banner-scroller-wrapper .banner-scroller-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.banner-scroller-text {
  min-width: 400px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--bs-secondary);
}

.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: none;
  z-index: 999;
}

.mini-cart-overlay.show {
  display: block;
}

.mini-cart {
  position: fixed;
  top: 7em;
  right: -400px;
  width: 340px;
  height: 80vh;
  background: var(--bs-bg-card);
  box-shadow: var(--bs-box-shadow);
  padding: 20px;
  transition: right .3s ease;
  z-index: 11000;
  display: flex;
  flex-direction: column;
  background: var(--bs-light-bg-subtle);
  border-radius: 20px 0 0 20px;
}

.mini-cart.show {
  right: 0;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
  color: var(--bs-light-bg-subtle);
  background: var(--bs-secondary-text-emphasis);
  border-radius: 10px 10px 0 0;
  padding: 2px 10px;
}

.mini-cart-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

#miniCartClose {
  background: none;
  border: 0;
  font-size: 1.6rem;
  color: var(--bs-light-bg-subtle);
  cursor: pointer;
}

.mini-cart-items {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bs-secondary-text-emphasis);
  color: var(--bs-primary);
}

.mini-cart-item:last-child {
  border-bottom: 1px solid var(--bs-secondary-text-emphasis);
}

.mini-cart-item img {
  width: 60px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-bg-soft);
  border-width: 1px;
  border-color: var(--bs-primary);
  border-style: outset;
}

.mini-cart-item-info {
  flex: 1;
}

.mini-cart-item-name {
  font-size: .7rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--bs-emphasis-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100px;
}

.mini-cart-item-qty {
  font-size: .85rem;
  color: var(--bs-emphasis-color);
  font-weight: 700;
}

.mini-cart-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--bs-secondary);
}

.mini-cart-footer {
  margin-top: 16px;
}

.mini-cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--bs-secondary);
}

.bundle-row {
  color: var(--bs-secondary-text-emphasis);
  font-size: .9rem;
}

.mini-cart-btn {
  display: block;
  width: 100%;
  padding: 6px;
  margin-top: 10px;
  text-align: center;
  border-radius: var(--bs-border-radius-pill);
  background: var(--bs-secondary-text-emphasis);
  color: var(--bs-light-bg-subtle);
  font-weight: 600;
  transition: .2s ease;
}

.mini-cart-btn:hover {
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
}

.mini-cart-btn.accent:hover {
  opacity: .9;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: .95rem;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--bs-danger);
}

.total-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--bs-primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--bs-border-color-translucent);
}

.order-item:last-child {
  border-bottom: 0;
}

.order-item img {
  width: 70px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--bs-border-radius-sm);
  background: var(--bs-bg-soft);
}

.order-item-name {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.order-item-qty {
  font-size: .85rem;
  color: var(--bs-light-text-emphasis);
}

.order-item-price {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-success);
}

.footer {
  padding: 50px 0 20px;
  color: var(--bs-light-text-emphasis);
  margin-top: 60px;
  box-shadow: var(--bs-box-shadow-sm);
  background: var(--bs-body-bg);
}

.logo5 {
  resize: auto;
  max-width: 184px;
  min-width: 218px;
  filter: invert(100%) hue-rotate(182deg) contrast(133%) brightness(80%);
}

.products-grid {
  display: grid;
  justify-content: center;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  margin-top: 20px;
}

#productsGrid {
  align-content: space-between;
}

.out-of-stock {
  color: var(--bs-light-text-emphasis);
  font-size: .85rem;
  margin-bottom: 10px;
}

.stock-status {
  font-size: .95rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.stock-status.in-stock {
  color: var(--bs-light-text-emphasis);
}

.stock-status.low-stock {
  color: var(--bs-light-text-emphasis);
}

.stock-status.out-of-stock {
  color: var(--bs-light-text-emphasis);
}

@media (min-width:468px) {
  :root {
    --container-padding: 24px;
    --section-spacing: 40px;
  }
}

@media (min-width:1024px) {
  :root {
    --container-padding: 32px;
    --section-spacing: 60px;
  }
}

@media (max-width:1000px) {
  .nav-links {
    display: none;
  }
}

@media (max-width:1000px) {
  .menu-btn {
    display: block;
  }
}

@media (max-width:1000px) {
  .nav-actions {
    gap: 12px;
  }
}

@media (max-width:1000px) {
  #authArea {
    display: none !important;
  }
}

@media (max-width:1000px) {
  #mobileAuthArea {
    display: block !important;
  }
}

@media (max-width:1000px) {
  .user-dropdown {
    position: static !important;
    display: flex !important;
    background: transparent;
    box-shadow: none;
    padding: 0;
    animation: none;
  }
}

@media (max-width:1000px) {
  .user-menu:hover .user-dropdown {
    display: flex;
  }
}

@media (max-width:1000px) {
  .gs-btn {
    padding: 10px 16px;
    font-size: .9rem;
  }
}

@media (max-width:1000px) {
  #page-loader .spinner {
    width: 50px;
    height: 50px;
    border-width: 5px;
  }
}

@media (max-width:1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1.1fr);
  }
}

@media (max-width:600px) {
  .empty-state {
    padding: 40px 16px;
  }
}

@media (max-width:600px) {
  .empty-state .empty-icon {
    font-size: 3rem;
  }
}

@media (max-width:600px) {
  .empty-state h3 {
    font-size: 1.3rem;
  }
}

@media (max-width:600px) {
  .empty-state p {
    font-size: .9rem;
  }
}

@media (max-width:600px) {
  .summary-row {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}

@media (max-width:600px) {
  .total-row {
    font-size: 1.2rem;
    margin-top: 12px;
    padding-top: 12px;
  }
}

@media (min-width:601px) and (max-width:1000px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.badge-row {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge {
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.loading {
  text-align: center;
  padding: 60px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--bs-primary);
  border-top-color: var(--bs-secondary);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  opacity: .7;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--bs-secondary);
}

.empty-state a {
  text-decoration: none;
}

.lottie {
  cursor: pointer;
}

.flinks {
  color: var(--bs-secondary);
}

.flinks:hover {
  color: var(--bs-secondary-text-emphasis);
  text-decoration: underline!important;
}

.ftll {
  color: var(--bs-secondary-text-emphasis);
}

.nua-c {
  --bs-text-opacity: 1;
  color: var(--bs-border-color-translucent)!important;
}

.bbb {
  color: var(--bs-secondary)!important;
}

.bbb:hover, .nua-c:hover {
  color: var(--bs-info-text-emphasis)!important;
  transition: color 1.5s ease;
}

.mini-cart-delete-btn {
  background: transparent;
  border: 0;
  color: var(--bs-secondary);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
}

.mini-cart-delete-btn:hover {
  color: var(--bs-emphasis-color);
}

.Nproduct, .Nshop, .Nbundles, .Ncart, .Ncategory, .Ncheckout, .Ncontact, .Npassword, .Nhome, .Norders, .Nprivacy, .Nprofile, .Nwishlist, .Nsupport, .Nloading {
  width: fit-content;
  font-weight: 700;
  font-family: sans-serif;
  font-size: 30px;
  padding-bottom: 8px;
  background: linear-gradient(currentColor 0 0) 0 100% / 0 1px no-repeat;
  color: var(--bs-secondary);
}

[class^= "N" ]:before {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--bs-secondary);
  text-shadow: 0 0 6px var(--bs-primary), 0 0 6px var(--bs-secondary);
  animation: shinePulse 3s ease-in-out infinite;
  letter-spacing: .5px;
}

@keyframes shinePulse {
  0% {
    opacity: .4;
    text-shadow: 0 0 4px var(--bs-primary);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px var(--bs-secondary), 0 0 20px var(--bs-danger);
  }
  100% {
    opacity: .4;
    text-shadow: 0 0 4px var(--bs-primary);
  }
}

.Nproduct:before {
  content: "Finding your perfect pick";
}

.Nshop:before {
  content: "Curating your shopping experience";
}

.Nbundles:before {
  content: "Building the best bundle for you";
}

.Ncart:before {
  content: "Preparing your cart";
}

.Ncategory:before {
  content: "Exploring more collections";
}

.Ncheckout:before {
  content: "Almost there — final step";
}

.Ncontact:before {
  content: "We’re ready to connect";
}

.Npassword:before {
  content: "Securing your account";
}

.Nhome:before {
  content: "Welcome back to Nanushty";
}

.Norders:before {
  content: "Loading your order details";
}

.Nprivacy:before {
  content: "Protecting your information";
}

.Nprofile:before {
  content: "Personalizing your profile";
}

.Nwishlist:before {
  content: "Saving your favorites";
}

.Nsupport:before {
  content: "Here to help anytime";
}

.Nloading:before {
  content: "Just a moment…";
}

@keyframes Nmove {
  to {
    background-size: 100% 1px;
  }
}

@media (max-width:768px) {
  footer, .main-footer {
    display: none !important;
  }
}

.chat-box {
  background: var(--gs-card-bg, #fff);
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.3;
  word-break: break-word;
}

.chat-user {
  align-self: flex-end;
  background: #4f46e5;
  color: #fff;
  border-radius: 14px 14px 0 14px;
}

.chat-admin {
  align-self: flex-start;
  background: #f1f1f1;
  color: #333;
  border-radius: 14px 14px 14px 0;
}

.chat-time {
  font-size: .7rem;
  opacity: .6;
  margin-top: 4px;
  text-align: right;
}

.chat-input-wrap {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#chatInput {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  resize: none;
}

.msg-badge {
  position: relative;
  top: -1px;
  right: 0;
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 50%;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  animation: beat 1.5s infinite ease-in-out;
}

@keyframes beat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.user-avatar-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-initial {
  width: 100%;
  height: 100%;
  background: var(--accent-color, #333);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-img {
  opacity: 0;
  transition: opacity 5s ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.user-avatar-img.loaded {
  opacity: 1;
}

.liveBadge {
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #fff;
  animation: breathe 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(25,135,84,.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
  }
}

:root {
  --pwa-toolbar-h: 60px;
  --chat-gap: 16px;
}

.chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bs-primary, #9d174d);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 8000;
  transition: transform .25s ease, background .2s ease, opacity .25s ease, box-shadow .25s ease;
  opacity: .3;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
  background: var(--bs-secondary, #7a1040);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .32);
  opacity: 1;
}

.chat-toggle-btn.hidden {
  pointer-events: none;
  opacity: 0;
  transform: scale(.8);
}

.chat-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  height: 500px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .18), 0 2px 8px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  z-index: 7999;
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), opacity .25s ease;
  border: 1px solid rgba(0, 0, 0, .08);
  background: var(--bs-tertiary-bg);
  font-family: 'Courier New', monospace;
}

.chat-window.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.n-signature {
  text-align: center;
  color: var(--bs-border-color-translucent);
}

.n-signature span {
  letter-spacing: 1px;
  font-size: small;
}

@media (max-width:600px) {
  .chat-toggle-btn {
    bottom: 96px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }
}

@media (max-width:768px) {
  .chat-window {
    bottom: 84px;
    right: 16px;
    width: 95%;
    height: min(420px, calc(100dvh - var(--pwa-toolbar-h) - 90px));
    border-radius: 12px;
    transition: transform .22s ease, opacity .2s ease;
  }
}

@media (max-width:600px) {
  .chat-header {
    cursor: default;
  }
}

.chat-header {
  color: var(--bs-highlight-color);
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
  user-select: none;
  flex-shrink: 0;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-primary-bg-subtle);
  box-shadow: 0 0 0 2px var(--bs-secondary);
  flex-shrink: 0;
  animation: blink-animation 2s steps(10, start) infinite;
}

.chat-title {
  font-weight: 600;
  font-size: .975rem;
  letter-spacing: .01em;
  font-family: 'Courier New', monospace;
}

.chat-controls {
  display: flex;
  gap: 4px;
}

.chat-btn {
  background: var(--bs-dark);
  border: 0;
  color: var(--bs-body-bg);
  cursor: pointer;
  font-size: .82rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .18s ease;
  flex-shrink: 0;
}

.chat-btn:hover {
  background: var(--bs-primary-border-subtle);
  color: var(--bs-dark)!important;
}

.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  background: var(--bs-secondary-bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
}

.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.message {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 18px;
  line-height: 1.48;
  font-size: .875rem;
  word-break: break-word;
  animation: chat-fadeIn .26s ease both;
}

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

.bot-message {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-emphasis-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--bs-carousel-caption-color);
  font-family: 'Courier New', monospace;
}

.bot-message a {
  color: var(--bs-info);
  text-decoration: underline;
}

.user-message {
  background: var(--bs-warning-bg-subtle);
  color: var(--bs-dark-text-emphasis);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  border: 1px solid var(--bs-emphasis-color);
  font-family: 'Courier New', monospace;
}

.typing-indicator {
  display: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px 13px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  gap: 4px;
  align-items: center;
}

.typing-indicator span {
  height: 7px;
  width: 7px;
  display: inline-block;
  background: #9ca3af;
  border-radius: 50%;
  opacity: .5;
}

.typing-indicator span:nth-child(1) {
  animation: chat-bounce 1s infinite 0s;
}

.typing-indicator span:nth-child(2) {
  animation: chat-bounce 1s infinite .18s;
}

.typing-indicator span:nth-child(3) {
  animation: chat-bounce 1s infinite .36s;
}

@keyframes chat-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
}

.chat-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-top: 1px solid var(--bs-dark);
  flex-shrink: 0;
  background: var(--bs-tertiary-bg);
}

.chat-input {
  flex: 1;
  padding: 9px 13px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  outline: 0;
  font-size: .875rem;
  background: var(--bs-secondary-bg);
  color: var(--bs-emphasis-color);
  transition: border-color .18s ease, box-shadow .18s ease;
  font-size: max(16px, .875rem);
}

.chat-input:focus {
  border-color: var(--bs-dark);
  box-shadow: 0 0 0 3px var(--bs-tertiary-color);
  background: var(--bs-body-bg);
}

.chat-send-btn {
  background: var(--bs-dark);
  color: var(--bs-body-bg);
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .18s ease, transform .15s ease;
}

.chat-send-btn:hover {
  background: var(--bs-primary-border-subtle);
  color: var(--bs-dark);
}

.chat-send-btn:active {
  transform: scale(.92);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
  align-self: flex-start;
  max-width: 100%;
}

.quick-reply {
  background: #fff;
  border: 1px solid var(--bs-primary, #9d174d);
  color: var(--bs-primary, #9d174d);
  border-radius: 14px;
  padding: 5px 11px;
  font-size: .77rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}

.quick-reply:hover {
  background: var(--bs-primary, #9d174d);
  color: #fff;
}

[data-bs-theme= "dark" ] .quick-reply:hover {
  background: var(--bs-primary, #9d174d);
  color: #fff;
}

.font-lato {
  display: none!important;
}

.logo img {
  display: none;
}

html[data-bs-theme= "teal" ] .logottheme {
  display: inline-block;
}

html[data-bs-theme= "orange" ] .logootheme {
  display: inline-block;
}

html[data-bs-theme= "pink" ] .logoptheme {
  display: inline-block;
}

html[data-bs-theme= "black" ] .logobtheme {
  display: inline-block;
}

html[data-bs-theme= "light" ] .logoltheme {
  display: inline-block;
}

html[data-bs-theme= "dark" ] .logodtheme {
  display: inline-block;
}

html:not([data-bs-theme= "teal" ]):not([data-bs-theme= "orange" ]):not([data-bs-theme= "pink" ]):not([data-bs-theme= "black" ]):not([data-bs-theme= "dark" ]) .logoltheme {
  display: inline-block;
}

#contact {
  padding-bottom: 50px;
}

@keyframes blink-animation {
  50% {
    opacity: 0;
  }
}

.N1-Hero {
  padding: 2rem 1rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bs-secondary);
  background: linear-gradient(180deg, var(--bs-secondary) 8%, var(--bs-primary) 49%, var(--bs-secondary) 112%);
}

.N1-Hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bs-body-bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}

.N1-Hero-Logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  margin-bottom: .75rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

.N1-Hero-Eyebrow {
  display: inline-block;
  font-family: Lato, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #e8b46d;
  background: var(--bs-border-color-translucent);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid var(--bs-tertiary-color);
  margin-bottom: .6rem;
}

.N1-Hero h1 {
  font-family: Acme, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bs-primary-bg-subtle);
  margin-bottom: .5rem;
  line-height: 1.2;
}

.N1-Hero h1 span {
  color: #e8b46d;
}

.N1-Hero p {
  font-family: Lato, sans-serif;
  font-size: .9rem;
  color: var(--bs-primary-bg-subtle);
  margin-bottom: 1.25rem;
  padding: 0 .5rem;
}

.N1-Hero-Pills {
  display: flex;
  gap: .4rem;
  justify-content: center;
  flex-wrap: wrap;
}

.N1-Hero-Pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Lato, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--bs-primary-bg-subtle);
  background: var(--bs-border-color-translucent);
  border: 1px solid var(--bs-tertiary-color);
  border-radius: 20px;
  padding: 4px 10px;
}

.N1-Hero-Pill i {
  font-size: .65rem;
  color: #e8b46d;
}

.na-filter-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-border-color);
  padding: .6rem 0;
}

.na-filter-scroll {
  display: flex;
  align-items: center;
  gap: .4rem;
  overflow-x: auto;
  padding: 0 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.na-filter-scroll::-webkit-scrollbar {
  display: none;
}

.na-pill {
  font-family: Lato, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-body-color);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .18s;
  -webkit-tap-highlight-color: transparent;
}

.na-pill.active {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.na-sort-btn {
  flex-shrink: 0;
  margin-left: auto;
  font-family: Lato, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  cursor: pointer;
}

.na-sort-drawer {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--bs-body-bg);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
  z-index: 999;
  transition: bottom .3s ease;
  padding: 0 0 env(safe-area-inset-bottom, 16px);
}

.na-sort-drawer.open {
  bottom: 0;
}

.na-drawer-handle {
  width: 36px;
  height: 4px;
  background: var(--bs-border-color);
  border-radius: 2px;
  margin: 10px auto 16px;
}

.na-drawer-title {
  font-family: Acme, sans-serif;
  font-size: 1rem;
  color: var(--bs-highlight-color);
  padding: 0 1.25rem .75rem;
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: .5rem;
}

.na-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 1.25rem;
  font-family: Lato, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  color: var(--bs-highlight-color);
  cursor: pointer;
  border: 0;
  background: transparent;
  width: 100%;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.na-sort-option:active {
  background: var(--bs-secondary-bg);
}

.na-sort-option.active {
  color: var(--bs-primary);
}

.na-sort-option.active::after {
  content: '✓';
  color: var(--bs-primary);
  font-weight: 900;
}

.na-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 998;
  display: none;
}

.na-drawer-overlay.show {
  display: block;
}

.na-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1rem .2rem;
}

.na-results-count {
  font-family: Lato, sans-serif;
  font-size: .78rem;
  color: var(--bs-secondary-color);
}

.na-products-section {
  padding: .5rem 0 5rem;
}

.na-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  padding: 0 .65rem;
}

.na-card {
  background: var(--bs-light-bg-subtle);
  border-radius: var(--na-radius);
  overflow: hidden;
  box-shadow: var(--na-card-shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: transform .18s;
}

.na-card:active {
  transform: scale(.97);
}

.na-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bs-secondary-bg);
  border-radius: 10px;
}

.na-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.na-new-badge {
  position: absolute;
  top: 7px;
  left: 7px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  z-index: 3;
  opacity: 0;
}

.na-custom-badge {
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 3;
}

.na-card-cart-float {
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  z-index: 4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s;
  display: none;
}

.na-card-cart-float:active {
  transform: scale(.92);
}

.na-card-cart-float.in-cart {
  background: var(--bs-success);
}

.na-card-footer {
  padding: 8px 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.na-card-name {
  font-family: Acme, sans-serif;
  font-size: .78rem;
  color: var(--bs-highlight-color);
  text-transform: capitalize;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.na-card-price {
  font-family: Acme, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--bs-primary);
  text-align: right;
}

.na-loading, .na-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--bs-secondary-color);
  font-family: Lato, sans-serif;
}

.na-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bs-border-color);
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto .75rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.na-card.visible {
  animation: fadeUp .38s ease both;
}

.na-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 10px 10px;
  background: var(--bs-body-bg);
  border-top: 1px solid var(--bs-border-color);
  display: flex;
  gap: .6rem;
  z-index: 200;
  justify-content: space-between;
}

.na-cta-shop-btn {
  flex: 1;
  height: 46px;
  max-width: 320px;
  border-radius: 12px;
  border: 0;
  font-family: Lato, sans-serif;
  font-weight: 800;
  font-size: .9rem;
  background: radial-gradient(circle, var(--bs-warning) 25%, var(--bs-dark) 74%);
  color: var(--bs-primary-bg-subtle);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .15s;
}

.na-cta-shop-btn:active {
  opacity: .85;
}

.na-cta-wishlist-btn {
  height: 46px;
  width: 46px;
  border-radius: 12px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-secondary);
  color: var(--bs-secondary-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#naScrollSentinel {
  height: 1px;
}

.na-skeleton {
  background: var(--bs-light-bg-subtle);
  border-radius: var(--na-radius);
  overflow: hidden;
}

.na-skeleton-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(90deg, var(--bs-secondary-bg) 25%, var(--bs-border-color) 50%, var(--bs-secondary-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 10px;
}

.na-skeleton-text {
  padding: 8px;
}

.na-skeleton-line {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--bs-secondary-bg) 25%, var(--bs-border-color) 50%, var(--bs-secondary-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  margin-bottom: 6px;
}

.na-skeleton-line.short {
  width: 55%;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.nad-hero {
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bs-secondary);
  background: linear-gradient(180deg, var(--bs-secondary) 8%, var(--bs-primary) 49%, var(--bs-secondary) 112%);
}

.nad-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bs-body-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.nad-hero-eyebrow {
  display: inline-block;
  font-family: Lato, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8b46d;
  margin-bottom: .75rem;
  background: rgba(255,255,255,.12);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}

.nad-hero h1 {
  font-family: Acme, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.15;
}

.nad-hero h1 span {
  color: #d5b07f;
}

.nad-hero p {
  font-family: Lato, sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.nad-hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nad-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Lato, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nad-hero-badge i {
  font-size: .75rem;
  color: #e8b46d;
}

.nad-stats-bar {
  background: var(--bs-body-bg);
  padding: 1.25rem 0 0;
}

.nad-stats-inner {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.nad-stat {
  text-align: center;
}

.nad-stat-num {
  font-family: Acme, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--bs-primary);
  display: block;
}

.nad-stat-label {
  font-family: Lato, sans-serif;
  font-size: .78rem;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nad-filters-wrap {
  padding: 1.5rem 0 .5rem;
  background: var(--bs-body-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bs-border-color);
}

.nad-filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nad-filter-label {
  font-family: Lato, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--bs-secondary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  flex-shrink: 0;
}

.nad-filter-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
}

.nad-pill {
  font-family: Lato, sans-serif;
  font-size: .84rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--bs-border-color);
  background: transparent;
  color: var(--bs-body-color);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.nad-pill:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.nad-pill.active {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.nad-sort-select {
  margin-left: auto;
  font-family: Lato, sans-serif;
  font-size: .84rem;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color);
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  cursor: pointer;
  outline: 0;
}

.nad-results-count {
  font-family: Lato, sans-serif;
  font-size: .82rem;
  color: var(--bs-secondary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

.nad-products-section {
  padding: 2rem 0 4rem;
  background: var(--bs-body-bg);
}

.nad-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nad-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.nad-card {
  background: var(--bs-body-bg);
  border-radius: var(--na-radius);
  overflow: hidden;
  box-shadow: var(--na-card-shadow);
  transition: box-shadow .3s ease, transform .3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

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

.nad-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bs-secondary-bg);
  border-radius: 10px 10px 0 0;
}

.nad-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}

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

.nad-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 3;
  display: none;
}

.nad-custom-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  z-index: 3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nad-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,.80);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.nad-card:hover .na-card-overlay {
  opacity: 1;
  pointer-events: all;
}

.nad-overlay-actions {
  width: 100%;
  padding: 14px;
  display: flex;
  gap: 8px;
}

.nad-overlay-btn {
  flex: 1;
  height: 38px;
  border-radius: 10px;
  border: 0;
  font-family: Lato, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, opacity .15s;
}

.nad-overlay-btn:hover {
  transform: scale(1.03);
}

.nad-overlay-btn-primary {
  background: var(--bs-primary);
  color: #fff;
}

.nad-overlay-btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3) !important;
  flex: 0 0 38px;
  padding: 0;
}

.nad-overlay-desc {
  font-family: Lato, sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
  padding: 0 14px;
  text-align: left;
  line-height: 1.4;
  max-height: 54px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.nad-overlay-name {
  font-family: Acme, sans-serif;
  font-size: .9rem;
  color: #fff;
  padding: 12px 14px 4px;
  text-align: left;
}

.nad-card-footer {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nad-card-name {
  font-family: Acme, sans-serif;
  font-size: .85rem;
  color: var(--bs-highlight-color);
  text-transform: capitalize;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}

.nad-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.nad-card-price {
  font-family: Acme, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--bs-primary);
}

.nad-card-cart-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  font-size: .85rem;
}

.nad-card-cart-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb), .4);
}

.nad-card-cart-btn.in-cart {
  background: var(--bs-success);
}

.nad-loading, .na-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--bs-secondary-color);
  font-family: Lato, sans-serif;
}

.nad-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--bs-border-color);
  border-top-color: var(--bs-primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nad-card.visible {
  animation: fadeUp .45s ease both;
}

.nad-trust-strip {
  background: var(--bs-secondary-bg);
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 1.25rem 0;
}

.nad-trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.nad-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Lato, sans-serif;
}

.nad-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bs-primary) 25%, var(--bs-secondary) 74%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d5b07f;
  font-size: .9rem;
  flex-shrink: 0;
}

.nad-trust-text strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--bs-highlight-color);
}

.nad-trust-text span {
  font-size: .75rem;
  color: var(--bs-secondary-color);
}

.nad-cta-banner {
  background: radial-gradient(circle at 70% 50%, var(--bs-primary) 0, var(--bs-secondary) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
}

.nad-cta-banner h2 {
  font-family: Acme, sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: .75rem;
}

.nad-cta-banner p {
  font-family: Lato, sans-serif;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}

.nad-cta-btn {
  display: inline-block;
  font-family: Lato, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--bs-primary) !important;
  background: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
}

.nad-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.nad-load-more-wrap {
  text-align: center;
  padding: 2rem 0 1rem;
}

.nad-load-more-btn {
  font-family: Lato, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--bs-primary);
  border: 2px solid var(--bs-primary);
  background: transparent;
  padding: 10px 32px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s;
}

.nad-load-more-btn:hover {
  background: var(--bs-primary);
  color: #fff;
}

#naScrollSentinel {
  height: 1px;
}

@media (max-width:1100px) {
  .nad-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:800px) {
  .nad-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:800px) {
  .nad-hero h1 {
    font-size: 2.2rem;
  }
}

@keyframes scFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scZoomIn {
  from {
    transform: scale(.93);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.N-Price {
  font-size: 20px!important;
  color: var(--bs-danger);
  margin-left: 10px;
  font-family: Acme;
  font-weight: 900;
}

.form-control:focus {
  color: var(--bs-secondary);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
}

.form-control::placeholder {
  color: var(--bs-#808080);
  opacity: 1;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-secondary);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.gs_GS {
  color: var(--bs-secondary);
}

.gs_Online {
  color: var(--bs-primary);
}

.gs_hanger {
  color: var(--bs-secondary);
}

.gs_iDress {
  color: var(--bs-primary);
}

.gs-raised, .gs-raised-sm {
  box-shadow: 5px 5px 10px var(--bs-border-color-translucent), 4px 4px 10px var(--bs-border-color-translucent);
  width: 100%;
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  background: transparent;
  outline: 0;
  border: #0ff;
}

.gs-form-input {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .75rem;
  font-size: .875rem;
  color: var(--bs-emphasis-color);
  background: transparent;
  transition: all .2s ease;
  outline: 0;
  border: 0;
  box-shadow: inset 4px 4px 10px var(--bs-border-color-translucent), inset 4px 4px 10px var(--bs-border-color-translucent);
}

.form-check-input {
  width: 36px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(145deg, var(--gs-bg-2), var(--gs-bg));
  box-shadow: inset 2px 2px 4px var(--gs-shadow-dark), inset -1px -1px 3px var(--gs-shadow-light);
  transition: background .2s;
  margin-top: 0 !important;
  border-color: #b1b1b1;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.form-check-input::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background: linear-gradient(145deg, var(--gs-bg), var(--gs-bg-2));
  box-shadow: 1px 1px 3px var(--gs-shadow-dark);
  transition: left .2s;
}

.form-check-input:checked {
  background: linear-gradient(135deg, var(--gs-primary), var(--gs-primary-d));
  box-shadow: none;
  padding: 0;
}

.form-check-input:checked::after {
  left: 16px;
  background: #fff;
}

.form-check-label {
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
}

.form-check-label .text-muted {
  color: var(--gs-text-muted);
}

.index-slider-section .swiper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  max-width: 380px;
}

.index-slide-img-container {
  width: 100%;
  height: 100%;
}

.index-slide-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-slider-section .swiper-pagination-bullet-active {
  background: #cd7e95 !important;
}

.index-slider-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  background: var(--bs-danger);
}

.newestgems {
  font-family: Anta, sans-serif;
  background: linear-gradient(var(--ref-secondary-bg), var(--bs-primary) 87%);
}

.index-newsletter {
  background: linear-gradient(135deg, var(--bs-info) 0, var(--bs-primary) 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
  color: var(--bs-secondary-bg-subtle);
}

.index-newsletter h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.index-newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: .9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: .5rem;
  background: var(--bs-secondary-bg-subtle);
  padding: .5rem;
  border-radius: 50px;
}

.newsletter-input {
  flex: 1;
  border: 0;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  outline: 0;
}

.newsletter-btn {
  padding: .75rem 2rem;
  background: var(--bs-info);
  color: var(--bs-secondary-bg-subtle);
  border: 0;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--bs-success);
  transform: scale(.9);
  color: var(--bs-info);
  cursor: pointer;
}

.swiper-container {
  width: 90%;
  height: 90%;
  border-radius: 20px;
  max-width: 450px;
  max-height: 450px;
}

.swiper-pagination {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  opacity: .2;
}

#mainbanner {
  display: block;
  transition: opacity 5s ease-in-out;
}

[data-bs-theme= "dark" ] #mainbanner {
  filter: brightness(1.2);
}

@media (max-width:768px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
}

@media (max-width:768px) {
  .newsletter-input, .newsletter-btn {
    border-radius: 10px;
  }
}

.card-main {
  color: var(--bs-danger)!important;
}

.card-title {
  color: var(--bs-secondary);
}

.card-text {
  color: var(--bs-primary);
}

#newsletterToast {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bs-light-bg-subtle);
  color: var(--bs-light-text-emphasis);
  padding: 12px 18px;
  border-radius: 6px;
  z-index: 9993;
}

.nua-btn-wrapper {
  position: relative;
  display: inline-block;
}

.nua-btn {
  --border-radius: 24px;
  --padding: 4px;
  --transition: .4s;
  --button-color: var(--bs-primary);
  --highlight-color-hue: 210deg;
  user-select: none;
  display: flex;
  justify-content: center;
  padding: .5em .5em .5em 1.1em;
  font-family: Poppins, Inter, "Segoe UI" , sans-serif;
  font-size: 1em;
  font-weight: 400;
  background-color: var(--button-color);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .2), inset 0 2px 2px rgba(255, 255, 255, .15), inset 0 4px 4px rgba(255, 255, 255, .1), inset 0 8px 8px rgba(255, 255, 255, .05), inset 0 16px 16px rgba(255, 255, 255, .05), 0 -1px 1px rgba(0, 0, 0, .02), 0 -2px 2px rgba(0, 0, 0, .03), 0 -4px 4px rgba(0, 0, 0, .05), 0 -8px 8px rgba(0, 0, 0, .06), 0 -16px 16px rgba(0, 0, 0, .08);
  border: solid 1px #fff2;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: box-shadow var(--transition), border var(--transition), background-color var(--transition);
}

.nua-btn::before {
  content: "";
  position: absolute;
  top: calc(0 - var(--padding));
  left: calc(0 - var(--padding));
  width: calc(100% + var(--padding) * 2);
  height: calc(100% + var(--padding) * 2);
  border-radius: calc(var(--border-radius) + var(--padding));
  pointer-events: none;
  background-image: linear-gradient(0, #0004, #000a);
  z-index: -1;
  transition: box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 -8px 8px -6px #0000 inset, 0 -16px 16px -8px #0000 inset, 1px 1px 1px #fff2, 2px 2px 2px #fff1, -1px -1px 1px #0002, -2px -2px 2px #0001;
}

.nua-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(0, #fff, hsl(var(--highlight-color-hue), 100%, 70%), hsla(var(--highlight-color-hue), 100%, 70%, 50%), 8%, transparent);
  background-position: 0 0;
  opacity: 0;
  transition: opacity var(--transition), filter var(--transition);
}

.nua-btn-letter {
  position: relative;
  display: inline-block;
  color: #fff5;
  animation: letter-anim 2s ease-in-out infinite;
  transition: color var(--transition), text-shadow var(--transition), opacity var(--transition);
}

@keyframes letter-anim {
  50% {
    text-shadow: 0 0 3px #fff8;
    color: #fff;
  }
}

.nua-btn-svg {
  flex-grow: 1;
  height: 24px;
  margin-right: .5rem;
  fill: #e8e8e8;
  animation: flicker 2s linear infinite;
  animation-delay: .5s;
  filter: drop-shadow(0 0 2px #fff9);
  transition: fill var(--transition), filter var(--transition), opacity var(--transition);
}

@keyframes flicker {
  50% {
    opacity: .3;
  }
}

.nua-txt-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 6.4em;
}

.nua-txt-1, .nua-txt-2 {
  position: absolute;
  word-spacing: -1em;
}

.nua-txt-1 {
  animation: appear-anim 1s ease-in-out forwards;
}

.nua-txt-2 {
  opacity: 0;
}

@keyframes appear-anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.nua-btn:focus .nua-txt-1 {
  animation: opacity-anim .3s ease-in-out forwards;
  animation-delay: 1s;
}

.nua-btn:focus .nua-txt-2 {
  animation: opacity-anim .3s ease-in-out reverse forwards;
  animation-delay: 1s;
}

@keyframes opacity-anim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.nua-btn:focus .nua-btn-letter {
  animation: focused-letter-anim 1s ease-in-out forwards, letter-anim 1.2s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

@keyframes focused-letter-anim {
  0%, 100% {
    filter: blur(0);
  }
  50% {
    transform: scale(2);
    filter: blur(10px) brightness(150%) drop-shadow(-36px 12px 12px hsl(var(--highlight-color-hue), 100%, 70%));
  }
}

.nua-btn:focus .nua-btn-svg {
  animation-duration: 1.2s;
  animation-delay: .2s;
}

.nua-btn:focus::before {
  box-shadow: 0 -8px 12px -6px #fff3 inset, 0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 20%) inset, 1px 1px 1px #fff3, 2px 2px 2px #fff1, -1px -1px 1px #0002, -2px -2px 2px #0001;
}

.nua-btn:focus::after {
  opacity: .6;
  mask-image: linear-gradient(0, #fff, transparent);
  filter: brightness(100%);
}

.nua-btn-letter:nth-child(1), .nua-btn:focus .nua-btn-letter:nth-child(1) {
  animation-delay: 0s;
}

.nua-btn-letter:nth-child(2), .nua-btn:focus .nua-btn-letter:nth-child(2) {
  animation-delay: .08s;
}

.nua-btn-letter:nth-child(3), .nua-btn:focus .nua-btn-letter:nth-child(3) {
  animation-delay: .16s;
}

.nua-btn-letter:nth-child(4), .nua-btn:focus .nua-btn-letter:nth-child(4) {
  animation-delay: .24s;
}

.nua-btn-letter:nth-child(5), .nua-btn:focus .nua-btn-letter:nth-child(5) {
  animation-delay: .32s;
}

.nua-btn-letter:nth-child(6), .btn:focus .nua-btn-letter:nth-child(6) {
  animation-delay: .4s;
}

.nua-btn-letter:nth-child(7), .nua-btn:focus .nua-btn-letter:nth-child(7) {
  animation-delay: .48s;
}

.nua-btn-letter:nth-child(8), .nua-btn:focus .nua-btn-letter:nth-child(8) {
  animation-delay: .56s;
}

.nua-btn-letter:nth-child(9), .nua-btn:focus .nua-btn-letter:nth-child(9) {
  animation-delay: .64s;
}

.nua-btn-letter:nth-child(10), .nua-btn:focus .nua-btn-letter:nth-child(10) {
  animation-delay: .72s;
}

.nua-btn-letter:nth-child(11), .nua-btn:focus .nua-btn-letter:nth-child(11) {
  animation-delay: .8s;
}

.nua-btn-letter:nth-child(12), .nua-btn:focus .nua-btn-letter:nth-child(12) {
  animation-delay: .88s;
}

.nua-btn-letter:nth-child(13), .nua-btn:focus .nua-btn-letter:nth-child(13) {
  animation-delay: .96s;
}

.nua-btn:active {
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 70%);
  background-color: hsla(var(--highlight-color-hue), 50%, 20%, .5);
}

.nua-btn:active::before {
  box-shadow: 0 -8px 12px -6px #fffa inset, 0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 80%) inset, 1px 1px 1px #fff4, 2px 2px 2px #fff2, -1px -1px 1px #0002, -2px -2px 2px #0001;
}

.nua-btn:active::after {
  opacity: 1;
  mask-image: linear-gradient(0, #fff, transparent);
  filter: brightness(200%);
}

.nua-btn:active .nua-btn-letter {
  text-shadow: 0 0 1px hsla(var(--highlight-color-hue), 100%, 90%, 90%);
  animation: none;
}

.nua-btn:hover {
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 40%);
}

.nua-btn:hover::before {
  box-shadow: 0 -8px 8px -6px #fffa inset, 0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 30%) inset, 1px 1px 1px #fff2, 2px 2px 2px #fff1, -1px -1px 1px #0002, -2px -2px 2px #0001;
}

.nua-btn:hover::after {
  opacity: 1;
  mask-image: linear-gradient(0, #fff, transparent);
}

.nua-btn:hover .btn-svg {
  fill: #fff;
  filter: drop-shadow(0 0 3px hsl(var(--highlight-color-hue), 100%, 70%)) drop-shadow(0 -4px 6px #0009);
  animation: none;
}

.orders-page {
  padding: 2rem 0 4rem;
  min-height: 70vh;
}

.orders-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.orders-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted, #888);
}

.orders-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.orders-empty h2 {
  margin-bottom: .5rem;
}

.orders-empty p {
  margin-bottom: 1.5rem;
}

.gs-btn-coupon {
  display: inline-block;
  padding: .65rem 1.6rem;
  background: var(--bs-dark);
  color: var(--bs-light);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}

.gs-btn:hover {
  opacity: .85;
}

.orders-error {
  color: #c0392b;
  padding: 1rem 0;
}

.orders-wrapper {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.order-accordion {
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg, #fff);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}

.order-accordion:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}

.order-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background .15s;
}

.order-accordion-header:hover, .order-accordion-header.open {
  background: var(--hover-bg, #f7f9fb);
}

.order-header-left {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.order-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary, #1a202c);
}

.order-date {
  font-size: .82rem;
  color: var(--text-muted, #718096);
}

.order-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.order-total {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary, #1a202c);
}

.order-status {
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 20px;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-processing {
  background: #dbeafe;
  color: #1e40af;
}

.status-shipped {
  background: #e0f2fe;
  color: #0369a1;
}

.status-delivered {
  background: #dcfce7;
  color: #166534;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-refunded {
  background: #f3f4f6;
  color: #374151;
}

.status-return-requested {
  background: #fce7f3;
  color: #9d174d;
}

.order-chevron {
  font-size: 1.1rem;
  color: var(--text-muted, #718096);
  transition: transform .25s ease;
  line-height: 1;
}

.order-accordion-body {
  border-top: 1px solid var(--border-color, #e2e8f0);
  padding: 1.5rem 1.4rem;
  animation: fadeIn .2s ease;
}

.order-details-loading {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted, #718096);
  font-size: .9rem;
  padding: .5rem 0;
}

.order-details-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}

@media (max-width:768px) {
  .order-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .order-header-right {
    gap: .5rem;
  }
}

@media (max-width:768px) {
  .order-status {
    display: none;
  }
}

.order-section-title {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted, #718096);
  margin: 0 0 .85rem;
}

.order-items-section {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.order-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-color, #f1f5f9);
}

.order-item-row:last-child {
  border-bottom: 0;
}

.order-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color, #e2e8f0);
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .2rem;
  color: var(--text-primary, #1a202c);
}

.order-item-meta {
  font-size: .8rem;
  color: var(--text-muted, #718096);
}

.order-item-price {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-primary, #1a202c);
  white-space: nowrap;
}

.order-side-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.order-summary-box, .order-shipping-box, .order-actions-box {
  background: var(--surface-subtle, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: .3rem 0;
  color: var(--text-primary, #1a202c);
}

.discount-line {
  color: #16a34a;
}

.total-line {
  font-weight: 700;
  font-size: .95rem;
  border-top: 1px solid var(--border-color, #e2e8f0);
  margin-top: .3rem;
  padding-top: .5rem;
}

.order-shipping-box p {
  font-size: .87rem;
  line-height: 1.7;
  color: var(--text-primary, #1a202c);
  margin: 0;
}

.order-actions-box {
  background: var(--surface-subtle, #f8fafc);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  text-align: center;
}

.order-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--bs-primary);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  transition: all .2s ease;
  border: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.order-support-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  filter: brightness(1.1);
  color: #fff !important;
}

.order-action-btn:hover {
  background: var(--hover-bg, #f1f5f9);
  border-color: #cbd5e1;
}

.spinner-sm {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--border-color, #e2e8f0);
  border-top-color: var(--accent, #555);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.product-page {
  padding: 20px 0 30px;
  color: var(--bs-secondary-text-emphasis);
  font-family: Anta;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  animation: fadeIn .4s ease;
  justify-items: center;
}

.product-gallery {
  background: var(--bs-body-bg);
  padding: 20px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  max-width: 570px;
  justify-self: center;
  min-width: 320px;
}

.main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--bs-border-radius);
  overflow: hidden;
  background: var(--bs-bg-soft);
}

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

.thumbnails-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
}

.thumb-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--bs-primary);
  background: var(--bs-body-bg);
  color: var(--bs-secondary-text-emphasis);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, opacity .15s;
  opacity: .7;
}

.thumb-arrow:hover {
  background: var(--bs-secondary-bg);
  opacity: 1;
}

.thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0px 5px;
}

.thumbnails::-webkit-scrollbar {
  display: none;
}

.thumbnails img {
  flex-shrink: 0;
  width: 75px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s, opacity .15s;
  opacity: .65;
}

.thumbnails img:hover {
  opacity: 1;
}

.thumbnails img.active {
  opacity: 1;
  border-color: var(--bs-tertiary-color);
}

.product-info {
  background: var(--bs-body-bg);
  padding: 20px;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow);
  max-width: 600px;
  min-width: 320px;
  text-align: start;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.product-info h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
  color: var(--bs-secondary);
  border-radius: 5px 5px 20px 20px;
  padding: 12px;
  text-align: center;
}

.product-info P {
  padding-left: 10px;
  padding-right: 10px;
}

.product-category {
  font-size: .9rem;
  color: var(--bs-emphasis-color)!important;
  margin-bottom: 6px;
  font-weight: bolder;
}

.product-price {
  font-size: 3em;
  font-weight: 700;
  color: var(--bs-secondary);
  margin-left: 10px;
  margin-right: 10px;
}

.product-description {
  margin: 14px 0 20px;
  color: var(--bs-light)!important;
  line-height: 1.6;
}

.btn-wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  color: var(--bs-primary-bg-subtle);
  border: 1px solid var(--bs-primary-bg-subtle);
  border-radius: 50%;
  cursor: pointer;
  transition: .2s ease;
  opacity: .85;
  box-shadow: 0 4px 4px rgba(var(--bs-primary-rgb), .45);
  width: 35px;
  height: 35px;
  background: radial-gradient(circle,var(--bs-primary) 25%, var(--bs-secondary) 74%);
}

.btn-wishlist:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(var(--bs-primary-rgb), .45);
  scale: 1.1;
}

.btn-wishlist.active {
  background: var(--bs-light);
  border: 1px solid var(--bs-#f00);
  opacity: 1;
}

.add-btn {
  background: var(--bs-primary);
  color: var(--bs-light);
  border: 1px solid var(--bs-light-bg-subtle);
  border-radius: 10px;
  cursor: pointer;
  transition: .2s ease;
  padding: 5px 12px;
  height: 42px;
  font-weight: 800;
}

.add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(var(--bs-primary-rgb), .45);
}

.add-btn.active {
  background: var(--bs-#f00);
  color: var(--bs-light);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: var(--bs-body-bg)!important;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: var(--bs-light);
  cursor: pointer;
  z-index: 10000;
}

.modal-content-wrapper {
  width: 105%;
  max-width: 900px;
}

.modal-swiper-container {
  border-radius: 15px;
  width: 100%;
}

.modal-swiper-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 15px;
}

@media (max-width:1000px) {
  .product-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width:1000px) {
  .product-gallery, .product-info {
    width: 100%;
  }
}

@media (max-width:576px) {
  .thumbnails img {
    width: 62px;
  }
}

@media (max-width:576px) {
  .thumb-arrow {
    width: 26px;
    height: 26px;
  }
}

.shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .625rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-size: .9rem;
}

.shipping-badge-free {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: var(--bs-emphasis-color);
  width: 100%;
}

.shipping-badge-paid {
  background: var(--bs-light-bg-subtle);
  border: 1.5px solid var(--bs-border-color, #e5e7eb);
  color: var(--bs-emphasis-color);
  width: 100%;
}

[data-bs-theme= "dark" ] .shipping-badge-free {
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .3);
  color: var(--bs-emphasis-color);
  width: 100%;
}

[data-bs-theme= "dark" ] .shipping-badge-paid {
  background: rgba(255,255,255,.05);
  border-color: rgba(129,13,13,.1);
  color: var(--bs-emphasis-color);
  width: 100%;
}

.shipping-badge-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.shipping-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.shipping-badge-text strong {
  font-weight: 700;
  font-size: .9rem;
}

.shipping-badge-text small {
  font-size: .78rem;
  opacity: .8;
  margin-top: 1px;
}

.NPbadge {
  position: absolute;
  top: 15px;
  left: -55px;
  transform: rotate(-45deg);
  width: 180px;
  height: 30px;
  line-height: 30px;
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .34);
  z-index: 5;
}

.NSbadge {
  position: absolute;
  top: 15px;
  left: -55px;
  transform: rotate(-45deg);
  width: 180px;
  height: 30px;
  line-height: 30px;
  background: var(--bs-secondary);
  color: var(--bs-body-bg);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .34);
  z-index: 5;
}

.NPC-Badge {
  position: absolute;
  top: 16px;
  right: 60px;
  z-index: 11;
  color: var(--bs-body-bg);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 4px rgba(var(--bs-primary-rgb), .45);
  border: 1px solid var(--bs-primary-bg-subtle);
  background: radial-gradient(circle,var(--bs-primary) 25%, var(--bs-secondary) 74%);
}

.NPB-Badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 23px rgba(var(--bs-primary-rgb), .45);
}

.modal-swiper-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.modal-swiper-container .swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  align-items: center;
}

.modal-swiper-container .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-swiper-container .swiper-zoom-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.modal-swiper-container .swiper-zoom-container img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  user-select: none;
  -webkit-user-drag: none;
}

.modal-swiper-container .swiper-pagination {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.modal-swiper-container .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  margin: 0 4px;
  cursor: pointer;
}

.modal-swiper-container .swiper-pagination-bullet-active {
  background: #fff;
}

.image-modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
  display: flex !important;
  pointer-events: none;
}

.image-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.image-modal .modal-content-wrapper {
  transform: scale(.93) translateY(12px);
  transition: transform .28s cubic-bezier(.34, 1.26, .64, 1), opacity .28s ease;
  opacity: 0;
}

.image-modal.is-open .modal-content-wrapper {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.product-gallery {
  width: 100%;
  max-width: 600px;
}

.mainSwiper {
  height: 500px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.thumbSwiper {
  height: 100px;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumbSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: .4;
  cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #000;
  border-radius: 4px;
}

.thumbSwiper img, .mainSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.9);
}

.modalSwiper {
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
}

.modal-nav-btn {
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 28px;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .2s;
  top: 50%;
  transform: translateY(-50%);
  color: #ffd700!important;
}

.modal-nav-btn::after {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  display: none;
}

.modal-nav-btn:hover {
  background: rgba(0, 0, 0, .7);
}

.swiper-button-prev.modal-nav-btn {
  left: 12px;
}

.swiper-button-next.modal-nav-btn {
  right: 12px;
}

.swiper-button-prev .swiper-button-next {
  color: #ffd700!important;
}

@media (max-width:768px) {
  .modal-nav-btn {
    display: none !important;
  }
}

.NPbadge {
  position: absolute;
  top: 15px;
  left: -58px;
  transform: rotate(-45deg);
  width: 180px;
  height: 30px;
  line-height: 30px;
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .34);
  z-index: 5;
}

.bdg-hdr {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -26px;
  margin-bottom: 0;
  width: 100%;
  top: 30px;
}

#sizeChartModal {
  display: flex !important;
  position: fixed;
  inset: 0;
  z-index: 12001;
  background: var(--bs-body-bg);
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

#sizeChartModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.size-chart-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.92) translateY(14px);
  opacity: 0;
  transition: transform .25s cubic-bezier(.34, 1.26, .64, 1), opacity .25s ease;
}

#sizeChartModal.is-open .size-chart-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.size-chart-close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c79098;
  border: 2px solid #3b2d2d;
  color: #3b2d2d;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12002;
  transition: background .2s ease, transform .2s ease;
}

.size-chart-close:hover {
  background: #b57880;
  transform: scale(1.1);
}

#sizeChartImg {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .6);
  object-fit: contain;
}

.main-image-swiper {
  width: 100%;
  height: 100%;
}

.main-image-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.pwa-toolbar {
  display: none;
}

@media (max-width:768px) {
  .pwa-toolbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bs-light-bg-subtle);
    border-top: 1px solid var(--bs-border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .08);
    padding-bottom: env(safe-area-inset-bottom, 0);
    height: calc(80px + env(safe-area-inset-bottom, 0));
    align-items: stretch;
  }
}

@media (max-width:768px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--bs-secondary);
    font-family: Anta, sans-serif;
    font-size: 10px;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .15s ease, transform .1s ease;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn.active {
    color: var(--bs-primary);
    margin-top: 0;
    gap: 0;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .2);
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn:focus-visible {
    color: var(--bs-secondary);
    outline: 0;
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn:active {
    color: var(--bs-secondary);
  }
}

@media (max-width:768px) {
  .pwa-toolbar__btn.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    border-radius: 50%;
    background: var(--bs-primary);
    margin-top: 0;
  }
}

@media (max-width:768px) {
  .pwa-cart-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width:768px) {
  .pwa-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: var(--bs-secondary);
    color: var(--bs-primary-bg-subtle);
    font-size: 9px;
    font-family: Anta, sans-serif;
    line-height: 16px;
    text-align: center;
    display: none;
  }
}

@media (max-width:768px) {
  .pwa-cart-badge.has-items {
    display: block;
  }
}

.pwa-toolbar .dropup .dropdown-menu {
  bottom: 100%;
  top: auto;
  margin-bottom: 15px;
  transform: translateX(-25%);
  z-index: 10000;
}

.btn-theme-trigger svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.btn-theme-trigger:focus {
  box-shadow: none;
  outline: 0;
}

.pwa-toolbar__btn, .btn-theme-trigger, .dropdown-item {
}

.btn-theme-trigger {
  background: none;
  border: 0;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

.theme-switcher.dropup {
  position: relative;
}

.pwa-toolbar .dropdown-menu {
  bottom: 110% !important;
  top: auto !important;
  transform: translateX(-30%) !important;
  margin-bottom: 10px;
  border-radius: 12px;
  border: 1px solid var(--bs-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.dropdown-item[data-bs-theme-value] {
  color: var(--bs-secondary);
  background-color: transparent;
}

.dropdown-item[data-bs-theme-value]:hover, .dropdown-item[data-bs-theme-value]:focus {
  color: var(--bs-body-bg);
  background-color: var(--bs-secondary);
}

.dropdown-item[data-bs-theme-value].active, .dropdown-item[data-bs-theme-value]:active {
  color: var(--bs-border-color-translucent) !important;
  font-weight: 600;
}

.search-title {
  color: var(--bs-primary);
}

.searchInput {
  width: 50%;
  border-radius: 7px;
}

.results-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 20px;
}

.result-card {
  border-radius: 15px;
  cursor: pointer;
  transition: .3s ease;
  animation: fadeIn .4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.result-card:hover {
  scale: 97%;
}

.result-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 12px;
}

.result-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--bs-dark);
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  flex-grow: 1;
}

.result-card p {
  font-size: 25px;
  color: var(--bs-dark);
  margin-bottom: 5px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width:600px) {
  .results-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

.shop-hero {
  color: var(--bs-body-bg);
  padding: 1rem 1rem;
  text-align: center;
}

.curved {
  position: relative;
  border-bottom-left-radius: 51% 3%;
  border-bottom-right-radius: 50% 3%;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.shop-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--bs-secondary);
  text-transform: uppercase;
}

.shop-hero p {
  font-size: 1.1rem;
  opacity: .9;
  color: var(--bs-primary);
  text-transform: uppercase;
}

.shop-filters {
  padding: .5rem 0;
  background: var(--bs-danger);
  border-bottom: 1px solid var(--bs-danger-text-emphasis);
  margin-bottom: 20px;
}

.filter-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.filter-btn {
  padding: .7rem .5rem;
  border-color: var(--bs-focus-ring-color);
  background: var(--bs-secondary-bg-subtle);
  color: var(--bs-secondary-text-emphasis);
  border-radius: 25px;
  cursor: pointer;
  transition: all .3s ease;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid var(--bs-focus-ring-color);
  width: 120px;
}

.filter-btn:hover {
  border-color: var(--bs-focus-ring-color);
  color: var(--bs-secondary);
  transform: translateY(-2px);
  background: var(--bs-info);
}

.filter-btn.active {
  background: var(--bs-info);
  color: var(--bs-secondary);
  border-color: var(--bs-focus-ring-color);
  transform: none;
}

.shop-products {
  min-height: 60vh;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 5px;
}

@media (max-width:992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
}

.shop-product-card {
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.shop-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  background: var(--bs-secondary-bg);
}

/* Updated for mouse-follow zoom */

.shop-card-img-wrap .shop-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out;
  transform-origin: center center;
  will-change: transform, transform-origin;
}

/* Remove old background-size zoom (not used on <img>) */

.shop-card-img:hover {
  filter: none;
}

.shop-card-img:hover {
  filter: none;
}

.shop-badge-row {
  position: absolute;
  bottom: 1px;
  right: 1px;
  display: flex;
  z-index: 2;
}

.shop-badge-rows {
  text-align: end;
  justify-content: end;
  display: flex;
  height: 1px;
  margin-bottom: 5px;
  align-content: center;
  align-items: center;
  margin-top: 16px;
  right: 6px;
  position: absolute;
  width: 94%;
}

.shop-card-footer {
  display: flex;
  flex-direction: column;
  background: var(--bs-light-bg-subtle);
  flex-grow: 1;
}

.shop-card-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  cursor: pointer;
}

.shop-card-footers {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  align-content: center!important;
  padding: 2px 10px 10px 10px;
}

.bundle-card-footers {
  display: block;
  justify-content: space-between;
  margin-top: auto;
  text-align: right;
  padding: 2px 10px 10px 10px;
}

.shop-footer-badge-row {
  text-align: end;
  justify-content: end;
  display: flex;
  height: 1px;
  margin-bottom: 5px;
  align-content: start;
  align-items: end;
  margin-top: 30px;
  right: 4px;
  position: absolute;
}

.shop-product-name {
  font-size: 13px!important;
  color: var(--bs-highlight-color);
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  margin: 0;
  font-family: Acme, sans-serif;
  text-align: start;
  padding: 5px;
}

.shop-product-price {
  font-size: 25px!important;
  color: var(--bs-dark-text-emphasis);
  margin-left: 10px;
  align-self: center;
  font-family: Acme, sans-serif;
}

.bundle-product-price {
  font-size: 29px !important;
  color: var(--bs-danger);
  margin: 0;
  align-self: center;
  font-weight: 999;
}

.shop-card-cart-btn {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 0;
  color: var(--bs-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .5s, color .5s, transform 1s;
  align-self: center;
  background: var(--bs-danger);
  margin-right: 10px;
}

.shop-card-cart-btn:hover {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-secondary);
  transform: scale(1.3);
}

.shop-card-cart-btn.in-cart {
  background: var(--bs-success);
  color: var(--bs-light);
}

.shop-card-cart-btn.in-cart:hover {
  background: var(--bs-success-bg-subtle);
  color: var(--bs-success);
}

.shop-card-cart-btn svg {
  font-size: 25px;
}

@media (max-width:768px) {
  .shop-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width:768px) {
  .filter-row {
    gap: .5rem;
  }
}

@media (max-width:768px) {
  .filter-btn {
    padding: .6rem 1.2rem;
    font-size: .85rem;
  }
}

@media (max-width:768px) {
  .shop-card-bottom {
    position: relative;
    z-index: 5;
  }
}

@media (max-width:480px) {
  .shop-product-name {
    font-size: .8rem;
  }
}

@media (max-width:480px) {
  .shop-product-price {
    font-size: 1rem;
  }
}

.filter-dropdown {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--bs-border-color, #ccc);
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-secondary-text-emphasis);
  font-size: .9rem;
  cursor: pointer;
  min-width: 230px;
  outline: 0;
  transition: border-color .2s;
}

.filter-dropdown:focus {
  border-color: var(--bs-primary);
}

.filter-subcat-btn {
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--bs-border-color, #ccc);
  background: transparent;
  cursor: pointer;
  transition: all .18s;
  color: var(--bs-body-color);
  white-space: nowrap;
}

.filter-subcat-btn:hover {
  background: var(--bs-secondary-bg);
}

.filter-subcat-btn.active {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.filter-subcat-btn .sub-count {
  font-size: .72rem;
  opacity: .7;
  margin-left: 3px;
}

.shop-card-overlay {
  position: absolute;
  inset: 0;
  bottom: -60px;
  background: rgba(252,250,245,.73);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: flex-start;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.shop-overlay-body li {
  font-size: .7rem;
  margin-bottom: 12px;
}

.shop-overlay-body ul {
  font-size: .7rem;
  text-align: start;
  color: var(--bs-warning);
  padding: 5px 10px;
  font-family: Lato;
}

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

.shop-overlay-body {
  width: 100%;
  padding: 10px 10px;
  color: var(--bs-warning);
  transform: translateY(12px);
  transition: transform .25s ease;
  position: relative;
  max-height: 70%;
  overflow-y: auto;
}

.shop-card-overlay.open .shop-overlay-body {
  transform: translateY(0);
}

.shop-overlay-body h3 {
  font-size: .95rem;
  font-weight: 700;
  margin: 10px 0 0 6px;
  color: var(--bs-warning);
  text-transform: capitalize;
  text-align: start;
  font-family: Lato;
}

.shop-overlay-body p {
  font-size: .78rem;
  color: var(--bs-danger);
  text-align: start;
  padding: 0 12px;
  line-height: 1;
}

.shop-overlay-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.shop-overlay-specs li {
  font-size: .72rem;
  color: var(--bs-body-bg);
  padding: 2px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.shop-overlay-specs li:last-child {
  border-bottom: 0;
}

.shop-overlay-close {
  position: sticky;
  top: 2px;
  right: 0;
  background: rgba(255,255,255,.15);
  border: 0;
  color: var(--bs-body-bg);
  width: 100%;
  height: 26px;
  border-radius: 6px;
  font-size: .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  line-height: 1;
}

.shop-overlay-close:hover {
  background: rgba(255,255,255,.3);
}

.shop-overlay-goto {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 14px;
  background: var(--bs-warning);
  color: #fff;
  border: 0;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.shop-overlay-goto:hover {
  background: var(--bs-primary-hover, var(--bs-secondary-text-emphasis));
  transform: translateX(2px);
}

.shop-card-info {
  cursor: pointer;
}

.shop-card-info:hover .shop-product-name {
  color: var(--bs-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#shopPagination {
  padding: 2rem 0 2.5rem;
}

.pg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pg-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--bs-border-color, #dee2e6);
  background: var(--bs-light-bg-subtle);
  color: var(--bs-secondary-text-emphasis);
  font-size: .88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
}

.pg-btn:hover:not(:disabled):not(.pg-active) {
  background: var(--bs-secondary-bg);
  border-color: var(--bs-danger);
  color: var(--bs-danger);
  transform: translateY(-1px);
}

.pg-btn.pg-active {
  color: var(--bs-light);
  border-color: var(--bs-danger);
  cursor: default;
  box-shadow: 0 3px 10px rgba(var(--bs-primary-rgb, 13,110,253), .35);
  background: var(--bs-secondary);
}

.pg-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.pg-btn.pg-arrow {
  color: var(--bs-secondary-text-emphasis);
}

.pg-ellipsis {
  min-width: 32px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary-color);
  font-size: .9rem;
  letter-spacing: .05em;
  user-select: none;
}

@media (max-width:480px) {
  .pg-btn {
    min-width: 34px;
    height: 34px;
    font-size: .82rem;
    border-radius: 8px;
  }
}

@media (max-width:480px) {
  .pg-wrap {
    gap: 4px;
  }
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.policy-container h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.policy-container h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
}

.policy-container .meta {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.policy-container ul {
  padding-left: 1.2rem;
}

@media (max-width:600px) {
  .policy-container {
    padding: 1.5rem 1rem;
    font-size: .95rem;
  }
}

@media (max-width:600px) {
  .policy-container h2 {
    font-size: 1.2rem;
  }
}

.simple-header {
  border-bottom: 1px solid #ddd;
}

.simple-header {
  border-bottom: 1px solid #ddd;
}

.simple-brand {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--bs-secondary);
}

.simple-nav-link {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bs-primary);
}

.simple-nav-link:hover {
  text-decoration: underline;
}

.simple-header .simple-nav-link {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bs-secondary);
}

.simple-header .simple-nav-link:hover {
  text-decoration: underline;
}

.support-hero {
  padding: 72px 24px 56px;
  text-align: center;
}

.support-eyebrow {
  font-family: Anta, sans-serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: .75rem;
}

.support-hero h1 {
  font-family: Anta, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--bs-secondary);
}

.support-hero h1 span {
  color: var(--bs-danger);
}

.support-hero p {
  font-family: Nunito, sans-serif;
  font-size: 1.05rem;
  color: var(--bs-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.support-search-wrap {
  max-width: 520px;
  margin: 0 auto 3rem;
  position: relative;
}

.support-search-wrap input {
  width: 100%;
  border: 2px solid var(--bs-border-color, #ddd);
  border-radius: 50px;
  padding: .75rem 3rem .75rem 1.4rem;
  font-family: Anta;
  font-size: .95rem;
  color: var(--bs-warning);
  outline: 0;
  transition: border-color .2s;
}

.support-search-wrap input:focus {
  border-color: var(--bs-primary);
}

.support-search-wrap .search-icon {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-secondary-color, #999);
  pointer-events: auto;
  cursor: pointer;
}

#searchNoResult {
  display: none;
  text-align: center;
  color: var(--bs-secondary-color);
  font-family: Nunito, sans-serif;
  padding: 2rem 0;
}

.support-topics {
  padding: 0 24px 56px;
}

.support-topics h2 {
  font-family: Anta, sans-serif;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--bs-danger);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.topic-card {
  border: 1.5px solid var(--bs-border-color, #e5e5e5);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.topic-card:hover {
  border-color: var(--bs-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  color: inherit;
  text-decoration: none;
}

.topic-icon {
  font-size: 2rem;
  margin-bottom: .6rem;
  display: block;
}

.topic-label {
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--bs-secondary-text-emphasis);
}

.support-faq {
  padding: 0 24px 72px;
}

.support-faq h2 {
  font-family: Anta, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: .5rem;
  color: var(--bs-secondary);
}

.support-faq .faq-sub {
  text-align: center;
  font-family: Nunito, sans-serif;
  color: var(--bs-emphasis-color);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}

.faq-category {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.faq-category-title {
  font-family: Anta, sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: .75rem;
  padding-left: .25rem;
}

.faq-category .accordion-button {
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--bs-secondary);
}

.faq-category .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background: transparent;
  box-shadow: none;
}

.faq-category .accordion-body {
  font-family: Nunito, sans-serif;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--bs-secondary);
}

.faq-category .accordion-body a {
  color: var(--bs-emphasis-color);
}

.faq-item {
  color: var(--bs-secondary);
}

.support-cta {
  margin: 0 24px 80px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid var(--bs-border-color, #e5e5e5);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.support-cta h3 {
  font-family: Anta, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.support-cta p {
  font-family: Nunito, sans-serif;
  color: var(--bs-secondary);
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}

.cta-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
  text-decoration: none;
}

.cta-btn-primary {
  background: var(--bs-primary);
  color: #fff;
}

.cta-btn-outline {
  border: 2px solid var(--bs-border-color, #ddd);
  color: var(--bs-secondary);
}

.cta-btn-outline:hover {
  color: var(--bs-body-color);
}

.support-contact-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.support-footer-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1.5px solid var(--bs-border-color, #e5e5e5);
  border-radius: 50px;
  padding: .55rem 1.2rem;
  font-family: Nunito, sans-serif;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--bs-secondary);
  transition: border-color .2s, color .2s;
}

.contact-chip:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  text-decoration: none;
}

.contact-chip span:first-child {
  font-size: 1.1rem;
}

.topic-badge {
  position: absolute;
  top: 6px;
  right: 8px;
  background: var(--bs-primary);
  color: var(--bs-light-bg-subtle);
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.wishlist-card {
  background: var(--bs-body-bg);
  border-radius: 10px;
  padding: 5px;
  position: relative;
  animation: fadeIn .4s ease;
  display: flex;
  flex-direction: column;
  transition: .25s ease;
  box-shadow: var(--bs-box-shadow-sm);
}

.wishlist-card:hover {
  box-shadow: var(--bs-box-shadow);
}

.wishlist-remove {
  background: var(--bs-secondary);
  color: var(--bs-light-bg-subtle);
  border: 0;
  font-size: 1.1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: .2s ease;
}

.wishlist-remove:hover {
  background: rgba(var(--bs-danger-rgb), .25);
}

.wishlist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  cursor: pointer;
}

.wishlist-card-info h3 {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  padding: 6px;
}

.wishlist-category {
  font-size: .85rem;
  color: var(--bs-text-muted);
}

.wish {
  justify-items: end;
}

.wbtns-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-top: auto;
}

.wishlist-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--bs-primary);
}

.wishlist-add-cart {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--bs-border-radius-pill);
  background: var(--bs-primary);
  color: var(--bs-light-bg-subtle);
  font-weight: 700;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
  margin-top: auto;
  box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), .35);
}

.wishlist-add-cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(var(--bs-primary-rgb), .45);
}

.wishlist-add-cart:disabled {
  background: rgba(var(--bs-secondary-rgb), .3);
  color: var(--bs-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width:600px) {
  .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.logobtheme {
  display: none;
}

.logowtheme {
  display: none;
  transition: opacity .2s ease-in-out;
}

.copy {
  margin-left: 10px;
  margin-right: 10px;
}

.na-icon {
  color: #e8b46d;
}

