/**
 * Storefront premium layer — real e-commerce polish (cards, depth, breathing room).
 * Loaded after style.css; scoped to body.storefront-home / body.storefront-shop.
 */

:root {
  --sf-bg-page: #f4f6f9;
  --sf-bg-elevated: #ffffff;
  --sf-border: rgba(15, 23, 42, 0.08);
  --sf-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --sf-shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
  --sf-shadow-hover: 0 16px 40px rgba(15, 23, 42, 0.14);
  --sf-radius: 14px;
  --sf-radius-sm: 10px;
  --sf-accent: #d10024;
  --sf-text: #1e293b;
  --sf-muted: #64748b;
}

body.storefront-home,
body.storefront-shop {
  background-color: var(--sf-bg-page);
  color: var(--sf-text);
}

body.storefront-shop.sf-shop-premium {
  font-family: "Plus Jakarta Sans", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Compare FAB + hint: fixed only (home/welcome may override in inline styles). */
body.storefront-product .compare-count-badge,
body.storefront-shop .compare-count-badge {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 100030;
  background: #15161d;
  color: #fff;
  border: 1px solid #2b2d42;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

body.storefront-product .compare-count-badge:hover,
body.storefront-shop .compare-count-badge:hover {
  color: #fff;
  background: #2b2d42;
}

body.storefront-product .sf-compare-hint,
body.storefront-shop .sf-compare-hint {
  position: fixed;
  right: 14px;
  bottom: 58px;
  z-index: 100029;
  max-width: min(300px, calc(100vw - 28px));
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 600;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-product .sf-compare-hint.is-visible,
body.storefront-shop .sf-compare-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Main header: subtle separation */
body.storefront-home #header,
body.storefront-shop #header {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Nav bar: floating strip */
body.storefront-home #navigation,
body.storefront-shop #navigation {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-home #navigation .container,
body.storefront-shop #navigation .container {
  background: #fff;
}

/* Section rhythm (exclude footer — it has its own spacing) */
body.storefront-home .section:not(#footer > .section),
body.storefront-shop .section:not(#footer > .section) {
  padding-top: 44px;
  padding-bottom: 44px;
}

body.storefront-home .shop-by-brand-section,
body.storefront-home #new-products,
body.storefront-home #home-accessories.section {
  background: var(--sf-bg-elevated);
}

body.storefront-home .hero-banner.section {
  background: transparent;
  padding-bottom: 0;
}

/* Section titles */
body.storefront-home .section-title .title,
body.storefront-home .shop-by-brand-head .title {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.75rem;
  color: var(--sf-text);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

body.storefront-home .section-title .title {
  display: inline-block;
}

body.storefront-home .section-title .title::after,
body.storefront-home .shop-by-brand-head .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sf-accent), #ff4d5e);
}

body.storefront-home .section-title.text-left .title::after {
  left: 0;
}

body.storefront-home .section-nav .section-tab-nav li a {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 13px;
  padding: 6px 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* —— Product cards (New products, carousels) —— */
body.storefront-home .new-products-carousel .product,
body.storefront-home .products-slick .product,
body.storefront-home #new-products .product {
  margin: 10px 0 20px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: var(--sf-bg-elevated);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  -webkit-box-shadow: var(--sf-shadow-sm) !important;
  box-shadow: var(--sf-shadow-sm) !important;
}

body.storefront-home .new-products-carousel .product:hover,
body.storefront-home .products-slick .product:hover,
body.storefront-home #new-products .product:hover {
  transform: translateY(-5px);
  border-color: rgba(209, 0, 36, 0.25);
  -webkit-box-shadow: var(--sf-shadow-hover) !important;
  box-shadow: var(--sf-shadow-hover) !important;
}

body.storefront-home .new-products-carousel .product .product-img,
body.storefront-home #new-products .product .product-img {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-home .new-products-carousel .product .product-img img,
body.storefront-home #new-products .product .product-img img {
  background: transparent;
  padding: 16px;
  height: 220px;
  object-fit: contain;
}

/* New products arrows: move from bottom to left/right */
body.storefront-home #new-products .products-widget-slick,
body.storefront-home #home-accessories .products-widget-slick {
  position: relative;
}

body.storefront-home #new-products .products-slick-nav,
body.storefront-home #home-accessories .products-slick-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 14;
  pointer-events: none;
}

body.storefront-home #new-products .products-slick-nav .slick-prev,
body.storefront-home #new-products .products-slick-nav .slick-next,
body.storefront-home #home-accessories .products-slick-nav .slick-prev,
body.storefront-home #home-accessories .products-slick-nav .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  margin: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body.storefront-home #new-products .products-slick-nav .slick-prev,
body.storefront-home #home-accessories .products-slick-nav .slick-prev {
  left: -18px;
}

body.storefront-home #new-products .products-slick-nav .slick-next,
body.storefront-home #home-accessories .products-slick-nav .slick-next {
  right: -18px;
}

body.storefront-home #new-products .products-slick-nav .slick-prev:hover,
body.storefront-home #new-products .products-slick-nav .slick-next:hover,
body.storefront-home #home-accessories .products-slick-nav .slick-prev:hover,
body.storefront-home #home-accessories .products-slick-nav .slick-next:hover {
  transform: translateY(-50%) scale(1.04);
  border-color: rgba(209, 0, 36, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
}

body.storefront-home #new-products .products-slick-nav .slick-prev:before,
body.storefront-home #new-products .products-slick-nav .slick-next:before,
body.storefront-home #home-accessories .products-slick-nav .slick-prev:before,
body.storefront-home #home-accessories .products-slick-nav .slick-next:before {
  font-size: 15px;
  color: #111827;
  opacity: 1;
}

@media (max-width: 991px) {
  body.storefront-home #new-products .products-slick-nav .slick-prev,
  body.storefront-home #home-accessories .products-slick-nav .slick-prev {
    left: -8px;
  }

  body.storefront-home #new-products .products-slick-nav .slick-next,
  body.storefront-home #home-accessories .products-slick-nav .slick-next {
    right: -8px;
  }
}

@media (max-width: 575px) {
  body.storefront-home #new-products .products-slick-nav .slick-prev,
  body.storefront-home #new-products .products-slick-nav .slick-next,
  body.storefront-home #home-accessories .products-slick-nav .slick-prev,
  body.storefront-home #home-accessories .products-slick-nav .slick-next {
    width: 36px;
    height: 36px;
  }

  body.storefront-home #new-products .products-slick-nav .slick-prev,
  body.storefront-home #home-accessories .products-slick-nav .slick-prev {
    left: -4px;
  }

  body.storefront-home #new-products .products-slick-nav .slick-next,
  body.storefront-home #home-accessories .products-slick-nav .slick-next {
    right: -4px;
  }
}

/* Add-to-cart zone: light, modern bar (not heavy black block) */
body.storefront-home .product .add-to-cart {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-top: 1px solid #e2e8f0;
  padding: 12px 14px !important;
  z-index: 2;
}

body.storefront-home .product .add-to-cart .add-to-cart-btn {
  width: 100%;
  max-width: 100%;
  height: 44px;
  line-height: 1.2;
  border-radius: var(--sf-radius-sm) !important;
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%) !important;
  box-shadow: 0 4px 14px rgba(209, 0, 36, 0.35);
  font-size: 12px;
  letter-spacing: 0.06em;
  border: none !important;
  padding: 0 20px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.storefront-home .product .add-to-cart .add-to-cart-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(209, 0, 36, 0.45);
  transform: translateY(-1px);
  color: #fff !important;
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%) !important;
  border: none !important;
  padding: 0 20px !important;
}

/* Product body typography */
body.storefront-home .product .product-body {
  z-index: 1;
  padding-top: 18px;
  padding-left: 16px;
  padding-right: 16px;
}

body.storefront-home .product .product-body .product-name,
body.storefront-home .product .product-body .product-name a {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--sf-text) !important;
}

body.storefront-home .product .product-body .product-price {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Icon row: light “chips” on hover */
body.storefront-home .product .product-body .product-btns > button,
body.storefront-home .product .product-body .product-btns > form .add-to-wishlist,
body.storefront-home .product .product-body .product-btns > form button[type="submit"] {
  border-radius: 10px;
  border: 1px solid #e8ecf0;
  background: #fff;
  margin: 0 3px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

body.storefront-home .product .product-body .product-btns > button:hover,
body.storefront-home .product .product-body .product-btns > form .add-to-wishlist:hover,
body.storefront-home .product .product-body .product-btns > form button[type="submit"]:hover {
  border-color: var(--sf-accent);
  color: var(--sf-accent) !important;
  background: #fff5f5;
  box-shadow: var(--sf-shadow-sm);
}

body.storefront-home .product .product-img .product-label span.new {
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 10px;
  box-shadow: 0 2px 6px rgba(209, 0, 36, 0.35);
}

/* —— Top selling (home + wishlist page) —— */
body.storefront-home .top-selling-section,
body.storefront-wishlist .top-selling-section {
  background: var(--sf-bg-elevated);
  border-top: 1px solid var(--sf-border);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-home .top-selling-section .section-title .title,
body.storefront-wishlist .top-selling-section .section-title .title {
  margin-bottom: 28px;
}

body.storefront-home .top-selling-card,
body.storefront-wishlist .top-selling-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--sf-bg-elevated);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  box-shadow: var(--sf-shadow-sm);
  margin-bottom: 16px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-align: left;
}

body.storefront-home .top-selling-card:hover,
body.storefront-wishlist .top-selling-card:hover {
  box-shadow: var(--sf-shadow-md);
  border-color: rgba(209, 0, 36, 0.2);
  transform: translateY(-2px);
}

body.storefront-home .top-selling-card__img,
body.storefront-wishlist .top-selling-card__img {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--sf-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.storefront-home .top-selling-card__img img,
body.storefront-wishlist .top-selling-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 8px;
}

body.storefront-home .top-selling-card__body,
body.storefront-wishlist .top-selling-card__body {
  flex: 1;
  min-width: 0;
}

body.storefront-home .top-selling-card__body .product-category,
body.storefront-wishlist .top-selling-card__body .product-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sf-muted);
  margin-bottom: 4px;
}

body.storefront-home .top-selling-card__body .product-name,
body.storefront-wishlist .top-selling-card__body .product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 6px;
  text-transform: none;
}

body.storefront-home .top-selling-card__body .product-name a,
body.storefront-wishlist .top-selling-card__body .product-name a {
  color: var(--sf-text);
}

body.storefront-home .top-selling-card__body .product-name a:hover,
body.storefront-wishlist .top-selling-card__body .product-name a:hover {
  color: var(--sf-accent);
}

body.storefront-home .top-selling-card__body .product-price,
body.storefront-wishlist .top-selling-card__body .product-price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

body.storefront-home .top-selling-card__actions,
body.storefront-wishlist .top-selling-card__actions {
  flex-shrink: 0;
}

body.storefront-home .top-selling-card__actions .btn-compare,
body.storefront-wishlist .top-selling-card__actions .btn-compare {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sf-text);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

body.storefront-home .top-selling-card__actions .btn-compare:hover,
body.storefront-wishlist .top-selling-card__actions .btn-compare:hover {
  border-color: var(--sf-accent);
  color: var(--sf-accent);
  background: #fff5f5;
}

body.storefront-home .top-selling-card__actions .btn-compare.is-in-compare,
body.storefront-wishlist .top-selling-card__actions .btn-compare.is-in-compare {
  border-color: var(--sf-accent);
  color: var(--sf-accent);
  background: #fff5f5;
}

/* —— Newsletter —— */
body.storefront-home #newsletter .newsletter {
  border-radius: var(--sf-radius);
  box-shadow: var(--sf-shadow-sm);
  border: 1px solid var(--sf-border);
  background: var(--sf-bg-elevated);
  padding: 32px 24px;
  max-width: 900px;
  margin: 0 auto;
}

body.storefront-home #newsletter .newsletter .input {
  border-radius: 999px 0 0 999px;
  border: 1px solid #e2e8f0;
}

body.storefront-home #newsletter .newsletter .newsletter-btn {
  border-radius: 0 999px 999px 0;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* —— Footer —— */
body.storefront-home #footer,
body.storefront-shop #footer,
body.storefront-blogs #footer,
body.storefront-product #footer,
body.storefront-cart #footer,
body.storefront-checkout #footer,
body.storefront-compare #footer,
body.storefront-wishlist #footer {
  border-top: none;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.28);
}

/* Site footer: luxury layout + full-width map */
#footer.sf-site-footer {
  --sf-footer-gold: #c9a962;
  --sf-footer-gold-soft: rgba(201, 169, 98, 0.35);
  position: relative;
  background: linear-gradient(165deg, #0c0d12 0%, #14151c 42%, #101118 100%);
  color: #b9babc;
  overflow: hidden;
}

#footer.sf-site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--sf-accent, #d10024) 0%,
    var(--sf-footer-gold) 48%,
    var(--sf-accent, #d10024) 100%
  );
  z-index: 2;
}

#footer.sf-site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

#footer.sf-site-footer .sf-site-footer__main,
#footer.sf-site-footer .sf-site-footer__map-section,
#footer.sf-site-footer .sf-site-footer__bar {
  position: relative;
  z-index: 1;
}

#footer.sf-site-footer .sf-site-footer__main {
  padding: 22px 0 14px;
}

#footer.sf-site-footer .sf-site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}

#footer.sf-site-footer .sf-site-footer__grid > [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 14px;
}

#footer.sf-site-footer .sf-site-footer__block {
  height: auto;
}

#footer.sf-site-footer .sf-site-footer__title {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

#footer.sf-site-footer .sf-site-footer__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--sf-accent, #d10024), var(--sf-footer-gold));
  border-radius: 2px;
}

#footer.sf-site-footer .sf-site-footer__tagline {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(203, 213, 225, 0.88);
}

#footer.sf-site-footer .sf-site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer.sf-site-footer .sf-site-footer__links li + li {
  margin-top: 5px;
}

#footer.sf-site-footer .sf-site-footer__links--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
}

#footer.sf-site-footer .sf-site-footer__links--grid li + li {
  margin-top: 0;
}

/* Categories column: cards + pills (fills sparse Rental/Sell lists) */
#footer.sf-site-footer .sf-footer-cat-cards {
  display: grid;
  gap: 7px;
}

#footer.sf-site-footer .sf-footer-cat-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

#footer.sf-site-footer .sf-footer-cat-card:hover,
#footer.sf-site-footer .sf-footer-cat-card:focus {
  background: linear-gradient(135deg, rgba(209, 0, 36, 0.14) 0%, rgba(201, 169, 98, 0.08) 100%);
  border-color: var(--sf-footer-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

#footer.sf-site-footer .sf-footer-cat-card__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(209, 0, 36, 0.22), rgba(201, 169, 98, 0.12));
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: var(--sf-footer-gold);
  font-size: 13px;
}

#footer.sf-site-footer .sf-footer-cat-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

#footer.sf-site-footer .sf-footer-cat-card__text strong {
  color: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

#footer.sf-site-footer .sf-footer-cat-card__text span {
  color: rgba(148, 163, 184, 0.95);
  font-size: 11px;
  line-height: 1.35;
}

#footer.sf-site-footer .sf-site-footer__cats-label {
  margin: 10px 0 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

#footer.sf-site-footer .sf-site-footer__cat-pills {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

#footer.sf-site-footer .sf-site-footer__cat-pills a {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#footer.sf-site-footer .sf-site-footer__cat-pills a:hover,
#footer.sf-site-footer .sf-site-footer__cat-pills a:focus {
  color: #fff;
  background: rgba(209, 0, 36, 0.2);
  border-color: rgba(209, 0, 36, 0.4);
}

#footer.sf-site-footer .sf-site-footer__links a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(203, 213, 225, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

#footer.sf-site-footer .sf-site-footer__links a:hover,
#footer.sf-site-footer .sf-site-footer__links a:focus {
  color: #fff;
  transform: translateX(3px);
}

#footer.sf-site-footer .sf-site-footer__links--contact a {
  align-items: flex-start;
}

#footer.sf-site-footer .sf-site-footer__links i {
  flex-shrink: 0;
  width: 16px;
  margin-top: 2px;
  text-align: center;
  color: var(--sf-accent, #d10024);
}

/* Full-width Google Map strip */
#footer.sf-site-footer .sf-site-footer__map-section {
  border-top: 1px solid var(--sf-footer-gold-soft);
  background: #0a0b0f;
}

#footer.sf-site-footer .sf-site-footer__map-bleed {
  width: 100%;
}

#footer.sf-site-footer .sf-site-footer__map-inner {
  position: relative;
  width: 100%;
  min-height: 220px;
  max-height: 260px;
  overflow: hidden;
}

#footer.sf-site-footer .sf-site-footer__map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05) brightness(0.92);
}

#footer.sf-site-footer .sf-site-footer__map-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 11, 15, 0.92) 0%,
    rgba(10, 11, 15, 0.45) 38%,
    rgba(10, 11, 15, 0.2) 62%,
    rgba(10, 11, 15, 0.75) 100%
  );
  pointer-events: none;
}

#footer.sf-site-footer .sf-site-footer__map-card {
  position: absolute;
  left: max(20px, calc((100% - 1170px) / 2 + 15px));
  bottom: 20px;
  z-index: 2;
  max-width: min(340px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(12, 13, 18, 0.88);
  border: 1px solid var(--sf-footer-gold-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
}

#footer.sf-site-footer .sf-site-footer__map-kicker {
  display: block;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sf-footer-gold);
}

#footer.sf-site-footer .sf-site-footer__map-address {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.92);
}

#footer.sf-site-footer .sf-site-footer__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #0f1016;
  background: linear-gradient(135deg, var(--sf-footer-gold) 0%, #e8d5a8 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#footer.sf-site-footer .sf-site-footer__map-btn:hover,
#footer.sf-site-footer .sf-site-footer__map-btn:focus {
  color: #0f1016;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 169, 98, 0.35);
}

#footer.sf-site-footer .sf-site-footer__bar {
  background: linear-gradient(180deg, #16171f 0%, #12131a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#footer.sf-site-footer .sf-site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 9px 15px;
}

#footer.sf-site-footer .sf-site-footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
}

#footer.sf-site-footer .sf-site-footer__bar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

#footer.sf-site-footer .sf-site-footer__bar-nav a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.85);
  text-decoration: none;
  letter-spacing: 0.02em;
}

#footer.sf-site-footer .sf-site-footer__bar-nav a:hover,
#footer.sf-site-footer .sf-site-footer__bar-nav a:focus {
  color: #fff;
}

/* Legacy footer markup (pages not yet on partial) */
#footer > .section {
  padding-top: 22px !important;
  padding-bottom: 12px !important;
}

#footer .footer {
  margin: 0 0 12px !important;
}

#footer .footer .footer-title {
  margin: 0 0 10px !important;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

#footer .footer > p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.5;
}

#footer .footer-links li + li {
  margin-top: 5px !important;
}

#footer .footer-links li a {
  font-size: 13px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

#footer .footer-links li a:hover {
  padding-left: 3px;
}

@media (min-width: 992px) {
  #footer.sf-site-footer .sf-site-footer__grid > [class*="col-"] {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  #footer.sf-site-footer .sf-site-footer__main {
    padding: 18px 0 12px;
  }

  #footer.sf-site-footer .sf-site-footer__map-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    max-height: none;
  }

  #footer.sf-site-footer .sf-site-footer__map-iframe {
    position: relative;
    flex: 0 0 180px;
    width: 100%;
    height: 180px;
  }

  #footer.sf-site-footer .sf-site-footer__map-card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  #footer.sf-site-footer .sf-site-footer__map-shade {
    display: none;
  }

  #footer.sf-site-footer .sf-site-footer__links--grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  #footer.sf-site-footer .sf-site-footer__links--grid li + li {
    margin-top: 4px;
  }

  #footer.sf-site-footer .sf-site-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 15px;
  }
}

@media (min-width: 992px) {
  #footer.sf-site-footer .sf-site-footer__grid {
    align-items: stretch;
  }

  #footer.sf-site-footer .sf-site-footer__block {
    min-height: 100%;
    padding-bottom: 4px;
  }
}

/* Slick: match style.css bottom reserve so hover add-to-cart is not clipped */
body.storefront-home .new-products-carousel .slick-list,
body.storefront-home .products-slick .slick-list,
body.storefront-home #home-accessories .new-products-carousel .slick-list {
  padding-top: 8px;
}

@keyframes sf-shop-toolbar-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sf-shop-grid-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sf-wishlist-heart {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1.05);
  }
}

/* —— Shop listing page —— */
body.storefront-shop #store .product {
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: var(--sf-bg-elevated);
  overflow: hidden;
  -webkit-box-shadow: var(--sf-shadow-sm) !important;
  box-shadow: var(--sf-shadow-sm) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.storefront-shop #store .product:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 0, 36, 0.22);
  -webkit-box-shadow: var(--sf-shadow-hover) !important;
  box-shadow: var(--sf-shadow-hover) !important;
}

body.storefront-shop #store .product .product-img {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-shop .product .add-to-cart {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border-top: 1px solid #e2e8f0;
  padding: 12px 14px !important;
}

body.storefront-shop .product .add-to-cart .add-to-cart-btn {
  width: 100%;
  max-width: 100%;
  border-radius: var(--sf-radius-sm) !important;
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%) !important;
  box-shadow: 0 4px 14px rgba(209, 0, 36, 0.3);
  font-size: 12px;
  letter-spacing: 0.05em;
  border: none !important;
}

@media (max-width: 767px) {
  body.storefront-home .section:not(#footer > .section) {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  body.storefront-home .top-selling-card,
  body.storefront-wishlist .top-selling-card {
    flex-wrap: wrap;
  }

  body.storefront-home .top-selling-card__actions,
  body.storefront-wishlist .top-selling-card__actions {
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 575px) {
  body.storefront-home .top-selling-card,
  body.storefront-wishlist .top-selling-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  body.storefront-home .top-selling-card__img,
  body.storefront-wishlist .top-selling-card__img {
    align-self: center;
  }

  body.storefront-home .top-selling-card__actions,
  body.storefront-wishlist .top-selling-card__actions {
    justify-content: center;
    display: flex;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Global storefront surfaces (product, cart, checkout, compare)
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-product,
body.storefront-cart,
body.storefront-checkout,
body.storefront-compare {
  background-color: var(--sf-bg-page);
  color: var(--sf-text);
}

body.storefront-product #header,
body.storefront-cart #header,
body.storefront-checkout #header,
body.storefront-compare #header {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.storefront-product #navigation,
body.storefront-cart #navigation,
body.storefront-checkout #navigation,
body.storefront-compare #navigation {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-product #navigation .container,
body.storefront-cart #navigation .container,
body.storefront-checkout #navigation .container,
body.storefront-compare #navigation .container {
  background: #fff;
}

/* List price: monthly emphasis */
.sf-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  margin: 8px 0 0;
}

.sf-product-price .product-price__amount {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--sf-accent);
}

.sf-product-price .product-price__period {
  font-size: 0.68em;
  font-weight: 700;
  color: var(--sf-muted);
  letter-spacing: 0.02em;
}

.sf-hero-price {
  animation: sf-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.sf-featured-price {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* —— Motion system —— */
@keyframes sf-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sf-shimmer-bg {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

body.storefront-shop #breadcrumb.section {
  animation: sf-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* Product image micro-interaction */
body.storefront-home .product .product-img img,
body.storefront-shop #store .product .product-img img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-home .product:hover .product-img img,
body.storefront-shop #store .product:hover .product-img img {
  transform: scale(1.04);
}

/* Shop sidebar: elevated panels (exclude dark spotlight card) */
body.storefront-shop #aside .aside:not(.sf-aside-spotlight) {
  border-radius: var(--sf-radius);
  border: 1px solid var(--sf-border);
  background: var(--sf-bg-elevated);
  box-shadow: var(--sf-shadow-sm);
  padding: 18px 16px;
  margin-bottom: 18px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

body.storefront-shop #aside .aside:not(.sf-aside-spotlight):hover {
  box-shadow: var(--sf-shadow-md);
  border-color: rgba(209, 0, 36, 0.12);
}

body.storefront-shop #aside .aside-title {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 12px;
  text-transform: uppercase;
  color: #475569;
  margin-top: 0;
}

/* Toolbar: form has .store-sort (not the wrapper); override template .store-sort { display:inline-block } */
body.storefront-shop #store .store-filter--toolbar form.store-sort,
body.storefront-shop #store .store-filter form.sf-shop-sort-form {
  display: flex !important;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  box-sizing: border-box;
  gap: 1.1rem 1.5rem;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--sf-radius);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: sf-shop-toolbar-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.storefront-shop #store .store-filter--toolbar label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 !important;
  min-width: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sf-muted);
}

body.storefront-shop #store .store-filter--toolbar .input-select {
  min-width: min(100%, 168px);
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 11px !important;
  border: 1px solid var(--sf-border) !important;
  background: #fff !important;
  font-weight: 600;
  font-size: 13px;
  color: var(--sf-text);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.storefront-shop #store .store-filter--toolbar .input-select:hover,
body.storefront-shop #store .store-filter--toolbar .input-select:focus {
  border-color: rgba(209, 0, 36, 0.35) !important;
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.08);
  outline: none;
}

/* Product detail page polish */
body.storefront-product .product-details {
  animation: sf-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.04s backwards;
}

body.storefront-product #product-main-img {
  animation: sf-rise 0.55s ease backwards;
}

/* Cart / checkout breathing */
body.storefront-cart .section,
body.storefront-checkout .section {
  animation: sf-rise 0.45s ease backwards;
}

body.storefront-cart .featured-card,
body.storefront-checkout .table {
  border-radius: var(--sf-radius-sm);
}

/* Compare table polish */
body.storefront-compare .section .table-responsive,
body.storefront-compare table.table {
  border-radius: var(--sf-radius-sm);
  overflow: hidden;
  box-shadow: var(--sf-shadow-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Home product cards: stop slide-up cart bar from covering rating + icon row
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-home .product .add-to-cart {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none !important;
  pointer-events: auto;
  margin: 0;
  border-radius: 0 0 var(--sf-radius) var(--sf-radius);
  background: linear-gradient(180deg, #1a1d2e 0%, #15161d 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.storefront-home .product:hover .add-to-cart {
  transform: none !important;
}

body.storefront-home .product .product-body {
  padding-bottom: 16px;
  z-index: auto;
}

body.storefront-home .product .product-body .product-rating:after {
  display: none;
}

body.storefront-home .product .product-body .product-rating {
  margin: 10px 0 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ecf1;
  height: auto;
  min-height: 0;
}

body.storefront-home .product .product-body .product-rating > i {
  z-index: 0;
  background: transparent;
  margin-right: 2px;
}

body.storefront-home .product .product-body .product-btns {
  margin-top: 2px;
  padding-top: 8px;
  position: relative;
  z-index: 6;
}

body.storefront-home .product .product-body .product-btns > button .tooltipp,
body.storefront-home .product .product-body .product-btns > form .tooltipp {
  z-index: 20;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Shop catalog — fluid width + auto-fill grid (fills row; no empty “slot”)
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-shop .sf-shop-container-wide {
  width: 100%;
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

@media (min-width: 768px) {
  body.storefront-shop .sf-shop-container-wide {
    max-width: min(1540px, calc(100vw - 32px)) !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 1200px) {
  body.storefront-shop .sf-shop-container-wide {
    max-width: min(1680px, calc(100vw - 40px)) !important;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1600px) {
  body.storefront-shop .sf-shop-container-wide {
    max-width: min(1760px, calc(100vw - 56px)) !important;
  }
}

body.storefront-shop .section--sf-catalog {
  position: relative;
  padding-top: 36px;
  padding-bottom: 48px;
  background:
    radial-gradient(120% 70% at 8% -15%, rgba(209, 0, 36, 0.075), transparent 52%),
    radial-gradient(90% 55% at 96% 0%, rgba(59, 130, 246, 0.055), transparent 48%),
    linear-gradient(180deg, #eef2f7 0%, var(--sf-bg-page) 22%, var(--sf-bg-page) 100%);
}

body.storefront-shop .section--sf-catalog::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 42%);
}

@keyframes sf-catalog-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.storefront-shop #store.sf-shop-main {
  animation: sf-catalog-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.06s;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Shop listing: responsive grid (balanced rows; no orphan single in 3-col)
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-shop #store .store-product-grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 228px), 1fr));
  margin-left: 0;
  margin-right: 0;
}

body.storefront-shop #store .store-product-grid__cell {
  min-width: 0;
}

body.storefront-shop #store .store-product-grid__cell--full {
  grid-column: 1 / -1;
}

@media (min-width: 576px) {
  body.storefront-shop #store .store-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  }
}

@media (min-width: 1200px) {
  body.storefront-shop #store .store-product-grid {
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  }
}

body.storefront-shop #store .store-product-grid > .store-product-grid__cell .product {
  margin-left: 0;
  margin-right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.storefront-shop #store .store-product-grid .product .product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  /* Electro template reserves 78px for .add-to-cart; shop cards have no cart strip */
  padding-bottom: 22px !important;
  justify-content: flex-start;
}

/* Stagger grid cells */
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(1) {
  animation-delay: 0.03s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(2) {
  animation-delay: 0.08s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(3) {
  animation-delay: 0.13s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(4) {
  animation-delay: 0.18s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(5) {
  animation-delay: 0.23s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(6) {
  animation-delay: 0.28s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(7) {
  animation-delay: 0.33s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(8) {
  animation-delay: 0.38s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(9) {
  animation-delay: 0.41s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(10) {
  animation-delay: 0.44s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(11) {
  animation-delay: 0.47s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(12) {
  animation-delay: 0.5s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(13) {
  animation-delay: 0.52s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(14) {
  animation-delay: 0.54s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(15) {
  animation-delay: 0.56s;
}
body.storefront-shop #store .store-product-grid > .store-product-grid__cell:nth-child(16) {
  animation-delay: 0.58s;
}

body.storefront-shop #store .store-product-grid > .store-product-grid__cell {
  animation: sf-shop-grid-fade 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Shop sidebar: Top selling — premium list
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-shop .aside--top-selling {
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  box-shadow: var(--sf-shadow-sm);
}

body.storefront-shop .aside-top-selling__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
}

body.storefront-shop .aside-top-selling__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(209, 0, 36, 0.25);
  color: #fecaca;
  font-size: 15px;
}

body.storefront-shop .aside-top-selling__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.storefront-shop .aside-top-selling__list {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.storefront-shop .aside-top-selling__item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--sf-radius-sm);
  text-decoration: none !important;
  color: inherit;
  border: 1px solid transparent;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.storefront-shop .aside-top-selling__item:hover {
  border-color: rgba(209, 0, 36, 0.2);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

body.storefront-shop .aside-top-selling__img-wrap {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border: 1px solid #e8eaed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.storefront-shop .aside-top-selling__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 6px;
}

body.storefront-shop .aside-top-selling__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

body.storefront-shop .aside-top-selling__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}

body.storefront-shop .aside-top-selling__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.storefront-shop .aside-top-selling__item:hover .aside-top-selling__name {
  color: var(--sf-accent);
}

body.storefront-shop .aside-top-selling__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--sf-accent);
  letter-spacing: -0.02em;
  margin-top: 2px;
}

body.storefront-shop .aside-top-selling__price em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-left: 4px;
}

/* Sidebar fill — trust spotlight, accessory preview, brand chips */
body.storefront-shop #aside.sf-shop-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.storefront-shop .sf-aside-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: var(--sf-radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 16px 16px;
  background: linear-gradient(155deg, #0b1220 0%, #1e293b 42%, #273549 100%);
  color: #f1f5f9;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.storefront-shop .sf-aside-spotlight:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.storefront-shop .sf-aside-spotlight__glow {
  position: absolute;
  z-index: 0;
  inset: auto -30% -45% auto;
  top: auto;
  width: min(100%, 220px);
  height: min(55%, 160px);
  opacity: 0.45;
  background: radial-gradient(ellipse at 80% 100%, rgba(209, 0, 36, 0.45), transparent 68%);
  pointer-events: none;
}

body.storefront-shop .sf-aside-spotlight__title {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body.storefront-shop .sf-aside-spotlight__list {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.storefront-shop .sf-aside-spotlight__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.55;
}

body.storefront-shop .sf-aside-spotlight__itemtext {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.storefront-shop .sf-aside-spotlight__lead {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

body.storefront-shop .sf-aside-spotlight__desc {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #e2e8f0;
  line-height: 1.5;
  opacity: 0.98;
}

body.storefront-shop .sf-aside-spotlight__ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(209, 0, 36, 0.35);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.storefront-shop .sf-aside-spotlight__cta {
  position: relative;
  z-index: 2;
  margin-top: 16px;
}

body.storefront-shop .sf-aside-spotlight__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

body.storefront-shop .sf-aside-spotlight__btn:hover {
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

body.storefront-shop .sf-aside-acc {
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--sf-radius);
  border: 1px solid var(--sf-border);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: var(--sf-shadow-sm);
}

body.storefront-shop .sf-aside-acc__head {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(90deg, rgba(209, 0, 36, 0.06), transparent);
}

body.storefront-shop .sf-aside-acc__badge {
  flex: 0 0 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #d10024 0%, #be123c 100%);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 6px 16px rgba(209, 0, 36, 0.35);
}

body.storefront-shop .sf-aside-acc__title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

body.storefront-shop .sf-aside-acc__sub {
  margin: 4px 0 0;
  font-size: 11px;
  color: #64748b;
  line-height: 1.35;
}

body.storefront-shop .sf-aside-acc__list {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

body.storefront-shop .sf-aside-acc__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none !important;
  color: inherit;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.storefront-shop .sf-aside-acc__row:hover {
  background: rgba(209, 0, 36, 0.04);
  border-color: rgba(209, 0, 36, 0.08);
}

body.storefront-shop .sf-aside-acc__thumb {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.storefront-shop .sf-aside-acc__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.storefront-shop .sf-aside-acc__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.storefront-shop .sf-aside-acc__name {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.storefront-shop .sf-aside-acc__price {
  font-size: 13px;
  font-weight: 800;
  color: var(--sf-accent);
  letter-spacing: -0.02em;
}

body.storefront-shop .sf-aside-acc__chev {
  flex: 0 0 auto;
  color: #94a3b8;
  font-size: 14px;
}

body.storefront-shop .sf-aside-acc__jump {
  display: block;
  margin: 0;
  padding: 12px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sf-accent);
  background: rgba(209, 0, 36, 0.06);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}

body.storefront-shop .sf-aside-acc__jump:hover {
  background: rgba(209, 0, 36, 0.1);
  color: #9f0712;
}

body.storefront-shop .sf-aside-brands {
  padding: 16px 14px 18px !important;
  border-radius: var(--sf-radius);
  border: 1px dashed rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, #f1f5f9 100%);
}

body.storefront-shop .sf-aside-brands__title {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
}

body.storefront-shop .sf-aside-brands__hint {
  margin: 0 0 12px;
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}

body.storefront-shop .sf-aside-brands__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.storefront-shop .sf-aside-brands__chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none !important;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.storefront-shop .sf-aside-brands__chip:hover {
  border-color: rgba(209, 0, 36, 0.45);
  color: var(--sf-accent);
  box-shadow: 0 4px 12px rgba(209, 0, 36, 0.12);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-shop .sf-aside-spotlight__btn:hover,
  body.storefront-shop .sf-aside-brands__chip:hover {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Shop page — elegant premium (layout, sidebar, cards, footer bar)
   ═══════════════════════════════════════════════════════════════════════════ */
body.storefront-shop .sf-shop-row {
  align-items: flex-start;
}

body.storefront-shop .sf-shop-main {
  min-width: 0;
}

@media (min-width: 992px) {
  body.storefront-shop .sf-shop-aside {
    position: sticky;
    top: 12px;
    z-index: 2;
  }
}

body.storefront-shop #breadcrumb.section {
  background: linear-gradient(180deg, #eef2f7 0%, var(--sf-bg-page) 100%);
  border-bottom: 1px solid var(--sf-border);
  padding-top: 18px;
  padding-bottom: 18px;
}

body.storefront-shop .breadcrumb-tree {
  margin: 0;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sf-border);
  border-radius: 999px;
  box-shadow: var(--sf-shadow-sm);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

body.storefront-shop .breadcrumb-tree li {
  font-size: 13px;
  font-weight: 600;
}

body.storefront-shop .breadcrumb-tree li a {
  color: var(--sf-muted);
  transition: color 0.2s ease;
}

body.storefront-shop .breadcrumb-tree li a:hover {
  color: var(--sf-accent);
}

body.storefront-shop .breadcrumb-tree li.active {
  color: var(--sf-text);
}

/* Sidebar: refined panels + inputs */
body.storefront-shop .sf-shop-aside .aside {
  padding: 20px 18px;
}

body.storefront-shop .sf-shop-aside .aside-title {
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
}

body.storefront-shop .sf-shop-aside .aside-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sf-accent), #ff6b7a);
}

/* Must keep left padding for custom checkbox span (template uses padding-left + absolute span) */
body.storefront-shop .sf-shop-aside .checkbox-filter .input-checkbox label {
  display: block;
  position: relative;
  padding: 8px 8px 8px 28px !important;
  margin-bottom: 4px;
  border-radius: 8px;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

body.storefront-shop .sf-shop-aside .checkbox-filter .input-checkbox label:hover {
  background: rgba(209, 0, 36, 0.04);
  padding-left: 28px !important;
}

body.storefront-shop .sf-shop-aside .checkbox-filter .input-checkbox input:checked + label {
  color: var(--sf-text);
  font-weight: 600;
}

body.storefront-shop .sf-shop-aside .form-control {
  border-radius: 11px;
  border: 1px solid var(--sf-border);
  padding: 10px 12px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.storefront-shop .sf-shop-aside .form-control:focus {
  border-color: rgba(209, 0, 36, 0.45);
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.1);
  outline: none;
}

body.storefront-shop .sf-shop-aside .aside .primary-btn {
  width: 100%;
  border-radius: 11px;
  padding: 12px 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  border: none;
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%);
  box-shadow: 0 4px 16px rgba(209, 0, 36, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

body.storefront-shop .sf-shop-aside .aside .primary-btn:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(209, 0, 36, 0.42);
  transform: translateY(-1px);
}

body.storefront-shop .sf-shop-aside .aside .btn-default {
  margin-top: 10px !important;
  margin-left: 0 !important;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 11px;
  padding: 10px 14px;
  font-weight: 600;
  border: 1px solid var(--sf-border) !important;
  background: #fff !important;
  color: var(--sf-muted) !important;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.storefront-shop .sf-shop-aside .aside .btn-default:hover {
  border-color: rgba(209, 0, 36, 0.35) !important;
  color: var(--sf-accent) !important;
  background: #fff5f5 !important;
}

/* Wishlist control: keep hit area small (absolute btn used to leave a full-width form in flow) */
body.storefront-shop #store .store-wishlist-form {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
}

/* Product grid cards */
body.storefront-shop #store .product.sf-shop-card {
  position: relative;
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

body.storefront-shop #store .product.sf-shop-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(209, 0, 36, 0.2) !important;
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(209, 0, 36, 0.08) !important;
}

body.storefront-shop #store .product.sf-shop-card .sf-shop-card__img {
  position: relative;
  overflow: hidden;
}

body.storefront-shop #store .product.sf-shop-card .sf-shop-card__img::after {
  content: "";
  position: absolute;
  top: -15%;
  left: 0;
  width: 50%;
  height: 130%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 58%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-10deg);
  transition: transform 0.01s;
  pointer-events: none;
  z-index: 2;
}

body.storefront-shop #store .product.sf-shop-card:hover .sf-shop-card__img::after {
  transform: translateX(200%) skewX(-10deg);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-shop #store .product.sf-shop-card .sf-shop-card__img img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-shop #store .product.sf-shop-card:hover .sf-shop-card__img img {
  transform: scale(1.06);
}

body.storefront-shop #store .store-wishlist-btn {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease;
}

body.storefront-shop #store .product.sf-shop-card:hover .store-wishlist-btn {
  box-shadow: 0 4px 16px rgba(209, 0, 36, 0.2);
}

body.storefront-shop #store .store-wishlist-btn:hover {
  transform: scale(1.08);
}

body.storefront-shop #store .store-wishlist-btn:hover i {
  animation: sf-wishlist-heart 0.45s ease;
}

body.storefront-shop #store .product.sf-shop-card .product-body {
  padding: 20px 16px 22px !important;
  text-align: center;
}

body.storefront-shop #store .product.sf-shop-card .product-category {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #94a3b8;
  margin: 0 !important;
}

body.storefront-shop #store .product.sf-shop-card .product-name {
  margin: 0 !important;
  width: 100%;
  max-width: 100%;
}

body.storefront-shop #store .product.sf-shop-card .product-name,
body.storefront-shop #store .product.sf-shop-card .product-name a {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--sf-text) !important;
  transition: color 0.25s ease;
}

body.storefront-shop #store .product.sf-shop-card .product-name a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 2.85em;
}

body.storefront-shop #store .product.sf-shop-card:hover .product-name a {
  color: var(--sf-accent) !important;
}

body.storefront-shop #store .product.sf-shop-card .sf-product-price {
  justify-content: center;
  margin: 0 !important;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-shop #store .product.sf-shop-card:hover .sf-product-price {
  transform: translateY(-2px);
}

body.storefront-shop #store .product.sf-shop-card .sf-product-price .product-price__amount {
  font-size: 1.2rem;
  transition: text-shadow 0.25s ease;
}

body.storefront-shop #store .product.sf-shop-card:hover .sf-product-price .product-price__amount {
  text-shadow: 0 4px 20px rgba(209, 0, 36, 0.18);
}

/* Pagination / results bar */
body.storefront-shop #store .store-filter--footer {
  margin-top: 28px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius);
  box-shadow: var(--sf-shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  clear: both;
  animation: sf-shop-toolbar-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s backwards;
}

body.storefront-shop #store .store-filter--footer .store-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(15, 23, 42, 0.04);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sf-muted);
}

body.storefront-shop #store .store-filter--footer .pagination {
  float: none !important;
  display: inline-flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0 !important;
  padding: 0;
  list-style: none;
}

body.storefront-shop #store .store-filter--footer .pagination > li {
  float: none !important;
  display: inline-block;
}

body.storefront-shop #store .store-filter--footer .pagination > li > a,
body.storefront-shop #store .store-filter--footer .pagination > li > span {
  border-radius: 10px !important;
  margin: 0 3px;
  font-weight: 600;
  border-color: var(--sf-border) !important;
  color: var(--sf-text) !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.storefront-shop #store .store-filter--footer .pagination > li > a:hover {
  background: rgba(209, 0, 36, 0.08) !important;
  border-color: rgba(209, 0, 36, 0.25) !important;
  color: var(--sf-accent) !important;
}

body.storefront-shop #store .store-filter--footer .pagination > .active > span {
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-shop .store-product-grid > .store-product-grid__cell,
  body.storefront-shop #store .store-filter--toolbar form.store-sort,
  body.storefront-shop #store .store-filter form.sf-shop-sort-form,
  body.storefront-shop #store.sf-shop-main,
  body.storefront-shop #store .store-filter--footer,
  body.storefront-shop #breadcrumb.section {
    animation: none !important;
  }

  body.storefront-shop #store .product,
  body.storefront-shop #store .product.sf-shop-card,
  body.storefront-shop #store .product.sf-shop-card:hover {
    transition: none !important;
    transform: none !important;
  }

  body.storefront-shop #store .product.sf-shop-card .sf-shop-card__img img,
  body.storefront-shop #store .product.sf-shop-card:hover .sf-shop-card__img img {
    transform: none !important;
  }

  body.storefront-shop #store .product.sf-shop-card .sf-shop-card__img::after,
  body.storefront-shop #store .product.sf-shop-card:hover .sf-shop-card__img::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  body.storefront-shop #store .product.sf-shop-card:hover .sf-product-price {
    transform: none !important;
  }

  body.storefront-shop #store .store-wishlist-btn:hover,
  body.storefront-shop #store .store-wishlist-btn:hover i {
    transform: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Home product cards — premium motion (sf-product-card)
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes sf-badge-soft-pulse {
  0%,
  100% {
    box-shadow: 0 2px 10px rgba(209, 0, 36, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 18px rgba(209, 0, 36, 0.45);
    transform: scale(1.04);
  }
}

@keyframes sf-cta-breathe {
  0%,
  100% {
    box-shadow: 0 4px 18px rgba(209, 0, 36, 0.32);
  }
  50% {
    box-shadow: 0 8px 28px rgba(209, 0, 36, 0.48);
  }
}

@keyframes sf-star-pop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

body.storefront-home .sf-product-card {
  position: relative;
  isolation: isolate;
  will-change: transform;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

body.storefront-home .sf-product-card:hover {
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(209, 0, 36, 0.22) !important;
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(209, 0, 36, 0.1),
    0 0 48px rgba(209, 0, 36, 0.07) !important;
}

/* Image: depth + shine sweep on hover */
body.storefront-home .sf-product-card .sf-product-card__img {
  position: relative;
  overflow: hidden;
}

body.storefront-home .sf-product-card .sf-product-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(209, 0, 36, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.storefront-home .sf-product-card:hover .sf-product-card__img::before {
  opacity: 1;
}

body.storefront-home .sf-product-card .sf-product-card__img::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 0;
  width: 55%;
  height: 140%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 60%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-12deg);
  transition: transform 0.01s;
}

body.storefront-home .sf-product-card:hover .sf-product-card__img::after {
  transform: translateX(220%) skewX(-12deg);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-home .sf-product-card .product-img .product-label {
  position: relative;
  z-index: 4;
}

body.storefront-home .sf-product-card .product-img > a {
  display: block;
  position: relative;
  z-index: 0;
}

body.storefront-home .sf-product-card .product-img img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-home .sf-product-card:hover .product-img img {
  transform: scale(1.07);
}

/* NEW badge */
body.storefront-home .sf-product-card .product-label span.new {
  animation: sf-badge-soft-pulse 2.8s ease-in-out infinite;
}

/* Price emphasis on hover */
body.storefront-home .sf-product-card:hover .sf-product-price .product-price__amount {
  transition: color 0.25s ease;
  text-shadow: 0 0 24px rgba(209, 0, 36, 0.15);
}

/* Rating: subtle life on hover */
body.storefront-home .sf-product-card:hover .product-rating > i.fa-star {
  animation: sf-star-pop 0.5s ease;
}

/* Icon row: staggered lift on hover */
body.storefront-home .sf-product-card .product-btns > button,
body.storefront-home .sf-product-card .product-btns > form {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

body.storefront-home .sf-product-card:hover .product-btns > *:nth-child(1) {
  transform: translateY(-4px);
  transition-delay: 0.04s;
}
body.storefront-home .sf-product-card:hover .product-btns > *:nth-child(2) {
  transform: translateY(-4px);
  transition-delay: 0.1s;
}
body.storefront-home .sf-product-card:hover .product-btns > *:nth-child(3) {
  transform: translateY(-4px);
  transition-delay: 0.16s;
}

/* CTA strip: lighter + breathing glow when card hovered */
body.storefront-home .sf-product-card .add-to-cart {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

body.storefront-home .sf-product-card:hover .add-to-cart {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.storefront-home .sf-product-card:hover .add-to-cart .add-to-cart-btn {
  animation: sf-cta-breathe 2.2s ease-in-out infinite;
}

body.storefront-home .sf-product-card .add-to-cart .add-to-cart-btn:hover {
  animation: none;
  transform: translateY(-2px) scale(1.02);
}

/* Section ambience */
body.storefront-home #new-products.section {
  position: relative;
}

body.storefront-home #new-products.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 0, 36, 0.25), transparent);
  pointer-events: none;
}

body.storefront-home #home-accessories .products-tabs {
  position: relative;
}

body.storefront-home #home-accessories.section {
  position: relative;
  overflow: hidden;
}

body.storefront-home #home-accessories.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(209, 0, 36, 0.25), transparent);
  pointer-events: none;
}

body.storefront-home #home-accessories.section::after {
  content: "";
  position: absolute;
  inset: -45% -25% auto auto;
  width: 55%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(209, 0, 36, 0.07) 0%, transparent 72%);
  pointer-events: none;
  animation: sf-home-acc-ambient 20s ease-in-out infinite alternate;
}

body.storefront-home #home-accessories .container {
  position: relative;
  z-index: 1;
}

@keyframes sf-home-acc-ambient {
  from {
    opacity: 0.5;
    transform: translate(0, 0) scale(1);
  }
  to {
    opacity: 0.85;
    transform: translate(-14px, 10px) scale(1.06);
  }
}

body.storefront-home .sf-home-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.88s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--sf-reveal-d, 0s);
}

body.storefront-home .sf-home-reveal.sf-home-reveal--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.storefront-home .hero-banner.sf-home-reveal {
  transition-duration: 1.05s;
}

body.storefront-home #home-accessories .home-acc-slide__link {
  position: relative;
  overflow: hidden;
}

body.storefront-home #home-accessories .home-acc-slide__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.55) 50%, transparent 58%);
  transform: translateX(-120%) skewX(-10deg);
  opacity: 0;
  pointer-events: none;
}

body.storefront-home #home-accessories .home-acc-slide__link:hover::after {
  opacity: 1;
  animation: sf-home-acc-shimmer 0.78s ease forwards;
}

@keyframes sf-home-acc-shimmer {
  to {
    transform: translateX(120%) skewX(-10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-home #home-accessories.section::after,
  body.storefront-home #home-accessories .home-acc-slide__link::after {
    animation: none !important;
  }

  body.storefront-home .sf-home-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.storefront-home .sf-product-card,
  body.storefront-home .sf-product-card .product-img img,
  body.storefront-home .sf-product-card .sf-product-card__img::after,
  body.storefront-home .sf-product-card .product-btns > button,
  body.storefront-home .sf-product-card .product-btns > form {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  body.storefront-home .sf-product-card .product-img img {
    transform: none !important;
  }

  body.storefront-home .sf-product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  }

  body.storefront-home .sf-product-card .product-label span.new {
    animation: none !important;
  }

  body.storefront-home.storefront-home--lux #new-products.sf-home-reveal--in .products-tabs,
  body.storefront-home.storefront-home--lux #home-accessories.sf-home-reveal--in #homeAccessoriesTabPane {
    animation: none !important;
  }

  body.storefront-home.storefront-home--lux::before {
    animation: none !important;
  }

  body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-item img {
    animation: none !important;
  }

  body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content > *,
  body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item,
  body.storefront-home.storefront-home--lux .top-selling-section.sf-home-reveal--in .top-selling-card,
  body.storefront-home.storefront-home--lux.sf-home-page-ready #header,
  body.storefront-home.storefront-home--lux.sf-home-page-ready #navigation {
    animation: none !important;
  }

  body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Product detail page — premium layout + rental calculator (QV parity) + share
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes sf-pdp-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sf-pdp-shell-shimmer {
  0%,
  100% {
    background-position: 0% 42%;
  }
  50% {
    background-position: 100% 58%;
  }
}

@keyframes sf-pdp-total-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes sf-pdp-main-pulse {
  0% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 24px 64px rgba(0, 0, 0, 0.07),
      0 8px 24px rgba(15, 23, 42, 0.06),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  }
  45% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 28px 72px rgba(209, 0, 36, 0.12),
      0 12px 32px rgba(209, 0, 36, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.5) inset,
      0 0 0 3px rgba(209, 0, 36, 0.08);
  }
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 24px 64px rgba(0, 0, 0, 0.07),
      0 8px 24px rgba(15, 23, 42, 0.06),
      0 0 0 1px rgba(255, 255, 255, 0.45) inset;
  }
}

@keyframes sf-pdp-savings-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sf-pdp-fs-ring {
  0%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 10px 28px rgba(15, 23, 42, 0.12);
  }
  50% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 12px 32px rgba(209, 0, 36, 0.22),
      0 0 0 4px rgba(209, 0, 36, 0.08);
  }
}

body.storefront-product .product-details--premium {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(252, 251, 249, 0.99) 38%, rgba(245, 243, 239, 1) 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 2px 0 rgba(212, 175, 55, 0.1) inset,
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  padding: 20px 20px 22px;
  animation: sf-pdp-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.storefront-product .sf-hero-price {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--sf-accent);
  font-feature-settings: 'tnum' 1;
  line-height: 1.2;
}

body.storefront-product .sf-hero-price small {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b !important;
}

body.storefront-product .sf-pdp-hero-section {
  padding-top: 20px;
  padding-bottom: 0;
}

/* Wider PDP reading width — less empty gutter on large monitors */
body.storefront-product .sf-pdp-hero-container.container {
  width: 100%;
  max-width: 1320px;
}

@media (min-width: 1400px) {
  body.storefront-product .sf-pdp-hero-container.container {
    max-width: 1380px;
  }
}

/* One unified hero surface (not two floating cards fighting Bootstrap) */
body.storefront-product .sf-pdp-hero-shell {
  border-radius: 22px;
  padding: 18px 16px 20px;
  overflow: visible;
  background:
    linear-gradient(168deg, #ffffff 0%, #fafbfc 38%, #f3f5f8 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 28px 72px rgba(15, 23, 42, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.04);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .sf-pdp-hero-shell--motion {
    background-size: 150% 150%;
    animation: sf-pdp-shell-shimmer 16s ease-in-out infinite;
  }
}

/* Flex row: gallery + buy column; sticky is scoped to .sf-pdp-hero-sticky-root (ends before tabs/description). */
body.storefront-product .sf-pdp-hero-layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  min-height: 0;
}

body.storefront-product .sf-pdp-hero-layout__gallery,
body.storefront-product .sf-pdp-hero-layout__details {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
  min-height: 0;
}

body.storefront-product .sf-pdp-hero-layout__gallery {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

body.storefront-product .sf-pdp-buy-col {
  container-type: inline-size;
  container-name: pdp-buy;
}

body.storefront-product .sf-pdp-hero-sticky-root {
  position: relative;
  overflow: visible;
}

/*
 * overflow-x: hidden on html/body creates a scrollport and breaks position:sticky for the PDP gallery.
 * Default visible preserves sticky; use clip where supported to reduce horizontal bleed without killing sticky.
 */
body.storefront-product {
  overflow-x: visible;
  /* Cap for main gallery + vertical thumbs; actual height follows slide content (Slick adaptiveHeight + JS sync). */
  --sf-pdp-stage-max-h: min(80vw, 460px);
}

@supports (overflow: clip) {
  body.storefront-product {
    overflow-x: clip;
  }

  html:has(body.storefront-product) {
    overflow-x: clip;
  }
}

body.storefront-product .sf-pdp-tabs-row {
  margin-top: 8px;
  clear: both;
}

@media (min-width: 768px) {
  body.storefront-product {
    /* Taller hero image: follows content up to this cap (syncs with vertical thumbs in JS). */
    --sf-pdp-stage-max-h: min(64vh, 580px);
  }

  body.storefront-product .sf-pdp-hero-shell {
    padding: 22px 26px 26px;
    border-radius: 24px;
  }

  /* Grid + align start: gallery column height = content (no forced stretch under image). */
  body.storefront-product .sf-pdp-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, min(44vw, 480px));
    column-gap: 28px;
    row-gap: 0;
    align-items: start;
  }

  body.storefront-product .sf-pdp-hero-layout__gallery,
  body.storefront-product .sf-pdp-hero-layout__details {
    width: auto !important;
    max-width: none !important;
  }

  /*
   * Page scroll only — gallery column sticky until .sf-pdp-hero-sticky-root leaves the viewport
   * (tabs/description sit outside that root, so no overlap into description).
   */
  body.storefront-product .sf-pdp-hero-layout__gallery {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    align-self: start;
    z-index: 6;
  }

  body.storefront-product .sf-pdp-gallery-flex {
    flex: 0 1 auto;
    width: 100%;
    min-height: 0;
  }

  body.storefront-product .sf-pdp-buy-col {
    align-self: start;
    min-height: 0;
  }

  body.storefront-product .sf-pdp-hero-shell .product-details--premium {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 12px 36px rgba(15, 23, 42, 0.06);
  }
}

@media (max-width: 767px) {
  body.storefront-product .sf-pdp-hero-shell {
    padding: 14px 12px 16px;
    border-radius: 18px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 14px 40px rgba(15, 23, 42, 0.06);
  }

  body.storefront-product .sf-pdp-hero-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  body.storefront-product .sf-pdp-hero-layout__gallery {
    position: relative;
    top: auto;
    z-index: auto;
    padding: 0;
  }

  body.storefront-product .sf-pdp-buy-col {
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    padding-right: 0;
    overscroll-behavior: auto;
  }

  body.storefront-product .sf-pdp-gallery-flex {
    flex-direction: column;
    gap: 12px;
    min-height: 0;
  }

  body.storefront-product .sf-pdp-main-wrap {
    order: -1;
  }

  body.storefront-product .sf-pdp-thumb-rail {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: center;
  }

  body.storefront-product #product-imgs:not(.slick-vertical) .slick-list {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }
}

body.storefront-product .sf-pdp-gallery-flex {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  min-height: 0;
}

@media (min-width: 1200px) {
  body.storefront-product {
    --sf-pdp-stage-max-h: min(72vh, 680px);
  }
}

body.storefront-product .sf-pdp-thumb-rail {
  position: relative;
  flex: 0 0 clamp(136px, 20%, 200px);
  min-width: 132px;
  max-width: 208px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

body.storefront-product #product-imgs {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.storefront-product #product-imgs.slick-slider.slick-vertical {
  flex: 1 1 auto;
  min-height: 0;
}

body.storefront-product .sf-pdp-main-wrap {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

body.storefront-product .sf-pdp-main-stage {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.storefront-product .sf-gallery-fs-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 6;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  color: #334155;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

body.storefront-product .sf-gallery-fs-btn:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(209, 0, 36, 0.35);
  color: var(--sf-accent);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 14px 36px rgba(209, 0, 36, 0.18);
}

body.storefront-product .sf-gallery-fs-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .sf-gallery-fs-btn {
    animation: sf-pdp-fs-ring 3.2s ease-in-out infinite;
  }

  body.storefront-product .sf-gallery-fs-btn:hover,
  body.storefront-product .sf-gallery-fs-btn:focus {
    animation: none;
  }
}

body.storefront-product #product-main-img,
body.storefront-product #product-imgs {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 24px 64px rgba(0, 0, 0, 0.07),
    0 8px 24px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

body.storefront-product #product-main-img {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

body.storefront-product #product-main-img .slick-list {
  overflow: hidden;
  height: auto !important;
  min-height: 0 !important;
  max-height: var(--sf-pdp-stage-max-h);
}

body.storefront-product #product-main-img .slick-track {
  height: auto !important;
  min-height: 0 !important;
}

body.storefront-product #product-main-img .slick-slide {
  height: auto !important;
  min-height: 0 !important;
}

body.storefront-product #product-main-img .slick-slide > div {
  height: auto;
}

body.storefront-product #product-main-img .product-preview {
  box-sizing: border-box;
  height: auto !important;
  min-height: 0 !important;
  max-height: var(--sf-pdp-stage-max-h);
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  cursor: zoom-in;
  background:
    radial-gradient(ellipse 92% 85% at 50% 42%, rgba(255, 255, 255, 0.55) 0%, rgba(248, 250, 252, 0.95) 45%, rgba(229, 236, 246, 0.65) 100%);
}

body.storefront-product #product-main-img .product-preview img {
  box-sizing: border-box;
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 4px);
  max-height: calc(100% - 4px);
  min-height: 0;
  padding: 0;
  margin: auto;
  object-fit: contain;
  object-position: center;
  flex: 0 1 auto;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-product #product-imgs.slick-vertical .slick-list {
  min-height: 0 !important;
  max-height: var(--sf-pdp-stage-max-h);
  padding: 2px 0;
}

body.storefront-product #product-imgs .product-preview {
  margin: 6px 4px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  min-height: 124px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #fff 0%, #eef2f6 100%) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 6px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
  cursor: pointer;
}

body.storefront-product #product-imgs .product-preview:hover {
  transform: scale(1.06);
  border-color: rgba(209, 0, 36, 0.28) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 10px 22px rgba(15, 23, 42, 0.1);
}

body.storefront-product #product-imgs .slick-current .product-preview {
  border-color: rgba(209, 0, 36, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 2px rgba(209, 0, 36, 0.2),
    0 8px 20px rgba(209, 0, 36, 0.15);
}

body.storefront-product #product-imgs .product-preview img {
  width: 100%;
  height: 118px;
  min-height: 108px;
  max-height: 124px;
  object-fit: contain;
  object-position: center;
  padding: 4px;
  margin: 0;
}

@media (max-width: 991px) {
  body.storefront-product #product-imgs .product-preview {
    min-height: 108px;
    margin: 8px 10px;
  }

  body.storefront-product #product-imgs .product-preview img {
    height: 100px;
    max-height: 104px;
    min-width: 92px;
    width: auto;
    max-width: 156px;
    padding: 4px;
  }
}

body.storefront-product #product-main-img,
body.storefront-product #product-imgs,
body.storefront-product .product-details--premium,
body.storefront-product #product-tab,
body.storefront-product .section .product {
  animation: sf-pdp-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.storefront-product #product-main-img {
  animation-delay: 0.02s;
}

body.storefront-product .product-details--premium {
  animation-delay: 0.08s;
}

body.storefront-product #product-tab {
  animation-delay: 0.12s;
}

body.storefront-product #product-main-img:hover,
body.storefront-product #product-imgs:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 28px 72px rgba(0, 0, 0, 0.09),
    0 12px 32px rgba(15, 23, 42, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product #product-main-img.sf-pdp-main--pulse {
    animation: sf-pdp-main-pulse 0.48s ease-out;
  }
}

body.storefront-product #product-main-img:hover .product-preview.slick-current img {
  transform: scale(1.04);
}

/* Override legacy 90px width so full color names are visible */
body.storefront-product .product-details--premium .product-options {
  margin: 10px 0 14px;
}

body.storefront-product .product-details--premium .product-options label {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  display: block;
}

body.storefront-product .product-details--premium .product-options .input-select {
  width: 100% !important;
  min-width: 220px;
  max-width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  padding: 0 36px 0 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body.storefront-product .sf-pdp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.storefront-product .sf-pdp-head .product-name {
  flex: 1 1 220px;
  margin: 0;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.35vw, 1.875rem);
  letter-spacing: 0.03em;
  line-height: 1.22;
  color: #0c1222;
  text-transform: uppercase;
}

body.storefront-product .sf-pdp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding-bottom: 10px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.storefront-product .sf-pdp-meta .product-rating {
  margin: 0;
}

body.storefront-product .sf-pdp-meta .review-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
}

body.storefront-product .sf-pdp-head-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

body.storefront-product .sf-pdp-copy-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  color: #334155;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease;
}

body.storefront-product .sf-pdp-copy-link-btn .sf-pdp-copy-link-btn__text {
  max-width: 11em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 520px) {
  body.storefront-product .sf-pdp-copy-link-btn .sf-pdp-copy-link-btn__text {
    display: none;
  }
}

body.storefront-product .sf-pdp-copy-link-btn:hover {
  border-color: rgba(59, 130, 246, 0.45);
  color: #1d4ed8;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

body.storefront-product .sf-pdp-copy-link-btn.is-done {
  border-color: rgba(16, 185, 129, 0.55);
  color: #047857;
  background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
}

body.storefront-product .sf-share-trigger {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  color: #334155;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

body.storefront-product .sf-share-trigger:hover {
  border-color: rgba(209, 0, 36, 0.35);
  color: var(--sf-accent);
  box-shadow: 0 4px 16px rgba(209, 0, 36, 0.12);
  transform: translateY(-1px);
}

body.storefront-product .sf-pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 8px 0 10px;
}

body.storefront-product .product-details--premium > p {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: #475569;
  margin: 0 0 16px;
  max-width: 62ch;
}

body.storefront-product .sf-pdp-rental-wrap {
  margin: 14px 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

body.storefront-product .quick-view-rental-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #78716c;
  margin: 0 0 14px;
}

body.storefront-product .qv-rental-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: box-shadow 0.45s ease, border-color 0.3s ease, transform 0.35s ease;
}

body.storefront-product .qv-rental-card:hover {
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 22px 52px rgba(15, 23, 42, 0.09);
}

body.storefront-product .qv-rental-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(112deg, #080c14 0%, #121a28 38%, #1a2332 100%);
  color: #f8fafc;
  border-bottom: 1px solid rgba(201, 162, 72, 0.28);
  box-shadow: 0 10px 24px rgba(8, 12, 20, 0.28);
}

body.storefront-product .qv-rental-card__head i {
  font-size: 17px;
  opacity: 0.88;
  color: #e7c873;
}

body.storefront-product .qv-rental-card__head span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.storefront-product .qv-rental-card__body {
  padding: 22px 20px 24px;
  background: linear-gradient(180deg, #fcfbfa 0%, #fff 55%, #fafaf9 100%);
}

body.storefront-product .qv-rental-grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

body.storefront-product .qv-rental-col-quick,
body.storefront-product .qv-rental-col-custom {
  min-width: 0;
  width: 100%;
}

body.storefront-product .qv-rental-col-custom {
  border-left: none;
  padding-left: 0;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

/* Side-by-side only when the buy column is wide enough — avoids overlap in ~33% layout */
@container pdp-buy (min-width: 380px) {
  body.storefront-product .sf-pdp-buy-col .qv-rental-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
  }

  body.storefront-product .sf-pdp-buy-col .qv-rental-col-quick {
    flex: 1 1 52%;
  }

  body.storefront-product .sf-pdp-buy-col .qv-rental-col-custom {
    flex: 1 1 48%;
    border-left: 1px solid #eef0f3;
    padding-left: 16px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}

body.storefront-product .qv-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #78716c;
  margin-bottom: 12px;
}

/*
 * Rental period row: auto-fill grid so bar scales with column width (no tiny 5-up squeeze).
 */
body.storefront-product .qv-month-btns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
  padding: 2px 0 4px;
}

body.storefront-product .qv-preset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f4f4f5 100%);
  color: #1e293b;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

body.storefront-product .qv-preset-btn:hover {
  border-color: rgba(209, 0, 36, 0.42);
  color: var(--sf-accent);
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px rgba(209, 0, 36, 0.12);
}

body.storefront-product .qv-preset-btn.is-active {
  border-color: rgba(185, 28, 28, 0.95);
  background: linear-gradient(135deg, #ff4d4f 0%, #d90429 48%, #b91c1c 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 10px 28px rgba(255, 77, 79, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transform: translateY(-1px);
}

body.storefront-product .qv-preset-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.2);
}

body.storefront-product .qv-preset-btn.is-active:focus {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 10px 26px rgba(209, 0, 36, 0.38),
    0 0 0 3px rgba(209, 0, 36, 0.25);
}

body.storefront-product .qv-preset-btn:active {
  transform: scale(0.97);
}

body.storefront-product .qv-custom-panel {
  position: relative;
  background: #f4f6f8;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

body.storefront-product .qv-custom-panel.is-focused {
  border-color: rgba(209, 0, 36, 0.4);
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.1);
}

body.storefront-product .qv-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.storefront-product .qv-custom-row input[type="number"] {
  flex: 1 1 52px;
  max-width: 88px;
  min-width: 52px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  background: #fff;
  appearance: textfield;
  -moz-appearance: textfield;
}

body.storefront-product .qv-custom-row input[type='number']::-webkit-outer-spin-button,
body.storefront-product .qv-custom-row input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.storefront-product .qv-custom-row input:focus {
  border-color: var(--sf-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.12);
}

body.storefront-product .qv-custom-unit {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}

body.storefront-product .qv-apply-btn {
  height: 42px;
  padding: 0 16px;
  border: none;
  border-radius: 11px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  color: #fafaf9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

body.storefront-product .qv-apply-btn:hover {
  background: linear-gradient(145deg, #d10024 0%, #9f0718 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(209, 0, 36, 0.35);
}

/*
 * Summary: keep stacked in the narrow buy column so the total panel never
 * overflows onto breakdown / insights (row+min-width caused overlap).
 */
body.storefront-product .qv-summary-bar {
  margin-top: 0;
  padding: 20px 20px 22px;
  background: linear-gradient(180deg, #f6f4f1 0%, #faf9f7 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  position: relative;
  z-index: 2;
}

body.storefront-product .qv-summary-meta {
  font-size: 12px;
  line-height: 1.9;
  color: #64748b;
  flex: none;
  min-width: 0;
  padding: 2px 0;
}

body.storefront-product .qv-summary-meta strong {
  color: #1e293b;
  font-weight: 700;
}

body.storefront-product .qv-total-hero {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-align: center;
  padding: 20px 18px 22px;
  border-radius: 16px;
  background: linear-gradient(160deg, #0b1220 0%, #152032 48%, #1e293b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 12px 32px rgba(8, 12, 22, 0.35);
}

body.storefront-product .qv-total-hero small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a8b8d0;
  margin-bottom: 8px;
}

body.storefront-product .qv-total-hero strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fafaf9;
  font-feature-settings: 'tnum' 1;
}

body.storefront-product .qv-total-hero strong.is-muted {
  font-size: 18px;
  color: #94a3b8;
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .qv-total-hero strong.sf-pdp-total-flash {
    animation: sf-pdp-total-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
}

body.storefront-product .sf-pdp-formula {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.4;
}

body.storefront-product .qv-insights {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 20px 20px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  background: linear-gradient(180deg, #fff 0%, #fafaf9 100%);
}

body.storefront-product .qv-per-day-line {
  font-size: 12px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 12px;
}

body.storefront-product .qv-per-day-line strong {
  color: #0f172a;
}

body.storefront-product .qv-savings {
  display: none;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.95) 0%, rgba(209, 250, 229, 0.65) 100%);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: 12px;
  color: #0f5132;
  line-height: 1.6;
}

body.storefront-product .qv-savings.is-visible {
  display: flex;
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .qv-savings.is-visible {
    animation: sf-pdp-savings-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

body.storefront-product .qv-savings i {
  font-size: 18px;
  color: #059669;
  margin-top: 2px;
}

body.storefront-product .qv-savings strong {
  font-size: 15px;
  color: #047857;
}

body.storefront-product .sf-pdp-rental-foot {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 20px 18px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #f8f7f5 0%, #fff 72%);
}

body.storefront-product .sf-pdp-rental-foot .quick-view-calendar-hint {
  margin: 0 0 16px;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.7;
  border: none;
  background: transparent;
}

body.storefront-product .sf-pdp-rental-foot .quick-view-rental-breakdown {
  margin: 0 0 12px;
  padding: 0 0 0 2px;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #64748b;
  border: none;
  background: transparent;
}

body.storefront-product .sf-pdp-rental-foot .quick-view-rental-math {
  margin: 0;
  padding: 14px 16px 16px;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 600;
  color: #0f172a;
  word-break: break-word;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

body.storefront-product .rental-term-warn {
  margin: 0 16px 12px;
  font-size: 12px;
  color: #b91c1c;
  font-weight: 600;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
  display: none;
}

body.storefront-product .rental-term-warn.is-visible {
  display: block;
}

body.storefront-product .product-details--premium .add-to-cart {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn,
body.storefront-product .product-details--premium .btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 0 18px !important;
  border-radius: 14px !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  border: none !important;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    filter 0.25s ease;
  background: linear-gradient(135deg, #ff4d4f 0%, #d90429 45%, #9f0718 100%) !important;
  box-shadow: 0 10px 25px rgba(255, 77, 79, 0.38);
}

body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn:hover,
body.storefront-product .product-details--premium .btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 77, 79, 0.48);
  filter: brightness(1.05);
}

body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn:active,
body.storefront-product .product-details--premium .btn-premium:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(209, 0, 36, 0.35);
}

body.storefront-product .product-details--premium .add-to-cart form {
  margin-bottom: 10px !important;
}

@media (max-width: 420px) {
  body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

body.storefront-product #product-tab {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 50px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  margin-top: 8px;
}

body.storefront-product #product-tab .tab-nav {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #f8f7f5 0%, #fff 100%);
}

body.storefront-product #product-tab .tab-nav li a {
  padding: 16px 22px 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

body.storefront-product #product-tab .tab-nav li:not(.active) a:hover {
  color: var(--sf-accent);
  background: rgba(209, 0, 36, 0.04);
}

body.storefront-product #product-tab .tab-nav li.active a {
  position: relative;
  color: var(--sf-accent) !important;
  background: linear-gradient(180deg, rgba(209, 0, 36, 0.09) 0%, rgba(255, 255, 255, 0.96) 100%) !important;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(209, 0, 36, 0.1);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product #product-tab .tab-nav li a {
    transition:
      color 0.22s ease,
      background 0.25s ease,
      border-color 0.22s ease,
      transform 0.2s ease;
  }

  body.storefront-product #product-tab .tab-nav li:not(.active) a:hover {
    transform: translateY(-1px);
  }

  body.storefront-product #product-tab .tab-pane.fade {
    transition: opacity 0.35s ease;
  }
}

body.storefront-product #product-tab .tab-content {
  padding: 22px 26px 28px;
  min-height: 0;
}

body.storefront-product .sf-pdp-description {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: linear-gradient(165deg, #ffffff 0%, #faf9f7 55%, #f4f2ef 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 48px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

body.storefront-product .sf-pdp-description__title {
  margin: 0;
  padding: 16px 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(180deg, #f4f2ef 0%, #fff 100%);
}

body.storefront-product .sf-pdp-description__body {
  padding: 22px 26px 28px;
  font-size: 17px;
  line-height: 1.75;
  color: #1e293b;
  word-break: break-word;
  min-height: 0;
}

body.storefront-product .sf-pdp-description__body::first-letter {
  font-size: 1.35em;
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 767px) {
  body.storefront-product .product-details--premium {
    padding: 14px 14px 12px;
  }

  body.storefront-product .sf-pdp-hero-section {
    padding-top: 22px;
  }

  body.storefront-product .sf-pdp-hero-layout__gallery {
    border-radius: 0;
    padding: 6px 8px 8px;
  }

  body.storefront-product {
    --sf-pdp-stage-max-h: min(78vw, 420px);
  }

  body.storefront-product #product-main-img .product-preview {
    padding: 6px 8px;
  }

  body.storefront-product #product-main-img .product-preview img {
    padding: 4px;
  }

  body.storefront-product #product-tab .tab-content {
    padding: 16px 18px 22px;
    min-height: 0;
  }

  body.storefront-product .sf-pdp-description__body {
    font-size: 15px;
    line-height: 1.75;
    padding: 18px 16px 22px;
    min-height: 0;
  }
}

body.storefront-product .section .related-product-img {
  border-radius: var(--sf-radius-sm);
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--sf-border);
}

body.storefront-product .sf-related-pdp .sf-related-product {
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

body.storefront-product .sf-related-pdp .sf-related-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  border-color: rgba(209, 0, 36, 0.14);
}

body.storefront-product .sf-related-pdp .sf-related-product .product-img img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .sf-related-pdp .sf-related-product:hover .product-img img {
    transform: scale(1.06);
  }
}

/* Scroll-reveal (enabled only when html.js-sf-pdp-motion is set by PDP script). */
html.js-sf-pdp-motion body.storefront-product .sf-pdp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-sf-pdp-motion body.storefront-product .sf-pdp-reveal--related {
  transition-delay: 0.1s;
}

html.js-sf-pdp-motion body.storefront-product .sf-pdp-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Floating toast (copy link, etc.) */
body.storefront-product .sf-pdp-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 100050;
  max-width: min(440px, calc(100vw - 28px));
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-align: center;
  color: #f8fafc;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 18px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.storefront-product .sf-pdp-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

/* ── PDP extras: reading bar (fixed), gallery skeleton (absolute overlays), CTA ripples ── */
@keyframes sf-pdp-skel-shimmer {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@keyframes sf-pdp-ripple-expand {
  to {
    transform: translate(-50%, -50%) scale(22);
    opacity: 0;
  }
}

body.storefront-product .sf-pdp-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100045;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.12);
  contain: strict;
}

body.storefront-product .sf-pdp-read-progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  will-change: transform;
  background: linear-gradient(90deg, #9f0718 0%, var(--sf-accent, #d10024) 45%, #f97316 100%);
  box-shadow: 0 0 12px rgba(209, 0, 36, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .sf-pdp-gallery-flex--skel .sf-pdp-main-stage::before,
  body.storefront-product .sf-pdp-gallery-flex--skel .sf-pdp-thumb-rail::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: 18px;
    pointer-events: none;
    background: linear-gradient(
      105deg,
      #eef2f6 0%,
      #f8fafc 22%,
      #e2e8f0 44%,
      #f8fafc 66%,
      #eef2f6 100%
    );
    background-size: 200% 100%;
    animation: sf-pdp-skel-shimmer 1.15s ease-in-out infinite;
  }

  body.storefront-product .sf-pdp-gallery-flex--skel .sf-pdp-thumb-rail::before {
    border-radius: 14px;
    z-index: 3;
  }
}

body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn,
body.storefront-product .product-details--premium #detailBuyNow {
  position: relative;
  overflow: hidden;
}

body.storefront-product .product-details--premium .add-to-cart .add-to-cart-btn:focus-visible,
body.storefront-product .product-details--premium #detailBuyNow:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.55),
    0 10px 25px rgba(255, 77, 79, 0.38);
}

body.storefront-product .sf-pdp-btn-ripple {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.12);
  opacity: 0.42;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.28) 42%, transparent 72%);
  pointer-events: none;
  z-index: 3;
}

@media (prefers-reduced-motion: no-preference) {
  body.storefront-product .sf-pdp-btn-ripple.sf-pdp-btn-ripple--go {
    animation: sf-pdp-ripple-expand 0.62s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

/* PDP image lightbox */
body.storefront-product .sf-pdp-lightbox .sf-pdp-lightbox__dialog {
  width: auto;
  max-width: min(96vw, 920px);
  margin: 40px auto;
}

body.storefront-product .sf-pdp-lightbox .sf-pdp-lightbox__content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  background: #0f172a;
}

body.storefront-product .sf-pdp-lightbox .sf-pdp-lightbox__header {
  border: none;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  padding: 12px 18px;
}

body.storefront-product .sf-pdp-lightbox .sf-pdp-lightbox__header .close {
  color: #e2e8f0;
  opacity: 0.85;
  text-shadow: none;
}

body.storefront-product .sf-pdp-lightbox .sf-pdp-lightbox__body {
  padding: 0;
  text-align: center;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, #1e293b 0%, #0f172a 100%);
}

body.storefront-product .sf-pdp-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  padding: 24px 20px 32px;
}

/* Share modal */
body.storefront-product .sf-share-modal .modal-content {
  border-radius: 16px;
  border: 1px solid var(--sf-border);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

body.storefront-product .sf-share-modal .modal-header {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border: none;
  padding: 14px 18px;
}

body.storefront-product .sf-share-modal .modal-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.storefront-product .sf-share-modal .close {
  color: #fff;
  opacity: 0.9;
  text-shadow: none;
}

body.storefront-product .sf-share-url-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

body.storefront-product .sf-share-url-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--sf-border);
  font-size: 12px;
  background: #f8fafc;
}

body.storefront-product .sf-share-copy {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(180deg, #e11d3a 0%, #b8001f 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.15s ease;
}

body.storefront-product .sf-share-copy:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.storefront-product .sf-share-copy.is-done {
  background: #059669;
}

body.storefront-product .sf-share-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 400px) {
  body.storefront-product .sf-share-actions {
    grid-template-columns: repeat(3, 1fr);
  }
}

body.storefront-product .sf-share-actions a,
body.storefront-product .sf-share-actions button.sf-share-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  color: #fff !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

body.storefront-product .sf-share-actions button.sf-share-ig {
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

body.storefront-product .sf-share-actions a:hover,
body.storefront-product .sf-share-actions button.sf-share-ig:hover {
  transform: translateY(-2px);
  color: #fff !important;
}

body.storefront-product .sf-share-wa {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

body.storefront-product .sf-share-fb {
  background: #1877f2;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

body.storefront-product .sf-share-ig {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  box-shadow: 0 4px 14px rgba(221, 42, 123, 0.3);
}

body.storefront-product .sf-share-hint {
  margin-top: 12px;
  font-size: 11px;
  color: var(--sf-muted);
  line-height: 1.45;
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-product .product-details--premium,
  body.storefront-product .qv-rental-card {
    animation: none !important;
  }

  body.storefront-product .sf-pdp-hero-shell--motion {
    animation: none !important;
    background-size: auto !important;
  }

  body.storefront-product .sf-gallery-fs-btn {
    animation: none !important;
  }

  body.storefront-product #product-main-img.sf-pdp-main--pulse {
    animation: none !important;
  }

  body.storefront-product .qv-total-hero strong.sf-pdp-total-flash {
    animation: none !important;
  }

  body.storefront-product .qv-savings.is-visible {
    animation: none !important;
  }

  html.js-sf-pdp-motion body.storefront-product .sf-pdp-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  body.storefront-product .sf-share-trigger:hover,
  body.storefront-product .sf-pdp-copy-link-btn:hover,
  body.storefront-product .section .product:hover,
  body.storefront-product .sf-related-pdp .sf-related-product:hover {
    transform: none !important;
  }

  body.storefront-product .sf-related-pdp .sf-related-product:hover .product-img img {
    transform: none !important;
  }

  body.storefront-product .sf-pdp-read-progress {
    display: none !important;
  }

  body.storefront-product .sf-pdp-gallery-flex--skel .sf-pdp-main-stage::before,
  body.storefront-product .sf-pdp-gallery-flex--skel .sf-pdp-thumb-rail::before {
    animation: none !important;
  }

  body.storefront-product .sf-pdp-btn-ripple.sf-pdp-btn-ripple--go {
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Storefront HOME — ultra luxury (body.storefront-home--lux)
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes sf-lux-aurora {
  from {
    opacity: 0.82;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes sf-lux-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes sf-lux-ken {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

@keyframes sf-lux-brand-in {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

body.storefront-home.storefront-home--lux {
  --lux-noir: #08080c;
  --lux-gold: #b8955c;
  --lux-gold-2: #d4b87a;
  font-family: "Plus Jakarta Sans", Montserrat, system-ui, sans-serif;
}

body.storefront-home.storefront-home--lux::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(100% 70% at 0% 0%, rgba(184, 149, 92, 0.12), transparent 42%),
    radial-gradient(80% 60% at 100% 8%, rgba(209, 0, 36, 0.08), transparent 46%),
    radial-gradient(60% 50% at 50% 100%, rgba(15, 23, 42, 0.04), transparent 55%),
    linear-gradient(172deg, #f7f4ef 0%, #eef2f8 55%, #f2f0fb 100%);
  animation: sf-lux-aurora 26s ease-in-out infinite alternate;
}

body.storefront-home.storefront-home--lux #top-header {
  background: linear-gradient(90deg, #0c0e14 0%, #151824 55%, #0f1118 100%);
  border-bottom: 1px solid rgba(184, 149, 92, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

body.storefront-home.storefront-home--lux #header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(252, 251, 249, 0.98) 100%);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

body.storefront-home.storefront-home--lux #navigation .container {
  background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

body.storefront-home.storefront-home--lux #navigation .main-nav > li > a {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: color 0.25s ease, box-shadow 0.25s ease;
}

body.storefront-home.storefront-home--lux #navigation .main-nav > li.active > a {
  color: #d10024;
  box-shadow: inset 0 -3px 0 0 #d10024;
}

body.storefront-home.storefront-home--lux .hero-banner.section {
  background: transparent;
  padding-top: 20px;
}

body.storefront-home.storefront-home--lux .hero-banner .container {
  max-width: 1200px;
}

body.storefront-home.storefront-home--lux .hero-banner-slider {
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 32px 80px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(184, 149, 92, 0.15);
}

body.storefront-home.storefront-home--lux .hero-banner-item::after {
  background: linear-gradient(
    115deg,
    rgba(8, 8, 12, 0.82) 0%,
    rgba(8, 8, 12, 0.45) 38%,
    rgba(8, 8, 12, 0.2) 62%,
    rgba(8, 8, 12, 0.55) 100%
  );
}

body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-item img {
  animation: sf-lux-ken 22s ease-in-out infinite alternate;
}

body.storefront-home.storefront-home--lux .hero-banner-content {
  left: 48px;
  max-width: 580px;
}

body.storefront-home.storefront-home--lux .hero-banner-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

body.storefront-home.storefront-home--lux .hero-banner-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.92);
  max-width: 32rem;
}

body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content > * {
  animation: sf-lux-hero-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content h1 {
  animation-delay: 0.06s;
}

body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content p {
  animation-delay: 0.16s;
}

body.storefront-home.storefront-home--lux .hero-banner.sf-home-reveal--in .hero-banner-content .primary-btn {
  animation-delay: 0.26s;
}

body.storefront-home.storefront-home--lux .hero-banner-content .primary-btn {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  border: none;
  background: linear-gradient(135deg, #f5f0e6 0%, #e8dcc8 35%, #c9a962 100%);
  color: #1a1208 !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, filter 0.25s ease;
}

body.storefront-home.storefront-home--lux .hero-banner-content .primary-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

body.storefront-home.storefront-home--lux .section-title .title,
body.storefront-home.storefront-home--lux .shop-by-brand-head .title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lux-noir);
}

body.storefront-home.storefront-home--lux .section-title .title::after,
body.storefront-home.storefront-home--lux .shop-by-brand-head .title::after {
  height: 2px;
  width: 56px;
  background: linear-gradient(90deg, var(--lux-gold), #d10024, transparent);
  transform-origin: left;
}

body.storefront-home.storefront-home--lux .section-nav .section-tab-nav {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

body.storefront-home.storefront-home--lux .section-nav .section-tab-nav li {
  margin-right: 0;
}

body.storefront-home.storefront-home--lux .section-nav .section-tab-nav li a {
  border-radius: 999px;
  padding: 8px 16px !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b !important;
}

body.storefront-home.storefront-home--lux .section-nav .section-tab-nav li.active a {
  color: #fff !important;
  background: linear-gradient(135deg, #2a2f3d 0%, #0f172a 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.2);
}

body.storefront-home.storefront-home--lux .section-nav .section-tab-nav li a::after {
  display: none !important;
}

body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item {
  animation: sf-lux-brand-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(1) {
  animation-delay: 0.04s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(2) {
  animation-delay: 0.08s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(3) {
  animation-delay: 0.12s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(4) {
  animation-delay: 0.16s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(5) {
  animation-delay: 0.2s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(6) {
  animation-delay: 0.24s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(7) {
  animation-delay: 0.28s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(8) {
  animation-delay: 0.32s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(9) {
  animation-delay: 0.36s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(10) {
  animation-delay: 0.4s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(11) {
  animation-delay: 0.44s;
}
body.storefront-home.storefront-home--lux .shop-by-brand-section.sf-home-reveal--in .shop-by-brand-item:nth-child(12) {
  animation-delay: 0.48s;
}

body.storefront-home.storefront-home--lux .top-selling-section.sf-home-reveal--in .top-selling-card {
  animation: sf-lux-brand-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.storefront-home.storefront-home--lux .top-selling-section.sf-home-reveal--in .col-md-4:nth-child(1) .top-selling-card {
  animation-delay: 0.06s;
}
body.storefront-home.storefront-home--lux .top-selling-section.sf-home-reveal--in .col-md-4:nth-child(2) .top-selling-card {
  animation-delay: 0.14s;
}
body.storefront-home.storefront-home--lux .top-selling-section.sf-home-reveal--in .col-md-4:nth-child(3) .top-selling-card {
  animation-delay: 0.22s;
}

body.storefront-home.storefront-home--lux #new-products.sf-home-reveal--in .products-tabs,
body.storefront-home.storefront-home--lux #home-accessories.sf-home-reveal--in #homeAccessoriesTabPane {
  animation: sf-lux-hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

body.storefront-home.storefront-home--lux #new-products .new-products-carousel .product.sf-product-card,
body.storefront-home.storefront-home--lux #home-accessories .home-acc-slide__link {
  border-radius: 20px;
}

body.storefront-home.storefront-home--lux .top-selling-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 50px rgba(15, 23, 42, 0.1);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

body.storefront-home.storefront-home--lux .top-selling-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 149, 92, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 32px 64px rgba(15, 23, 42, 0.14);
}

body.storefront-home.storefront-home--lux #newsletter .newsletter {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 246, 242, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 28px 60px rgba(15, 23, 42, 0.1);
  position: relative;
  overflow: hidden;
}

body.storefront-home.storefront-home--lux #newsletter .newsletter::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 80% 0%, rgba(184, 149, 92, 0.12), transparent 45%);
  pointer-events: none;
}

body.storefront-home.storefront-home--lux #newsletter .newsletter p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  position: relative;
  z-index: 1;
}

body.storefront-home.storefront-home--lux #footer.sf-site-footer {
  box-shadow: 0 -28px 80px rgba(0, 0, 0, 0.45);
}

body.storefront-home.storefront-home--lux #footer.sf-site-footer::before {
  background: linear-gradient(90deg, rgba(184, 149, 92, 0.9) 0%, #e8d5a8 50%, rgba(184, 149, 92, 0.9) 100%);
}

body.storefront-home.storefront-home--lux.sf-home-page-ready #header {
  animation: sf-lux-hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.storefront-home.storefront-home--lux.sf-home-page-ready #navigation {
  animation: sf-lux-hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}
