/* =========================================================
   BLACK STUDIO
   Main Home / Global Styles
   ========================================================= */

:root {
  --bg: #070707;
  --surface: #101010;
  --surface-2: #151515;
  --surface-3: #1b1b1b;

  --border: #292929;
  --border-light: #353535;

  --text: #ffffff;
  --muted: #a5a5a5;
  --muted-2: #777777;

  --primary: #ff3b30;
  --primary-dark: #d92c24;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --container: 1240px;

  --shadow: 0 10px 35px rgba(0, 0, 0, 0.35);

  --transition: 180ms ease;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline: auto;
}

/* =========================================================
   HEADER
   ========================================================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(7, 7, 7, 0.92);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

/* Logo */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-size: 22px;
  font-weight: 800;

  white-space: nowrap;
}

.logo-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  background: var(--primary);
  border-radius: 11px;

  font-size: 17px;
  font-weight: 900;

  box-shadow:
    0 5px 20px rgba(255, 59, 48, 0.25);
}

/* Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #cfcfcf;

  font-size: 15px;
  font-weight: 600;

  transition: var(--transition);
}

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

/* Header buttons */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  position: relative;

  background: var(--surface);
  border: 1px solid var(--border);

  border-radius: 12px;

  font-size: 20px;

  transition: var(--transition);
}

.header-icon:hover {
  border-color: var(--primary);

  transform: translateY(-2px);
}

.cart-count {
  position: absolute;

  top: -7px;
  right: -7px;

  min-width: 21px;
  height: 21px;

  display: grid;
  place-items: center;

  padding: 0 5px;

  background: var(--primary);
  color: #fff;

  border-radius: 50%;

  font-size: 11px;
  font-weight: 800;
}

.menu-button {
  display: none;

  border: 1px solid var(--border);
  color: white;
  background: var(--surface);
}

/* Mobile menu */

.mobile-menu {
  display: none;

  padding: 10px 16px 18px;

  background: var(--bg);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  display: block;

  padding: 13px 10px;

  border-bottom: 1px solid var(--border);

  color: #ddd;
  font-weight: 600;
}

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  padding: 24px 0 10px;
}

#hero-container {
  width: min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline: auto;
}

.loading-state {
  min-height: 120px;

  display: grid;
  place-items: center;

  color: var(--muted);

  font-size: 16px;
}

/* =========================================================
   SEARCH
   ========================================================= */

.search-section {
  padding: 18px 0 10px;
}

.search-box {
  width: min(760px, 100%);

  margin-inline: auto;

  display: flex;
  gap: 10px;
}

.search-box input {
  width: 100%;
  min-width: 0;

  height: 52px;

  padding: 0 17px;

  color: white;
  background: var(--surface);

  border: 1px solid var(--border-light);
  border-radius: 12px;

  outline: none;

  font-size: 15px;

  transition: var(--transition);
}

.search-box input::placeholder {
  color: #777;
}

.search-box input:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 3px rgba(255, 59, 48, 0.1);
}

/* Buttons */

.btn {
  min-height: 52px;

  padding: 0 25px;

  border: 0;
  border-radius: 12px;

  font-weight: 800;

  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* =========================================================
   TRUST FEATURES
   ========================================================= */

.features-section {
  padding: 22px 0 25px;
}

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 12px;
}

.feature-card {
  min-height: 78px;

  display: flex;
  align-items: center;

  gap: 13px;

  padding: 15px;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  transition: var(--transition);
}

.feature-card:hover {
  border-color: #444;

  transform: translateY(-2px);
}

.feature-card > span {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: grid;
  place-items: center;

  background: var(--surface-2);

  border-radius: 10px;

  font-size: 20px;
}

.feature-card strong {
  display: block;

  color: white;

  font-size: 14px;
}

.feature-card small {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 12px;
}

/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 32px 0;
}

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

  gap: 20px;

  margin-bottom: 18px;
}

.section-title {
  color: white;

  font-size: 25px;
  font-weight: 800;

  letter-spacing: -0.4px;
}

.section-link {
  color: var(--primary);

  font-size: 14px;
  font-weight: 800;

  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
}

/* =========================================================
   CATEGORY GRID
   ========================================================= */

.category-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 14px;

  min-height: 120px;
}

.category-card {
  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);

  border-radius: var(--radius-md);

  transition:
    transform var(--transition),
    border-color var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);

  border-color: var(--primary);
}

.category-image {
  aspect-ratio: 1 / 0.78;

  display: grid;
  place-items: center;

  overflow: hidden;

  background: var(--surface-2);
}

.category-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 250ms ease;
}

.category-card:hover
.category-image img {
  transform: scale(1.05);
}

.category-card h3 {
  padding: 12px 10px;

  color: #eee;

  font-size: 14px;
  font-weight: 700;

  text-align: center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   PRODUCT SLIDER
   ========================================================= */

.product-slider {
  display: flex;

  gap: 14px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;

  padding: 3px 2px 12px;

  scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

/*
   Product cards created by JS
   will naturally sit inside
   this horizontal slider.
*/

.product-slider > * {
  flex: 0 0 220px;

  scroll-snap-align: start;
}

/* =========================================================
   LOADING
   ========================================================= */

.category-grid > .loading-state,
.product-slider > .loading-state {
  width: 100%;

  min-height: 180px;

  grid-column: 1 / -1;
}

.category-grid .loading-state,
.product-slider .loading-state {
  color: var(--muted);
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  margin-top: 50px;

  background: #050505;

  border-top: 1px solid var(--border);
}

footer .container {
  padding-top: 40px;
  padding-bottom: 25px;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand p {
  margin-top: 7px;

  color: var(--muted);

  font-size: 14px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 18px;

  border-top: 1px solid var(--border);

  color: var(--muted-2);

  font-size: 12px;
}

/* =========================================================
   SCROLLBAR
   ========================================================= */

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

::-webkit-scrollbar-track {
  background: #080808;
}

::-webkit-scrollbar-thumb {
  background: #303030;

  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* =========================================================
   SELECTION
   ========================================================= */

::selection {
  background: var(--primary);
  color: white;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

  .features-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns:
      repeat(4, 1fr);
  }

}

@media (max-width: 700px) {

  .container {
    width: min(
      calc(100% - 24px),
      var(--container)
    );
  }

  /* Header */

  .header-inner {
    min-height: 68px;
  }

  .main-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu.active {
    display: block;
  }

  .logo {
    font-size: 20px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  /* Hero */

  .hero-section {
    padding-top: 14px;
  }

  /* Search */

  .search-section {
    padding-top: 12px;
  }

  .search-box {
    gap: 7px;
  }

  .search-box input {
    height: 48px;

    padding-inline: 13px;

    font-size: 14px;
  }

  .btn {
    min-height: 48px;

    padding-inline: 17px;
  }

  /* Features */

  .features-section {
    padding: 15px 0 18px;
  }

  .features-grid {
    display: flex;

    overflow-x: auto;

    gap: 10px;

    padding-bottom: 5px;

    scrollbar-width: none;
  }

  .features-grid::-webkit-scrollbar {
    display: none;
  }

  .feature-card {
    min-width: 220px;

    min-height: 70px;
  }

  /* Sections */

  .section {
    padding: 25px 0;
  }

  .section-header {
    margin-bottom: 14px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-link {
    font-size: 13px;
  }

  /* Categories */

  .category-grid {
    display: flex;

    overflow-x: auto;

    gap: 10px;

    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 145px;
  }

  .category-image {
    aspect-ratio: 1 / 0.82;
  }

  .category-card h3 {
    font-size: 13px;
  }

  /* Products */

  .product-slider {
    gap: 10px;
  }

  .product-slider > * {
    flex: 0 0 185px;
  }

  /* Footer */

  footer {
    margin-top: 30px;
  }

}

@media (max-width: 430px) {

  .container {
    width: calc(100% - 20px);
  }

  .header-actions {
    gap: 6px;
  }

  .header-icon {
    width: 40px;
    height: 40px;

    font-size: 18px;
  }

  .logo {
    gap: 8px;

    font-size: 18px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .search-box {
    display: grid;

    grid-template-columns: 1fr auto;
  }

  .search-box .btn {
    padding-inline: 15px;
  }

  .feature-card {
    min-width: 205px;
  }

  .category-card {
    flex-basis: 135px;
  }

  .product-slider > * {
    flex-basis: 175px;
  }

}
/* =========================================================
   SUPPORT WIDGET
   ========================================================= */

.support-widget {
  position: fixed;

  right: 18px;
  bottom: 24px;

  z-index: 2000;
}

.support-button {
  width: 56px;
  height: 56px;

  border: 1px solid #333;

  border-radius: 50%;

  background: var(--primary);
  color: white;

  display: grid;
  place-items: center;

  font-size: 24px;

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45);

  transition: 180ms ease;
}

.support-button:hover {
  transform: scale(1.06);
}

.support-menu {
  position: absolute;

  right: 0;
  bottom: 68px;

  width: 220px;

  padding: 8px;

  background: #111;

  border: 1px solid #2d2d2d;

  border-radius: 16px;

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;

  transform:
    translateY(10px)
    scale(0.96);

  transform-origin: bottom right;

  transition: 180ms ease;
}

.support-menu.active {
  opacity: 1;
  visibility: visible;

  transform:
    translateY(0)
    scale(1);
}

.support-item {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px;

  border-radius: 12px;

  transition: 160ms ease;
}

.support-item:hover {
  background: #1d1d1d;
}

.support-item > span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: #191919;

  font-size: 20px;
}

.support-item strong {
  display: block;

  color: white;

  font-size: 14px;
}

.support-item small {
  display: block;

  margin-top: 2px;

  color: #888;

  font-size: 11px;
}

/* Mobile */

@media (max-width: 600px) {

  .support-widget {
    right: 14px;
    bottom: 18px;
  }

  .support-button {
    width: 52px;
    height: 52px;

    font-size: 22px;
  }

  .support-menu {
    bottom: 62px;

    width: 205px;
  }

}
/* =========================================
   HOME PRODUCTS
========================================= */

#hot-products,
#new-products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 25px;
}

/* PRODUCT CARD */

.home-product-card {
  display: block;
  width: 100%;
  min-width: 0;

  background: #111;
  border: 1px solid #292929;
  border-radius: 16px;

  overflow: hidden;

  text-decoration: none;
  color: #fff;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.home-product-card:hover {
  transform: translateY(-4px);
  border-color: #ff3b30;
}

/* IMAGE */

.home-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;

  background: #171717;

  overflow: hidden;
}

.home-product-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.3s ease;
}

.home-product-card:hover
.home-product-image img {
  transform: scale(1.04);
}

/* INFO */

.home-product-info {
  padding: 14px;
}

.home-product-name {
  margin: 0 0 10px;

  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;

  color: #fff;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}

.home-product-price {
  display: flex;
  align-items: center;
  gap: 8px;

  flex-wrap: wrap;
}

.home-product-price strong {
  font-size: 20px;
  color: #fff;
}

.home-product-price del {
  font-size: 15px;
  color: #888;
}

/* LOADING */

.products-loading {
  grid-column: 1 / -1;

  padding: 40px 10px;

  text-align: center;

  color: #999;
  font-size: 18px;
}

/* EMPTY */

.products-empty {
  grid-column: 1 / -1;

  padding: 40px 10px;

  text-align: center;

  color: #888;
}

/* ERROR */

.products-error {
  grid-column: 1 / -1;

  padding: 40px 10px;

  text-align: center;

  color: #ff4b4b;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  #hot-products,
  #new-products {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 14px;
  }

}


/* =========================================================
   BLACK STUDIO — PRODUCT SLIDER
   MOBILE = 2.5 PRODUCTS
   NO AUTO SLIDE
   ========================================================= */


/* ---------------------------------------------------------
   MAIN CONTAINER
   --------------------------------------------------------- */

.product-slider {
  position: relative;
  width: 100%;
  overflow: visible;
}


/* ---------------------------------------------------------
   VIEWPORT
   --------------------------------------------------------- */

.product-slider-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;

  touch-action: pan-x;

  cursor: grab;
}


.product-slider-viewport::-webkit-scrollbar {
  display: none;
}


/* ---------------------------------------------------------
   WHEN DRAGGING
   --------------------------------------------------------- */

.product-slider-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}


/* ---------------------------------------------------------
   TRACK
   --------------------------------------------------------- */

.product-slider-track {
  display: flex;

  flex-wrap: nowrap;

  gap: 16px;

  width: max-content;

  min-width: 100%;
}


/* ---------------------------------------------------------
   PRODUCT CARD
   --------------------------------------------------------- */

.product-slider-track
.home-product-card {

  flex: 0 0 auto;

  box-sizing: border-box;

  min-width: 0;

}


/* =========================================================
   MOBILE
   2.5 CARDS
   ========================================================= */

@media (max-width: 600px) {

  .product-slider-track {

    gap: 12px;

  }


  .product-slider-track
  .home-product-card {

    /*
     * 2 full cards + half of third card
     *
     * 100% / 2.5 = 40%
     */

    flex: 0 0
      calc(
        (100vw - 12px * 2) / 2.5
      );

  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

  .product-slider-track {

    gap: 10px;

  }


  .product-slider-track
  .home-product-card {

    flex-basis:
      calc(
        (100vw - 10px * 2) / 2.5
      );

  }

}


/* =========================================================
   ARROWS
   ========================================================= */

.product-slider-arrow {

  position: absolute;

  top: 50%;

  transform:
    translateY(-50%);

  z-index: 20;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  border: 1px solid
    rgba(255,255,255,0.25);

  background:
    rgba(0,0,0,0.75);

  color: #fff;

  font-size: 30px;

  line-height: 1;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease;

}


.product-slider-arrow:hover {

  transform:
    translateY(-50%)
    scale(1.05);

}


.product-slider-arrow:disabled {

  opacity: 0.25;

  cursor: default;

}


/* LEFT */

.product-slider-prev {

  left: 4px;

}


/* RIGHT */

.product-slider-next {

  right: 4px;

}


/* =========================================================
   MOBILE ARROWS
   ========================================================= */

@media (max-width: 600px) {

  .product-slider-arrow {

    width: 36px;

    height: 36px;

    font-size: 26px;

  }


  .product-slider-prev {

    left: 2px;

  }


  .product-slider-next {

    right: 2px;

  }

}

/* =========================================================
   FINAL TOUCH-FRIENDLY PRODUCT SLIDER OVERRIDE
   ---------------------------------------------------------
   Let the browser decide whether a gesture is vertical page
   scrolling or horizontal carousel scrolling. Do NOT lock
   touch to pan-x and do NOT preventDefault() on touch.
   ========================================================= */

.product-slider {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 12px !important;
  padding: 3px 2px 12px !important;
  box-sizing: border-box !important;

  /* KEY: vertical page scrolling remains natural */
  touch-action: pan-x pan-y !important;
  overscroll-behavior-x: contain !important;
  overscroll-behavior-y: auto !important;

  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x proximity !important;
}

.product-slider::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.product-slider > .home-product-card {
  flex: 0 0 calc((100% - 12px * 1.5) / 2.5) !important;
  width: calc((100% - 12px * 1.5) / 2.5) !important;
  min-width: 0 !important;
  max-width: none !important;
  scroll-snap-align: start !important;
  box-sizing: border-box !important;
}

.product-slider.is-dragging {
  cursor: grabbing !important;
}

@media (min-width: 601px) {
  .product-slider > .home-product-card {
    flex-basis: calc((100% - 20px * 3) / 4) !important;
    width: calc((100% - 20px * 3) / 4) !important;
  }
}

@media (max-width: 600px) {
  .product-slider > .home-product-card {
    flex-basis: calc((100% - 12px * 1.5) / 2.5) !important;
    width: calc((100% - 12px * 1.5) / 2.5) !important;
  }
}


/* =========================================================
   BLACK STUDIO — UNIFIED PREMIUM THEME
   Applied to categories, all product cards and home sliders
   ========================================================= */

:root {
  --bs-card-bg: linear-gradient(145deg, #171717 0%, #0d0d0d 100%);
  --bs-card-bg-soft: linear-gradient(145deg, #1d1d1d 0%, #101010 100%);
  --bs-card-border: rgba(255,255,255,.09);
  --bs-card-border-hover: rgba(255,59,48,.62);
  --bs-glow: rgba(255,59,48,.14);
  --bs-image-bg: radial-gradient(circle at 50% 38%, #252525 0%, #151515 42%, #0d0d0d 100%);
  --bs-accent-soft: rgba(255,59,48,.10);
}

/* Shared card language */
.category-card,
.home-product-card,
.product-card {
  position: relative;
  isolation: isolate;
  background: var(--bs-card-bg) !important;
  border: 1px solid var(--bs-card-border) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.category-card::before,
.home-product-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.055), transparent 34%, transparent 70%, rgba(255,59,48,.035));
  z-index: -1;
}

.category-card:hover,
.home-product-card:hover,
.product-card:hover {
  border-color: var(--bs-card-border-hover) !important;
  box-shadow: 0 16px 38px rgba(0,0,0,.34), 0 0 24px var(--bs-glow);
}

/* Category cards */
.category-card {
  border-radius: 18px !important;
  padding: 6px !important;
  background: var(--bs-card-bg-soft) !important;
}

.category-image,
.category-image-box {
  border-radius: 14px !important;
  background: var(--bs-image-bg) !important;
  position: relative;
}

.category-image::after,
.category-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.06), transparent 55%);
  pointer-events: none;
}

.category-image img,
.category-image-box img {
  object-fit: contain !important;
  padding: 12px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.35));
}

.category-card h3,
.category-name {
  margin: 0 !important;
  padding: 12px 8px 10px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  letter-spacing: .1px;
}

/* Product cards */
.home-product-card,
.product-card {
  border-radius: 18px !important;
  background: var(--bs-card-bg) !important;
}

.home-product-image,
.product-image-box {
  background: var(--bs-image-bg) !important;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.055);
}

.home-product-image::after,
.product-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.07), transparent 52%);
  pointer-events: none;
}

.home-product-image img,
.product-image-box img,
.product-image {
  object-fit: contain !important;
  padding: 15px !important;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.38));
}

.home-product-info,
.product-info {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,.08));
}

.home-product-info h3,
.product-info .product-name {
  color: #f8f8f8 !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.home-product-price strong,
.product-price strong {
  color: #fff !important;
  font-weight: 850 !important;
}

.home-product-price del,
.product-price del {
  color: #777 !important;
}

/* Product section itself becomes a themed panel */
.product-section {
  padding: 22px 20px 20px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,59,48,.055), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.018), rgba(0,0,0,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 14px 35px rgba(0,0,0,.18);
}

.product-section-title,
.section-title {
  letter-spacing: -.3px;
}

/* Category area panel */
.categories-section,
.all-categories-section {
  position: relative;
}

.categories-section .container,
.all-categories-section .container {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255,59,48,.045), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.016), rgba(0,0,0,.10));
}

/* Unified section headings */
.section-title,
.product-section-title {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(255,255,255,.04);
}

.section-link,
.product-view-all {
  color: #ff625a !important;
}

@media (max-width: 600px) {
  .product-section {
    padding: 15px 10px 12px;
    border-radius: 20px;
  }

  .categories-section .container,
  .all-categories-section .container {
    padding: 14px 10px;
    border-radius: 20px;
  }

  .home-product-image img,
  .product-image-box img,
  .product-image {
    padding: 11px !important;
  }

  .category-image img,
  .category-image-box img {
    padding: 8px;
  }
}

/* =========================================================
   EXPLORE CATEGORIES — SERIAL CATEGORY BLOCKS
   Each category stays on its own row; only its products slide.
   ========================================================= */
#all-categories.category-grid {
  display: block !important;
  min-height: 0;
  overflow: visible;
}

.home-category-block {
  width: 100%;
  margin: 0 0 42px;
}

.home-category-block:last-child {
  margin-bottom: 0;
}

.home-category-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-category-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}


.home-category-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  font-weight: 850;
}

.home-category-head span {
  display: block;
  margin-top: 5px;
  color: #8f9692;
  font-size: 13px;
}

.home-category-head a {
  flex: 0 0 auto;
  color: #ff625a;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.home-category-head a:hover { text-decoration: underline; }

.category-products-slider {
  position: relative;
  width: 100%;
}

.category-products-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  cursor: grab;
  padding: 2px 2px 12px;
}

.category-products-viewport::-webkit-scrollbar { display: none; }

.home-category-products {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content;
  min-width: 100%;
  gap: 14px;
}

.home-category-products .category-product-card {
  flex: 0 0 235px !important;
  width: 235px !important;
  scroll-snap-align: start;
}

.category-products-arrow {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(10,10,10,.78);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: opacity .18s ease, transform .18s ease;
}

.category-products-arrow.prev { left: 8px; }
.category-products-arrow.next { right: 8px; }
.category-products-arrow:hover { transform: scale(1.06); }
.category-products-arrow:disabled { opacity: .24; pointer-events: none; }
/* Keep directional controls visible for every Explore Category rail. */
.category-products-slider.no-overflow .category-products-arrow { display: grid; opacity: .32; }

/* Product cards must always have a stable image box while loading. */
.home-category-products .home-product-image,
#hot-products .home-product-image,
#new-products .home-product-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

@media (max-width: 600px) {
  .home-category-block { margin-bottom: 34px; }

  .home-category-head {
    align-items: center;
    margin-bottom: 12px;
  }

  .home-category-head h3 { font-size: 20px; }

  .home-category-products { gap: 10px; }

  .home-category-products .category-product-card {
    flex-basis: calc((100vw - 52px) / 2.15) !important;
    width: calc((100vw - 52px) / 2.15) !important;
    max-width: 230px;
  }

  .category-products-arrow { display: grid !important; width: 36px; height: 36px; font-size: 24px; }
}

/* =========================================================
   SUPPORT — WhatsApp + Telegram logos
   ========================================================= */
.support-item .support-logo {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: block;
}

.support-item.whatsapp .support-logo { color: #25D366; }
.support-item.telegram .support-logo { color: #229ED9; }


/* =========================================================
   PERMANENT MOBILE SWIPE FIX
   - Finger drag works directly on product rails.
   - Vertical page scrolling is preserved.
   - Links remain clickable when the user taps without dragging.
   ========================================================= */
.category-products-viewport,
#home-categories .category-viewport {
  position: relative;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  touch-action: pan-y !important;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.category-products-viewport::-webkit-scrollbar,
#home-categories .category-viewport::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.category-products-viewport.is-dragging,
#home-categories .category-viewport.is-dragging {
  cursor: grabbing;
}

.category-products-viewport img,
#home-categories .category-viewport img {
  pointer-events: none !important;
  -webkit-user-drag: none !important;
}

.category-products-viewport .home-category-products {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  min-width: max-content !important;
}

#home-categories .category-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  min-width: max-content !important;
  transform: none !important;
}

/* =========================================================
   FINAL POLISH — PROFESSIONAL FOOTER + SMOOTH EXPLORE RAILS
   ========================================================= */
.site-footer {
  margin-top: 72px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,230,161,.08), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(38,217,255,.055), transparent 30%),
    #090909 !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
.site-footer > .container {
  padding-top: 42px !important;
  padding-bottom: 22px !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(130px, .8fr) minmax(130px, .8fr);
  gap: 44px;
}
.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-head strong { font-size: 22px; letter-spacing: -.3px; }
.footer-logo-mark {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px !important;
  flex: 0 0 42px;
}
.footer-logo-mark.has-site-logo img { object-fit: contain !important; }
.footer-brand p {
  max-width: 520px;
  margin-top: 13px !important;
  color: #909795 !important;
  font-size: 14px !important;
  line-height: 1.7;
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 18px;
  color: #8f9692;
  font-size: 12px;
}
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col h3 { margin-bottom: 4px; font-size: 14px; color: #fff; }
.footer-col a { color: #8f9692; font-size: 13px; transition: color .18s ease, transform .18s ease; }
.footer-col a:hover { color: #fff; transform: translateX(2px); }
.footer-bottom {
  margin-top: 34px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(255,255,255,.07) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6f7774 !important;
  font-size: 11px !important;
}

/* Cleaner support logos */
.support-item.whatsapp .support-logo { color: #25D366 !important; }
.support-item.telegram .support-logo { color: #229ED9 !important; }

/* Explore category product rails: more breathing room + smooth momentum */
.category-products-viewport {
  scroll-snap-type: x proximity !important;
  scroll-padding-inline: 8px;
  overscroll-behavior-inline: contain !important;
  padding: 4px 8px 16px !important;
}
.home-category-products {
  gap: 18px !important;
  padding-right: 18px;
}
.home-category-products .category-product-card {
  flex: 0 0 250px !important;
  width: 250px !important;
  scroll-snap-align: start;
  border-radius: 20px !important;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.home-category-products .category-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,.25);
}
.category-products-arrow { opacity: .72; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .home-category-products { gap: 16px !important; }
  .home-category-products .category-product-card {
    flex-basis: 230px !important;
    width: 230px !important;
  }
  .category-products-viewport { padding-inline: 4px !important; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-head strong { font-size: 20px; }
  .footer-trust { gap: 7px 11px; }
  .home-category-products .category-product-card {
    flex-basis: 224px !important;
    width: 224px !important;
  }
}


/* =========================================================
   FINAL PREMIUM BRAND + CATEGORY RAIL + FOOTER POLISH
   ========================================================= */
.logo {
  gap: 12px !important;
  min-width: 0;
}
.logo-mark {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(255,59,48,.20);
  border: 1px solid rgba(255,255,255,.10);
}
.logo-text {
  font-size: clamp(20px, 2.1vw, 25px) !important;
  font-weight: 900 !important;
  letter-spacing: -.7px !important;
  line-height: 1 !important;
  background: linear-gradient(120deg,#fff 0%,#e9eeee 48%,#9af8dd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  text-shadow: 0 0 26px rgba(0,230,160,.08);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 330px);
}
.logo:hover .logo-text { letter-spacing: -.5px !important; }

/* Explore Categories uses the exact same product-card proportions as Hot/New. */
.home-category-products .category-product-card {
  flex: 0 0 min(296px, calc((100vw - 74px) / 4)) !important;
  width: min(296px, calc((100vw - 74px) / 4)) !important;
  max-width: none !important;
  min-width: 0 !important;
}
.home-category-products .category-product-card .home-product-image,
#hot-products .home-product-image,
#new-products .home-product-image { aspect-ratio: 1 / 1 !important; }

/* Smoother touch rail: no sticky oversized cards and no layout jump. */
.category-products-viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x proximity !important;
  touch-action: pan-x !important;
  overscroll-behavior-x: contain !important;
  scrollbar-width: none;
}
.category-products-viewport::-webkit-scrollbar { display:none; }
.home-category-products { gap: 14px !important; width: max-content; min-width: 100%; }
.home-category-products .category-product-card { scroll-snap-align:start; }

/* Premium footer */
.site-footer {
  margin-top: 86px !important;
  background:
    radial-gradient(700px 240px at 15% 0%, rgba(0,230,160,.07), transparent 70%),
    linear-gradient(180deg,#0b0d0c 0%,#070707 100%) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
}
.site-footer > .container { padding-top: 52px !important; padding-bottom: 18px !important; }
.footer-grid {
  grid-template-columns: minmax(0,1.7fr) repeat(2,minmax(150px,.75fr)) !important;
  gap: 52px !important;
}
.footer-brand-head { gap: 13px !important; }
.footer-brand-head strong {
  font-size: 22px !important;
  font-weight: 900 !important;
  letter-spacing: -.4px;
}
.footer-logo-mark {
  width: 46px !important; height: 46px !important; flex-basis:46px !important;
  border-radius: 13px !important;
}
.footer-brand p { max-width: 500px; font-size: 13px !important; line-height:1.8 !important; }
.footer-trust span {
  display:inline-flex; align-items:center; padding:7px 10px;
  border:1px solid rgba(255,255,255,.07); border-radius:999px;
  background:rgba(255,255,255,.025);
}
.footer-col h3 { font-size:13px !important; text-transform:uppercase; letter-spacing:.14em; color:#dce3e0 !important; }
.footer-col a { font-size:13px !important; color:#8d9692 !important; }
.footer-col a:hover { color:#00e6a0 !important; }
.footer-bottom { margin-top:42px !important; padding-top:20px !important; font-size:11px !important; }

@media (max-width: 700px) {
  .logo-mark { width:36px !important; height:36px !important; min-width:36px; border-radius:11px !important; }
  .logo-text { font-size:19px !important; max-width:46vw; letter-spacing:-.55px !important; }
  .home-category-products { gap: 12px !important; }
  .home-category-products .category-product-card {
    flex-basis: calc((100vw - 52px) / 2.15) !important;
    width: calc((100vw - 52px) / 2.15) !important;
    max-width: 230px !important;
  }
  .footer-grid { grid-template-columns:1fr 1fr !important; gap:30px 22px !important; }
  .footer-brand { grid-column:1 / -1; }
}
@media (max-width: 420px) {
  .logo-text { font-size:18px !important; max-width:48vw; }
  .home-category-products { gap: 11px !important; }
  .home-category-products .category-product-card {
    flex-basis: calc((100vw - 52px) / 2.15) !important;
    width: calc((100vw - 52px) / 2.15) !important;
    max-width: 230px !important;
  }
}

.support-item { display:flex; align-items:center; gap:12px; }
.support-item .support-logo { width:24px; height:24px; flex:0 0 24px; display:block; }
.support-item.whatsapp .support-logo { color:#25D366 !important; }
.support-item.telegram .support-logo { color:#229ED9 !important; }

/* =========================================================
   FINAL STORE-WIDE PRODUCT CARD THEME
   Consistent spacing, proportions and visual language across
   Hot, New, Explore and future product rails.
   ========================================================= */
:root{
  --bs-card-gap:14px;
  --bs-card-radius:20px;
  --bs-card-bg:linear-gradient(145deg,#111917 0%,#0b100f 100%);
  --bs-card-border:rgba(0,230,161,.14);
}
.product-section #hot-products,
.product-section #new-products,
.category-products-viewport .home-category-products{
  gap:var(--bs-card-gap) !important;
}
.product-section .home-product-card,
.category-products-viewport .home-product-card{
  margin:0 !important;
  border-radius:var(--bs-card-radius) !important;
  background:var(--bs-card-bg) !important;
  border:1px solid var(--bs-card-border) !important;
  box-shadow:0 10px 30px rgba(0,0,0,.20) !important;
}
.product-section .home-product-card + .home-product-card,
.category-products-viewport .home-product-card + .home-product-card{
  margin-left:0 !important;
}
.category-products-viewport{
  padding-left:4px !important;
  padding-right:4px !important;
  touch-action:pan-x !important;
}
.category-products-viewport .home-category-products{
  padding-left:2px !important;
  padding-right:18px !important;
}
.category-products-viewport .home-product-card:hover{
  border-color:rgba(0,230,161,.34) !important;
  box-shadow:0 16px 36px rgba(0,0,0,.28),0 0 20px rgba(0,230,161,.06) !important;
}
@media(max-width:600px){
  .category-products-viewport .home-category-products{gap:12px !important}
  .category-products-viewport .home-product-card{border-radius:18px !important}
}


/* =========================================================
   STORE-WIDE PRODUCT CARD SYSTEM
   Same spacing/theme for Hot, New, Explore, Shop and Related.
   ========================================================= */
.product-card,
.related-product-card{
  background:linear-gradient(145deg,#111917 0%,#0b100f 100%) !important;
  border:1px solid rgba(0,230,161,.13) !important;
  border-radius:20px !important;
  box-shadow:0 10px 30px rgba(0,0,0,.20) !important;
  overflow:hidden;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.product-card:hover,
.related-product-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,230,161,.34) !important;
  box-shadow:0 16px 36px rgba(0,0,0,.28),0 0 20px rgba(0,230,161,.06) !important;
}
.product-card .product-image-box,
.related-product-card .related-product-image{
  background:radial-gradient(circle at 50% 35%,#202725 0%,#141918 52%,#0d1110 100%) !important;
}
@media(max-width:600px){
  .product-card,.related-product-card{border-radius:17px !important}
}

/* FINAL EXPLORE RAIL + LOADING POLISH */
.category-products-viewport, #home-categories .category-viewport {
  overflow-x:auto !important; overflow-y:hidden !important;
  -webkit-overflow-scrolling:touch !important; scrollbar-width:none !important;
  touch-action:pan-x !important; overscroll-behavior-x:contain !important;
  cursor:grab !important; user-select:none !important;
}
.category-products-viewport::-webkit-scrollbar, #home-categories .category-viewport::-webkit-scrollbar{display:none!important}
.category-products-viewport.is-dragging, #home-categories .category-viewport.is-dragging{cursor:grabbing!important; scroll-behavior:auto!important}
.category-products-viewport .home-category-products{display:flex!important; flex-wrap:nowrap!important; width:max-content!important; min-width:max-content!important}
.category-products-viewport .home-product-card{flex:0 0 min(296px,calc((100vw - 74px)/4))!important; width:min(296px,calc((100vw - 74px)/4))!important}
.bs-category-skeletons{display:grid;gap:24px}
.bs-category-skeleton{padding:16px;border:1px solid rgba(255,255,255,.06);border-radius:20px;background:linear-gradient(145deg,#111817,#0b0f0e);overflow:hidden}
.bs-sk-img,.bs-sk-line,.bs-sk-rail i{display:block;background:linear-gradient(90deg,#161c1a 25%,#202925 50%,#161c1a 75%);background-size:200% 100%;animation:bsShimmer 1.25s infinite;border-radius:12px}
.bs-sk-img{height:190px}.bs-sk-line{height:15px;width:45%;margin-top:14px}.bs-sk-line.short{width:28%;margin-top:8px}.bs-sk-rail{display:flex;gap:12px;margin-top:16px}.bs-sk-rail i{height:150px;flex:0 0 23%;border-radius:16px}
@keyframes bsShimmer{to{background-position:-200% 0}}
.pd-skeleton{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:34px;padding:20px;border-radius:24px;background:#0d1210;border:1px solid rgba(255,255,255,.07)}
.pd-skeleton-media,.pd-skeleton-info i{background:linear-gradient(90deg,#151b19 25%,#222a27 50%,#151b19 75%);background-size:200% 100%;animation:bsShimmer 1.25s infinite}.pd-skeleton-media{aspect-ratio:1;border-radius:20px}.pd-skeleton-info{display:flex;flex-direction:column;gap:16px;justify-content:center}.pd-skeleton-info i{display:block;height:18px;border-radius:9px;width:55%}.pd-skeleton-info i.wide{width:85%;height:120px;border-radius:16px}
@media(max-width:600px){.category-products-viewport .home-product-card{flex-basis:calc((100vw - 52px)/2.5)!important;width:calc((100vw - 52px)/2.5)!important;max-width:none!important}.pd-skeleton{grid-template-columns:1fr;padding:12px}.pd-skeleton-media{max-height:320px}.bs-sk-rail i{flex-basis:42%}}

/* Premium marker before every Explore Category title */
.home-category-head h3{display:flex;align-items:center;gap:11px}
.home-category-head h3::before{content:"";display:inline-block;flex:0 0 5px;width:5px;height:30px;border-radius:999px;background:linear-gradient(180deg,#ff3b30 0%,#ff8b38 34%,#00e6a1 67%,#25d9ff 100%);box-shadow:0 0 18px rgba(0,230,161,.22),0 0 14px rgba(255,59,48,.18)}
@media(max-width:600px){.home-category-head h3{gap:10px}.home-category-head h3::before{width:5px;height:30px;flex-basis:5px}}


/* ============================================================
   ULTRA-SMOOTH 60FPS MOTION PASS
   GPU-friendly: transform/opacity only for animated motion.
   No business/data logic changed.
   ============================================================ */
:root{--bs-ease-smooth:cubic-bezier(.22,.61,.36,1);--bs-ease-spring:cubic-bezier(.2,.8,.2,1)}

/* Keep common interactive motion on compositor-friendly properties. */
button,a,.product-card,.category-card,.related-product-card,.pd-cart-btn,.pd-buy-btn,
.bs-mobile-nav-item,.category-products-arrow,.search-result-card{
  -webkit-tap-highlight-color:transparent;
}

/* Support button: subtle continuous premium motion, not a distracting pulse. */
.bs-support-toggle{
  will-change:transform,box-shadow;
  transform:translate3d(0,0,0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  animation:bsSupportFloat60 3.2s var(--bs-ease-smooth) infinite;
}
.bs-support-toggle:hover{
  animation-play-state:paused;
  transform:translate3d(0,-2px,0) scale(1.025);
}
.bs-support-toggle:active{
  animation-play-state:paused;
  transform:translate3d(0,0,0) scale(.97);
}
.bs-support-orb-icon{
  transform:translate3d(0,0,0);
  will-change:transform;
  animation:bsSupportIcon60 3.2s var(--bs-ease-smooth) infinite;
}
.bs-support-panel{
  will-change:transform,opacity;
  transform:translate3d(0,0,0);
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.bs-support-link{
  will-change:transform,background-color;
  transform:translate3d(0,0,0);
}

/* Generic premium micro-interactions. */
.product-card,.category-card,.related-product-card,.pd-cart-btn,.pd-buy-btn,
.bs-mobile-nav-item,.category-products-arrow,.support-item,.support-button{
  will-change:transform;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}

/* Page/section reveal helper for elements that already opt into .bs-motion. */
.bs-motion{
  will-change:transform,opacity;
  animation:bsMotionIn60 .28s var(--bs-ease-smooth) both;
}

@keyframes bsSupportFloat60{
  0%,100%{transform:translate3d(0,0,0)}
  50%{transform:translate3d(0,-2px,0)}
}
@keyframes bsSupportIcon60{
  0%,100%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(0,-1px,0) scale(1.015)}
}
@keyframes bsMotionIn60{
  from{opacity:0;transform:translate3d(0,6px,0)}
  to{opacity:1;transform:translate3d(0,0,0)}
}

@media (prefers-reduced-motion:reduce){
  .bs-support-toggle,.bs-support-orb-icon,.bs-motion{animation:none!important}
  *,*::before,*::after{scroll-behavior:auto!important}
}


/* FINAL SUPPORT + CATEGORY POLISH */
.bs-support-orb-icon{display:grid!important;place-items:center!important;width:24px!important;height:24px!important;font-size:0!important;line-height:0!important;animation:none!important;transform:none!important}
.bs-support-orb-icon svg{display:block!important;width:24px!important;height:24px!important;color:#fff!important;fill:currentColor!important}
.bs-support-pulse{display:none!important;animation:none!important}
.bs-support-toggle{animation:none!important;will-change:transform,box-shadow!important;transition:transform .22s cubic-bezier(.22,.61,.36,1),box-shadow .22s ease,filter .22s ease!important}
.bs-support-toggle:hover{animation:none!important;transform:translate3d(0,-2px,0) scale(1.02)!important;filter:brightness(1.03)!important}
.bs-support-toggle:active{transform:translate3d(0,0,0) scale(.98)!important}
.bs-support-panel{animation:none!important;transition:opacity .18s ease,transform .18s cubic-bezier(.22,.61,.36,1)!important}
