/* ==== arshad-wave1-ui.css ==== */
/**
 * Wave 1 â€” professional chrome + home polish.
 * Tokens respect Admin theme via --primaryColor when set.
 */

:root {
  --arshad-bg: #f4f7fb;
  --arshad-surface: #ffffff;
  --arshad-text: #0f172a;
  --arshad-muted: #64748b;
  --arshad-border: #e2e8f0;
  --arshad-accent: var(--primaryColor, #0a85d1);
  --arshad-accent-soft: color-mix(in srgb, var(--arshad-accent) 12%, #fff);
  --arshad-radius: 14px;
  --arshad-radius-sm: 10px;
  --arshad-shadow: 0 12px 40px -24px rgba(15, 23, 42, 0.35);
  --arshad-shadow-soft: 0 8px 28px -18px rgba(15, 23, 42, 0.28);
  --arshad-section-y: clamp(3rem, 5vw, 4.5rem);
  /* No CDN font â€” local stack (was Futura via slow fonts.cdnfonts.com) */
  --arshad-font-display: "Trebuchet MS", "Segoe UI", Candara, sans-serif;
}

body {
  background: var(--arshad-bg);
  color: var(--arshad-text);
}

/* ---------- Global CTAs (kill ThemeForest invert wipe; brand interactive) ---------- */
.default__button {
  background: var(--arshad-accent) !important;
  border: 1px solid var(--arshad-accent) !important;
  color: #fff !important;
  border-radius: var(--arshad-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease !important;
}

.default__button::after {
  display: none !important;
  content: none !important;
}

.default__button:hover,
.default__button:focus-visible,
.default__button:active {
  background: color-mix(in srgb, var(--arshad-accent) 88%, #000) !important;
  border-color: color-mix(in srgb, var(--arshad-accent) 88%, #000) !important;
  color: #fff !important;
  transform: translateY(-1px);
  outline: none;
}

.default__button:focus-visible {
  outline: 2px solid var(--arshad-accent) !important;
  outline-offset: 2px;
}

.default__button:disabled,
.default__button:disabled:hover,
.default__button:disabled:focus-visible,
.default__button:disabled:active,
.default__button.is-disabled,
.default__button.is-disabled:hover {
  opacity: 0.55;
  transform: none !important;
  pointer-events: none;
  cursor: not-allowed;
}

.default__button.black__button,
.default__button.btn__black {
  background: var(--arshad-surface) !important;
  border: 1px solid var(--arshad-accent) !important;
  color: var(--arshad-accent) !important;
}

.default__button.black__button:hover,
.default__button.black__button:focus-visible,
.default__button.black__button:active,
.default__button.btn__black:hover,
.default__button.btn__black:focus-visible,
.default__button.btn__black:active {
  background: var(--arshad-accent-soft) !important;
  border-color: var(--arshad-accent) !important;
  color: var(--arshad-accent) !important;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .default__button,
  .default__button:hover,
  .default__button:focus-visible,
  .default__button:active {
    transition: none !important;
    transform: none !important;
  }
}

/* ---------- Trust bar (replaces noisy duplicated ticker) ---------- */
.arshad-trustbar {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--arshad-accent) 92%, #031525),
    var(--arshad-accent)
  );
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.arshad-trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  padding: 0.55rem 1rem;
  margin: 0 auto;
  max-width: 1320px;
}

.arshad-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  white-space: nowrap;
  opacity: 0.95;
}

.arshad-trustbar__item + .arshad-trustbar__item::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  margin-right: 1.25rem;
  display: inline-block;
}

@media (max-width: 767px) {
  .arshad-trustbar__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    padding: 0.5rem 0.85rem;
  }
  .arshad-trustbar__inner::-webkit-scrollbar {
    display: none;
  }
  .arshad-trustbar__item + .arshad-trustbar__item::before {
    margin-right: 0.75rem;
  }
}

/* Elite HeaderTopBar â€” Stealth Luxury (scoped; GPU-friendly motion) */
.arshad-headertopbar.headertopbar__2,
.arshad-headertopbar.headertopbar__7 {
  display: flex !important;
  align-items: center !important;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2px 0;
  min-height: 28px;
  background: linear-gradient(90deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  background-size: 200% auto;
  animation: arshad-topbar-shine 8s linear infinite;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.arshad-headertopbar.headertopbar__7::before,
.arshad-headertopbar.headertopbar__7::after {
  content: none;
  display: none;
}

.arshad-headertopbar .arshad-topbar-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 24px;
  overflow: hidden;
}

.arshad-headertopbar .headertopbar__animate,
.arshad-headertopbar .headertopbar__animate__text,
.arshad-headertopbar .arshad-topbar-container {
  display: flex !important;
  width: max-content !important;
  min-width: 0;
  align-items: center;
  padding: 0;
  white-space: nowrap !important;
  animation: arshad-topbar-scroll 32s linear infinite !important;
  backface-visibility: hidden;
}

.arshad-headertopbar .arshad-topbar-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.arshad-headertopbar:hover .headertopbar__animate,
.arshad-headertopbar:hover .arshad-topbar-container {
  animation-play-state: paused;
}

.arshad-headertopbar .headertopbar__animate .header__animate__item {
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  flex-shrink: 0;
}

.arshad-headertopbar .animate__item__text,
.arshad-headertopbar .headertopbar__animate .header__animate__item p {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: #ffffff;
  opacity: 0.92;
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
  line-height: 1.15;
  text-shadow: none;
  transition:
    color 0.4s ease,
    text-shadow 0.4s ease,
    transform 0.4s ease,
    opacity 0.4s ease;
}

.arshad-headertopbar .animate__item__text:hover,
.arshad-headertopbar .headertopbar__animate .header__animate__item p:hover {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
  transform: scale(1.05);
  opacity: 1;
}

/* Kill theme bullet dots â€” dividers only */
.arshad-headertopbar .headertopbar__animate .header__animate__item p:before,
.arshad-headertopbar .header__animate__item p:before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Clear vertical metallic bar (drawn stroke; | kept in DOM for a11y fallback) */
.arshad-headertopbar .metallic-divider {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin: 0 12px;
  overflow: visible;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  transform: rotate(15deg) !important;
  animation: arshad-gold-pulse 2s ease-in-out infinite !important;
}

.arshad-headertopbar .metallic-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 12px;
  margin: -6px 0 0 -1px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    #ffe9a0 0%,
    #d4af37 42%,
    #8f7020 100%
  );
  box-shadow:
    0 0 5px rgba(255, 215, 0, 0.85),
    0 0 10px rgba(212, 175, 55, 0.55);
  pointer-events: none;
}

@keyframes arshad-topbar-shine {
  to {
    background-position: 200% center;
  }
}

@keyframes arshad-topbar-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes arshad-gold-pulse {
  0%,
  100% {
    opacity: 0.7;
    filter: brightness(0.95);
  }
  50% {
    opacity: 1;
    filter: brightness(1.25);
  }
}

@media (max-width: 767px) {
  .arshad-headertopbar.headertopbar__2,
  .arshad-headertopbar.headertopbar__7 {
    padding: 1px 0;
    min-height: 26px;
  }

  .arshad-headertopbar .headertopbar__animate,
  .arshad-headertopbar .headertopbar__animate__text,
  .arshad-headertopbar .arshad-topbar-container {
    animation-duration: 38s !important;
  }

  .arshad-headertopbar .metallic-divider {
    margin: 0 8px;
    width: 14px;
    height: 14px;
  }

  .arshad-headertopbar .metallic-divider::after {
    height: 12px;
    margin-top: -6px;
  }

  .arshad-headertopbar .animate__item__text,
  .arshad-headertopbar .headertopbar__animate .header__animate__item p {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arshad-headertopbar.headertopbar__2,
  .arshad-headertopbar.headertopbar__7 {
    animation: none;
    background-position: center;
  }

  .arshad-headertopbar .headertopbar__animate,
  .arshad-headertopbar .headertopbar__animate__text,
  .arshad-headertopbar .arshad-topbar-container {
    animation: none !important;
    justify-content: center;
    flex-wrap: wrap;
    width: 100% !important;
    min-width: 0;
    white-space: normal !important;
    row-gap: 0.2rem;
  }

  .arshad-headertopbar .arshad-topbar-content[aria-hidden="true"] {
    display: none !important;
  }

  .arshad-headertopbar .metallic-divider {
    animation: none !important;
    opacity: 0.9;
    filter: none;
  }

  .arshad-headertopbar:hover .headertopbar__animate {
    animation-play-state: running;
  }

  .arshad-headertopbar .animate__item__text:hover,
  .arshad-headertopbar .headertopbar__animate .header__animate__item p:hover {
    transform: none;
  }
}

/* ---------- Header chrome ---------- */
.headerarea.header__sticky {
  background: color-mix(in srgb, var(--arshad-surface) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--arshad-border) 80%, transparent);
  box-shadow: var(--arshad-shadow-soft);
}

/*
 * Mega menu was clipped by main.overflow__hidden + sat under the hero.
 * Keep mobile overflow hidden for drawers; free desktop menus.
 */
@media (min-width: 992px) {
  main.main_wrapper.overflow__hidden {
    overflow: visible !important;
  }

  /* Keep header (and mega menus) above the home hero */
  header,
  .headerarea,
  .headerarea.header__sticky,
  .mob_menu_wrapper.headerarea {
    position: relative;
    z-index: 1200;
  }

  /* Keep theme position-static on mega-menu items (full-width panel) */
  .headerarea__main__menu nav > ul > li:hover {
    z-index: 1210;
  }

  .headerarea__main__menu nav ul > li .headerarea__submenu,
  .headerarea__main__menu nav ul > li .headerarea__submenu.headerarea__megamenu {
    z-index: 1220 !important;
  }

  .headerarea__main__menu nav ul > li:hover .headerarea__submenu {
    /* Ensure clip-open wins even if a later rule fights it */
    visibility: visible !important;
    opacity: 1 !important;
    clip: rect(0px, 100vw, 200vh, -30px) !important;
    pointer-events: auto !important;
  }

  .arshad-hero-banner {
    z-index: 0;
    isolation: isolate;
    pointer-events: auto;
  }

  /* Keep product photo above the left fade; content above both */
  .arshad-hero-banner__slide::after {
    z-index: 1;
  }

  .arshad-hero-banner__image {
    z-index: 2;
  }

  .arshad-hero-banner__content {
    z-index: 3;
  }
}

.headerarea__logo img {
  max-height: 48px;
  width: auto;
}

.headerarea__main__menu nav > ul > li > a {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--arshad-text);
}

.headerarea__main__menu nav > ul > li > a:hover {
  color: var(--arshad-accent);
}

.header__label {
  border-radius: 4px !important;
  font-size: 0.65rem !important;
  padding: 0.12rem 0.4rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Quiet mega-menu density on desktop */
.headerarea__megamenu {
  border-radius: var(--arshad-radius-sm);
  border: 1px solid var(--arshad-border);
  box-shadow: var(--arshad-shadow);
}

.headerarea__right,
.headermiddle__right {
  gap: 0.35rem;
}

.headermiddle__bar a {
  border-radius: var(--arshad-radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.headermiddle__bar a:hover {
  background: var(--arshad-accent-soft);
  color: var(--arshad-accent);
}

.mob_menu_wrapper.headerarea {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.header-cart-badge {
  background: var(--arshad-accent) !important;
  font-weight: 700;
}

/* ---------- Footer polish ---------- */
.footer {
  background: var(--arshad-surface);
  border-top: 1px solid var(--arshad-border);
  margin-top: 1rem;
}

.footer__title {
  font-family: var(--arshad-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--arshad-text);
  margin-bottom: 1rem;
}

.footer__menu ul li a {
  color: var(--arshad-muted);
}

.footer__menu ul li a:hover {
  color: var(--arshad-accent);
}

.footer__payments .badge {
  background: var(--arshad-bg) !important;
  border-color: var(--arshad-border) !important;
  border-radius: var(--arshad-radius-sm) !important;
  font-weight: 600;
}

.copyright {
  border-top: 1px solid var(--arshad-border);
  background: color-mix(in srgb, var(--arshad-bg) 65%, #fff);
}

/* ---------- Home hero — premium glass card + hover arrows ----------
 * Distinctive: alternating card L/R on desktop (≥992).
 * Motion: one rise keyframe (card + staggered children on .slick-current).
 * Tokens: --arshad-surface / text / muted; type: Inter (--bodyFont).
 * CSS-only — no extra JS / fonts.
 */
.arshad-hero-banner {
  --arshad-hero-radius: 20px;
  --arshad-hero-inset: clamp(10px, 1.6vw, 18px);
  --arshad-hero-font: var(--bodyFont, "Inter", system-ui, sans-serif);
  position: relative;
  margin: var(--arshad-hero-inset);
  overflow: hidden;
  border-radius: var(--arshad-hero-radius);
  background: #0b1220;
  box-shadow: 0 14px 44px rgba(12, 18, 34, 0.14);
}

.arshad-hero-banner .slick-list,
.arshad-hero-banner .slick-track {
  border-radius: inherit;
}

.arshad-hero-banner__slide {
  position: relative;
}

/* Override ThemeForest wipe: ArshadPc hero owns visibility via rise keyframe.
   Without this, style.css hides .ltn__slide-animation children (opacity:0) until
   .slick-current appears — and non-.animated elements (brand, support) stay hidden
   even after Slick initialises on desktop. */
.arshad-hero-banner .ltn__slide-animation > * {
  opacity: 1 !important;
  visibility: visible !important;
  animation-name: none !important;
}

.arshad-hero-banner .herobanner__brand {
  display: block;
  font-family: var(--arshad-hero-font);
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.4rem;
  color: var(--arshad-text);
  text-shadow: none;
  text-wrap: balance;
}

.arshad-hero-banner .herobanner__title {
  font-family: var(--arshad-hero-font) !important;
  font-size: clamp(1.05rem, 2vw, 1.4rem) !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  margin: 0 0 0.55rem !important;
  color: var(--arshad-text) !important;
  max-width: 26ch;
  text-wrap: balance;
}

.arshad-hero-banner .herobanner__title strong {
  font-weight: 600;
}

.arshad-hero-banner .herobanner__support {
  margin: 0 0 1.15rem;
  font-family: var(--arshad-hero-font);
  font-size: clamp(0.88rem, 1.35vw, 0.98rem);
  line-height: 1.55;
  color: var(--arshad-muted);
  max-width: 38ch;
}

.arshad-hero-banner .herobanner__small__title {
  display: none !important;
}

.arshad-hero-banner .default__button {
  background: var(--arshad-accent) !important;
  color: #fff !important;
  border: 1px solid var(--arshad-accent) !important;
  border-radius: var(--arshad-radius-sm) !important;
  padding: 0.8rem 1.45rem !important;
  font-family: var(--arshad-hero-font) !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--arshad-accent) 35%, transparent) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.arshad-hero-banner .default__button::after {
  display: none !important;
  content: none !important;
}

.arshad-hero-banner .default__button:hover,
.arshad-hero-banner .default__button:active {
  background: color-mix(in srgb, var(--arshad-accent) 88%, #000) !important;
  border-color: color-mix(in srgb, var(--arshad-accent) 88%, #000) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--arshad-accent) 40%, transparent) !important;
}

.arshad-hero-banner .default__button:focus-visible {
  outline: 2px solid var(--arshad-accent) !important;
  outline-offset: 3px;
  color: #fff !important;
}

/* Glassmorphism card */
.arshad-hero-banner .herobanner__text__wraper {
  font-family: var(--arshad-hero-font);
  color: var(--arshad-text);
  text-align: left !important;
  width: min(24.5rem, 100%);
  max-width: min(24.5rem, 40%);
  margin: 0 !important;
  padding: clamp(1.15rem, 2.4vw, 1.85rem) clamp(1.25rem, 2.6vw, 2rem);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      rgb(255 255 255 / 0.78) 0%,
      rgb(255 255 255 / 0.52) 100%
    );
  border: 1px solid rgb(255 255 255 / 0.62);
  border-left: 3px solid var(--arshad-accent);
  box-shadow:
    0 18px 48px rgb(15 23 42 / 0.16),
    inset 0 1px 0 rgb(255 255 255 / 0.7);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  opacity: 1;
}

/* Card + children rise — current slide only; one keyframe, staggered delays */
.arshad-hero-banner .slick-slide.slick-current .herobanner__text__wraper {
  animation: arshad-hero-rise 0.55s ease both;
}

.arshad-hero-banner .slick-slide.slick-current .herobanner__brand,
.arshad-hero-banner .slick-slide.slick-current .herobanner__title,
.arshad-hero-banner .slick-slide.slick-current .herobanner__support,
.arshad-hero-banner .slick-slide.slick-current .herobanner__button {
  animation: arshad-hero-rise 0.5s ease both;
}

.arshad-hero-banner .slick-slide.slick-current .herobanner__brand {
  animation-delay: 0.05s;
}

.arshad-hero-banner .slick-slide.slick-current .herobanner__title {
  animation-delay: 0.11s;
}

.arshad-hero-banner .slick-slide.slick-current .herobanner__support {
  animation-delay: 0.17s;
}

.arshad-hero-banner .slick-slide.slick-current .herobanner__button {
  animation-delay: 0.23s;
}

.arshad-hero-banner:not(.slick-initialized) .herobanner__text__wraper,
.arshad-hero-banner:not(.slick-initialized) .herobanner__brand,
.arshad-hero-banner:not(.slick-initialized) .herobanner__title,
.arshad-hero-banner:not(.slick-initialized) .herobanner__support,
.arshad-hero-banner:not(.slick-initialized) .herobanner__button {
  animation: none;
}

/* Positioner only */
.arshad-hero-banner .arshad-hero-banner__content.herobanner__inner__3 {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2;
  display: flex !important;
  align-items: center;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  min-height: 0 !important;
  padding: clamp(1.25rem, 3.5vw, 2.75rem) !important;
  background: transparent !important;
  transform: none !important;
  pointer-events: none;
}

.arshad-hero-banner .herobanner__text__wraper,
.arshad-hero-banner .herobanner__text__wraper a {
  pointer-events: auto;
}

@media (min-width: 992px) {
  .arshad-hero-banner__slide--card-left .arshad-hero-banner__content.herobanner__inner__3 {
    justify-content: flex-start;
  }

  .arshad-hero-banner__slide--card-right .arshad-hero-banner__content.herobanner__inner__3 {
    justify-content: flex-end;
  }

  .arshad-hero-banner__slide--card-right .herobanner__text__wraper {
    text-align: left !important;
    border-left: 3px solid var(--arshad-accent);
    border-right: 1px solid rgb(255 255 255 / 0.45);
  }
}

/* ===== WIDE ===== */
.arshad-hero-banner__slide--wide {
  min-height: 0;
  background: #0b1220;
}

.arshad-hero-banner__slide--wide .arshad-hero-banner__image {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  background: #0b1220 !important;
  overflow: hidden !important;
  aspect-ratio: 1920 / 750 !important;
  border-radius: 0 !important;
}

.arshad-hero-banner__slide--wide .arshad-hero-banner__image::before {
  display: none;
}

.arshad-hero-banner__slide--wide .arshad-hero-banner__image picture,
.arshad-hero-banner__slide--wide .arshad-hero-banner__image img,
.arshad-hero-banner__slide--wide .arshad-hero-banner__img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  filter: none;
  background: transparent !important;
  transition: transform 0.7s ease;
}

.arshad-hero-banner__slide--wide.slick-current .arshad-hero-banner__img,
.arshad-hero-banner .slick-current.arshad-hero-banner__slide--wide .arshad-hero-banner__img {
  transform: scale(1.02);
}

.arshad-hero-banner__slide--wide::after {
  content: none;
  display: none;
}

/* ===== PRODUCT ===== */
.arshad-hero-banner__slide--product {
  min-height: min(68vh, 560px);
  background:
    radial-gradient(ellipse 55% 80% at 78% 50%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(110deg, #0b1220 0%, #121c30 46%, #1c2a45 100%);
}

.arshad-hero-banner__slide--product .arshad-hero-banner__image {
  position: absolute !important;
  inset: 0;
  height: 100% !important;
  max-height: none !important;
  left: 36% !important;
  width: auto !important;
  right: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}

@media (min-width: 992px) {
  .arshad-hero-banner__slide--card-right.arshad-hero-banner__slide--product .arshad-hero-banner__image {
    left: 0 !important;
    right: 36% !important;
    width: auto !important;
  }
}

.arshad-hero-banner__slide--product .arshad-hero-banner__image::before {
  content: "";
  position: absolute;
  inset: 10% 6% 10% 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 55% 50%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(236, 244, 255, 0.55) 42%,
    rgba(236, 244, 255, 0) 72%
  );
  z-index: 0;
  pointer-events: none;
}

.arshad-hero-banner__slide--product .arshad-hero-banner__image picture,
.arshad-hero-banner__slide--product .arshad-hero-banner__image img,
.arshad-hero-banner__slide--product .arshad-hero-banner__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: clamp(1.75rem, 4.5vw, 3.75rem);
  box-sizing: border-box;
  background: transparent !important;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.arshad-hero-banner__slide--product::after {
  display: none;
}

.arshad-hero-banner__slide--product .arshad-hero-banner__content.herobanner__inner__3 {
  position: absolute !important;
  inset: 0 !important;
  max-width: none !important;
  width: 100% !important;
  min-height: 0 !important;
}

/* Desktop arrows: hidden until hover / focus-within (keyboard still works) */
@media (min-width: 992px) {
  .arshad-hero-banner.slider__default__arrow .slick-arrow,
  .arshad-hero-banner .slider__default__arrow .slick-arrow,
  .arshad-hero-banner .slick-arrow {
    opacity: 0 !important;
    visibility: visible !important;
    pointer-events: none;
    left: 10px !important;
    right: auto !important;
    width: 48px !important;
    height: 48px !important;
    line-height: 48px !important;
    border-radius: 12px !important;
    background: rgb(255 255 255 / 0.78) !important;
    color: var(--arshad-text) !important;
    border: 1px solid rgb(255 255 255 / 0.65) !important;
    box-shadow: 0 10px 28px rgb(15 23 42 / 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-50%) translateX(-8px) !important;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease !important;
  }

  .arshad-hero-banner .slick-arrow.next_class {
    left: auto !important;
    right: 10px !important;
    transform: translateY(-50%) translateX(8px) !important;
  }

  .arshad-hero-banner:hover .slick-arrow,
  .arshad-hero-banner:focus-within .slick-arrow {
    opacity: 1 !important;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0) !important;
  }

  .arshad-hero-banner:hover .slick-arrow.next_class,
  .arshad-hero-banner:focus-within .slick-arrow.next_class {
    transform: translateY(-50%) translateX(0) !important;
  }

  .arshad-hero-banner .slick-arrow:hover,
  .arshad-hero-banner .slick-arrow:focus-visible {
    background: var(--arshad-accent) !important;
    border-color: var(--arshad-accent) !important;
    color: #fff !important;
  }

  .arshad-hero-banner .slick-arrow:focus-visible {
    opacity: 1 !important;
    pointer-events: auto;
    outline: 2px solid #fff !important;
    outline-offset: 3px;
    transform: translateY(-50%) translateX(0) !important;
  }
}

/*
 * Dots — ThemeForest hides `button` and paints the `li`.
 * Style the `li` (active = wider pill) and keep an invisible
 * full-size `button` so Slick click / keyboard still work.
 */
.arshad-hero-banner .slick-dots,
.arshad-hero-banner.slider__default__dot .slick-dots,
.arshad-hero-banner .slider__default__dot .slick-dots {
  position: absolute !important;
  bottom: 0.95rem !important;
  left: 50% !important;
  right: auto !important;
  z-index: 5;
  display: flex !important;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: auto !important;
  margin: 0 !important;
  padding: 7px 12px !important;
  transform: translateX(-50%);
  background: rgb(15 23 42 / 0.32);
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgb(15 23 42 / 0.18);
  pointer-events: auto;
}

.arshad-hero-banner .slick-dots li {
  position: relative !important;
  display: block !important;
  float: none !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background-color: rgb(255 255 255 / 0.5) !important;
  cursor: pointer;
  transition:
    width 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  overflow: visible;
}

.arshad-hero-banner .slick-dots li.slick-active {
  width: 24px !important;
  background-color: var(--arshad-accent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--arshad-accent) 28%, transparent);
}

/* Invisible hit target — ThemeForest used display:none which breaks Slick */
.arshad-hero-banner .slick-dots li button {
  display: block !important;
  position: absolute !important;
  inset: -6px !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
  font-size: 0 !important;
  color: transparent !important;
  background: transparent !important;
}

.arshad-hero-banner .slick-dots li button:before {
  display: none !important;
  content: none !important;
}

.arshad-hero-banner .slick-dots li button:focus-visible {
  opacity: 1 !important;
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 999px;
  background: transparent !important;
}

/* Tablet: still bottom-pinned, mid-size card */
@media (max-width: 991.98px) {
  .arshad-hero-banner {
    --arshad-hero-radius: 16px;
    --arshad-hero-inset: 10px;
  }

  .arshad-hero-banner .arshad-hero-banner__content.herobanner__inner__3 {
    display: block !important;
    padding: 0 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  .arshad-hero-banner .herobanner__text__wraper,
  .arshad-hero-banner__slide--card-left .herobanner__text__wraper,
  .arshad-hero-banner__slide--card-right .herobanner__text__wraper {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 3.5rem !important;
    top: auto !important;
    width: min(22rem, calc(100% - 2.5rem)) !important;
    max-width: min(22rem, calc(100% - 2.5rem)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 1.05rem 1.2rem !important;
    z-index: 3;
    border-radius: 14px;
  }

  .arshad-hero-banner .herobanner__brand {
    font-size: clamp(1.45rem, 4vw, 1.85rem);
    margin-bottom: 0.35rem;
  }

  .arshad-hero-banner .herobanner__title {
    font-size: clamp(1rem, 2.4vw, 1.15rem) !important;
    margin-bottom: 0.4rem !important;
    max-width: none;
  }

  .arshad-hero-banner .herobanner__support {
    font-size: 0.9rem;
    margin-bottom: 0.9rem;
    max-width: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .arshad-hero-banner .default__button {
    padding: 0.7rem 1.25rem !important;
    font-size: 0.92rem !important;
  }

  .arshad-hero-banner__slide--wide .arshad-hero-banner__image {
    aspect-ratio: 4 / 3 !important;
    max-height: min(70vh, 640px) !important;
  }

  .arshad-hero-banner__slide--product .arshad-hero-banner__image,
  .arshad-hero-banner__slide--card-right.arshad-hero-banner__slide--product .arshad-hero-banner__image {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    opacity: 0.95;
  }

  .arshad-hero-banner .slick-arrow {
    display: none !important;
  }

  .arshad-hero-banner .slick-dots {
    bottom: 0.75rem !important;
    padding: 6px 10px !important;
    gap: 7px;
  }
}

/* Phone: compact card clear of dots */
@media (max-width: 575.98px) {
  .arshad-hero-banner .herobanner__text__wraper,
  .arshad-hero-banner__slide--card-left .herobanner__text__wraper,
  .arshad-hero-banner__slide--card-right .herobanner__text__wraper {
    width: min(17.25rem, calc(100% - 1.75rem)) !important;
    max-width: min(17.25rem, calc(100% - 1.75rem)) !important;
    bottom: 3.25rem !important;
    padding: 0.85rem 0.95rem !important;
  }

  .arshad-hero-banner .herobanner__brand {
    font-size: 1.35rem;
  }

  .arshad-hero-banner .herobanner__title {
    font-size: 0.95rem !important;
  }

  .arshad-hero-banner .herobanner__support {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    margin-bottom: 0.75rem;
  }

  .arshad-hero-banner .default__button {
    padding: 0.6rem 1.05rem !important;
    font-size: 0.85rem !important;
    min-height: 40px;
  }

  .arshad-hero-banner__slide--wide .arshad-hero-banner__image {
    aspect-ratio: 480 / 720 !important;
    max-height: min(88vh, 680px) !important;
  }
}

@keyframes arshad-hero-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .arshad-hero-banner .slick-slide.slick-current .herobanner__text__wraper,
  .arshad-hero-banner .slick-slide.slick-current .herobanner__brand,
  .arshad-hero-banner .slick-slide.slick-current .herobanner__title,
  .arshad-hero-banner .slick-slide.slick-current .herobanner__support,
  .arshad-hero-banner .slick-slide.slick-current .herobanner__button,
  .arshad-hero-banner .herobanner__text__wraper {
    animation: none !important;
  }

  .arshad-hero-banner__slide--wide .arshad-hero-banner__img,
  .arshad-hero-banner .slick-current.arshad-hero-banner__slide--wide .arshad-hero-banner__img {
    transform: none !important;
    transition: none !important;
  }

  .arshad-hero-banner .slick-arrow {
    transition: none !important;
  }

  .arshad-hero-banner .slick-dots li {
    transition: none !important;
  }

  .arshad-hero-banner .default__button:hover,
  .arshad-hero-banner .default__button:active {
    transform: none;
  }
}


/* ---------- Home sections ---------- */
.feture__section,
.collection__2.arshad-home-categories,
.arshad-home-section {
  padding-top: var(--arshad-section-y) !important;
  padding-bottom: var(--arshad-section-y) !important;
}

.feture__section .section__title h2,
.collection__2 .section__title h2,
.arshad-home-section .section__title h2 {
  font-family: var(--arshad-font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.feture__section .section__title h2 .dot__color,
.collection__2 .section__title h2 .dot__color {
  color: var(--arshad-accent);
}

.feture__section .section__title p,
.collection__2 .section__title p {
  color: var(--arshad-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Soften product card chrome on home */
.feture__section .grid__wraper {
  background: var(--arshad-surface);
  border: 1px solid var(--arshad-border);
  border-radius: var(--arshad-radius);
  box-shadow: var(--arshad-shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feture__section .grid__wraper__badge span {
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.feture__section .grid__wraper:hover {
  transform: translateY(-3px);
  box-shadow: var(--arshad-shadow);
}

.arshad-home-categories .collection__list {
  border-radius: var(--arshad-radius);
  border: 1px solid var(--arshad-border);
  background: var(--arshad-surface);
  box-shadow: var(--arshad-shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.arshad-home-categories .collection__list:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--arshad-accent) 35%, var(--arshad-border));
}

/* Reveal motion */
.arshad-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.arshad-reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .arshad-hero-banner .herobanner__text__wraper,
  .arshad-reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ==== arshad-wave2-ui.css ==== */
/**
 * Wave 2 â€” Shop + Categories polish.
 * Cascades after Wave 1; keeps #shop-grid / data-shop-* / filter drawer contracts.
 */

/* ---------- Shared shop / categories breadcrumb ---------- */
body:has(#shop-page-root) .breadcrumb__title h1,
body:has(.arshad-category-section) .breadcrumb__title h1 {
  font-family: var(--arshad-font-display, "Trebuchet MS", "Segoe UI", sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text, #0f172a);
}

.shop-page {
  padding-top: clamp(2rem, 4vw, 3.25rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

/* ---------- Category strip ---------- */
.shop-category-strip-wrap {
  margin-bottom: 1rem;
}

.shop-category-strip__head {
  margin-bottom: 0.65rem;
}

.shop-category-strip__title {
  font-family: var(--arshad-font-display, "Trebuchet MS", "Segoe UI", sans-serif);
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--arshad-text, #0f172a);
  margin: 0 !important;
}

.shop-cat-chip {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  border: 1px solid transparent !important;
  padding: 0.4rem 0.35rem !important;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease !important;
  box-shadow: none !important;
}

.shop-cat-chip:hover {
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff));
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
}

.shop-cat-chip.is-active {
  border-color: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 55%, var(--arshad-border, #e2e8f0)) !important;
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff));
  box-shadow: none !important;
}

.shop-cat-chip__img {
  width: 64px !important;
  height: 64px !important;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-bg, #f4f7fb) !important;
  border: 1px solid var(--arshad-border, #e2e8f0);
}

.shop-cat-chip__img.arshad-category-img img {
  border-radius: var(--arshad-radius-sm, 10px) !important;
}

.shop-cat-chip__name {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--arshad-text, #0f172a);
}

.shop-cat-chip__count {
  color: var(--arshad-muted, #64748b) !important;
}

.shop-category-strip .slick-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: var(--arshad-radius-sm, 10px);
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--arshad-surface, #fff);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
}

@media (max-width: 767px) {
  .shop-category-strip__title {
    font-size: 0.95rem !important;
  }
  .shop-cat-chip__img {
    width: 56px !important;
    height: 56px !important;
  }
}

/* ---------- Toolbar ---------- */
.shop-toolbar {
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius, 14px) !important;
  background: var(--arshad-surface, #fff) !important;
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28)) !important;
  padding: 0.75rem 1rem !important;
  margin-bottom: 1.1rem !important;
}

.shop-toolbar__views .shop__tap__link {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  border-color: var(--arshad-border, #e2e8f0) !important;
  background: var(--arshad-bg, #f4f7fb) !important;
  color: var(--arshad-text, #0f172a);
}

.shop-toolbar__views .shop__tap__link.active {
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
}

.shop-sort-select {
  border-color: var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  color: var(--arshad-text, #0f172a);
  background: var(--arshad-surface, #fff) !important;
}

.shop-toolbar__count {
  color: var(--arshad-muted, #64748b) !important;
  font-weight: 500;
}

.shop-toolbar__filter-btn.default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  min-height: 2.4rem !important;
  padding: 0.5rem 1rem !important;
  font-weight: 700 !important;
  box-shadow: none !important;
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
}

.shop-toolbar__filter-btn.default__button:hover,
.shop-toolbar__filter-btn.default__button:focus-visible {
  background: var(--arshad-surface, #fff) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  box-shadow: none !important;
}

.shop-toolbar__filter-btn.default__button[aria-expanded="true"] {
  background: var(--arshad-surface, #fff) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
}

/* ---------- Filters drawer ---------- */
.shop-filters-drawer {
  border-color: var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius, 14px) !important;
  background: var(--arshad-surface, #fff);
}

.shop-filters-drawer__title,
.shop-filters-drawer__label {
  font-family: var(--arshad-font-display, "Trebuchet MS", "Segoe UI", sans-serif);
  color: var(--arshad-text, #0f172a);
  letter-spacing: -0.02em;
}

.shop-filters-drawer__close {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-bg, #f4f7fb) !important;
}

.shop-price-filter__row label {
  color: var(--arshad-muted, #64748b) !important;
}

.shop-price-filter__row input[type="number"] {
  border-color: var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius-sm, 10px) !important;
}

.shop-price-filter .shop-price-apply.default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  box-shadow: none !important;
}

.shop-price-filter .shop-price-clear {
  color: var(--arshad-muted, #64748b);
}

.shop-price-filter .shop-price-clear:hover {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
}

.shop-filters-drawer__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shop-availability-filter {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--arshad-radius-sm, 10px);
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--arshad-bg, #f4f7fb);
  color: var(--arshad-text, #0f172a);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.shop-availability-filter:hover {
  border-color: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 40%, var(--arshad-border, #e2e8f0));
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
}

.shop-availability-filter .shopsidebar__number {
  margin-left: auto;
  color: var(--arshad-muted, #64748b);
  font-size: 0.8125rem;
}

@media (max-width: 767px) {
  .shop-filters-drawer {
    border-radius: 16px 16px 0 0 !important;
  }

  .shop-filter-backdrop {
    background: rgba(15, 23, 42, 0.5) !important;
  }
}

@media (min-width: 768px) {
  .shop-filters-drawer.is-open {
    box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  }

  .shop-filters-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.25rem 0.25rem;
  }
}

/* ---------- Product grid / list ---------- */
#shop-grid .grid__wraper {
  background: var(--arshad-surface, #fff);
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

#shop-grid .grid__wraper:hover {
  transform: translateY(-3px);
  box-shadow: var(--arshad-shadow, 0 12px 40px -24px rgba(15, 23, 42, 0.35));
}

#shop-grid .grid__wraper__badge span {
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
}

#shop-list .shop-filter-col--list {
  margin-bottom: 1rem;
}

#shop-list .grid__wraper.grid__list__wraper {
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  background: var(--arshad-surface, #fff);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  overflow: hidden;
}

.shop-empty-state {
  padding: 2.5rem 1rem;
  border: 1px dashed var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  background: var(--arshad-surface, #fff);
  margin-bottom: 1.25rem;
}

.shop-empty-state__title {
  font-family: var(--arshad-font-display, "Trebuchet MS", "Segoe UI", sans-serif);
  font-weight: 700;
  color: var(--arshad-text, #0f172a);
}

.shop-skeleton-card {
  border-radius: var(--arshad-radius, 14px);
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--arshad-surface, #fff);
  overflow: hidden;
}

.shop-skeleton-card__img,
.shop-skeleton-card__line {
  background: linear-gradient(
    90deg,
    var(--arshad-bg, #f4f7fb) 0%,
    #e8eef6 50%,
    var(--arshad-bg, #f4f7fb) 100%
  );
  background-size: 200% 100%;
  animation: arshad-shop-shimmer 1.2s ease-in-out infinite;
}

@keyframes arshad-shop-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-skeleton-card__img,
  .shop-skeleton-card__line,
  #shop-grid .grid__wraper {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Categories page ---------- */
.arshad-category-section {
  padding-top: clamp(2rem, 4vw, 3.25rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.arshad-category-section .category__single__2 {
  background: var(--arshad-surface, #fff);
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  overflow: hidden;
  height: 100%;
  margin-bottom: 1.25rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.arshad-category-section .category__single__2:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 35%, var(--arshad-border, #e2e8f0));
  box-shadow: var(--arshad-shadow, 0 12px 40px -24px rgba(15, 23, 42, 0.35));
}

.arshad-category-section .category__img__2 {
  margin: 0;
  padding: 1rem 1rem 0.35rem;
}

.arshad-category-section .category__img__2 img {
  border-radius: var(--arshad-radius-sm, 10px);
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.arshad-category-section .category__text__2 {
  padding: 0.5rem 1rem 1.1rem;
  text-align: center;
}

.arshad-category-section .category__text__2 h5 {
  font-family: var(--arshad-font-display, "Trebuchet MS", "Segoe UI", sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.arshad-category-section .category__text__2 h5 a {
  color: var(--arshad-text, #0f172a);
}

.arshad-category-section .category__text__2 h5 a:hover {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
}

.arshad-category-section .category__text__2 h6 {
  color: var(--arshad-muted, #64748b);
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0;
}

.arshad-category-section.arshad-reveal:not(.is-inview) {
  opacity: 0;
  transform: translateY(22px);
}

.arshad-category-section.arshad-reveal.is-inview {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.arshad-category-section .category__single--empty {
  opacity: 0.72;
  filter: grayscale(0.15);
}

.arshad-category-section .category__single--empty .category__img-link {
  display: block;
  pointer-events: none;
}

.arshad-category-section .category__single--empty .category__text__2 h6 {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  font-weight: 600;
}



/* ==== arshad-wave3-ui.css ==== */
/**
 * Wave 3 â€” Product detail page premium UI.
 * Cascades after Wave 1/2; preserves gallery, variants, cart, sticky CTA contracts.
 * Scope: .pdp-* / .single__product--premium only.
 */

.single__product--premium {
  --pdp-surface-radius: 16px;
  --pdp-surface-border: 1px solid var(--arshad-border, #e2e8f0);
  --pdp-surface-shadow: 0 10px 32px -20px rgba(15, 23, 42, 0.32);
  --pdp-surface-bg: var(--arshad-surface, #fff);
  --pdp-accent: var(--arshad-accent, var(--primaryColor, #0a85d1));
  --pdp-muted: var(--arshad-muted, #64748b);
  --pdp-text: var(--arshad-text, #0f172a);
  --pdp-bg: var(--arshad-bg, #f4f7fb);
  --pdp-radius-sm: var(--arshad-radius-sm, 10px);
  padding-top: clamp(1.25rem, 3vw, 2.25rem) !important;
  padding-bottom: clamp(2rem, 4vw, 3.5rem) !important;
}

.single__product--premium .pdp-gallery-stack {
  --pdp-surface-radius: 16px;
  --pdp-surface-border: 1px solid var(--arshad-border, #e2e8f0);
  --pdp-surface-shadow: 0 10px 32px -20px rgba(15, 23, 42, 0.32);
  --pdp-surface-bg: var(--arshad-surface, #fff);
  gap: 1rem;
}

/* ---------- Breadcrumb ---------- */
.pdp-breadcrumb {
  margin: 0 0 0.85rem;
  padding: 0;
}

.pdp-breadcrumb h1,
.pdp-breadcrumb .pdp-breadcrumb__current {
  display: none !important;
}

.pdp-breadcrumb ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  list-style: none;
  font-size: 0.8125rem;
  color: var(--pdp-muted);
}

.pdp-breadcrumb ul li a {
  color: var(--pdp-muted);
  transition: color 0.2s ease;
}

.pdp-breadcrumb ul li a:hover {
  color: var(--pdp-accent);
}

.pdp-breadcrumb ul li.color__blue {
  color: var(--pdp-text);
  font-weight: 600;
  max-width: 28ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Gallery ---------- */
.pdp-gallery__hero-wrap {
  background: var(--pdp-surface-bg) !important;
  border: var(--pdp-surface-border) !important;
  border-radius: var(--pdp-surface-radius) !important;
  box-shadow: var(--pdp-surface-shadow) !important;
  overflow: hidden;
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.pdp-gallery__hero-wrap:hover {
  box-shadow: 0 16px 44px -22px rgba(15, 23, 42, 0.38) !important;
  border-color: color-mix(in srgb, var(--pdp-accent) 22%, #e2e8f0) !important;
}

.pdp-gallery .featurearea__big__img {
  border-radius: calc(var(--pdp-surface-radius) - 4px);
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 55%);
}

.pdp-gallery .featurearea__single__big__img {
  aspect-ratio: 1 / 1;
}

.pdp-gallery .pdp-gallery__zoom,
.pdp-gallery .pdp-gallery__lightbox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-gallery .pdp-gallery__zoom img,
.pdp-gallery .pdp-gallery__lightbox img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.pdp-gallery__badges .grid__wraper__badge > span {
  border-radius: 6px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
}

.pdp-gallery__title {
  margin: 1rem 0 0.65rem;
  padding: 0;
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-size: clamp(0.95rem, 2.4vw, 1.125rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pdp-text, var(--arshad-text, #0f172a));
  line-height: 1.3;
}

.pdp-gallery .featurearea__thumb__img {
  margin-top: 0.15rem;
  margin-left: 0;
  margin-right: 0;
  padding: 0.35rem 0 0.5rem;
}

/* Nuclear reset: borders/shadows only on thumb img (not slick wrappers) */
.pdp-gallery .featurearea__thumb__img .slick-list,
.pdp-gallery .featurearea__thumb__img .slick-track,
.pdp-gallery .featurearea__thumb__img .slick-slide,
.pdp-gallery .featurearea__thumb__img .slick-slide > div,
.pdp-gallery .featurearea__single__thumb__img {
  border: none !important;
  box-shadow: none !important;
  outline: none;
  background: transparent !important;
}

.pdp-gallery .featurearea__thumb__img .slick-list {
  padding: 0.2rem 0 !important;
}

.pdp-gallery .featurearea__single__thumb__img {
  cursor: pointer;
  padding: 0 6px;
  overflow: visible;
}

.pdp-gallery .featurearea__single__thumb__img img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain !important;
  object-position: center;
  box-sizing: border-box;
  border-radius: 10px !important;
  /* Stable 2px box â€” avoids jump + scale-clip corner brackets */
  border: 2px solid var(--arshad-border, #e2e8f0) !important;
  padding: 0 !important;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pdp-gallery .featurearea__single__thumb__img:hover img {
  border-color: var(--pdp-accent) !important;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.35);
}

.pdp-gallery .featurearea__thumb__img .slick-current img,
.pdp-gallery .featurearea__single__thumb__img.slick-current img {
  border: 2px solid var(--pdp-accent) !important;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.35);
  transform: none !important;
}

.pdp-gallery .featurearea__thumb__img .slick-slide:focus-visible,
.pdp-gallery .featurearea__single__thumb__img:focus-visible,
.pdp-gallery .featurearea__single__thumb__img img:focus-visible {
  outline: 2px solid var(--pdp-accent);
  outline-offset: 2px;
}

/* Fit mode: few thumbs â€” center track, kill short-track left shift */
.pdp-gallery.pdp-gallery--thumbs-fit .featurearea__thumb__img .slick-list,
.pdp-gallery.pdp-gallery--thumbs-fit .featurearea__thumb__img .slick-track {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  transform: none !important;
  margin-left: 0 !important;
}

@media (max-width: 575px) {
  .pdp-gallery__title {
    margin-top: 0.85rem;
    font-size: 1rem;
  }

  .pdp-gallery .featurearea__single__thumb__img {
    padding: 0 4px;
  }
}

.pdp-gallery .custom-zoom-icon {
  border-radius: var(--pdp-radius-sm) !important;
  background: rgba(15, 23, 42, 0.58) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.pdp-gallery .featurearea__big__img .slick-prev,
.pdp-gallery .featurearea__big__img .slick-next {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.14) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
}

/* ---------- Buy box ---------- */
.pdp-premium {
  background: var(--pdp-surface-bg);
  border: var(--pdp-surface-border);
  border-radius: var(--pdp-surface-radius);
  box-shadow: var(--pdp-surface-shadow);
  padding: clamp(1.15rem, 2.8vw, 1.75rem);
  height: 100%;
}

.pdp-premium .pdp-premium__category {
  margin: 0 0 0.55rem;
}

.pdp-premium .pdp-premium__category a {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--pdp-accent) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--pdp-accent) 22%, #e2e8f0);
  color: var(--pdp-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.pdp-premium .pdp-premium__category a:hover {
  background: color-mix(in srgb, var(--pdp-accent) 16%, #fff);
  border-color: color-mix(in srgb, var(--pdp-accent) 40%, #e2e8f0);
  color: var(--pdp-accent);
}

.pdp-premium .single__product__heding h1,
.pdp-premium .single__product__heding h2 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: var(--pdp-text) !important;
  font-size: clamp(1.5rem, 3.8vw, 2.05rem) !important;
  line-height: 1.18 !important;
  margin: 0 0 0.65rem !important;
  text-wrap: balance;
}

.pdp-premium .pdp-premium__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.35rem;
}

.pdp-premium .pdp-premium__price span {
  color: var(--pdp-accent) !important;
  font-size: clamp(1.45rem, 3.6vw, 1.85rem) !important;
  font-weight: 700 !important;
}

.pdp-premium .pdp-premium__price del {
  color: var(--pdp-muted) !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  font-size: clamp(1rem, 2.6vw, 1.2rem) !important;
}

.pdp-premium .pdp-premium__price label {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  background: color-mix(in srgb, #16a34a 14%, #fff);
  color: #15803d;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 0;
}

/* Description lives in tabs â€” hide duplicate in buy box */
.pdp-premium .single__product__description {
  display: none !important;
}

.pdp-premium__meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  color: var(--pdp-muted);
  font-size: 0.875rem;
}

.pdp-premium__meta strong {
  color: var(--pdp-text);
  font-weight: 600;
  margin-right: 0.35rem;
}

.pdp-premium > hr {
  border: 0;
  border-top: 1px solid var(--arshad-border, #e2e8f0);
  margin: 1rem 0;
  opacity: 1;
}

/* ---------- Trust block ---------- */
.pdp-premium .pdp-trust {
  margin: 1rem 0 0;
}

.pdp-trust__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--pdp-radius-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--pdp-bg);
}

.pdp-trust__stock.is-in {
  color: #15803d;
  background: color-mix(in srgb, #16a34a 12%, #fff);
  border-color: color-mix(in srgb, #16a34a 35%, #fff);
}

.pdp-trust__stock.is-low {
  color: #b45309;
  background: color-mix(in srgb, #f59e0b 14%, #fff);
  border-color: color-mix(in srgb, #f59e0b 35%, #fff);
}

.pdp-trust__stock.is-out {
  color: #b91c1c;
  background: color-mix(in srgb, #ef4444 12%, #fff);
  border-color: color-mix(in srgb, #ef4444 35%, #fff);
}

.pdp-trust__highlights {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.pdp-trust__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--pdp-muted);
  line-height: 1.4;
}

.pdp-trust__highlights li i {
  color: var(--pdp-accent);
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.pdp-trust__card {
  margin-top: 0.95rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--pdp-surface-radius);
  background: linear-gradient(180deg, #fff 0%, var(--pdp-bg) 100%);
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 576px) {
  .pdp-trust__card {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.pdp-trust__card-label {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pdp-muted);
}

.pdp-trust__card-value {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pdp-text);
}

.pdp-trust__card-note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #64748b;
}

.pdp-trust__pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.pdp-trust__pay-chip {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 0.4rem;
  border: 1px solid color-mix(in srgb, var(--pdp-accent) 28%, #cbd5e1);
  background: color-mix(in srgb, var(--pdp-accent) 8%, #fff);
  color: var(--pdp-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.pdp-trust__delivery {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.pdp-trust__support {
  margin: 0.8rem 0 0;
  font-size: 0.8125rem;
  color: var(--pdp-muted);
}

.pdp-trust__support a {
  color: var(--pdp-accent);
  font-weight: 600;
}

.pdp-trust__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-top: 0.7rem;
  font-size: 0.8rem;
}

.pdp-trust__policies a {
  color: var(--pdp-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-trust__policies a:hover {
  color: var(--pdp-accent);
}

/* ---------- Variants ---------- */
.pdp-premium .single__product__swatch {
  margin-top: 1.05rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--arshad-border, #e2e8f0);
}

.pdp-premium .single__product__swatch .header {
  font-weight: 700;
  color: var(--pdp-text);
  font-size: 0.875rem;
  margin-right: 0.65rem;
}

.pdp-premium .single__product__size ul li a {
  border-radius: var(--pdp-radius-sm) !important;
  border: 1px solid var(--arshad-border, #e2e8f0);
  min-width: 2.65rem;
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.pdp-premium .single__product__size ul li a:hover {
  border-color: color-mix(in srgb, var(--pdp-accent) 45%, #e2e8f0);
  transform: translateY(-1px);
}

.pdp-premium .single__product__size ul li a.is-active {
  background: var(--pdp-accent) !important;
  border-color: var(--pdp-accent) !important;
  color: #fff !important;
}

.pdp-premium .single__product__size ul li a:focus-visible,
.pdp-premium .single__product__swatch .label_bg_img:focus-visible {
  outline: 2px solid var(--pdp-accent);
  outline-offset: 2px;
}

.pdp-premium .single__product__swatch .swatch-element.is-active .label_bg_img,
.pdp-premium .single__product__swatch .label_bg_img.is-active {
  outline: 2px solid var(--pdp-accent) !important;
  outline-offset: 2px;
}

/* ---------- Qty + CTAs ---------- */
.pdp-premium .single__product__quantity {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1.2fr) minmax(0, 1fr) !important;
  gap: 0.65rem !important;
  align-items: stretch !important;
  margin-top: 1.1rem;
  padding-top: 1.05rem;
  border-top: 1px solid var(--arshad-border, #e2e8f0);
}

.pdp-premium .single__product__quantity .qty-container {
  grid-column: 1 !important;
  grid-row: 1 !important;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--pdp-radius-sm);
  overflow: hidden;
  background: var(--arshad-surface, #fff);
  min-height: 48px;
}

.pdp-premium .single__product__quantity .qty-btn-minus,
.pdp-premium .single__product__quantity .qty-btn-plus,
.pdp-premium .single__product__quantity .input-qty {
  min-height: 48px;
}

.pdp-premium .single__product__quantity .product-btn-add-cart {
  grid-column: 2 !important;
  grid-row: 1 !important;
  background: var(--pdp-accent) !important;
  border: 1px solid var(--pdp-accent) !important;
  color: #fff !important;
  border-radius: var(--pdp-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  min-height: 48px;
}

.pdp-premium .single__product__quantity .product-btn-add-cart:hover,
.pdp-premium .single__product__quantity .product-btn-add-cart:focus-visible,
.pdp-premium .single__product__quantity .product-btn-add-cart:active {
  background: color-mix(in srgb, var(--pdp-accent) 88%, #000) !important;
  border-color: color-mix(in srgb, var(--pdp-accent) 88%, #000) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.pdp-premium .single__product__quantity .product-btn-buy {
  grid-column: 3 !important;
  grid-row: 1 !important;
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid var(--pdp-accent) !important;
  color: var(--pdp-accent) !important;
  border-radius: var(--pdp-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  min-height: 48px;
}

.pdp-premium .single__product__quantity .product-btn-buy:hover,
.pdp-premium .single__product__quantity .product-btn-buy:focus-visible,
.pdp-premium .single__product__quantity .product-btn-buy:active {
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--pdp-accent) 12%, #fff)) !important;
  border-color: var(--pdp-accent) !important;
  color: var(--pdp-accent) !important;
  transform: translateY(-1px);
}

.pdp-premium .single__product__quantity .product-btn-wishlist {
  grid-column: 1 !important;
  grid-row: 2 !important;
  background: var(--pdp-bg) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  color: var(--pdp-text) !important;
  border-radius: var(--pdp-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  min-height: 48px;
}

.pdp-premium .single__product__quantity .product-btn-wishlist:hover,
.pdp-premium .single__product__quantity .product-btn-wishlist:focus-visible,
.pdp-premium .single__product__quantity .product-btn-wishlist:active {
  background: var(--arshad-surface, #fff) !important;
  border-color: color-mix(in srgb, var(--arshad-border, #e2e8f0) 60%, #64748b) !important;
  color: var(--pdp-text) !important;
  transform: translateY(-1px);
}

.pdp-premium .single__product__quantity .product-btn-wishlist.is-wishlisted,
.pdp-premium .single__product__quantity .product-btn-wishlist[aria-pressed="true"] {
  color: #e11d48 !important;
  border-color: color-mix(in srgb, #e11d48 35%, #fff) !important;
}

.pdp-premium .single__product__quantity .product-btn-wishlist.is-wishlisted:hover,
.pdp-premium .single__product__quantity .product-btn-wishlist.is-wishlisted:focus-visible,
.pdp-premium .single__product__quantity .product-btn-wishlist[aria-pressed="true"]:hover,
.pdp-premium .single__product__quantity .product-btn-wishlist[aria-pressed="true"]:focus-visible {
  color: #e11d48 !important;
  border-color: color-mix(in srgb, #e11d48 50%, #fff) !important;
  background: color-mix(in srgb, #e11d48 8%, #fff) !important;
}

.pdp-premium .single__product__quantity .product-btn-wa {
  grid-column: 2 / -1 !important;
  grid-row: 2 !important;
  background: #128c7e !important;
  border: 1px solid #128c7e !important;
  color: #fff !important;
  border-radius: var(--pdp-radius-sm) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  min-height: 48px;
}

.pdp-premium .single__product__quantity .product-btn-wa:hover,
.pdp-premium .single__product__quantity .product-btn-wa:focus-visible,
.pdp-premium .single__product__quantity .product-btn-wa:active {
  background: #0e7a6d !important;
  border-color: #0e7a6d !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.pdp-premium .pdp-oos-actions {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pdp-premium .pdp-oos-actions__note {
  flex: 1 1 100%;
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
}

.pdp-premium .pdp-oos-actions .product-btn-wa {
  grid-column: auto !important;
  grid-row: auto !important;
}

.pdp-premium .single__product__quantity .default__button::after {
  display: none !important;
  content: none !important;
}

.pdp-premium .single__product__quantity .default__button:focus-visible {
  outline: 2px solid var(--pdp-accent);
  outline-offset: 2px;
}

@media (max-width: 575px) {
  .pdp-premium {
    padding: 1.05rem 1rem 1.2rem;
  }

  .pdp-premium .single__product__quantity {
    grid-template-columns: 1fr 1fr !important;
  }

  .pdp-premium .single__product__quantity .qty-container {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    max-width: 160px;
  }

  .pdp-premium .single__product__quantity .product-btn-add-cart {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .pdp-premium .single__product__quantity .product-btn-buy {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .pdp-premium .single__product__quantity .product-btn-wishlist {
    grid-column: 1 !important;
    grid-row: 3 !important;
  }

  .pdp-premium .single__product__quantity .product-btn-wa {
    grid-column: 2 !important;
    grid-row: 3 !important;
  }
}

/* Hide duplicate WhatsApp in action links when CTA WA exists */
.pdp-premium:has(.product-btn-wa) .product-action-links a[href*="wa.me"] {
  display: none !important;
}

.pdp-premium:has(.product-btn-wa) .product-action-links li:has(a[href*="wa.me"]) {
  display: none !important;
}

.pdp-premium .pdp-premium__footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--arshad-border, #e2e8f0);
}

.pdp-premium .product-action-links a,
.pdp-premium .product-share-links a {
  color: var(--pdp-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.pdp-premium .product-action-links a:hover,
.pdp-premium .product-share-links a:hover {
  color: var(--pdp-accent);
}

.pdp-premium .product-share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--pdp-bg);
}

.pdp-premium .product-share-links a:hover {
  border-color: color-mix(in srgb, var(--pdp-accent) 35%, #e2e8f0);
  background: color-mix(in srgb, var(--pdp-accent) 8%, #fff);
}

/* ---------- Tabs ---------- */
.pdp-tabs {
  padding-top: 0.25rem;
}

.pdp-tabs .descriptionarea__tab__wrapper {
  background: var(--arshad-surface, #fff);
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 10px 32px -22px rgba(15, 23, 42, 0.28);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
}

.pdp-tabs .descriptionarea__tab__button {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.15rem !important;
  padding: 0.35rem !important;
  background: var(--arshad-bg, #f4f7fb);
  border-radius: 12px;
  border: 1px solid var(--arshad-border, #e2e8f0);
  list-style: none;
}

.pdp-tabs .descriptionarea__tab__button .nav-item {
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
}

.pdp-tabs .descriptionarea__link {
  width: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem !important;
  border: 0 !important;
  border-radius: 9px !important;
  background: transparent !important;
  color: var(--arshad-muted, #64748b) !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.01em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.pdp-tabs .descriptionarea__link:hover {
  color: var(--arshad-text, #0f172a) !important;
  background: color-mix(in srgb, #fff 70%, transparent) !important;
}

.pdp-tabs .descriptionarea__link.active {
  background: var(--arshad-surface, #fff) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.35);
}

.pdp-tabs .descriptionarea__link:focus-visible {
  outline: 2px solid var(--arshad-accent, var(--primaryColor, #0a85d1));
  outline-offset: 2px;
}

.pdp-tabs .tab__content__wrapper,
.pdp-tabs .tab-pane {
  color: var(--arshad-text, #0f172a);
}

.pdp-tabs .tab-pane p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--arshad-text, #0f172a) 88%, #64748b);
}

.pdp-tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.pdp-tabs .tab-pane strong {
  color: var(--arshad-text, #0f172a);
  font-weight: 700;
}

/* ---------- Related ---------- */
.pdp-related {
  padding-top: clamp(1.5rem, 3vw, 2.25rem) !important;
  padding-bottom: clamp(2rem, 4vw, 3rem) !important;
}

.pdp-related .section__title {
  margin-bottom: 1.35rem !important;
}

.pdp-related .section__title h2 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text, #0f172a);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

/* ---------- FAQ ---------- */
.pdp-faq {
  padding-top: 0.5rem;
}

.pdp-faq .section__title h2 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text, #0f172a);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.pdp-faq .accordion {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.pdp-faq .accordion-item {
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: var(--arshad-surface, #fff);
  box-shadow: 0 6px 20px -16px rgba(15, 23, 42, 0.28);
}

.pdp-faq .accordion-button {
  font-weight: 700;
  color: var(--arshad-text, #0f172a);
  background: var(--arshad-surface, #fff);
  box-shadow: none !important;
  padding: 1rem 1.15rem;
}

.pdp-faq .accordion-button:not(.collapsed) {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  background: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 6%, #fff);
}

.pdp-faq .accordion-button:focus {
  box-shadow: none;
  outline: 2px solid var(--arshad-accent, var(--primaryColor, #0a85d1));
  outline-offset: -2px;
}

.pdp-faq .accordion-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--arshad-muted, #64748b);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ---------- Support ---------- */
.pdp-support .single__product__contact__text {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 8%, #fff) 0%,
    #fff 100%
  );
  border: 1px solid color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 18%, #e2e8f0);
  border-radius: 16px;
  box-shadow: 0 12px 36px -24px rgba(15, 23, 42, 0.35);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.1rem, 3vw, 2rem);
}

.pdp-support .single__product__contact__text h2 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--arshad-text, #0f172a);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin-bottom: 1rem;
}

.pdp-support .single__product__contact__button {
  margin-bottom: 0.85rem;
}

.pdp-support .single__product__contact__number {
  font-size: 0.95rem;
  color: var(--arshad-muted, #64748b);
  font-weight: 600;
}

.pdp-support .single__product__contact__number i {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  margin-right: 0.35rem;
}

/* ---------- Sticky CTA ---------- */
.pdp-sticky-bar {
  background: color-mix(in srgb, var(--arshad-surface, #fff) 92%, transparent) !important;
  border-top: 1px solid var(--arshad-border, #e2e8f0) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px)) !important;
  box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.12) !important;
}

.pdp-sticky-bar__inner {
  gap: 0.85rem !important;
}

.pdp-sticky-bar__price {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  font-size: 1.05rem !important;
}

.pdp-sticky-bar__btn.default__button {
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  min-height: 46px;
  padding: 0.65rem 1.15rem !important;
}

.pdp-sticky-bar__btn.default__button:hover,
.pdp-sticky-bar__btn.default__button:focus-visible,
.pdp-sticky-bar__btn.default__button:active {
  background: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  border-color: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.pdp-sticky-bar__btn.default__button::after {
  display: none !important;
}

.pdp-sticky-bar__btn.default__button:focus-visible {
  outline: 2px solid var(--arshad-accent, var(--primaryColor, #0a85d1));
  outline-offset: 2px;
}

@media (max-width: 419px) {
  .pdp-sticky-bar__inner {
    flex-wrap: wrap;
  }

  .pdp-sticky-bar__info {
    width: 100%;
  }

  .pdp-sticky-bar__btn.default__button {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Responsive layout ---------- */
@media (max-width: 991px) {
  .single__product--premium .pdp-gallery-stack {
    margin-bottom: 0.25rem;
  }

  .pdp-premium {
    margin-top: 0.15rem;
  }

  .pdp-tabs .descriptionarea__tab__button .nav-item {
    flex: 1 1 calc(33.333% - 0.4rem);
  }
}

@media (max-width: 767px) {
  .pdp-tabs .descriptionarea__tab__button .nav-item {
    flex: 1 1 100%;
  }

  .pdp-faq .accordion-button {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-gallery__hero-wrap,
  .pdp-sticky-bar,
  .pdp-gallery .featurearea__single__thumb__img img,
  .pdp-tabs .descriptionarea__link,
  .pdp-premium .single__product__quantity .default__button,
  .pdp-premium .pdp-premium__category a,
  .pdp-premium .product-share-links a {
    transition: none !important;
  }

  .pdp-premium .single__product__quantity .default__button:hover,
  .pdp-premium .single__product__quantity .default__button:active {
    transform: none !important;
  }
}


/* ==== arshad-wave4-ui.css ==== */
/**
 * Wave 4 â€” Cart + Checkout + Thank-you polish.
 * Cascades after Waves 1â€“3. Do not rename form IDs, payment values, or cart data-*.
 */

/* ---------- Shared commerce breadcrumbs ---------- */
body:has(#cart-page-root) .breadcrumb__title h1,
body:has(.checkout-premium) .breadcrumb__title h1,
body:has(.checkout-thankyou) .breadcrumb__title h1 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text, #0f172a);
}

.cartarea.cart-premium,
.checkoutarea.checkout-premium,
.checkout-thankyou--premium {
  padding-top: clamp(1.75rem, 4vw, 3rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

/* ---------- Cart ---------- */
.cartarea.cart-premium .cartarea__table__content {
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  background: var(--arshad-surface, #fff);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
  padding: 0.5rem 0.75rem 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cartarea.cart-premium .cartarea__table__content table {
  border-collapse: separate;
  border-spacing: 0 0.55rem;
  width: 100%;
  margin: 0;
}

.cartarea.cart-premium .cartarea__table__content thead th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--arshad-muted, #64748b);
  border: 0;
  padding: 0.5rem 0.75rem;
  background: transparent;
}

.cartarea.cart-premium .cartarea__table__content tbody tr {
  background: var(--arshad-bg, #f4f7fb);
  box-shadow: none;
}

.cartarea.cart-premium .cartarea__table__content tbody td {
  border: 0;
  padding: 0.85rem 0.75rem;
  vertical-align: middle;
  color: var(--arshad-text, #0f172a);
}

.cartarea.cart-premium .cartarea__table__content tbody tr td:first-child {
  border-radius: var(--arshad-radius-sm, 10px) 0 0 var(--arshad-radius-sm, 10px);
}

.cartarea.cart-premium .cartarea__table__content tbody tr td:last-child {
  border-radius: 0 var(--arshad-radius-sm, 10px) var(--arshad-radius-sm, 10px) 0;
}

.cartarea.cart-premium .cartarea__table__content img {
  border-radius: var(--arshad-radius-sm, 10px);
  border: 1px solid var(--arshad-border, #e2e8f0);
  background: var(--arshad-surface, #fff);
}

.cartarea.cart-premium .qty-container {
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  overflow: hidden;
  background: var(--arshad-surface, #fff);
}

.cart-empty-state {
  padding: 2.75rem 1.25rem;
  border: 1px dashed var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  background: var(--arshad-surface, #fff);
}

.cart-empty-state__icon {
  color: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 45%, #cbd5e1) !important;
}

.cart-empty-state .shop-empty-state__title,
.cart-empty-state .default__button {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
}

.cart-empty-state .default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.cart-empty-state .default__button:hover,
.cart-empty-state .default__button:focus-visible,
.cart-empty-state .default__button:active {
  background: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  border-color: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.cart-empty-state .default__button::after {
  display: none !important;
}

.cartarea.cart-premium .cartarea__shiping__update__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
}

.cartarea.cart-premium .cartarea__shiping__update .default__button,
.cartarea.cart-premium .cartarea__clear .default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

.cartarea.cart-premium .cartarea__shiping__update .default__button {
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  color: var(--arshad-text, #0f172a) !important;
}

.cartarea.cart-premium .cartarea__shiping__update .default__button:hover,
.cartarea.cart-premium .cartarea__shiping__update .default__button:focus-visible,
.cartarea.cart-premium .cartarea__shiping__update .default__button:active {
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff)) !important;
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  transform: translateY(-1px);
}

.cartarea.cart-premium .cartarea__clear .default__button {
  background: var(--arshad-bg, #f4f7fb) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  color: var(--arshad-muted, #64748b) !important;
}

.cartarea.cart-premium .cartarea__shiping__update .default__button::after,
.cartarea.cart-premium .cartarea__clear .default__button::after {
  display: none !important;
}

.cartarea.cart-premium .cartarea__grand__totall {
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius, 14px) !important;
  background: var(--arshad-surface, #fff) !important;
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28)) !important;
  padding: 1.25rem 1.35rem !important;
  margin-top: 1.25rem;
}

.cartarea.cart-premium .cartarea__title h4 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--arshad-text, #0f172a);
  margin-bottom: 0.85rem;
}

.cartarea.cart-premium .cartarea__grand__totall h5 {
  color: var(--arshad-muted, #64748b);
  font-size: 0.95rem;
}

.cartarea.cart-premium .cartarea__grand__totall h5 span {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  font-weight: 700;
}

#cart-checkout-btn.default__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.85rem;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

#cart-checkout-btn.default__button:hover,
#cart-checkout-btn.default__button:focus-visible,
#cart-checkout-btn.default__button:active {
  background: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  border-color: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

#cart-checkout-btn.default__button::after {
  display: none !important;
}

#cart-checkout-btn.is-disabled,
#cart-checkout-btn.is-disabled:hover,
#cart-checkout-btn.is-disabled:focus-visible,
#cart-checkout-btn.is-disabled:active {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
  transform: none !important;
}

.cart-line-oos-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #b91c1c;
  background: color-mix(in srgb, #ef4444 12%, #fff);
  border: 1px solid color-mix(in srgb, #ef4444 30%, #fff);
}

.cart-checkout-blocked {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  color: #b91c1c;
  font-weight: 600;
}

tr.cart-line--oos {
  outline: 1px solid color-mix(in srgb, #ef4444 28%, transparent);
}

@media (max-width: 767px) {
  .cartarea.cart-premium .cartarea__table__content thead,
  #wishlist-page-root .cartarea__table__content thead {
    display: none;
  }

  .cartarea.cart-premium .cartarea__table__content,
  #wishlist-page-root .cartarea__table__content {
    overflow-x: visible;
  }

  .cartarea.cart-premium .cartarea__table__content table,
  #wishlist-page-root .cartarea__table__content table {
    width: 100%;
  }

  .cartarea.cart-premium .cartarea__table__content tbody tr,
  #wishlist-page-root .cartarea__table__content tbody tr {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "thumb name"
      "thumb price"
      "qty qty"
      "total total"
      "remove remove";
    gap: 0.35rem 0.75rem;
    align-items: center;
    margin-bottom: 0.85rem;
    padding: 0.85rem;
    border: 1px solid var(--arshad-border, #e2e8f0);
    border-radius: 12px;
    background: #fff;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td,
  #wishlist-page-root .cartarea__table__content tbody td {
    border: 0 !important;
    padding: 0 !important;
    width: auto !important;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(1),
  #wishlist-page-root .cartarea__table__content tbody td:nth-child(1) {
    display: block !important;
    grid-area: thumb;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(2),
  #wishlist-page-root .cartarea__table__content tbody td:nth-child(2) {
    grid-area: name;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(3),
  #wishlist-page-root .cartarea__table__content tbody td:nth-child(3) {
    grid-area: price;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(4) {
    grid-area: qty;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(5) {
    grid-area: total;
  }

  .cartarea.cart-premium .cartarea__table__content tbody td:nth-child(6) {
    grid-area: remove;
    width: auto !important;
  }

  /* Wishlist: thumb | name | price | stock | actions */
  #wishlist-page-root .cartarea__table__content tbody tr {
    grid-template-areas:
      "thumb name"
      "thumb price"
      "stock stock"
      "actions actions";
  }

  #wishlist-page-root .cartarea__table__content tbody td:nth-child(4) {
    grid-area: stock;
  }

  #wishlist-page-root .cartarea__table__content tbody td:nth-child(5) {
    grid-area: actions;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  #wishlist-page-root .cartarea__table__content tbody td:nth-child(5) .default__button {
    width: 100%;
  }

  .cartarea.cart-premium .cartarea__table__content img,
  #wishlist-page-root .cartarea__table__content img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* ---------- Checkout ---------- */
.checkout-premium .checkout-trust-bar {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem !important;
  grid-template-columns: none !important;
  padding: 0.65rem 1rem !important;
  margin: 0 0 1.35rem !important;
  list-style: none;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius, 14px);
  background: var(--arshad-surface, #fff);
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28));
}

.checkout-premium .checkout-trust-bar li {
  padding: 0.2rem 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--arshad-muted, #64748b) !important;
  gap: 0.4rem !important;
}

.checkout-premium .checkout-trust-bar li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 45%, #cbd5e1);
  margin-right: 1rem;
  display: inline-block;
}

.checkout-premium .checkout-trust-bar i {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  font-size: 0.9rem !important;
}

.checkout-panel {
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius, 14px) !important;
  box-shadow: var(--arshad-shadow-soft, 0 8px 28px -18px rgba(15, 23, 42, 0.28)) !important;
  padding: 1.35rem 1.25rem !important;
}

.checkout-panel__hint {
  color: var(--arshad-muted, #64748b) !important;
}

.checkout-premium .checkoutarea__billing__heading h2,
.checkout-premium .checkoutarea__total h3 {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--arshad-text, #0f172a);
  font-size: 1.2rem !important;
}

.checkout-premium .checkoutarea__billing__heading h2 i,
.checkout-premium .checkoutarea__total h3 i {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
}

.checkoutarea__inputbox label {
  color: var(--arshad-text, #0f172a) !important;
  font-size: 0.8125rem !important;
}

.checkoutarea__inputbox input,
.checkoutarea__inputbox input.info {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  background: var(--arshad-surface, #fff) !important;
  color: var(--arshad-text, #0f172a) !important;
}

.checkoutarea__inputbox input:focus {
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 18%, transparent) !important;
}

.checkoutarea__table__wraper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-bg, #f4f7fb);
}

.checkoutarea__table {
  margin: 0;
  width: 100%;
}

.checkoutarea__table td {
  padding: 0.7rem 0.85rem;
  border-color: var(--arshad-border, #e2e8f0) !important;
  color: var(--arshad-text, #0f172a);
  font-size: 0.9rem;
}

.checkoutarea__table .prc-total,
#checkout-total {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  font-weight: 700;
}

.checkout-promo-box {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-bg, #f4f7fb);
}

.checkout-promo-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--arshad-muted, #64748b);
  margin-bottom: 0.45rem;
}

.checkout-promo-row {
  display: flex;
  gap: 0.5rem;
}

.checkout-promo-row input {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
}

#apply-coupon-btn.default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  color: var(--arshad-text, #0f172a) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  white-space: nowrap;
}

#apply-coupon-btn.default__button:hover,
#apply-coupon-btn.default__button:focus-visible,
#apply-coupon-btn.default__button:active {
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff)) !important;
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  transform: translateY(-1px);
}

#apply-coupon-btn.default__button::after {
  display: none !important;
}

.checkout-pay-heading {
  color: var(--arshad-muted, #64748b) !important;
  margin-top: 1.15rem !important;
}

.checkout-pay-grid {
  gap: 0.6rem !important;
}

.checkout-pay-option label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-surface, #fff);
  color: var(--arshad-text, #0f172a);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.checkout-pay-option input:checked + label {
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 35%, transparent);
}

.checkout-pay-option label i {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
}

.checkout-payment-note {
  margin-top: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-bg, #f4f7fb);
  border: 1px solid var(--arshad-border, #e2e8f0);
  font-size: 0.875rem;
  color: var(--arshad-muted, #64748b);
}

.checkout-submit-btn.default__button {
  width: 100%;
  margin-top: 1rem;
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
  min-height: 3rem;
}

.checkout-submit-btn.default__button:hover,
.checkout-submit-btn.default__button:focus-visible,
.checkout-submit-btn.default__button:active {
  background: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  border-color: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.checkout-submit-btn.default__button::after {
  display: none !important;
}

.checkout-submit-btn.default__button:disabled,
.checkout-submit-btn.default__button:disabled:hover,
.checkout-submit-btn.default__button:disabled:focus-visible,
.checkout-submit-btn.default__button:disabled:active {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.checkout-message {
  font-size: 0.875rem;
  font-weight: 600;
}

#checkout-oos-banner,
.checkout-oos-banner {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--arshad-radius-sm, 10px);
  background: color-mix(in srgb, #ef4444 10%, #fff);
  border: 1px solid color-mix(in srgb, #ef4444 28%, #fff);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .checkout-premium .checkout-trust-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .checkout-premium .checkout-trust-bar::-webkit-scrollbar {
    display: none;
  }

  .checkout-premium .checkout-trust-bar li {
    white-space: nowrap;
  }

  .checkout-premium .checkout-trust-bar li + li::before {
    margin-right: 0.75rem;
  }
}

/* ---------- Thank you ---------- */
.checkout-thankyou--premium {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 8%, #fff) 0%,
    var(--arshad-bg, #f4f7fb) 42%,
    var(--arshad-bg, #f4f7fb) 100%
  ) !important;
}

.checkout-thankyou__confetti {
  opacity: 0.35;
}

.checkout-thankyou__card {
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius, 14px) !important;
  box-shadow: var(--arshad-shadow, 0 12px 40px -24px rgba(15, 23, 42, 0.35)) !important;
  padding: 2rem 1.5rem 1.75rem !important;
}

.checkout-thankyou__eyebrow {
  border-radius: 4px !important;
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 12%, #fff)) !important;
  color: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
}

.checkout-thankyou__title {
  font-family: var(--arshad-font-display, "Futura Std", "Futura", "Trebuchet MS", sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--arshad-text, #0f172a) !important;
}

.checkout-thankyou__lead {
  color: var(--arshad-muted, #64748b) !important;
}

.checkout-thankyou__meta-item {
  background: var(--arshad-bg, #f4f7fb) !important;
  border: 1px solid var(--arshad-border, #e2e8f0) !important;
  border-radius: var(--arshad-radius-sm, 10px) !important;
}

.checkout-thankyou__meta-label {
  color: var(--arshad-muted, #64748b) !important;
}

.checkout-thankyou__meta-value {
  color: var(--arshad-text, #0f172a) !important;
}

.checkout-thankyou__recap {
  text-align: left;
  margin: 0 auto 1.35rem;
  max-width: 28rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-bg, #f4f7fb);
}

.checkout-thankyou__recap-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--arshad-text, #0f172a);
}

.checkout-thankyou__recap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.checkout-thankyou__recap-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--arshad-text, #0f172a);
}

.checkout-thankyou__timeline {
  text-align: left;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checkout-thankyou__timeline li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--arshad-border, #e2e8f0);
  border-radius: var(--arshad-radius-sm, 10px);
  background: var(--arshad-surface, #fff);
}

.checkout-thankyou__timeline li.is-active {
  border-color: color-mix(in srgb, var(--arshad-accent, var(--primaryColor, #0a85d1)) 40%, var(--arshad-border, #e2e8f0));
  background: var(--arshad-accent-soft, color-mix(in srgb, var(--primaryColor, #0a85d1) 10%, #fff));
}

.checkout-thankyou__step-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--arshad-bg, #f4f7fb);
  color: var(--arshad-text, #0f172a);
  border: 1px solid var(--arshad-border, #e2e8f0);
}

.checkout-thankyou__timeline li.is-done .checkout-thankyou__step-num,
.checkout-thankyou__timeline li.is-active .checkout-thankyou__step-num {
  background: var(--arshad-accent, var(--primaryColor, #0a85d1));
  border-color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  color: #fff;
}

.checkout-thankyou__timeline strong {
  display: block;
  color: var(--arshad-text, #0f172a);
  margin-bottom: 0.15rem;
}

.checkout-thankyou__timeline p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--arshad-muted, #64748b);
}

.checkout-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.checkout-thankyou__btn-primary.default__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  border: 1px solid var(--arshad-accent, var(--primaryColor, #0a85d1)) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.checkout-thankyou__btn-primary.default__button:hover,
.checkout-thankyou__btn-primary.default__button:focus-visible,
.checkout-thankyou__btn-primary.default__button:active {
  background: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  border-color: color-mix(
    in srgb,
    var(--arshad-accent, var(--primaryColor, #0a85d1)) 88%,
    #000
  ) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.checkout-thankyou__btn-primary.default__button::after,
.checkout-thankyou__actions .black__button::after {
  display: none !important;
}

.checkout-thankyou__actions .black__button {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: #128c7e !important;
  border: 1px solid #128c7e !important;
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

.checkout-thankyou__actions .black__button:hover,
.checkout-thankyou__actions .black__button:focus-visible,
.checkout-thankyou__actions .black__button:active {
  background: #0e7a6d !important;
  border-color: #0e7a6d !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.checkout-thankyou__support {
  margin-top: 1.25rem;
  color: var(--arshad-muted, #64748b);
  font-size: 0.875rem;
}

.checkout-thankyou__support a {
  color: var(--arshad-accent, var(--primaryColor, #0a85d1));
  font-weight: 600;
}

/* ---------- Toast ---------- */
.arshad-cart-toast {
  border-radius: var(--arshad-radius-sm, 10px) !important;
  background: var(--arshad-text, #0f172a) !important;
  box-shadow: var(--arshad-shadow, 0 12px 40px -24px rgba(15, 23, 42, 0.35)) !important;
}

.arshad-cart-toast__link {
  color: color-mix(in srgb, var(--arshad-accent, #0a85d1) 55%, #fff) !important;
}

@media (prefers-reduced-motion: reduce) {
  .checkout-thankyou__confetti,
  .checkout-thankyou__confetti span,
  .checkout-thankyou__check-ring,
  .checkout-thankyou__badge i {
    animation: none !important;
  }

  .checkout-thankyou__confetti {
    display: none;
  }
}


/* ==== arshad-wave5-ui.css ==== */
/**
 * Wave D â€” Polish pass.
 * Mobile shop density, cart Clear contrast, quieter thank-you.
 * Cascades after Waves 1â€“4.
 */

/* ---------- Mobile shop: tighter title + category strip ---------- */
@media (max-width: 767px) {
  body:has(#shop-page-root) .breadcrumb {
    padding-top: 0.85rem !important;
    padding-bottom: 0.55rem !important;
  }

  body:has(#shop-page-root) .breadcrumb__title {
    margin-bottom: 0 !important;
  }

  body:has(#shop-page-root) .breadcrumb__title h1 {
    font-size: 1.55rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.2rem !important;
  }

  body:has(#shop-page-root) .breadcrumb ul {
    margin-bottom: 0 !important;
    font-size: 0.8125rem;
  }

  .shop-page {
    padding-top: 0.85rem !important;
    padding-bottom: 2.25rem !important;
  }

  .shop-category-strip-wrap {
    margin-bottom: 0.55rem !important;
  }

  .shop-category-strip__head {
    margin-bottom: 0.35rem !important;
  }

  .shop-category-strip__title {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
  }

  .shop-cat-chip {
    padding: 0.3rem 0.25rem !important;
  }

  .shop-cat-chip__img {
    width: 48px !important;
    height: 48px !important;
  }

  .shop-cat-chip__name {
    font-size: 0.72rem !important;
  }

  .shop-toolbar {
    padding: 0.55rem 0.7rem !important;
    margin-bottom: 0.85rem !important;
  }
}

/* ---------- Cart: Clear Cart contrast ---------- */
.cartarea.cart-premium .cartarea__clear .default__button {
  background: var(--arshad-surface, #fff) !important;
  border: 1px solid color-mix(in srgb, #dc2626 40%, var(--arshad-border, #e2e8f0)) !important;
  color: #b91c1c !important;
  font-weight: 700 !important;
}

.cartarea.cart-premium .cartarea__clear .default__button:hover,
.cartarea.cart-premium .cartarea__clear .default__button:focus-visible {
  background: color-mix(in srgb, #dc2626 9%, #fff) !important;
  border-color: #dc2626 !important;
  color: #991b1b !important;
}

/* ---------- Thank-you: quieter confetti ---------- */
.checkout-thankyou__confetti {
  opacity: 0.14 !important;
  pointer-events: none;
}

.checkout-thankyou__confetti span {
  animation-duration: 2.4s !important;
  animation-timing-function: ease-out !important;
}

@media (max-width: 767px) {
  .checkout-thankyou__confetti {
    opacity: 0.1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .checkout-thankyou__confetti {
    display: none !important;
  }
}


