/* ════════════════════════════════
   Beauty Brand 22 – Main Stylesheet
   ════════════════════════════════ */

:root {
  --primary:      #6b2d5e;
  --primary-dark: #4a1e42;
  --accent:       #c9973a;
  --light-bg:     #fdf8f5;
  --text-dark:    #1a1a1a;
  --text-muted:   #6c6c6c;
  --sale-red:     #e03030;
}


@import url('https://fonts.googleapis.com/css2?family=Arsenal:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Arsenal", sans-serif; background: #fff; color: var(--text-dark); overflow-x: hidden; }

/* ── TOP BAR ── */
.top-bar { background: var(--primary); color: #fff; font-size: 12px; padding: 6px 0; }
.top-bar a { color: #fff; text-decoration: none; }

/* ── NAVBAR ── */
.navbar-main {
  background: #fff;
  position: sticky; top: 0; z-index: 1030;
  box-shadow: 0 2px 12px rgba(107,45,94,.08);
}

.nav-link {
  color: var(--text-dark) !important; font-size: 15px;
  letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 14px !important; transition: color .2s;
}
.nav-link:hover { color: var(--primary) !important; }
.navbar-icons a { color: var(--text-dark); font-size: 18px; margin-left: 12px; transition: color .2s; }
.navbar-icons a:hover { color: var(--primary); }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* ── OFFCANVAS SIDEBAR ── */
#sidebarMenu .offcanvas-header { background: var(--primary); }
#sidebarMenu .offcanvas-title { color: #fff;  font-size: 22px; font-weight: 700; }
#sidebarMenu .btn-close { filter: invert(1); }
.sidebar-nav .nav-link {
  font-size: 15px; font-weight: 600;
  color: var(--text-dark) !important;
  border-bottom: 1px solid #f0e8ec;
  padding: 12px 20px !important;
  text-transform: uppercase; letter-spacing: .5px;
}
.sidebar-nav .nav-link:hover { background: #fdf2fb; color: var(--primary) !important; }
.sidebar-sub .nav-link {
  font-size: 13px; font-weight: 500;
  padding: 8px 36px !important;
  color: var(--primary) !important;
  text-transform: capitalize; letter-spacing: 0;
}

/* ── HERO BANNER ── */
.hero-banner {
  background: #E8DDD0;
  position: relative;
  overflow: hidden;
}
.hero-img-grid { display: block; }
.hero-img-grid video {
  width: 100%;
  height: 500px;        /* ye value kam ya zyada kar sakte ho */
  object-fit: cover;
  object-position: top; /* upar se crop kare — face dikhta rahe */
  display: block;
  border-radius: 0;     /* gap wale rounded corners hata diye */
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b2d5e' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-text-box { position: relative; z-index: 2; }
.hero-title {
 
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700; color: var(--primary-dark);
  line-height: 1.05; letter-spacing: -1px;
}
.hero-sub {

  font-size: 25px;
  color: #ff3710;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.btn-hero {
  background: var(--primary); color: #fff; border: none;
  padding: 13px 38px; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; transition: background .25s, transform .2s;
}
.btn-hero:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

.hero-img-grid { display: block; align-items: start; }
.hero-img-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }
.hero-img-grid img:first-child { grid-row: span 2; height: auto; }
.hero-img-grid video { width: 100%; height: auto; border-radius: 4px; grid-row: span 2; display: block; }

/* ── CATEGORY CIRCLES ── */
/* CATEGORY SECTION */
.cat-section{
  background:#4a2344; /* screenshot wala color */
  padding:40px 0;
}

.cat-row{
  display:flex;
  justify-content:center;
  gap:45px;
  flex-wrap:wrap;
}

.cat-circle-wrap{
  text-align:center;
}

.cat-circle{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
  0 10px 25px rgba(0,0,0,.35),
  0 0 15px rgba(255,255,255,.08),
  0 0 25px rgba(214,51,132,.25);

  transition:all .3s ease;
  
}
.cat-circle-wrap:hover .cat-circle{
  transform:translateY(-5px) scale(1.05);
  box-shadow:
      0 15px 35px rgba(0,0,0,0.45),
      0 0 20px rgba(255,255,255,0.15),
      0 0 40px rgba(255,182,193,0.25);
}

.cat-circle img{
  width:100%;
  height:100%;
  object-fit:contain;   /* image cut nahi hogi */
  object-position:center;
}

.cat-label{
  color:#fff;
  font-size:14px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.5px;
}

/* Mobile */
@media(max-width:768px){
  .cat-row{
      gap:20px;
  }

  .cat-circle{
      width:90px;
      height:90px;
  }

  .cat-label{
      font-size:10px;
  }
}

/* ── SECTION TITLES ── */
.section-title {
  
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--primary-dark); letter-spacing: -0.5px;
}
.title-divider { width: 60px; height: 3px; background: var(--accent); margin: 10px auto 30px; border-radius: 2px; }

/* ── PRODUCT CARDS ── */
.product-card {
  border: none; border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
  position: relative; background: #fff;
}
.product-card:hover { box-shadow: 0 8px 32px rgba(107,45,94,.15); transform: translateY(-4px); }
.product-img-wrap {  overflow: hidden; background: #f5ecf3; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--primary);
}
.sale-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ad090b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  letter-spacing: .5px;
}
.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,.85); border: none;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #999; cursor: pointer;
  transition: color .2s, background .2s;
}
.wishlist-btn:hover { color: var(--sale-red); background: #fff; }
.product-name { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.price-now   { font-size: 14px; font-weight: 700; color: var(--primary); }
.price-old   { font-size: 12px; color: #aaa; text-decoration: line-through; margin: 0 4px; }
.price-off   { font-size: 11px; color: var(--sale-red); font-weight: 700; }




/* ── WESTERN WEARS GRID ── */

.western-section{
  background:#fff;
}

.western-title{

  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

/* LEFT FEATURED PRODUCT */

.featured-product{
  position:relative;
  overflow:hidden;
  height:100%;
  min-height:640px;
}

.featured-product img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:all .6s ease;
}

.featured-product:hover img{
  transform:scale(1.08);
}

.featured-content{
  position:absolute;
  left:0;
  right:0;
  bottom:55px;
  text-align:center;
  z-index:2;
}

.featured-content h3{
  color:#fff;
  font-size:22px;
  font-weight:300;
  letter-spacing:2px;
  margin-bottom:15px;
}

.shop-btn{
  display:inline-block;
  background:#5a2d58;
  color:#fff;
  padding:10px 35px;
  text-decoration:none;
  transition:.3s;
}

.shop-btn:hover{
  background:#3d1d3c;
  color:#fff;
  transform:translateY(-3px);
}

/* RIGHT PRODUCTS */

.product-card{
  position:relative;
  overflow:hidden;
  background:#fff;
  border-radius: 0px;
}

.product-card img{
  object-fit:cover;
  transition:.5s ease;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.15);
  opacity:0;
  transition:.4s;
}

.product-card:hover::before{
  opacity:1;
}

.product-btn{
  position:absolute;
  bottom:15px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:1px solid #ccc;
  padding:8px 25px;
  font-size:14px;
  z-index:2;
  transition:.3s;
}

.product-card:hover .product-btn{
  background:#5a2d58;
  color:#fff;
  border-color:#5a2d58;
}

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

@media (max-width:991px){

  .featured-product{
      min-height:500px;
      margin-bottom:10px;
  }

  .western-title{
      font-size:36px;
  }

  .product-card img{
      height:260px;
  }
}

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

@media (max-width:767px){

  .western-title{
      font-size:28px;
      letter-spacing:2px;
  }

  .featured-product{
      min-height:400px;
  }

  .featured-content{
      bottom:30px;
  }

  .featured-content h3{
      font-size:18px;
  }

  .shop-btn{
      padding:8px 22px;
      font-size:13px;
  }

  .product-card img{
      height:220px;
  }

  .product-btn{
      padding:6px 16px;
      font-size:12px;
  }
}

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

@media (max-width:575px){

  .featured-product{
      min-height:320px;
  }

  .product-card img{
      height:180px;
  }
}






/* ── ABOUT SECTION ── */
/* =========================
   ABOUT SECTION
========================= */

.about-section{
  padding:70px 0;
}

.about-wrapper{
  overflow:hidden;
}

.about-content{
  background:#5a2d58;
  height:100%;
  padding:80px 85px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.about-content h2{
  color: #e9ae42;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 35px;

}

.about-content p{
  color:rgba(255,255,255,.85);
  font-size:16x;
  line-height:1.8;
  margin-bottom:60px;
  font-style:italic;
}

.about-content strong{
  color:#fff;
  font-weight:700;
}

.about-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.order-info{
  color:#fff;
  font-size:18px;
  margin:0;
}

.social-icons{
  display:flex;
  align-items:center;
  gap:15px;
}

.social-icons span{
  color:#fff;
  font-size:18px;
  letter-spacing:1px;
}

.social-icons a{
  color:#fff;
  font-size:17px;
  transition:.3s;
}

.social-icons a:hover{
  transform:translateY(-3px);
  color:#f7d46a;
}

.about-image{
  height:100%;
  background:#f8f5f1;
}

.about-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

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

@media(max-width:991px){

  .about-content{
      padding:50px;
  }

  .about-content h2{
      font-size:40px;
  }

  .about-content p{
      font-size:17px;
  }

  .about-bottom{
      flex-direction:column;
      align-items:flex-start;
  }

  .about-image{
      min-height:500px;
  }
}

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

@media(max-width:767px){

  .about-content{
      padding:35px 25px;
  }

  .about-content h2{
      font-size:30px;
      margin-bottom:20px;
  }

  .about-content p{
      font-size:15px;
      margin-bottom:30px;
  }

  .order-info{
      font-size:14px;
  }

  .social-icons span{
      font-size:14px;
  }

  .social-icons a{
      font-size:22px;
  }

  .about-image{
      min-height:350px;
  }
}

/* ── REVIEWS ── */
.review-card {
  background: #fff; border-radius: 8px; padding: 22px;
  box-shadow: 0 3px 18px rgba(0,0,0,.07); height: 100%;
}
.review-stars { color: #f5a623; font-size: 14px; }
.review-text  { font-size: 13px; color: var(--text-dark); line-height: 1.6; font-style: italic; }
.reviewer     { font-size: 12px; font-weight: 700; color: var(--primary); margin-top: 12px; }

/* ── FEATURES BAR ── */
.features-bar {
  background: #E8DDD0;
  border-top: 1px solid #f0e0ec; border-bottom: 1px solid #f0e0ec;
  padding: 30px 0;
}
.feature-item  {    text-align: center;
  border-right: 1px solid #4a1e41;}
.feature-icon  { font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.feature-title { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.feature-sub   { font-size: 11px; color: var(--text-muted); }

/* ── FOOTER ── */
footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
footer h6 { color: #fff; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
footer a  { color: rgba(255,255,255,.7); text-decoration: none; font-size: 12px; display: block; margin-bottom: 6px; transition: color .2s; }
footer a:hover { color: var(--accent); }
.footer-bottom { background: rgba(0,0,0,.2); font-size: 11px; padding: 14px 0; color: rgba(255,255,255,.5); }









/* ----------------------shop-page-section ----------------------*/


 /* ── PAGE HERO ── */
 .page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 44px 0 36px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.page-hero h1 {

  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
}

.page-hero .breadcrumb-item {
  font-size: 12px;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.page-hero .breadcrumb-item.active {
  color: var(--accent);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

/* ── FILTER SIDEBAR ── */
.filter-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(107, 45, 94, .08);
  padding: 24px;
  margin-bottom: 20px;
}

.filter-title {

  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-bg);
}

.filter-check .form-check-label {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .2rem rgba(107, 45, 94, .25);
}

.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.form-range::-webkit-slider-thumb {
  background: var(--primary);
}

.form-range::-webkit-slider-runnable-track {
  background: #e8d5e4;
}

.color-dot {
  width: 22px;
  height: 22px;
  border-radius: 20%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
  display: inline-block;
}

.color-dot:hover,
.color-dot.active {
  border-color: var(--primary);
  transform: scale(1.2);
}

.size-btn {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid #e0d0dc;
  border-radius: 3px;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  transition: all .2s;
}

.size-btn:hover,
.size-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-clear-filter {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 3px;
  width: 100%;
  transition: all .2s;
  cursor: pointer;
}

.btn-clear-filter:hover {
  background: var(--primary);
  color: #fff;
}

/* ── SORT BAR ── */
.sort-bar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(107, 45, 94, .06);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.sort-bar .result-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.sort-bar .result-count span {
  color: var(--primary);
  font-weight: 700;
}

.sort-select {
  border: 1.5px solid #e0d0dc;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 14px;
  cursor: pointer;
  outline: none;
}

.sort-select:focus {
  border-color: var(--primary);
}

.view-btns button {
  background: #fff;
  border: 1.5px solid #e0d0dc;
  padding: 6px 10px;
  font-size: 16px;
  color: #aaa;
  transition: all .2s;
  cursor: pointer;
}

.view-btns button:first-child {
  border-radius: 4px 0 0 4px;
}

.view-btns button:last-child {
  border-radius: 0 4px 4px 0;
}

.view-btns button.active,
.view-btns button:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}




/* ── SECTION TITLE ── */
.section-title {

  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--primary-dark);
}

.title-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .8);
}

footer h6 {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

footer a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
  transition: color .2s;
}

footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, .2);
  font-size: 11px;
  padding: 14px 0;
  color: rgba(255, 255, 255, .5);
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  margin-right: 14px;
  transition: color .2s;
}

.social-icons a:hover {
  color: var(--accent);
}

/* ── IMG PLACEHOLDER ── */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

@media (max-width:767px) {
  .filter-sidebar {
      display: none;
  }

  .filter-sidebar.show {
      display: block;
  }

  .product-img-wrap {
      height: 220px;
  }
}
/* ----------------------shop-page-section ----------------------*/









/* ----------------------shop-detail-page-section ----------------------*/


    /* ── BREADCRUMB ── */
    .breadcrumb-bar { background:var(--light-bg); border-bottom:1px solid #f0e4ec; padding:10px 0; }
    .breadcrumb-item { font-size:12px; }
    .breadcrumb-item a { color:var(--primary); text-decoration:none; }
    .breadcrumb-item.active { color:var(--text-muted); }
    .breadcrumb-item+.breadcrumb-item::before { color:#ccc; }

    /* ── PRODUCT GALLERY ── */
    .thumb-wrap {
      display:flex; flex-direction:column; gap:8px;
    }
    .thumb {
      width:70px; height:80px; border-radius:6px; overflow:hidden;
      border:2px solid transparent; cursor:pointer; transition:border-color .2s;
      flex-shrink:0;
    }
    .thumb img { width:100%; height:100%; object-fit:cover; }
    .thumb.active { border-color:var(--primary); }
    .main-img-wrap {
      border-radius:10px; overflow:hidden;
      position:relative; background:#f5ecf3;
    }
    .main-img-wrap img { width:100%; display:block; object-fit:cover;    height: 600px; }
    .img-badge-group { position:absolute; top:14px; left:14px; display:flex; flex-direction:column; gap:6px; }
    .img-badge { font-size:11px; font-weight:700; padding:4px 10px; border-radius:2px; display:inline-block; }
    .badge-sale { background:var(--sale-red); color:#fff; }
    .badge-new  { background:var(--primary); color:#fff; }
    .zoom-btn {
      position:absolute; top:14px; right:14px;
      background:rgba(255,255,255,.88); border:none;
      width:38px; height:38px; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-size:17px; color:var(--text-dark); cursor:pointer;
    }
    .img-ph { width:100%; height:460px; display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--primary); font-size:14px; }

    /* ── PRODUCT INFO ── */
    .product-title {

      font-size:clamp(24px,3.5vw,36px);
      font-weight:700; color:var(--primary-dark); line-height:1.15;
    }
    .product-stars { color:#f5a623; font-size:15px; }
    .review-count  { font-size:13px; color:var(--text-muted); }
    .price-box { background:var(--light-bg); border-radius:8px; padding:16px 20px; }
    .price-main { font-size:22px; font-weight:700; color:var(--primary); line-height:1; }
    .price-mrp  { font-size:16px; color:#aaa; text-decoration:line-through; }
    .price-save { font-size:13px; font-weight:700; color:var(--sale-red); }
    .offer-tag  { background:#fff5f0; border:1px solid #f5d5c5; color:#c05020; font-size:11px; font-weight:700; letter-spacing:1px; padding:5px 12px; border-radius:3px; display:inline-block; }

    /* Size selector */
    .size-guide-link { font-size:11px; color:var(--primary); text-decoration:underline; cursor:pointer; font-weight:600; }
    .size-opt {
      width:46px; height:46px; border-radius:5px;
      border:1.5px solid #e0d0dc; background:#fff;
      font-size:13px; font-weight:700; color:var(--text-dark);
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:all .2s;
    }
    .size-opt:hover { border-color:var(--primary); color:var(--primary); }
    .size-opt.active { background:var(--primary); color:#fff; border-color:var(--primary); }
    .size-opt.sold-out { background:#f5f5f5; color:#ccc; cursor:not-allowed; text-decoration:line-through; }

    /* Color selector */
    .color-swatch {
      width:36px; height:36px; border-radius:50%;
      border:2px solid transparent; cursor:pointer;
      transition:border-color .2s, transform .2s;
    }
    .color-swatch:hover, .color-swatch.active { border-color:var(--primary); transform:scale(1.15); }

    /* Qty */
    .qty-box {
      display:flex; align-items:center; border:1.5px solid #e0d0dc;
      border-radius:5px; overflow:hidden; width:fit-content;
    }
    .qty-box button {
      background:#fff; border:none; width:38px; height:44px;
      font-size:18px; color:var(--primary); font-weight:700;
      cursor:pointer; transition:background .2s;
    }
    .qty-box button:hover { background:var(--light-bg); }
    .qty-box input {
      width:48px; height:44px; text-align:center; border:none;
      border-left:1.5px solid #e0d0dc; border-right:1.5px solid #e0d0dc;
      font-size:15px; font-weight:700; color:var(--text-dark); outline:none;
    }

    /* Buttons */
    .btn-cart {
      background:#fff; border:2px solid var(--primary);
      color:var(--primary); font-size:13px; font-weight:700;
      letter-spacing:1.5px; text-transform:uppercase;
      padding:13px 28px; border-radius:3px; transition:all .25s; cursor:pointer;
    }
    .btn-cart:hover { background:var(--primary); color:#fff; }
    .btn-buy {
      background:var(--primary); color:#fff; border:2px solid var(--primary);
      font-size:13px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
      padding:13px 28px; border-radius:3px; transition:all .25s; cursor:pointer;
    }
    .btn-buy:hover { background:var(--primary-dark); border-color:var(--primary-dark); }
    .btn-wishlist {
      background:#fff; border:1.5px solid #e0d0dc;
      width:48px; height:48px; border-radius:5px;
      display:flex; align-items:center; justify-content:center;
      font-size:20px; color:#aaa; cursor:pointer; transition:all .2s;
    }
    .btn-wishlist:hover { color:var(--sale-red); border-color:var(--sale-red); }

    /* Delivery info */
    .delivery-box {
      border:1px solid #f0e4ec; border-radius:8px; padding:16px;
    }
    .delivery-row { display:flex; align-items:flex-start; gap:12px; padding:8px 0; border-bottom:1px solid #f5eef3; }
    .delivery-row:last-child { border-bottom:none; padding-bottom:0; }
    .delivery-icon { font-size:20px; color:var(--primary); flex-shrink:0; margin-top:1px; }
    .delivery-text strong { font-size:13px; font-weight:700; display:block; }
    .delivery-text span   { font-size:11px; color:var(--text-muted); }

    /* ── TABS ── */
    .product-tabs .nav-link {
      color:var(--text-muted)!important; font-weight:600; font-size:13px;
      letter-spacing:.5px; text-transform:uppercase; padding:12px 20px!important;
      border:none; border-bottom:3px solid transparent; border-radius:0;
    }
    .product-tabs .nav-link.active { color:var(--primary)!important; border-bottom-color:var(--primary); }
    .product-tabs .nav-link:hover  { color:var(--primary)!important; }
    .tab-content { padding:28px 0; }
    .spec-table th { font-size:13px; font-weight:700; color:var(--text-muted); width:35%; padding:10px 14px; background:var(--light-bg); }
    .spec-table td { font-size:13px; padding:10px 14px; color:var(--text-dark); }
    .spec-table tr { border-bottom:1px solid #f0e8ec; }

    /* ── REVIEWS ── */
    .rating-big { font-size:72px; font-weight:700; color:var(--primary); line-height:1; }
    .rating-bar-row { display:flex; align-items:center; gap:10px; margin-bottom:6px; }
    .rating-bar-row span { font-size:12px; color:var(--text-muted); width:16px; }
    .rating-bar { flex:1; height:6px; background:#f0e8ec; border-radius:3px; overflow:hidden; }
    .rating-fill { height:100%; background:var(--accent); border-radius:3px; }
    .review-card { border:1px solid #f0e8ec; border-radius:8px; padding:20px; margin-bottom:14px; }
    .review-stars { color:#f5a623; font-size:14px; }
    .reviewer-name { font-size:13px; font-weight:700; color:var(--text-dark); }
    .review-date   { font-size:11px; color:var(--text-muted); }
    .review-body   { font-size:13px; color:var(--text-dark); line-height:1.7; margin-top:8px; }
    .verified-badge { background:#e8f5e9; color:#2e7d32; font-size:10px; font-weight:700; padding:3px 8px; border-radius:2px; }

    /* ── RELATED PRODUCTS ── */
    .section-title {  font-size:clamp(24px,3.5vw,38px); font-weight:700; color:var(--primary-dark); }
    .title-divider  { width:50px; height:3px; background:var(--accent); border-radius:2px; }
    .rel-card { border:none; border-radius:8px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.07); transition:all .25s; background:#fff; }
    .rel-card:hover { box-shadow:0 8px 28px rgba(107,45,94,.15); transform:translateY(-4px); }
    .rel-img  { height:240px; overflow:hidden; background:#f5ecf3; position:relative; }
    .rel-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
    .rel-card:hover .rel-img img { transform:scale(1.05); }
    .rel-badge { position:absolute; top:8px; left:8px; background:var(--sale-red); color:#fff; font-size:10px; font-weight:700; padding:2px 7px; border-radius:2px; }

    /* ── FOOTER ── */
    footer { background:var(--primary-dark); color:rgba(255,255,255,.8); }
    footer h6 { color:#fff; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; font-weight:700; margin-bottom:14px; }
    footer a  { color:rgba(255,255,255,.7); text-decoration:none; font-size:12px; display:block; margin-bottom:6px; transition:color .2s; }
    footer a:hover { color:var(--accent); }
    .footer-bottom { background:rgba(0,0,0,.2); font-size:11px; padding:14px 0; color:rgba(255,255,255,.5); }
    .social-icons a { color:#fff; font-size:20px; margin-right:14px; transition:color .2s; }
    .social-icons a:hover { color:var(--accent); }

    .img-ph-sm { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; color:var(--primary); }
  
/* ----------------------shop-detail-page-section ----------------------*/











/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-img-grid { display: none; }
  .hero-banner   { min-height: 280px; text-align: center; }
  .hero-text-box { padding: 40px 20px; }
  .western-grid  { grid-template-columns: 1fr 1fr; }
  .western-grid .big-item { grid-column: 1 / 3; grid-row: auto; }
  .western-item.big-item .western-img-ph { min-height: 200px; height: 220px; }
}
@media (max-width: 575px) {
  .cat-circle  { width: 80px; height: 80px; }
  .cat-label   { font-size: 9px; }
  .product-img-wrap { height: 220px; }
}
