/* ==============================
   CLOTHING TEMPLATE - home-10.css
   ============================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --clothing-primary: var(--color-primary, #1a1a1a);
  --clothing-black: #0d0d0d;
  --clothing-white: #ffffff;
  --clothing-cream: #f8f5f0;
  --clothing-light: #f4f4f4;
  --clothing-border: #e5e1db;
  --clothing-text: #444444;
  --clothing-muted: #888888;
  --clothing-heading-font: 'Cormorant Garamond', serif;
  --clothing-body-font: 'Jost', sans-serif;
  --clothing-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --clothing-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  --clothing-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ---- Base ---- */
body {
  font-family: var(--clothing-body-font);
  color: var(--clothing-text);
  background-color: var(--clothing-white);
}

/* ============================================================
   HEADER v10
   ============================================================ */
.header-area.header-v10 {
  background: var(--clothing-white);
  /* border-bottom: 1px solid var(--clothing-border); */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header-v10 .header-top {
  background: var(--clothing-black);
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.75);
}

.header-v10 .header-top a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--clothing-transition);
}

.header-v10 .header-top a:hover {
  color: var(--clothing-white);
}

.header-v10 .header-middle {
  padding: 18px 0;
  display: flex;
  align-items: center;
}

.header-v10 .brand-logo img {
  max-height: 52px;
  width: auto;
}

.header-v10 .header-bottom {
  border-top: 1px solid var(--clothing-border);
  padding: 0;
}

.header-v10 .main-nav {
  padding: 0;
}

.header-v10 .menu .nav-link {
  font-family: var(--clothing-body-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clothing-black);
  padding: 14px 18px;
  position: relative;
  transition: var(--clothing-transition);
}

.header-v10 .menu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clothing-primary);
  transition: var(--clothing-transition);
}

.header-v10 .menu .nav-link:hover::after,
.header-v10 .menu .nav-link.active::after {
  width: 100%;
}

.header-v10 .menu .nav-link:hover,
.header-v10 .menu .nav-link.active {
  color: var(--clothing-primary);
}

/* ---- Header Icons ---- */
.header-v10 .header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-v10 .header-icons .menu-item a {
  color: var(--color-white);
  font-size: 16px;
  padding: 8px 12px;
  position: relative;
  transition: var(--clothing-transition);
}

.header-v10 .header-icons .menu-item a:hover {
  color: var(--clothing-primary);
}

/* ============================================================
   HERO SECTION - Home 10
   ============================================================ */
.home-hero-10 {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clothing-cream);
}

.home-hero-10 .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-10 .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero-10 .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 13, 13, 0.65) 0%, rgba(13, 13, 13, 0.15) 55%, transparent 100%);
  z-index: 1;
}

.home-hero-10 .hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.home-hero-10 .hero-subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.home-hero-10 .hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.home-hero-10 .hero-title {
  font-family: var(--clothing-heading-font);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--clothing-white);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.home-hero-10 .hero-title em {
  font-style: italic;
  font-weight: 300;
}

.home-hero-10 .hero-description {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

.home-hero-10 .hero-btns {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-hero-10 .btn-shop-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clothing-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 32px;
  transition: var(--clothing-transition);
  position: relative;
  overflow: hidden;
}

.home-hero-10 .btn-shop-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clothing-white);
  transform: translateX(-101%);
  transition: var(--clothing-transition);
  z-index: -1;
}

.home-hero-10 .btn-shop-now:hover {
  color: var(--clothing-black);
  border-color: var(--clothing-white);
}

.home-hero-10 .btn-shop-now:hover::before {
  transform: translateX(0);
}

.home-hero-10 .btn-explore {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: var(--clothing-transition);
}

.home-hero-10 .btn-explore:hover {
  color: var(--clothing-white);
}

/* Slider Dots */
.home-hero-10 .slick-dots {
  bottom: 30px;
}

.home-hero-10 .slick-dots li button::before {
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
}

.home-hero-10 .slick-dots li.slick-active button::before {
  color: var(--clothing-white);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.clothing-announcement {
  background: var(--clothing-black);
  padding: 11px 0;
  overflow: hidden;
}

.clothing-announcement .announcement-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee-clothing 25s linear infinite;
  white-space: nowrap;
}

.clothing-announcement .announcement-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.clothing-announcement .announcement-item i {
  color: var(--color-primary, #c9a96e);
  font-size: 10px;
}

@keyframes marquee-clothing {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title-clothing {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-clothing .pre-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clothing-primary);
  margin-bottom: 12px;
  position: relative;
  padding: 0 24px;
}

.section-title-clothing .pre-title::before,
.section-title-clothing .pre-title::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background: var(--clothing-primary);
}

.section-title-clothing .pre-title::before {
  left: 0;
}

.section-title-clothing .pre-title::after {
  right: 0;
}

.section-title-clothing h2 {
  font-family: var(--clothing-heading-font);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--clothing-black);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title-clothing p {
  font-size: 15px;
  font-weight: 300;
  color: var(--clothing-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   CATEGORY SECTION
   ============================================================ */
.clothing-categories {
  padding: 40px 0;
  background: var(--clothing-white);
}

.clothing-cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}

.clothing-cat-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--clothing-light);
}

.clothing-cat-item:first-child {
  grid-row: span 2;
}

.clothing-cat-item .cat-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--clothing-light);
}

.clothing-cat-item:first-child .cat-img {
  aspect-ratio: 3/5;
}

.clothing-cat-item .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clothing-cat-item:hover .cat-img img {
  transform: scale(1.07);
}

.clothing-cat-item .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  transition: var(--clothing-transition);
}

.clothing-cat-item:hover .cat-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.clothing-cat-item .cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  z-index: 2;
}

.clothing-cat-item .cat-name {
  font-family: var(--clothing-heading-font);
  font-size: 26px;
  font-weight: 400;
  color: var(--clothing-white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.clothing-cat-item:first-child .cat-name {
  font-size: 36px;
}

.clothing-cat-item .cat-count {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

.clothing-cat-item .cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--clothing-transition);
  opacity: 0;
  transform: translateY(8px);
}

.clothing-cat-item:hover .cat-link {
  opacity: 1;
  transform: translateY(0);
}

/* Category Slider (fallback for many cats) */
.cat-slider-clothing {
  gap: 16px;
}

.cat-slider-clothing .slick-slide {
  padding: 0 8px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-default-10 {
  position: relative;
  background: #ffffff !important;
  transition: var(--clothing-transition);
  border: 1px solid var(--clothing-border) !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.product-default-10:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  border-color: #d0c8b8 !important;
}

.product-default-10 .product-img {
  position: relative;
  overflow: hidden;
  background: #ffffff !important;
  aspect-ratio: 3/4;
  display: block;
  border-bottom: 1px solid var(--clothing-border) !important;
}

.product-default-10 .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-default-10:hover .product-img img.default-img {
  opacity: 1;
}

.product-default-10:hover .product-img img.hover-img {
  opacity: 1;
}

.product-default-10 .product-img img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-default-10:hover .product-img img {
  transform: scale(1.05);
}

/* Product Badge */
.product-default-10 .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-default-10 .badge-new {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--clothing-black);
  color: var(--clothing-white);
  padding: 4px 10px;
}

.product-default-10 .badge-sale {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--clothing-primary);
  color: var(--clothing-white);
  padding: 4px 10px;
}

/* Action Buttons - always visible horizontal row at bottom */
.product-default-10 .btn-icon-group,
.product-default-10 .btn-icon-group.btn-inline {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 15px 15px !important;
  background: #ffffff !important;
  opacity: 1 !important;
  transform: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-top: 1px solid #f0eedf !important;
  margin-top: 10px !important;
  z-index: 4;
}

@media screen and (max-width: 767px) {

  /* Action Buttons - always visible horizontal row at bottom */
  .product-default-10 .btn-icon-group,
  .product-default-10 .btn-icon-group.btn-inline {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 15px 15px !important;
    background: #ffffff !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-top: 1px solid #f0eedf !important;
    margin-top: 10px !important;
    z-index: 4;
  }
}



.product-default-10 .btn-icon,
.product-default-10 .btn-icon-group.btn-inline .btn-icon,
.product-default-10 .btn-icon-group.btn-inline a.btn,
.product-default-10 .btn-icon-group.btn-inline button.btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 4px !important;
  border: 1px solid #e2ded5 !important;
  background: #f7f5f0 !important;
  color: #333333 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  transition: all 0.2s ease-in-out !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

.product-default-10 .btn-icon:hover,
.product-default-10 .btn-icon-group.btn-inline .btn-icon:hover,
.product-default-10 .btn-icon-group.btn-inline a.btn:hover,
.product-default-10 .btn-icon-group.btn-inline button.btn:hover {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

/* Hide Add to Cart Overlay banner entirely */
.add-to-cart-overlay,
.product-default-10 .add-to-cart-overlay {
  display: none !important;
}

/* Product Details */
.product-default-10 .product-details {
  padding: 15px 15px 18px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  background: #ffffff !important;
}

/* Hide category and rating on clothing product cards only */
.product-default-10 .product-category,
.product-default-10 .category,
.product-default:not(.product-list-card) .product-category,
.product-default:not(.product-list-card) .product-details > a .product-category,
.product-default:not(.product-list-card) .product-details > .category,
.product-center:not(.product-list-card) .product-category,
.product-inline:not(.product-list-card) .product-category {
  display: none !important;
}

.product-default-10 .product-rating,
.product-default .product-ratings,
.product-default .ratings-total,
.product-ratings,
.ratings-total {
  display: none !important;
}

.product-default-10 .product-title {
  font-family: var(--clothing-heading-font) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
  line-height: 1.3 !important;
  transition: var(--clothing-transition) !important;
}

.product-default-10 .product-title a {
  color: var(--clothing-black) !important;
  transition: var(--clothing-transition) !important;
  text-decoration: none !important;
}

.product-default-10 .product-title a:hover {
  color: var(--clothing-primary) !important;
}

/* Color Swatches */
.product-default-10 .product-swatches {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.product-default-10 .swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--clothing-border);
  cursor: pointer;
  transition: var(--clothing-transition);
}

.product-default-10 .swatch:hover {
  transform: scale(1.3);
}

.product-default-10 .product-price .new-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--clothing-black);
}

.product-default-10 .product-price .old-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--clothing-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ============================================================
   FLASH SALE SECTION
   ============================================================ */
.flash-sale-clothing {
  /*padding: 100px 0;*/
  background: var(--clothing-cream);
  margin-top: 1rem;
}

.flash-sale-clothing .flash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

.flash-sale-clothing .flash-title-group {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.flash-sale-clothing .flash-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clothing-primary);
  color: var(--clothing-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.flash-sale-clothing .flash-label i {
  font-size: 13px;
  animation: flash-pulse 1.2s ease-in-out infinite;
}

@keyframes flash-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.flash-sale-clothing .flash-h2 {
  font-family: var(--clothing-heading-font);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--clothing-black);
}

/* Countdown */
.clothing-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clothing-countdown .time-block {
  background: var(--clothing-black);
  color: var(--clothing-white);
  text-align: center;
  padding: 12px 16px;
  min-width: 64px;
}

.clothing-countdown .time-block .num {
  display: block;
  font-family: var(--clothing-heading-font);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.clothing-countdown .time-block .unit {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.clothing-countdown .colon {
  font-size: 24px;
  font-weight: 700;
  color: var(--clothing-black);
  opacity: 0.5;
}

/* ============================================================
   TAB / COLLECTION SECTION
   ============================================================ */
.clothing-collection {
  padding: 100px 0;
  background: var(--clothing-white);
}

.clothing-tab-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--clothing-border);
  flex-wrap: wrap;
}

.clothing-tab-nav .tab-btn {
  font-family: var(--clothing-body-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clothing-muted);
  background: transparent;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--clothing-transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.clothing-tab-nav .tab-btn:hover,
.clothing-tab-nav .tab-btn.active {
  color: var(--clothing-black);
  border-bottom-color: var(--clothing-black);
}

.clothing-tab-content {
  display: none;
}

.clothing-tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   BANNER SECTION
   ============================================================ */
.clothing-banner-section {
  padding: 40px 0 40px;
}

.clothing-banner-item {
  position: relative;
  overflow: hidden;
  display: block;
}

.clothing-banner-item .banner-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.clothing-banner-item .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.clothing-banner-item:hover .banner-img img {
  transform: scale(1.05);
}

.clothing-banner-item .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}

.clothing-banner-item .banner-body {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.clothing-banner-item .banner-body .sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.clothing-banner-item .banner-body h4 {
  font-family: var(--clothing-heading-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--clothing-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.clothing-banner-item .banner-body .btn-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clothing-white);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--clothing-transition);
}

.clothing-banner-item .banner-body .btn-banner:hover {
  border-bottom-color: var(--clothing-white);
  gap: 14px;
}

/* ============================================================
   TOP RATED / BEST SELLERS
   ============================================================ */
.clothing-top-rated {
  padding: 40px 0;
  background: var(--clothing-cream);
}

.top-rated-slider-clothing .slick-slide {
  padding: 0 10px;
}

/* ============================================================
   FEATURED / HOW IT WORKS
   ============================================================ */
.clothing-features {
  padding: 60px 0;
  background: var(--clothing-black);
}

.clothing-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  text-align: left;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.clothing-feature-item:last-child {
  border-right: none;
}

.clothing-feature-item .feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.clothing-feature-item .feature-icon i {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.clothing-feature-item .feature-text h5 {
  font-family: var(--clothing-body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clothing-white);
  margin-bottom: 4px;
}

.clothing-feature-item .feature-text p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   PRODUCT ROWS (for tab content)
   ============================================================ */
.products-row-clothing {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1199px) {
  .products-row-clothing {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .products-row-clothing {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 479px) {
  .products-row-clothing {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ============================================================
   FOOTER v10
   ============================================================ */
.footer-v10 {
  background: var(--clothing-black);
  color: rgba(255, 255, 255, 0.7);
}

.footer-v10 .footer-top {
  padding: 80px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v10 .footer-logo img {
  max-height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-v10 .footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-v10 h4.footer-heading {
  font-family: var(--clothing-body-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clothing-white);
  margin-bottom: 24px;
}

.footer-v10 .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-v10 .footer-links li {
  margin-bottom: 10px;
}

.footer-v10 .footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--clothing-transition);
  text-decoration: none;
}

.footer-v10 .footer-links a:hover {
  color: var(--clothing-white);
  padding-left: 6px;
}

.footer-v10 .social-link {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-v10 .social-link a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: var(--clothing-transition);
  text-decoration: none;
}

.footer-v10 .social-link a:hover {
  background: var(--color-primary, #c9a96e);
  border-color: var(--color-primary, #c9a96e);
  color: var(--clothing-white);
}

.footer-v10 .newsletter-form input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clothing-white);
  padding: 12px 18px;
  font-size: 13px;
  border-radius: 0;
  flex: 1;
}

.footer-v10 .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-v10 .newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.08);
}

.footer-v10 .newsletter-form .btn-subscribe {
  background: var(--clothing-white);
  color: var(--clothing-black);
  border: 1px solid var(--clothing-white);
  padding: 12px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--clothing-transition);
  white-space: nowrap;
}

.footer-v10 .newsletter-form .btn-subscribe:hover {
  background: var(--color-primary, #c9a96e);
  border-color: var(--color-primary, #c9a96e);
  color: var(--clothing-white);
}

.footer-v10 .footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-v10 .footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
   MOBILE MENU v10
   ============================================================ */
.mobile-menu.mobile-menu-v10 .mobile-menu-wrapper {
  background: var(--clothing-black);
}

.mobile-menu.mobile-menu-v10 .mobile-menu-top {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
}

.mobile-menu.mobile-menu-v10 .mobile-menu-top .logo img {
  filter: brightness(0) invert(1);
}

.mobile-menu.mobile-menu-v10 .mobile-menu-close {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   BUTTON OVERRIDES
   ============================================================ */
.btn-primary {
  background-color: var(--clothing-black);
  border-color: var(--clothing-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 30px;
  transition: var(--clothing-transition);
}

.btn-primary:hover {
  background-color: var(--clothing-primary);
  border-color: var(--clothing-primary);
}

.btn-outline-primary {
  border-color: var(--clothing-black);
  color: var(--clothing-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 30px;
  transition: var(--clothing-transition);
  margin-top: 20px;
}

.btn-outline-primary:hover {
  background: var(--clothing-black);
  color: var(--clothing-white);
}

/* ============================================================
   CATEGORY SLIDER OVERRIDES
   ============================================================ */
.cat-slider-clothing .category-item {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.cat-slider-clothing .category-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1/1;
  background: var(--clothing-light);
  margin-bottom: 14px;
}

.cat-slider-clothing .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cat-slider-clothing .category-item:hover .category-image img {
  transform: scale(1.06);
}

.cat-slider-clothing .category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: var(--clothing-transition);
}

.cat-slider-clothing .category-item:hover .category-image::after {
  background: rgba(0, 0, 0, 0.12);
}

.cat-slider-clothing h5 {
  font-family: var(--clothing-heading-font);
  font-size: 17px;
  font-weight: 400;
  color: var(--clothing-black);
  margin-bottom: 4px;
}

.cat-slider-clothing .count {
  font-size: 11px;
  color: var(--clothing-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   PRODUCT SLIDER ARROWS
   ============================================================ */
.slick-prev,
.slick-next {
  width: 42px;
  height: 42px;
  border: 1px solid var(--clothing-border);
  background: var(--clothing-white);
  border-radius: 0;
  z-index: 10;
  transition: var(--clothing-transition);
}

.slick-prev:hover,
.slick-next:hover {
  background: var(--clothing-black);
  border-color: var(--clothing-black);
}

.slick-prev::before,
.slick-next::before {
  color: var(--clothing-black);
  font-size: 14px;
}

.slick-prev:hover::before,
.slick-next:hover::before {
  color: var(--clothing-white);
}

/* ============================================================
   UTILITY
   ============================================================ */
.pb-100 {
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton-clothing {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}

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

  100% {
    background-position: -200% 0;
  }
}

.product-skeleton .img-skel {
  aspect-ratio: 3/4;
  background: #f0f0f0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .clothing-cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .clothing-cat-item:first-child {
    grid-column: span 2;
    grid-row: 1;
  }

  .clothing-cat-item:first-child .cat-img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 991px) {
  .clothing-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
  }

  .clothing-feature-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767px) {
  .home-hero-10 {
    min-height: 70vh;
  }

  .home-hero-10 .hero-title {
    font-size: 42px;
  }

  .clothing-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clothing-cat-item:first-child {
    grid-column: auto;
  }

  .clothing-cat-item:first-child .cat-img {
    aspect-ratio: 3/4;
  }

  .flash-sale-clothing .flash-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .clothing-tab-nav {
    gap: 0;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .clothing-tab-nav .tab-btn {
    white-space: nowrap;
    padding: 12px 20px;
  }

  .footer-v10 .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   URBAN MOCKUP DESIGN OVERRIDES
   ============================================================ */

/* ---- Promo Strip ---- */
.promo-strip {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--clothing-body-font);
}

/* ---- Single Row Header Navigation ---- */
.header-v10 .header-middle {
  padding: 12px 0;
  border-bottom: 1px solid var(--clothing-border);
}

.header-v10 .brand-logo a {
  font-family: var(--clothing-body-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000 !important;
  text-transform: uppercase;
  text-decoration: none;
}

.header-v10 .brand-logo a span {
  color: #000;
}

/* Header main menu in single row */
.header-v10 .main-nav .menu-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-v10 .main-nav .menu-right>li>a {
  font-family: var(--clothing-body-font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clothing-black) !important;
  padding: 8px 12px;
  transition: var(--clothing-transition);
}

.header-v10 .main-nav .menu-right>li>a:hover,
.header-v10 .main-nav .menu-right>li>a.active {
  color: var(--clothing-primary) !important;
}

/* Search bar styling */
.header-search-form-minimal {
  border: 1px solid #e5e1db;
  border-radius: 0;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 38px;
  max-width: 220px;
}

.header-search-form-minimal input {
  border: none;
  font-size: 12px;
  padding: 5px;
  width: 100%;
  outline: none;
  font-family: var(--clothing-body-font);
}

.header-search-form-minimal button {
  background: transparent;
  border: none;
  color: #888;
  font-size: 12px;
  cursor: pointer;
}

/* Right header icons */
.header-v10 .header-icons .menu-item a {
  font-size: 16px !important;
  color: #ffb800 !important;
}

.header-v10 .header-icons .menu-item a:hover {
  color: var(--clothing-primary) !important;
}

.header-v10 .header-icons .badge {
  background: #000 !important;
  color: #fff !important;
}

/* ---- Hero Section Overrides (Bright layout) ---- */
.home-hero-10 .hero-overlay {
  background: transparent !important;
}

.home-hero-10 .hero-subtitle {
  color: #000 !important;
  font-weight: 700 !important;
}

.home-hero-10 .hero-subtitle::after {
  background: #000 !important;
}

.home-hero-10 .hero-title {
  color: #0d0d0d !important;
  font-weight: 600 !important;
}

.home-hero-10 .hero-description {
  color: #444 !important;
}

/* Hero buttons */
.home-hero-10 .btn-shop-now {
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
}

.home-hero-10 .btn-shop-now:hover {
  background: #333 !important;
  border-color: #333 !important;
  color: #fff !important;
}

.home-hero-10 .btn-shop-now::before {
  display: none !important;
}

.home-hero-10 .btn-explore {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  padding: 14px 32px !important;
  text-decoration: none !important;
}

.home-hero-10 .btn-explore:hover {
  background: #000 !important;
  color: #fff !important;
}

/* ---- Categories Overlay Cards ---- */
.clothing-cat-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--clothing-light);
}

.clothing-cat-item .cat-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.clothing-cat-item .cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clothing-cat-item:hover .cat-img img {
  transform: scale(1.06);
}

.clothing-cat-item .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  transition: var(--clothing-transition);
}

.clothing-cat-item .cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.clothing-cat-item .cat-name {
  font-family: var(--clothing-body-font);
  font-size: 18px;

  color: var(--clothing-white);
  margin-bottom: 4px;
  line-height: 1.2;
  text-transform: uppercase;

}

.clothing-cat-item .cat-link {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---- Middle Banners Portrait Cards ---- */
.clothing-banner-item .banner-img {
  aspect-ratio: 3/4 !important;
}

.clothing-banner-item .banner-body h4 {
  font-family: var(--clothing-body-font) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* ---- Countdown Standalone Banner ---- */
.clothing-countdown-banner {
  box-shadow: none !important;
}

.clothing-countdown-banner .btn {
  transition: background 0.3s;
}

.clothing-countdown-banner .btn:hover {
  background: #333 !important;
}

/* ---- Testimonials Section ---- */
.clothing-testimonials {
  padding: 40px 0;
  background: #fff;
}

.testimonial-card-premium {
  text-align: center;
  padding: 30px;
  background: #fff;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.testimonial-card-premium .stars {
  color: #f0c040;
  font-size: 13px;
  margin-bottom: 15px;
}

.testimonial-card-premium .quote {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.testimonial-card-premium .author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial-card-premium .author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card-premium .author .info {
  text-align: left;
}

.testimonial-card-premium .author .info h5 {
  font-family: var(--clothing-body-font);
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
  margin: 0;
}

.testimonial-card-premium .author .info span {
  font-size: 11px;
  color: #888;
}

/* ---- Features Strip Overrides ---- */
.clothing-features {
  background: #fdfdfd !important;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 40px 0;
}

.clothing-features .clothing-feature-item {
  border-right: 1px solid #f0f0f0;
}

.clothing-features .clothing-feature-item:last-child {
  border-right: none;
}

.clothing-feature-item .feature-icon i {
  color: #0d0d0d !important;
}

.clothing-feature-item .feature-text h5 {
  color: #0d0d0d !important;
}

/* ---- Instagram Feed ---- */
.clothing-instagram-feed {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

.clothing-instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.instagram-image-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.instagram-image-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.instagram-image-card .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 20px;
}

.instagram-image-card:hover .insta-overlay {
  opacity: 1;
}

/* ---- Footer Rebuild ---- */
.footer-v10 {
  background: #f9f9f9 !important;
  color: #333 !important;
  border-top: 1px solid #eaeaea;
}

.footer-v10 .footer-logo img {
  filter: none !important;
}

.footer-v10 .bg-img {
  display: none !important;
}

.footer-v10 .footer-top {
  background: transparent !important;
  padding: 40px 0 10px;
}

.footer-v10 .footer-heading {
  color: #0d0d0d !important;
  font-family: var(--clothing-body-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 24px !important;
}

.footer-v10 .footer-desc {
  color: #666 !important;
}

.footer-v10 .footer-links li a {
  color: #555 !important;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-v10 .footer-links li a:hover {
  color: var(--clothing-primary) !important;
}

.footer-v10 .footer-bottom {
  background: #f0f0f0 !important;
  border-top: 1px solid #e0e0e0;
  padding: 20px 0;
  color: #555 !important;
}

.footer-v10 .footer-bottom p {
  color: #555 !important;
}

/* Newsletter Strip above Footer */
.newsletter-strip-horizontal {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 0;
}

.newsletter-strip-horizontal h3 {
  font-family: var(--clothing-heading-font);
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}

.newsletter-strip-horizontal p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 0;
}

.newsletter-strip-horizontal .newsletter-form {
  display: flex;
  max-width: 500px;
  width: 100%;
}

.newsletter-strip-horizontal .newsletter-form input {
  background: #222;
  border: 1px solid #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0;
  font-size: 13px;
  flex: 1;
  outline: none;
}

.newsletter-strip-horizontal .newsletter-form button {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 0;
  padding: 0 25px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-strip-horizontal .newsletter-form button:hover {
  background: #eaeaea;
}

/* ---- Countdown Banner Mobile Responsiveness Overrides ---- */
@media only screen and (max-width: 767px) {
  .clothing-countdown-banner {
    padding: 35px 20px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 25px !important;
  }

  .clothing-countdown-banner h2 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }

  .clothing-countdown {
    gap: 8px !important;
    justify-content: center !important;
    width: 84% !important;
  }

  .clothing-countdown .time-block {
    min-width: 52px !important;
    padding: 8px 6px !important;
  }

  .clothing-countdown .time-block .num {
    font-size: 24px !important;
  }

  .clothing-countdown .time-block .unit {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
  }

  .clothing-countdown-banner span[style*="font-size:32px"] {
    font-size: 20px !important;
    margin-top: -10px !important;
  }
}

/* ---- Middle Banners Mobile Grid & UI Overrides ---- */
@media only screen and (max-width: 767px) {
  .clothing-banner-item .banner-img {
    aspect-ratio: 3/4 !important;
  }

  .clothing-banner-item .banner-body {
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
  }

  .clothing-banner-item .banner-body .sub {
    font-size: 9px !important;
    letter-spacing: 1px !important;
    margin-bottom: 4px !important;
  }

  .clothing-banner-item .banner-body h4 {
    font-size: 15px !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }

  .clothing-banner-item .banner-body .btn-banner {
    font-size: 9px !important;
    letter-spacing: 1px !important;
    padding-bottom: 2px !important;
  }
}

/* ---- Features Strip Readability & Mobile Grid Overrides ---- */
.clothing-features .clothing-feature-item .feature-text p {
  color: #666 !important;
}

.clothing-features .clothing-feature-item .feature-icon {
  border: 1px solid #eaeaea !important;
  border-radius: 50% !important;
  background: #fdfdfd !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media only screen and (max-width: 991px) {
  .clothing-features .clothing-feature-item {
    border-right: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .clothing-features .clothing-feature-item {
    border-bottom: none !important;
    padding: 20px 10px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .clothing-features .clothing-feature-item .feature-icon {
    margin: 0 auto !important;
    width: 44px !important;
    height: 44px !important;
  }

  .clothing-features .clothing-feature-item .feature-icon i {
    font-size: 16px !important;
  }

  .clothing-features .clothing-feature-item .feature-text h5 {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }

  .clothing-features .clothing-feature-item .feature-text p {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }
}

/* Mobile Category Grid Override */
@media only screen and (max-width: 767px) {
  body .clothing-cat-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  body .clothing-cat-item:first-child {
    grid-row: span 1 !important;
  }

  body .clothing-cat-item .cat-img {
    aspect-ratio: 1/1 !important;
  }

  body .clothing-cat-item:first-child .cat-img {
    aspect-ratio: 1/1 !important;
  }

  body .clothing-cat-item .cat-content {
    padding: 15px 12px !important;
  }

  body .clothing-cat-item .cat-name {
    font-size: 18px !important;
  }

  body .clothing-cat-item:first-child .cat-name {
    font-size: 18px !important;
  }
}


/* ============================================================
   HOMEPAGE OVERRIDES (matching target design)
   ============================================================ */

/* Hero shell – text overlaid inside the image */
.clothing-hero-shell {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  min-height: 520px;
  background: #f5f3ef;

}

.clothing-hero-slider {
  position: relative;
}

.clothing-hero-slide {
  padding: 0;
}

.clothing-hero-slider .slick-list,
.clothing-hero-slider .slick-track {
  border-radius: 12px;
}

.clothing-hero-slider .slick-dots {
  bottom: 16px;
}

.clothing-hero-slider .slick-dots li {
  margin: 0 3px;
}

.clothing-hero-slider .slick-dots li button:before {
  font-size: 9px;
  color: rgba(17, 17, 17, 0.45);
  opacity: 1;
}

.clothing-hero-slider .slick-dots li.slick-active button:before {
  color: #111;
}

.clothing-hero-copy {
  position: static;
  display: block;
  padding: 15px 80px;
  max-width: 600px;
  width: 100%;
}

/* Ensure text copy and buttons render above full-section background image */
.clothing-hero-kicker,
.clothing-hero-copy h1,
.clothing-hero-copy p,
.clothing-hero-actions {
  position: relative;
  z-index: 3;
}

.clothing-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8c7f70;
}

.clothing-hero-kicker::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background-color: #8c7f70;
}

.clothing-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
  font-family: 'Jost', sans-serif;
}

.clothing-hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  color: #000000;
}

.clothing-hero-copy p {
  max-width: 440px;
  margin: 0 0 32px;
  color: #5c554d;
  font-size: 16px;
  line-height: 1.65;
}

.clothing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.clothing-btn-dark,
.clothing-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 150px;
  height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.clothing-btn-dark {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.12);
}

.clothing-btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #e2ded7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.clothing-btn-dark i,
.clothing-btn-light i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.clothing-btn-dark:hover {
  background: #2b2b2b;
  border-color: #2b2b2b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.22);
}

.clothing-btn-light:hover {
  background: #fcfbfa;
  border-color: #111;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.clothing-btn-dark:hover i,
.clothing-btn-light:hover i {
  transform: translateX(4px);
}

.hero-visual-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f3ef;
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.2) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  display: block;
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clothing-hero-shell:hover .hero-visual-frame img {
  transform: scale(1.03);
}

/* Category grid (5 equal columns) */
.clothing-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.clothing-category-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #c8c0b3;
  border-radius: 8px;
  min-height: 200px;
  text-decoration: none;
}

.clothing-category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .45s ease;
}

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

.clothing-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}

.clothing-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 16px 18px;
  color: #fff;
}

.clothing-card-overlay h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.clothing-card-overlay span {
  font-size: 11px;
  opacity: .9;
  font-weight: 600;
}

/* Section link */
.clothing-section-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
}

.clothing-section-link:hover {
  color: #555;
}

/* Product grid – 4 columns */
.products-row-clothing {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.product-default-10 {
  background: #fff !important;
  border: 1px solid #e5e1db !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}

.product-default-10:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .09) !important;
  border-color: #ccc !important;
}

.product-default-10 .product-img {
  position: relative;
  overflow: hidden;
  background: #fff !important;
  aspect-ratio: 3/4;
  display: block;
  width: 100%;
  border-bottom: 1px solid #f0ede8 !important;
}

.product-default-10 .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s ease;
}

.product-default-10:hover .product-img img {
  transform: scale(1.05);
}

.product-default-10 .product-details {
  padding: 14px 14px 16px !important;
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
}

.product-default-10 .product-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111 !important;
  line-height: 1.4 !important;
  margin: 0 0 8px !important;
}

.product-default-10 .product-title a {
  color: #111 !important;
  text-decoration: none !important;
}

.product-default-10 .product-title a:hover {
  color: #555 !important;
}

.product-default-10 .product-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #111 !important;
}

.product-default-10 .product-price .old-price {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #aaa !important;
  text-decoration: line-through !important;
  margin-left: 6px !important;
}

.product-default-10 .product-rating i {
  font-size: 10px;
  color: #f0c040;
}

/* Trust strip */
.clothing-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, .08);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.clothing-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px;
}

.clothing-trust-item:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, .08);
}

.clothing-trust-item i {
  font-size: 22px;
  color: #181818;
  margin-top: 2px;
}

.clothing-trust-item h4 {
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.clothing-trust-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #67615a;
}

/* Promo banner */
.clothing-promo-banner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #efe4d7 0%, #f7efe4 100%);
}

.clothing-promo-copy {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clothing-promo-copy .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #6d6257;
  margin-bottom: 12px;
}

.clothing-promo-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: .95;
  font-weight: 300;
  color: #171717;
}

.clothing-promo-copy p {
  margin: 0 0 18px;
  color: #5c554d;
  font-size: 15px;
}

/* Premium Collection Banners Grid & Slider */
.clothing-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.clothing-collection-slider {
  margin-top: 30px;
  margin-bottom: 40px;
}

.clothing-collection-slider .px-2 {
  padding-left: 12px;
  padding-right: 12px;
}

.clothing-collection-slider .slick-dots {
  bottom: -35px;
}

.clothing-collection-card {
  position: relative;
  overflow: hidden;
  background: #f4efeb;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.clothing-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.clothing-collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.clothing-collection-card:hover img {
  transform: scale(1.06);
}

.clothing-collection-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  text-align: left;
}

.clothing-collection-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.clothing-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .12em;
  border-bottom: 1.5px solid rgba(255, 255, 255, .6);
  padding-bottom: 3px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}

.clothing-collection-card:hover .clothing-collection-link {
  gap: 10px;
  border-color: #fff;
  color: #fff !important;
}

/* Responsive Overrides */
@media(max-width:991px) {

  .clothing-hero-slider .slick-list,
  .clothing-hero-slider .slick-track {
    border-radius: 0;
  }

  .clothing-hero-slider .slick-dots {
    bottom: -8px;
  }

  .clothing-hero-shell {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .clothing-hero-copy {
    position: relative;
    z-index: 2;
    padding: 35px 10px;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .clothing-hero-kicker {
    order: 1;
    justify-content: center;
    margin-bottom: 12px;
  }

  .clothing-hero-kicker::before {
    display: none;
  }

  .clothing-hero-copy h1 {
    order: 2;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    margin-bottom: 14px;
    text-align: center;

  }

  .clothing-hero-copy p {
    order: 3;
    margin: 0 auto 24px;
    text-align: center;
  }

  .hero-visual-frame {
    order: 4;
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    min-height: 300px;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
  }

  .hero-visual-frame::after {
    display: none;
  }

  .clothing-hero-actions {
    order: 5;
    justify-content: center;
  }

  .clothing-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-row-clothing {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .clothing-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clothing-promo-banner {
    grid-template-columns: 1fr;
  }

  .clothing-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .clothing-collection-card {
    min-height: 280px;
  }

  .clothing-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

@media(max-width:767px) {
  .clothing-hero-slider {
    padding-bottom: 18px;
  }

  .clothing-hero-slider .slick-dots {
    bottom: 0;
  }

  .hero-visual-frame {
    min-height: 300px;
    height: 320px;
    aspect-ratio: 1/1 !important;
  }

  .hero-visual-frame img {
    object-position: right center !important;
  }

  .clothing-hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 10px !important;
    padding: 0 10px !important;
  }

  .clothing-hero-actions a {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    height: 44px !important;
    white-space: nowrap !important;
  }

  .footer-v10 .footer-bottom>.container>div {
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }

  .footer-v10 .footer-bottom p {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .clothing-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  .products-row-clothing {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .clothing-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clothing-collection-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clothing-collection-card {
    min-height: 260px;
  }

  .clothing-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media(max-width:479px) {
  .products-row-clothing {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* END HOMEPAGE OVERRIDES */

/* Custom Header Dropdowns for Clothing Template (Desktop) */
.header-icons .menu-item {
  position: relative;
}

/* Hide setting-dropdown by default and show on hover with transition */
.header-icons .menu-item .setting-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block !important;
}

.header-icons .menu-item:hover .setting-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide mobile cart dropdown container on desktop views */
#cart-dropdown-mobile {
  display: none;
}

/* Cart Sidebar Overlay Backdrop */
@media (max-width: 1199px) {
  .cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Fixed right-to-left Sidebar Drawer for Cart dropdown */
  #cart-dropdown-mobile {
    position: fixed;
    top: 0;
    right: -420px;
    /* Start offscreen right */
    left: auto;
    width: 420px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid #e5e1db;
    border-right: none;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    z-index: 100000;
    border-radius: 0;
    padding: 30px 24px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: flex !important;
    flex-direction: column;
  }

  #cart-dropdown-mobile.active {
    right: 0 !important;
    /* Slide in right to left */
    left: auto !important;
  }

  /* Enable styling for the inner header close button and layouts */
  .cart-dropdown .cart-header {
    display: flex !important;
  }

  #cart-dropdown-mobile .cart-dropdown-list {
    max-height: calc(100vh - 220px);
    flex-grow: 1;
  }
}

@media (min-width: 1200px) {

  /* Hover Dropdown for Cart on Desktop */
  .header-icons .menu-item #cart-dropdown-header {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    width: 420px;
    background: #ffffff;
    border: 1px solid #e5e1db;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    z-index: 1000;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block !important;
    padding: 20px;
    height: auto;
  }

  .header-icons .menu-item:hover #cart-dropdown-header {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #cart-dropdown-header .cart-header {
    display: none !important;
  }

  #cart-dropdown-header .cart-dropdown-list {
    max-height: 350px;
  }
}

/* Common inner list styling */
.cart-dropdown .cart-dropdown-list {
  overflow-y: auto;
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.cart-dropdown .cart-dropdown-list-item {
  display: flex !important;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0ede8;
  position: relative;
  align-items: center;
}

.cart-dropdown .cart-img {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #f0ede8;
}

.cart-dropdown .cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-dropdown .cart-title {
  flex-grow: 1;
}

.cart-dropdown .cart-title .product-title a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.cart-dropdown .cart-delete {
  margin-left: auto;
}

.cart-dropdown .cart-footer {
  margin-top: auto;
  border-top: 1px solid #e5e1db;
  padding-top: 20px;
  background: #fff;
}

.cart-dropdown .cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cart-dropdown .cart-total h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.cart-dropdown .cart-button {
  display: flex;
  gap: 10px;
}

.cart-dropdown .cart-button .btn {
  flex: 1;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
}

.cart-dropdown .cart-button .btn-primary {
  background: #111;
  border: 1px solid #111;
  color: #fff;
}

.cart-dropdown .cart-button .btn-primary:hover {
  background: #333;
  border-color: #333;
}

.cart-dropdown .cart-button .btn-outline {
  border: 1px solid #e2ded7;
  color: #111;
  background: #fff;
}

.cart-dropdown .cart-button .btn-outline:hover {
  border-color: #111;
}

/* Custom styling for setting-dropdown to fit the premium look */
.header-icons .menu-item .setting-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  width: 160px;
  background: #ffffff;
  border: 1px solid #e5e1db;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  margin-top: 10px;
  list-style: none;
  z-index: 1000;
  border-radius: 4px;
}

.header-icons .menu-item .setting-dropdown li {
  display: block !important;
  width: 100% !important;
}

.header-icons .menu-item .setting-dropdown li a {
  display: block !important;
  padding: 8px 20px !important;
  font-family: var(--clothing-body-font);
  font-size: 13px !important;
  color: #222 !important;
  font-weight: 500 !important;
  text-transform: none !important;
  text-align: left !important;
  transition: all 0.2s ease;
}

.header-icons .menu-item .setting-dropdown li a:hover {
  background-color: #f8f5f0 !important;
  color: var(--clothing-primary) !important;
}

/* Adjust mobile widths */
@media (max-width: 575px) {
  #cart-dropdown-mobile {
    width: 320px;
    right: -320px;
    left: auto;
    padding: 24px 16px;
  }
}

/* ==============================
   CLOTHING THEME — ORANGE LOADER
   ============================== */

/* --- Keyframe for the spinner ring --- */
@keyframes cl-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes cl-pulse {

  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.88);
  }
}

/* -----------------------------------------------
   PAGE PRELOADER  (initial full-page load)
   ----------------------------------------------- */
.preloader {
  background: #fff !important;
}

/* Hide the GIF image; we draw a CSS spinner instead */
.preloader .preloader-wrapper img {
  display: none !important;
}

/* Inject the orange ring via ::before */
.preloader .preloader-wrapper {
  width: 60px !important;
  height: 60px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.preloader .preloader-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border: 4px solid rgba(255, 115, 0, 0.18);
  border-top-color: #ff7300;
  border-radius: 50%;
  animation: cl-spin 0.8s linear infinite;
}

/* Orange dot in the centre */
.preloader .preloader-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: #ff7300;
  border-radius: 50%;
  animation: cl-pulse 1.4s ease-in-out infinite;
}

/* -----------------------------------------------
   REQUEST LOADER  (AJAX / page-transition overlay)
   ----------------------------------------------- */
.request-loader {
  background-color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Hide the admin GIF */
.request-loader img {
  display: none !important;
}

/* Draw the orange spinner via a pseudo element on the wrapper */
.request-loader::before {
  content: '';
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border: 4px solid rgba(255, 115, 0, 0.18);
  border-top-color: #ff7300;
  border-radius: 50%;
  animation: cl-spin 0.8s linear infinite;
}

/* Small label below the spinner */
.request-loader::after {
  content: '';
  display: block;
  position: fixed;
  top: calc(50% + 38px);
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: #ff7300;
  border-radius: 50%;
  animation: cl-pulse 1.4s ease-in-out infinite;
}

/* Keep spinner visible even when .show toggles display */
.request-loader.show::before,
.request-loader.show::after {
  display: block;
}

/* Related products slider on mobile details page */
@media (max-width: 575px) {
  #product-details-slider .slick-slide {
    padding: 0 5px !important;
  }

  #product-details-slider .product-default-10 {
    margin-bottom: 0 !important;
  }

  #product-details-slider {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
}