/**
 * Store premium polish — scoped, performance-safe (no Slick overrides).
 */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Shop --- */
#shop-page-root:not(.shop-page--ready) #shop-grid {
  opacity: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
}

#shop-page-root.shop-page--ready #shop-grid {
  opacity: 1;
  height: auto;
}

/* If JS never runs, still show products after a short delay */
@keyframes shop-grid-reveal-fallback {
  to {
    opacity: 1;
    height: auto;
    overflow: visible;
  }
}
#shop-page-root:not(.shop-page--ready) #shop-grid {
  animation: shop-grid-reveal-fallback 0.01s ease 3s forwards;
}

@media (prefers-reduced-motion: reduce) {
  #shop-page-root:not(.shop-page--ready) #shop-grid {
    animation: none;
    opacity: 1;
    height: auto;
    overflow: visible;
  }
}

.shop-filter-col[hidden] {
  display: none !important;
}

.shop-filter-col--list[hidden] {
  display: none !important;
}

.shop-page--ready .shop-grid-skeleton {
  display: none !important;
}

.shop-grid-skeleton {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .shop-grid-skeleton {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .shop-grid-skeleton {
    grid-template-columns: repeat(4, 1fr);
  }
}

.shop-skeleton-card {
  border-radius: 10px;
  overflow: hidden;
  background: #f1f5f9;
}

.shop-skeleton-card__img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(
    90deg,
    #e2e8f0 0%,
    #f8fafc 50%,
    #e2e8f0 100%
  );
  background-size: 200% 100%;
  animation: arshad-shimmer 1.2s ease-in-out infinite;
}

.shop-skeleton-card__line {
  height: 12px;
  margin: 10px 10px 0;
  border-radius: 4px;
  background: #e2e8f0;
}

.shop-skeleton-card__line--short {
  width: 55%;
  margin-bottom: 12px;
}

@keyframes arshad-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-skeleton-card__img {
    animation: none;
    background: #e2e8f0;
  }
}

#shop-grid.shop-grid--updating {
  opacity: 0.72;
  transition: opacity 0.15s ease;
}

#shop-grid .arshad-shop-col {
  display: flex;
}

#shop-grid .grid__wraper {
  width: 100%;
}

.shop-empty-state {
  padding: 2.5rem 1rem;
}

.shop-empty-state__icon {
  font-size: 2.5rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.shop-empty-state__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.shop-toolbar__count {
  transition: opacity 0.15s ease;
}

/* --- Product page: premium gallery --- */
.pdp-gallery-stack {
  --pdp-surface-radius: 24px;
  --pdp-surface-border: 1px solid #f0f0f0;
  --pdp-surface-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
  --pdp-surface-bg: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.pdp-gallery__hero-wrap {
  position: relative;
  background: var(--pdp-surface-bg);
  border-radius: var(--pdp-surface-radius);
  box-shadow: var(--pdp-surface-shadow);
  padding: 10px;
  border: var(--pdp-surface-border);
  overflow: hidden;
  isolation: isolate;
  transition:
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.pdp-gallery__hero-wrap:hover {
  box-shadow: 0 24px 48px -18px rgba(10, 133, 209, 0.14);
  border-color: #d1d5db;
}

.pdp-gallery__badges {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 5;
  pointer-events: none;
}

.pdp-gallery__badges .grid__wraper__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
  max-width: calc(100% - 1.5rem);
}

.pdp-gallery__badges .grid__wraper__badge > span {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.pdp-gallery .featurearea__big__img {
  border-radius: 16px;
  overflow: hidden;
}

.pdp-gallery .featurearea__big__img .slick-prev,
.pdp-gallery .featurearea__big__img .slick-next {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pdp-gallery .featurearea__big__img .slick-prev {
  left: 12px;
}

.pdp-gallery .featurearea__big__img .slick-next {
  right: 12px;
}

.pdp-gallery .featurearea__big__img .slick-arrow::before {
  display: none;
}

.pdp-gallery .featurearea__big__img .slick-arrow i {
  font-size: 14px;
  color: #333333;
  line-height: 1;
}

.pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-prev,
.pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-next {
  opacity: 1;
}

.pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-prev:hover,
.pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-next:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.pdp-gallery .featurearea__single__big__img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.pdp-gallery .featurearea__single__big__img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 55%,
    rgba(0, 0, 0, 0.04) 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.pdp-gallery .featurearea__single__big__img:hover::after {
  opacity: 0.35;
}

.pdp-gallery__zoom {
  overflow: hidden;
  border-radius: 16px;
}

.pdp-gallery__lightbox {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.pdp-gallery .custom-zoom-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    background 0.4s ease,
    box-shadow 0.4s ease;
}

.pdp-gallery .featurearea__single__big__img:hover .custom-zoom-icon {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.pdp-gallery__zoom img,
.pdp-gallery__lightbox img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #f8fafc;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Desktop: cursor-follow zoom (pdp-gallery-zoom.js) */
@media (hover: hover) and (pointer: fine) {
  .pdp-gallery.is-desktop-zoom .pdp-gallery__zoom {
    cursor: zoom-in;
  }

  .pdp-gallery.is-desktop-zoom .pdp-gallery__lightbox {
    cursor: zoom-in;
  }

  .pdp-gallery.is-desktop-zoom .pdp-gallery__zoom img,
  .pdp-gallery.is-desktop-zoom .pdp-gallery__lightbox img {
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .pdp-gallery.is-desktop-zoom .featurearea__single__big__img::after,
  .pdp-gallery.is-desktop-zoom .featurearea__single__big__img:hover::after {
    opacity: 0;
  }

  .pdp-gallery.is-desktop-zoom .custom-zoom-icon {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Mobile / touch lightbox */
.pdp-gallery-mfp.mfp-bg {
  opacity: 0;
  transition: opacity 0.32s ease;
}

.pdp-gallery-mfp.mfp-ready.mfp-bg {
  opacity: 0.92;
}

.pdp-gallery-mfp.mfp-removing.mfp-bg {
  opacity: 0;
}

.pdp-gallery-mfp.mfp-wrap .mfp-container {
  transition: opacity 0.28s ease;
}

.pdp-gallery-mfp img.mfp-img {
  padding: 0;
  transition: opacity 0.35s ease;
}

@media (hover: none), (pointer: coarse), (max-width: 767px) {
  .pdp-gallery__zoom img,
  .pdp-gallery__lightbox img {
    cursor: zoom-in;
  }

  .pdp-gallery .custom-zoom-icon {
    pointer-events: auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .pdp-gallery .custom-zoom-icon:active {
    transform: scale(0.96);
  }
}

@keyframes pdp-zoom-icon-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(10, 133, 209, 0.12);
  }
}

@media (max-width: 768px) {
  .pdp-gallery .custom-zoom-icon {
    animation: pdp-zoom-icon-pulse 2.2s ease-in-out infinite;
  }
}

/* Thumbs: active ring on img (inset) — outer box-shadow + overflow:hidden caused bracket overlap */
.pdp-gallery .featurearea__thumb__img {
  margin-left: 0;
  margin-right: 0;
}

.pdp-gallery .featurearea__thumb__img .slick-slide {
  overflow: visible;
}

.pdp-gallery .featurearea__single__thumb__img {
  cursor: pointer;
  padding: 0 7px;
  overflow: visible;
}

.pdp-gallery .featurearea__single__thumb__img img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pdp-gallery .featurearea__single__thumb__img:hover img,
.pdp-gallery .featurearea__single__thumb__img.slick-current img {
  border-color: var(--primaryColor, #2563eb);
  box-shadow: inset 0 0 0 2px var(--primaryColor, #2563eb);
}

.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 0.65rem 0 calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.1);
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.pdp-sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pdp-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pdp-sticky-bar__info {
  min-width: 0;
  flex: 1 1 auto;
}

.pdp-sticky-bar__name {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky-bar__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primaryColor, #2563eb);
}

.pdp-sticky-bar__btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

@media (min-width: 992px) {
  .pdp-sticky-bar {
    display: none !important;
  }
}

/* PDP premium + trust */
.pdp-premium .pdp-premium__price span {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 700;
  color: #ff0000;
}

.pdp-premium .pdp-premium__price del {
  color: #1f2226;
  font-size: clamp(1.1rem, 3.2vw, 1.35rem);
  font-weight: 700;
  opacity: 1;
  text-decoration-line: line-through;
  text-decoration-color: #525252;
  text-decoration-thickness: 2px;
}

.pdp-premium .single__product__heding {
  margin-bottom: 0.15rem;
}

.pdp-premium .single__product__heding h2 {
  font-family: var(--headingFont, "Futura Std", "Segoe UI", sans-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  line-height: 1.22;
  letter-spacing: 0.015em;
  color: #111827;
  margin: 0 0 0.4rem;
  padding: 0;
  text-wrap: balance;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.pdp-viewers {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f9ff 0%, #eef6fc 55%, #f8fafc 100%);
  border: 1px solid rgba(10, 133, 209, 0.18);
  box-shadow: 0 4px 18px rgba(10, 133, 209, 0.08);
  font-size: 1.0625rem;
  color: #334155;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.pdp-viewers.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.pdp-viewers__live {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pdp-viewers__live-dot {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #22c55e;
}

.pdp-viewers__live-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.55);
  animation: pdp-viewers-live-pulse 1.8s ease-out infinite;
}

.pdp-viewers__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(10, 133, 209, 0.15);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform;
}

.pdp-viewers__icon {
  font-size: 1.25rem;
  color: var(--primaryColor, #0a85d1);
  transition: transform 0.35s ease;
}

.pdp-viewers.is-ready .pdp-viewers__icon {
  animation: pdp-viewers-eye-blink 3.2s ease-in-out infinite;
}

.pdp-viewers__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  min-width: 0;
}

.pdp-viewers__count {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primaryColor, #0a85d1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pdp-viewers__count.is-bump {
  animation: pdp-viewers-count-bump 0.45s ease;
}

.pdp-viewers__label {
  font-size: 1.02rem;
  font-weight: 500;
  color: #475569;
}

@keyframes pdp-viewers-live-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes pdp-viewers-eye-blink {
  0%,
  88%,
  100% {
    transform: scaleY(1);
  }
  92% {
    transform: scaleY(0.12);
  }
  96% {
    transform: scaleY(1);
  }
}

@keyframes pdp-viewers-count-bump {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.14);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-viewers {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pdp-viewers__live-ring,
  .pdp-viewers__icon,
  .pdp-viewers__icon-wrap {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .pdp-viewers__count.is-bump {
    animation: none;
  }

  .pdp-trust__card {
    transition: none;
  }

  .pdp-trust__card:hover {
    transform: none;
  }

  .pdp-gallery__hero-wrap,
  .pdp-gallery__hero-wrap:hover {
    transform: none;
    transition: none;
  }

  .pdp-gallery .featurearea__big__img .slick-prev,
  .pdp-gallery .featurearea__big__img .slick-next,
  .pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-prev,
  .pdp-gallery__hero-wrap:hover .featurearea__big__img .slick-next {
    opacity: 1;
    transition: none;
  }

  .pdp-gallery__zoom img,
  .pdp-gallery .featurearea__single__big__img:hover .pdp-gallery__zoom img {
    transform: none;
    transition: none;
  }

  .pdp-gallery .featurearea__single__big__img::after,
  .pdp-gallery .featurearea__single__big__img:hover::after {
    opacity: 0;
    transition: none;
  }

  .pdp-gallery .custom-zoom-icon,
  .pdp-gallery .featurearea__single__big__img:hover .custom-zoom-icon {
    animation: none;
    transition: none;
    transform: none;
  }
}

.pdp-trust {
  margin: 0.35rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pdp-trust__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0;
}

.pdp-trust__stock {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
}

.pdp-trust__stock.is-in {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pdp-trust__stock.is-low {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.pdp-trust__stock.is-out {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.pdp-trust__chip {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eef6fc;
  color: var(--primaryColor, #2563eb);
  border: 1px solid rgba(10, 133, 209, 0.15);
}

.pdp-trust__chip--new {
  background: #f0fdf4;
  color: #15803d;
  border-color: #bbf7d0;
}

.pdp-trust__chip--hot {
  background: #fff7ed;
  color: #c2410c;
  border-color: #fed7aa;
}

.pdp-trust__highlights {
  list-style: none;
  margin: 0 0 0.35rem;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.pdp-trust__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.25;
}

.pdp-trust__highlights i {
  color: var(--primaryColor, #2563eb);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.pdp-trust__card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  max-width: 450px;
  padding: 8px 12px;
  margin: 0.35rem 0;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.pdp-trust__card:hover {
  transform: translateY(-3px);
  border-color: #c8c8c8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.pdp-trust__delivery,
.pdp-trust__payments {
  flex: 1;
  min-width: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.2;
}

.pdp-trust__payments {
  order: 1;
  text-align: left;
}

.pdp-trust__delivery {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  text-align: right;
}

.pdp-trust__delivery-icon img {
  display: block;
  height: 20px;
  width: auto;
}

.pdp-trust__card-label {
  margin: 0 0 0.1rem;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #64748b;
  line-height: 1.2;
}

.pdp-trust__card-value {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.2;
}

.pdp-trust__pay-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.2rem;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

.pdp-trust__pay-icons img {
  max-height: 16px;
  width: auto;
}

.pdp-trust__support {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.25;
}

.pdp-trust__support a {
  color: var(--primaryColor, #2563eb);
  font-weight: 600;
}

.pdp-trust__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.75rem;
}

.pdp-trust__policies a {
  color: #475569;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-trust__policies a:hover {
  color: var(--primaryColor, #2563eb);
}

.pdp-premium__meta ul {
  margin-bottom: 0;
}

.single__product--premium .pdp-gallery {
  border-radius: 12px;
  overflow: visible;
}

.related__section.feture__section {
  padding-top: 2rem;
}

.related__section .arshad-collection-shop-grid {
  justify-content: center;
  row-gap: 1.25rem;
}

.related__section .arshad-collection-shop-grid .arshad-shop-col {
  display: flex;
  margin-bottom: 1.25rem;
}

/* Homepage collections — same product card canvas as /shop (slider rows unchanged) */
.arshad-collection-shop-grid {
  row-gap: 1.25rem;
}

.arshad-collection-shop-grid .arshad-shop-col,
.arshad-collection-shop-grid .arshad-shop-col {
  display: flex;
  margin-bottom: 1.25rem;
}

.arshad-collection-shop-grid .grid__wraper {
  width: 100%;
}

.feture__section .arshad-collection-shop-grid .grid__wraper__info,
.shop .grid__wraper__info {
  padding: 10px 8px 0;
}

@media (min-width: 768px) {
  .feture__section .arshad-collection-shop-grid .grid__wraper__info,
  .shop .grid__wraper__info {
    padding: 12px 10px 0;
  }
}

/* --- Cart --- */
.cartarea.cart-premium .cartarea__grand__totall {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  padding: 1.25rem 1.5rem;
}

.cartarea.cart-premium .cartarea__table__content table {
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.cartarea.cart-premium .cartarea__table__content tbody tr {
  background: #fff;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
}

.cartarea.cart-premium .cartarea__table__content td,
.cartarea.cart-premium .cartarea__table__content th {
  vertical-align: middle;
  padding: 0.75rem;
}

.cart-empty-state {
  padding: 3rem 1rem;
}

.cart-empty-state__icon {
  font-size: 2.75rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

/* --- Add to cart feedback --- */
[data-add-to-cart].is-added {
  transform: scale(0.98);
  transition: transform 0.15s ease, background 0.15s ease;
}

.arshad-cart-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 10000;
  max-width: min(92vw, 360px);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.35);
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.arshad-cart-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.arshad-cart-toast__link {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.arshad-cart-toast__link:hover {
  color: #bae6fd;
}

/* --- PDP ultra-compact breadcrumb (matches gallery frame; shop/cart unchanged) --- */
.single__product--has-pdp-crumb.single__product--premium {
  margin-top: 5px !important;
  padding-top: 5px !important;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb {
  --pdp-breadcrumb-radius: 10px;
  --pdp-breadcrumb-ring: 2px;
  position: relative !important;
  z-index: 0 !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  box-sizing: border-box;
  background: var(--pdp-surface-bg, #fff) !important;
  padding: 10px 14px !important;
  min-height: 42px;
  border-radius: var(--pdp-breadcrumb-radius) !important;
  border: var(--pdp-breadcrumb-ring) solid #f0f0f0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center !important;
  gap: 0 6px;
  text-align: left;
  opacity: 0;
  transform: translateY(-10px);
  animation: pdpBreadcrumbEntrance 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition:
    border-color 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  width: 220%;
  height: 220%;
  margin-left: -110%;
  margin-top: -110%;
  /* Google lightning — left → top → right → bottom (clockwise loop) */
  background: conic-gradient(
    from 0deg,
    #4285f4 0deg,
    #ea4335 24deg,
    #fbbc05 48deg,
    #34a853 72deg,
    #4285f4 96deg,
    transparent 100deg,
    transparent 360deg
  );
  filter: saturate(1.9) brightness(1.15);
  opacity: 0;
  pointer-events: none;
  transform: rotate(-90deg);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 2px;
  top: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--pdp-surface-bg, #fff);
  border-radius: calc(var(--pdp-breadcrumb-radius, 10px) - 2px);
  pointer-events: none;
  box-shadow: none;
}

/* Hover / intro: sharp rotating Google-rainbow border line only (no shadow) */
.pdp-gallery-stack .breadcrumb.pdp-breadcrumb.is-intro-glow,
.pdp-gallery-stack .breadcrumb.pdp-breadcrumb:hover {
  border: var(--pdp-breadcrumb-ring) solid transparent !important;
  box-shadow: none !important;
  transform: none;
  background: var(--pdp-surface-bg, #fff) !important;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb.is-intro-glow::after,
.pdp-gallery-stack .breadcrumb.pdp-breadcrumb:hover::after {
  box-shadow: none;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb.is-intro-glow::before {
  opacity: 1 !important;
  filter: saturate(1.9) brightness(1.15);
  animation:
    pdpBreadcrumbGlowRun 2.2s linear infinite,
    pdpBreadcrumbGlowIntro 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb:hover::before {
  opacity: 1 !important;
  filter: saturate(1.9) brightness(1.15);
  animation: pdpBreadcrumbGlowRun 2.2s linear infinite;
}

@keyframes pdpBreadcrumbEntrance {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Start left (-90deg) → top → right → bottom → back to left */
@keyframes pdpBreadcrumbGlowRun {
  100% {
    transform: rotate(270deg);
  }
}

@keyframes pdpBreadcrumbGlowIntro {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb h1 {
  position: relative;
  z-index: 1;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.35 !important;
  margin: 0 10px 0 0 !important;
  padding: 0 !important;
  display: inline-block !important;
  max-width: min(42vw, 280px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  flex-shrink: 1;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul {
  position: relative;
  z-index: 1;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li::before {
  display: none !important;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li + li::before {
  content: "/";
  display: inline !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  transform: none !important;
  margin: 0 0.4rem;
  color: #94a3b8;
  font-weight: 400;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb a {
  color: #444;
  text-decoration: none;
  transition: color 0.25s ease;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb a:hover {
  color: #4285f4;
}

.pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li.color__blue {
  color: var(--primaryColor, #4285f4);
}

@media only screen and (max-width: 991px) {
  .pdp-gallery-stack {
    gap: 10px;
    width: 100%;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb {
    --pdp-breadcrumb-radius: 10px;
    width: 100% !important;
    max-width: 100%;
    padding: 8px 12px !important;
    min-height: 38px;
    flex-wrap: wrap;
    row-gap: 4px;
    align-content: center;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb h1 {
    font-size: 15px !important;
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 6px !important;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul {
    font-size: 13px;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li.color__blue {
    max-width: 9rem;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
  }
}

@media only screen and (max-width: 575px) {
  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb {
    --pdp-breadcrumb-radius: 8px;
    padding: 8px 10px !important;
    flex-direction: column;
    align-items: flex-start !important;
    row-gap: 3px;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb h1 {
    font-size: 14px !important;
    margin-right: 0 !important;
    width: 100%;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul {
    font-size: 12px;
    width: 100%;
    white-space: normal;
    line-height: 1.3;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb ul li.color__blue {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb.is-intro-glow::before,
  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb:hover::before {
    animation: none;
    opacity: 0;
    transform: rotate(-90deg);
  }

  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb.is-intro-glow,
  .pdp-gallery-stack .breadcrumb.pdp-breadcrumb:hover {
    border: var(--pdp-surface-border, 1px solid #f0f0f0) !important;
    transform: none;
    box-shadow: none;
  }
}
