/* ===== MIMI & MUSE - Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Alatsi&display=swap');

:root {
  --primary: #273145;
  --accent: #AE8875;
  --accent-orange: #75513F;
  --bg-light: #faf9f7;
  --bg-cream: #646464;
  --text-dark: #273145;
  --text-gray900: #2A2A2A;
  --text-muted: #434343;
  --border: #D9D9D9;
  --white: #ffffff;
  --success: #189E00;
  --danger: #ef4444;
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Alatsi', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--text-dark); }
p{
  font-size: 1rem;
  font-family: var(--font-primary);
  color: var(--text-muted);
  font-weight: 400;

}

.font-display { font-family: var(--font-display); }
.text-accent { color: var(--accent) !important; }
.text-primary-brand { color: var(--primary) !important; }

/* ===== NAVBAR ===== */
.navbar.inner-pages-header{
  background: rgba(240, 232, 229, .9);
}
.header {
	height: 90px;
}
.navbar-brand img { height: 60px; }

.navbar {
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  padding: 10px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
  width: 100%;
}
.navbar.scrolled { box-shadow: var(--shadow-md); padding: 5px 0;}
.navbar.scrolled .navbar-brand img {
	height: 50px;
}
.navbar.scrolled.inner-pages-header{
  background: rgba(255, 255, 255, .7);
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text-dark) !important;
  padding: 8px 30px !important;
  transition: color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent-orange) !important; }

.search-bar {
	background: var(--white);
	border: 0.5px solid #F1F5F9;
	border-radius: 50px;
	padding: 15px 16px;
	font-size: 1rem;
	font-weight: 400;
	color: var(--text-muted);
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 200px;
	font-family: var(--font-primary);
	max-width: 260px;
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  width: 100%;
}

.nav-dropdown-end .dropdown-toggle::after{
  display: none;
}

.nav-dropdown-end .dropdown-menu {
	border: 1px solid var(--white);
	border-radius: 20px 0 20px 20px;
	padding: 15px;
	min-width: 240px;
  margin-top: 0;
}

.nav-dropdown-end .dropdown-menu .dropdown-item {
	font-size: 1rem;
	font-weight: 400;
	font-family: var(--font-primary);
	color: var(--text-dark);
	padding: 10px;
}

.nav-dropdown-end .dropdown-menu .dropdown-item:hover{
  background-color: transparent;
  color: var(--accent);
}


.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
  font-size: 20px;
}
.nav-icon-btn:hover { color: var(--accent-orange); }

.nav-icon-btn.dropdown-toggle.show {
	background-color: var(--white);
}




.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: #FF0000;
  color: var(--white);
  border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 10px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-primary-brand {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary-brand:hover {
  background: #2d4159;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 10px 28px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-brand:hover {
  background: var(--primary);
  color: white;
}


/* ======Intor Page css start here =====*/
 .intor-body {
      width: 100vw; height: 100vh;
      overflow: hidden;
      background: #faf9f7;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
.intro-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      animation: fadeInUp 1.2s ease forwards;
    }
    .intro-logo {
      width: min(340px, 80vw);
      animation: zoomIn 1s ease forwards;
    }
    .intro-tagline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(13px, 2vw, 16px);
      color: #9ca3af;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: 12px;
      animation: fadeIn 1.4s ease 0.4s both;
    }
    .progress-bar-wrap {
      width: 160px;
      height: 3px;
      background: #e5e7eb;
      border-radius: 3px;
      margin-top: 40px;
      overflow: hidden;
      animation: fadeIn 1s ease 0.6s both;
    }
    .progress-bar-inner {
      height: 100%;
      background: #c8956c;
      border-radius: 3px;
      animation: progress 5s linear forwards;
      animation-delay: 0.8s;
      width: 0;
    }
    @keyframes progress { from { width:0; } to { width:100%; } }
    @keyframes fadeInUp {
      from { opacity:0; transform:translateY(30px); }
      to { opacity:1; transform:translateY(0); }
    }
    @keyframes zoomIn {
      from { opacity:0; transform:scale(0.9); }
      to { opacity:1; transform:scale(1); }
    }
    @keyframes fadeIn {
      from { opacity:0; }
      to { opacity:1; }
    }
    @keyframes fadeOut {
      from { opacity:1; }
      to { opacity:0; }
    }
    body.fade-out {
      animation: fadeOut 0.8s ease forwards;
    }


/* =====Home / Index page css start here====*/

/* Hero */
    .hero-section {
      /* background: #c8956c; */
      background: url(../images/hero_banner_bg.png) no-repeat center center;
      background-size: cover;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
      padding-top: 150px;
    }
    .hero-text {
      font-family: var(--font-display);
      font-size: clamp(80px, 15vw, 220px);
      color: white;
      letter-spacing: 6px;
      text-transform: uppercase;
      line-height: 1;
      animation: heroReveal 1s ease forwards;
    }
    @keyframes heroReveal {
      from { opacity:0; transform:translateY(40px) scale(0.95); }
      to { opacity:1; transform:translateY(0) scale(1); }
    }

    /* Limited Edition Banner */
    .limited-banner {
      background: #EEF0EF;
      padding: 30px 0;
    }
    .limited-badge {
      display: inline-block;
      background: rgba(0,0,0,0.05);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      color:var(--text-dark);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 3.75rem;
      padding: 10px 24px;
      letter-spacing: -0.75px;
    }
    .limited-sub {
      font-family: var(--font-primary);
      font-size: 1.5rem;
      color: var(--accent-orange);
      letter-spacing: -0.75px;
      font-weight: 400;
    }

    /* Collection Scroll */
    .collection-scroll {
      display: flex;
      gap: 0px;
      overflow-x: auto;
      padding: 20px 0 10px;
      scrollbar-width: none;
      max-height: 380px;
      overflow-y: hidden;
    }
    .collection-scroll::-webkit-scrollbar { display: none; }
    .collection-scroll .swiper-slide{
      width: auto; height: auto; display: flex;
    }
    .collection-card {
      overflow: hidden;
      transition: all var(--transition);
      cursor: pointer;
      text-align: center;
      position: relative;
      justify-content: center;
      align-items: center;
    }
    .collection-card:hover {
      transform: translateY(-4px);
    }
    .collection-card img {
      width: 100%;
      object-fit: cover;
    }
 

    /* Category Tags */
    .cat-scroll {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 0;
      scrollbar-width: none;
    }

    .cat-scroll::-webkit-scrollbar { display: none; }
    .cat-scroll .swiper-wrapper {
      transition-timing-function: linear !important;
    }
    .cat-scroll .swiper-slide{
      display: flex; flex-shrink: unset; height: auto; width: auto;
    }
    .cat-tag {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 6px;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      min-width: 360px;
    }
    
    .cat-icon {
      width: auto; height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .cat-tag:hover .cat-icon {
      transform: scale(1.05);
    }
   .cat-tag span.cat-tag-text {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.75px;
    color: var(--text-dark);
    white-space: nowrap;
    position: absolute;
    left: 20%;
    top: 60%;
    transform: translateY(-50%);
  }


  /* Collection Button */
  .tag-btn{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 20px;
      border:none;
      border-radius:999px;
      background:rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);
      color:var(--white);
      font-size:1rem;
      font-weight:500;
      cursor:pointer;
      overflow:hidden;
      transition:all .35s ease;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 1;
      white-space: nowrap;
  }

  /* Shine Layer */
  .tag-btn::before{
      content:"";
      position:absolute;
      top:0;
      left:-120%;
      width:60%;
      height:100%;
      background:linear-gradient(90deg, transparent,rgba(255,255,255,.35),transparent);
  }

  /* Hover */
  .tag-btn:hover{
      box-shadow:
          0 8px 25px rgba(216,198,188,.35),
          0 4px 12px rgba(143,163,193,.25);
  }

  .tag-btn:hover::before{
      left:150%;
  }

  /* Optional subtle floating glow */
  .tag-btn::after{
      content:"";
      position:absolute;
      inset:-2px;
      border-radius:999px;
      background:inherit;
      filter:blur(12px);
      opacity:0;
      z-index:-1;
      transition:opacity .35s ease;
  }

    .tag-btn:hover::after{
        opacity:.7;
    }

    /* Summer Collection */
    .summer-collection-section{
      background: url(../images/summer_collection_bg.png) repeat 0 0;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: 2.75rem;
      font-weight: 400;
      color: var(--text-dark);
      letter-spacing: -0.75px;
    }
    .section-title span {
      font-size: 4rem;
    }
    .section-divider {
      width: 48px;
      height: 6px;
      background: var(--accent);
      border-radius: 24px;
      margin: 10px 0 0;
    }

    .summer-card {
      text-align: center;
      cursor: pointer;
    }
    .summer-card-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      border-radius: var(--radius);
      transition: transform 0.4s ease;
      background: #f0ece4;
    }
    .summer-card:hover .summer-card-img {
      transform: scale(1.03);
    }
    .summer-card p {
      font-size: 1.25rem;
      color: #505050;
      margin-top: 0px;
      font-weight: 400;
    }
    .img-placeholder.summer-card-img {
      background: none;
    }
    /* Testimonials */
    .testimonials-section {
      background: var(--bg-light);
      padding: 40px 0;
    }
    
    .textimonial-content {
      background: url(../images/testimonail_bg.png) no-repeat center center;
      width: 100%;
      height: auto;
      display: flex;
      background-size: 70%;
      min-height: 700px;
    }

    .testimonial-content-thumbnial {
      position: absolute;
      left: 50%;
      top: 90px;
      transform: translateX(-50%);
      max-width: 300px;
      max-height: 380px;
      overflow: hidden;
      border-radius: 30px;
      z-index: 0;
    }

    .pt-50{
      padding-top: 14%;
    }
   .testimonial-top-section p {
      font-size: 1.375rem;
      font-weight: 400;
      letter-spacing: -1.2px;
      color: var(--text-muted);
    }

    .tags-section{
      max-width: 200px;
    }  

    .co-ord-tag-box {
      background-color: #E5ECEE;
      padding: 8px 30px;
      border-radius: 70px;
      font-size: 1.15rem;
      width: auto;
      margin-bottom: 10px;
      color: var(--text-gray900);
      letter-spacing: -1.25px;
      text-align: center;
      font-weight: 500;
      font-family: var(--font-primary);
    }
    
    .glass-card{
        position:relative;
        width:542px;
        padding:20px;
        background:rgba(227,255,85,0.20);
        backdrop-filter:blur(15px);
        -webkit-backdrop-filter:blur(15px);
        border-radius:30px;
        overflow:hidden;
        transition:all .35s ease;
    }
    .glass-card.card-right-box{
      background:rgba(201,219,232,0.20);
    }
    .glass-card p{
      margin-bottom: 5px;
      font-size: 1.125;
      color: var(--text-muted);
      font-weight: 400;
      font-family: var(--font-primary);
    }
    .glass-card b{
      color: var(--text-muted);
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: -0.5px;
      font-family: var(--font-primary);
    }

   .testimonial-maidsection {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1246px;
  }

    .after-testimonial-section{
      background-color: #FBF7F2;
    }
      .speciality-boximg{
        width: 100%;
        height: 700px;
        align-items: center;
        justify-content: center;
        display: flex;
      }
    .speciality-box {
      background: var(--bg-cream);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      margin-top: 16px;
    }
    .speciality-box .title {
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 4px;
    }
    .speciality-box p { font-size: 13px; color: var(--text-muted); }

    .product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
    .product-tag {
      background: white;
      border: 1px solid var(--border);
      font-size: 12px;
      border-radius: 20px;
      padding: 5px 14px;
      color: var(--text-dark);
    }

    /* CTA / Newsletter */
    .newsletter-section {
      padding: 50px 0;
      background: #FBF7F2;
    }
    .newsletter-left h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 70px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -1.15px;
    }
    .newsletter-left h2 span { color: var(--accent); }

    .newsletter-left p {
      font-size: 1.625rem;
      color: var(--bg-cream);
      margin-top: 10px;
      font-weight: 400;
    }
    .newsletter-form {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      background-color: var(--white);
      border: 0.5px solid var(--border);
      border-radius: 50px;
      padding: 5px 5px 5px 30px;
    }
     .newsletter-form .form-floating{
        min-width: 180px;
        flex: 1;
     }
    .newsletter-form .form-floating .form-control  {
      flex: 1;
      padding: 0;
      height: auto;
      min-height: auto;
      font-size: 1.25rem;
      outline: none;
      border: 0px;
      color: var(--text-muted);
    }
    .form-control:focus{
      outline: none;
      box-shadow: none;
    }
    .newsletter-form .form-floating > label{
      background-color: transparent;
      color: #49454F;
      padding: 0;
    }
    .newsletter-form .form-floating > .form-control:focus ~ label{
      transform: scale(.85) translateY(-1.8rem) translateX(.25rem);
      color: #49454F;
      padding: 0;
    }
    .newsletter-form:focus { border-color: var(--primary); }

    .social-media-box {
      border-top: 1px solid var(--accent);
      border-bottom: 1px solid var(--accent);
    }
    .newsletter-form-text{
      font-size: 1.625em;
      color: var(--bg-cream);
      font-weight: 400;
      font-family: var(--font-primary);
      letter-spacing: -0.5px;
    }



    /* Placeholder images */
    .img-placeholder {
      background: linear-gradient(135deg, #f0ece4, #e5ddd0);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 13px;
    }

    /* Trust bar */
    .trust-bar {
      padding: 28px 0;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 30px;
      background-color: var(--white);
      border-radius: 30px;
    }
    .trust-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .trust-title {
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: 1.5rem;
      color: var(--text-dark);
    }
    .trust-sub { font-size: 1.25rem; color: var(--accent); }

    /* Colors swatch row */
    .color-swatches { display:flex; gap:6px; margin:0px 0; }
    .swatch {
      width:18px; height:18px;
      border-radius:50%;
    }




/* ===== FOOTER ===== */
footer {
  background: #F8EAE3;
  padding: 0px 0 0;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-orange); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition);
  margin-right: 16px;
}

.footer-bottom {
  padding: 40px 0;
  margin-top: 0px;
}

.footer-bottom p { font-size: 0.875rem; font-family: var(--font-primary); font-weight: 500; color: var(--text-gray900); margin-bottom: 0px;}

.footer-bottom a{
  font-size: 0.875rem; color: var(--text-dark); font-family: var(--font-primary); text-decoration: none;
}
.footer-bottom a:hover{text-decoration: underline;}
.footer-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin-bottom: 40px;
}
.trust-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
  max-width: 94%;
}
.trust-item i {
  font-size: 28px;
  color: var(--primary);
}
.trust-item .trust-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.trust-item .trust-sub {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-orange);
}

/* ===== ADDRESS BLOCK ===== */
.footer-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  padding-left: 10px;
  color: var(--text-muted);
}

.pb-40{
  padding-bottom: 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.6s ease forwards; }
.animate-zoomIn { animation: zoomIn 0.5s ease forwards; }

.reveal {
  background-color: #EDEDED;
}


/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  padding: 40px 0 40px;
}
.page-header h1 {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight:500;
  color: #75513F;
}
.page-header p {
  font-size: 1rem;
  font-weight:500;
  color: #606060;
  margin-top: 8px;
  letter-spacing: -0.25px;
}


/* =====Privacy policy page css ====*/
.policy-content {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 0 0px;
    }
    .policy-content h1 {
        font-family: var(--font-primary);
        font-size: 2rem;
        font-weight:500;
        color: #75513F;
        text-align: center;
    }
    .policy-subtitle {
      text-align: center;
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 40px;
    }
    .policy-content p {
      font-size: 15px;
      color: var(--text-dark);
      line-height: 1.85;
      margin-bottom: 24px;
    }
    .policy-content h2 {
      font-size: 1.15rem;
      font-weight: 600;
      margin: 36px 0 12px;
    }


    /* =====Product Details Page css start here ==*/

     .back-link { font-size:14px; color:var(--text-dark); text-decoration:none; display:inline-flex; align-items:center; gap:6px; margin:24px 0 20px; }
    .back-link:hover { color:var(--accent-orange); }

    /* Gallery */
    .gallery-wrap { position:relative; }
    .main-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      background: #f0ece4;
      aspect-ratio: 3/4;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .main-img-wrap img, .main-img-wrap .img-placeholder {
      width:100%; height:100%;
      object-fit:cover;
      transition:transform 0.4s ease;
    }
    .main-img-wrap:hover img { transform:scale(1.04); }

    .thumb-row { display:flex; gap:8px; margin-top:12px; }
    .thumb {
      width:70px; height:70px;
      border-radius:8px;
      background:#f0ece4;
      cursor:pointer;
      border:2px solid transparent;
      overflow:hidden;
      transition:border-color var(--transition);
      flex-shrink:0;
    }
    .thumb.active, .thumb:hover { border-color:var(--primary); }

    /* Product Info */
    .product-cat { font-size:0.75rem; color:var(--text-gray900); letter-spacing:-0.65px; font-weight: 400; }
    .product-main-title {
      font-family:var(--font-primary);
      font-size:clamp(17px,2.5vw,22px);
      font-weight:700;
      line-height:1.4;
      margin:10px 0;
    }
    .offer-text { color:var(--accent-orange); font-size:13px; font-weight:600; }
    .price-main { font-family:var(--font-primary); font-weight:800; font-size:30px; }
    .price-original { font-size:18px; color:var(--text-muted); text-decoration:line-through; margin-left:10px; }
    .demand-text { color:var(--accent-orange); font-size:13px; font-weight:600; }
    .viewers-text { font-size:13px; color:var(--text-muted); display:flex; align-items:center; gap:6px; }

    .color-swatch {
      width:32px; height:32px;
      border-radius:50%;
      cursor:pointer;
      border:3px solid white;
      box-shadow:0 0 0 1px #ccc;
      transition:all var(--transition);
    }
    .color-swatch.active { box-shadow:0 0 0 2px var(--primary); }

    .size-pill {
      border:1px solid var(--border);
      border-radius:50%;
      width:46px; height:46px;
      display:inline-flex; align-items:center; justify-content:center;
      font-size:12px; font-weight:600;
      cursor:pointer;
      transition:all var(--transition);
      background:white;
    }
    .size-pill:hover, .size-pill.active {
      background:var(--primary); color:white; border-color:var(--primary);
    }

    .btn-add-to-cart {
      background:var(--primary);
      color:white;
      border:none;
      border-radius:50px;
      padding:16px 0;
      font-family:var(--font-primary);
      font-weight:700;
      font-size:16px;
      width:calc(100% - 60px);
      cursor:pointer;
      transition:all var(--transition);
    }
    .btn-add-to-cart:hover { background:#2d4159; transform:translateY(-1px); box-shadow:var(--shadow-md); }

    .wish-circle {
      width:52px; height:52px;
      border-radius:50%;
      border:1px solid var(--border);
      background:white;
      display:flex; align-items:center; justify-content:center;
      font-size:20px; cursor:pointer;
      transition:all var(--transition);
    }
    .wish-circle:hover { color:var(--danger); border-color:var(--danger); }
    .wish-circle.active { color:var(--danger); }

    /* Accordion */
    .accordion-button:not(.collapsed) {
      background:none;
      color:var(--text-dark);
      box-shadow:none;
    }
    .accordion-button { font-family:var(--font-primary); font-weight:600; }

    /* Tabs */
    .nav-tabs .nav-link {
      font-family:var(--font-primary);
      font-weight:600;
      font-size:14px;
      color:var(--text-muted);
      border:none;
      border-bottom:2px solid transparent;
      padding:12px 20px;
      background:none;
    }
    .nav-tabs .nav-link.active {
      color:var(--primary);
      border-bottom-color:var(--primary);
      background:none;
    }
    .nav-tabs { border-bottom:1px solid var(--border); }

    /* Related products */
    .related-card {
      background:white;
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow-sm);
      cursor:pointer;
      transition:all var(--transition);
    }
    .related-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); }
    .related-card-img {
      aspect-ratio:3/4;
      background:#f0ece4;
      display:flex; align-items:center; justify-content:center;
    }
    .related-card-body { padding:12px; }
    .img-placeholder { background:linear-gradient(135deg,#f0ece4,#e5ddd0); display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
  

    /* ===== Shop page css start here =======*/

    .shop-layout { display:flex; gap:0; padding:10px 20px 0 20px;}

    /* Sidebar */
    .shop-sidebar {
      width: 280px;
      flex-shrink: 0;
      position: sticky;
      top: 73px;
      height: calc(100vh - 73px);
      overflow-y: auto;
      scrollbar-width: none;
      background: #F0E8E5;
      padding: 24px 20px;
      border-radius: 0px;
      margin-bottom: 20px;
    }
    .shop-sidebar::-webkit-scrollbar { display:none; }

    .filter-heading {
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: -0.15px;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 6px;

    }
    .filter-divider { width:24px; height:2px; background:var(--accent); margin-bottom:16px; border-radius: 20px; }

    .filter-section { margin-bottom:28px; }
    .filter-section-title {
      font-family: var(--font-display);
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: -0.15px;
      text-transform: uppercase;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .filter-check {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      cursor: pointer;
    }
    .filter-check input[type=checkbox] {
      width: 24px; height: 24px;
      accent-color: var(--bg-cream);
      cursor: pointer;
    }
    .filter-check label {
      font-size: 0.875rem;
      color: #3B3B3B;
      cursor: pointer;
      font-family: var(--font-primary);
      letter-spacing: -0.15px;
      font-weight: 400;
    }

    .pagination .page-link {
      color: var(--text-dark);
    }
     .pagination .page-item.active .page-link{
      color: var(--white);
      background-color: var(--accent);
      border-color: var(--accent);
     }
     .btn-close {
      right: 20px;
      top: 10px;
      background: none;
      opacity: 1;
      z-index: 9;
    }
    /* Price Range */
    .price-inputs { display:flex; gap:8px; margin-bottom:12px; }
    .price-input-wrap {
      flex: 1;
    }
    .price-input-wrap label { font-size:0.875rem; color:var(--text-dark); display:block; margin-bottom:4px; letter-spacing: -0.15px; }
    .price-input-wrap input {
      width:100%; border:1px solid var(--border); border-radius:6px;
      padding:6px 8px; font-size:13px; outline:none;
    }
    input[type=range] {
      width: 100%;
      accent-color: var(--primary);
    }
    .price-labels { display:flex; justify-content:space-between; font-size:11px; color:var(--text-muted); margin-top:4px; }

    /*---New Price range slider--*/
    .price-range-wrapper{ 
      max-width:300px;
    }
    .range-title{
      font-size:18px;
      font-weight:700;
      color:#13274a;
      margin-bottom:15px;
    }

    .range-label{
      font-size:0.875rem; color:var(--text-dark); display:block; margin-bottom:4px; letter-spacing: -0.15px;

    }

    .price-input{
      height:42px;
      border-radius:50px;
      border:2px solid #c68f63;
      text-align:center;
      font-weight:600;
      background:#fff;
    }

    .range-slider{
      position:relative;
      height:50px;  
    }

    .slider-track{
      position:absolute;
      width:100%;
      height:5px;
      background:#13274a;
      border-radius:50px;
      top:50%;
      transform:translateY(-50%);
    }

    input[type="range"]{
      -webkit-appearance:none;
      appearance:none;
      width:100%;
      background:none;
      position:absolute;
      pointer-events:none;
      top:50%;
      transform:translateY(-50%);
    }

    input[type="range"]::-webkit-slider-thumb{
      -webkit-appearance:none;
      height:24px;
      width:24px;
      border-radius:50%;
      background:#13274a;
      cursor:pointer;
      pointer-events:auto;
      border:none;
      position:relative;
      z-index:3;
    }

    input[type="range"]::-moz-range-thumb{
      height:24px;
      width:24px;
      border-radius:50%;
      background:#13274a;
      border:none;
      cursor:pointer;
    }

    .active-track{
      position:absolute;
      height:5px;
      background:#c68f63;
      border-radius:50px;
      top:50%;
      transform:translateY(-50%);
    }


    /* Product Grid */
    .shop-content { flex:1; padding:0px 20px; background:var(--white); }

    .product-card-body{
      background: rgba(255,255,255,0.60);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      position: absolute;
      left: 0;
      bottom: -66px;
      width: 100%;
      transition: all var(--transition);
    }
    .product-card {
      /* border-radius: var(--radius); */
      overflow: hidden;
      /* box-shadow: var(--shadow-sm); */
      transition: all var(--transition);
      position: relative;
      cursor:pointer;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .product-card-img-wrap {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: #f0ece4;
    }
    .product-card-img-wrap img {
      width:100%; height:100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-card-img-wrap img { transform:scale(1.05); }

    .badge-limited {
      position: absolute;
      top: 10px; left: 10px;
      background: rgba(255,255,255,0.80);
      backdrop-filter: blur(80px);
      -webkit-backdrop-filter: blur(80px);
      color: var(--text-dark);
      font-size: 1.125rem;
      font-weight: 400;
      letter-spacing: -0.65px;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 6px;
      font-family: var(--font-display);
    }
    .quick-view-btn {
      position: absolute;
      top: 10px; right: 10px;
      width: 44px; height: 44px;
      background: rgba(0,0,0,0.20);
      border-radius: 50%;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: var(--text-dark);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
      transition: all var(--transition);
    }
    .quick-view-btn:hover { background: var(--text-dark); color: var(--white); opacity: 1; }
    .quick-view-btn i{font-weight: 600;}
    .product-card-body { padding: 20px; }
    .heart-icon {
        position: absolute;
        right:0px;
        top: 0px;
        font-size: 1.4rem;
    }
    .product-cat {
      font-size: 0.75rem;
      color: var(--text-gray900);
      letter-spacing: 0.8px;
      margin-bottom: 4px;
      font-weight: 400;
    }
    .product-title {
      font-family: var(--font-primary);
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-gray900);
      margin-bottom: 8px;
      line-height: 1.4;
      letter-spacing: -0.75px;
    }
    .product-price {
      font-weight: 700;
      letter-spacing: -1.2px;
      font-size: 1.5rem;
      color: var(--text-gray900);
      font-family: var(--font-primary);
    }
    .product-price-original {
      font-family: var(--font-primary);
      font-size: 1rem;
      letter-spacing: -1.2px;
      color: #858585;
      text-decoration: line-through;
      margin-left: 6px;
    }
    .product-rating {
      font-size: 0.875rem;
      color: #0080FF;
      margin-left: 4px;
    }
    .shop-content .product-rating {
      font-size: 1rem;
      color: var(--text-muted);
    }
    
    p{
      font-size:0.875rem; font-weight:400; margin-bottom:8px; font-family: var(--font-primary);
    }
    .star-icon { color: #FFC400; }
    
    .product-card:hover .product-card-body{
      bottom:0px
    }
    .btn-add-cart {
      width: 100%;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 10px;
      font-family: var(--font-primary);
      font-weight: 700;
      font-size: 0.875rem;
      letter-spacing: -0.15px;
      margin-top: 10px;
      cursor: pointer;
      transition: all var(--transition);
    }
    .btn-add-cart:hover { background: #2d4159; }

    .wish-btn {
      position: absolute;
      bottom: 60px;
      right: 14px;
      width: 30px; height: 30px;
      background: white;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--text-muted);
      cursor: pointer;
      transition: all var(--transition);
    }
    .wish-btn:hover { color: var(--danger); border-color: var(--danger); }
    .wish-btn.active { color: var(--danger); }

    /* Mobile sidebar toggle */
    @media (max-width: 768px) {
      .shop-sidebar {
        position: fixed;
        top: 0; left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 9999;
        transition: left var(--transition);
        padding-top: 20px;
        border-radius: 0;
      }
      .shop-sidebar.open { left: 0; }
      .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 9999;
      }
      .sidebar-overlay.open { display: block; }
      .filter-toggle-btn {
        display: flex !important;
        position: fixed;
        right: 10px;
        bottom: 20px;
        z-index: 999;
        background-color: var(--white);
        border-radius: 60px;
        width: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--primary);
      }
      .filter-toggle-btn .bi {
        margin-top: 5px;
      }
    }
    
    .filter-toggle-btn { display: none; }

    /* Quick View Modal styles */
    .modal-product-img { width:100%; border-radius:var(--radius); object-fit:cover; background:#f0ece4; overflow: hidden; }
    .modal-product-title { font-family:var(--font-primary); font-weight:500; font-size:1rem; line-height: 24px; letter-spacing: -0.15px; }
    .size-btn {
	      border-radius: 50%;
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        cursor: pointer;
        transition: all var(--transition);
        background: #CECECE;
        font-weight: 400;
    }
    .size-btn:hover, .size-btn.active {
      background:var(--primary); color:white; border-color:var(--primary);
    }

    .love-it-icon {
      width: 54px;
      height: 44px;
      margin: 7px 0 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50px;
      background-color: var(--white);
      border:1px solid #C2C2C2;
    }
    .love-it-icon i{
      color: #c2c2c2;
      font-size: 1.25rem;
    }

    .love-it-icon:hover {
      border-color: var(--primary);
    }

    .love-it-icon:hover i{
      border-color: var(--text-dark);
    }

    .swiper-pagination {
      bottom: 20px !important;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 5px;
      z-index: 99;
      top: auto !important;
    }

    .swiper-pagination-bullet{
        width: 25%!important;
        height: 5px!important;
        background: #959595!important;
        opacity: 1;
        border-radius: 4px!important;
    }

    .swiper-pagination-bullet-active{
        width: 25%!important;
        border-radius: 4px!important;
        background: var(--white)!important;
    }
    .color-btn {
      width:28px; height:28px;
      border-radius:50%;
      border:3px solid white;
      box-shadow:0 0 0 1px #ddd;
      cursor:pointer;
      transition:all var(--transition);
    }
    .color-btn.active { box-shadow:0 0 0 2px var(--primary); }
    .img-placeholder { background:linear-gradient(135deg,#f0ece4,#e5ddd0); display:flex; align-items:center; justify-content:center; color:var(--text-muted); }
  

  /* ====Terms and conditions page css ====*/
  .policy-content { max-width:760px; margin:0 auto; padding:0 0 60px; }
  .policy-subtitle { text-align:center; font-size:15px; color:var(--text-muted); margin-bottom:40px; }
  .policy-content p { font-size:1rem; color:#3B3B3B; line-height:1.85; font-weight: 400; font-family: var(--font-primary); margin-bottom:24px; letter-spacing: -0.15px;}
  .policy-content p.policy-subtitle{
    font-size: 1rem;
    font-weight: 500;
    color: #606060;
   } 



/* ====Cart Page css start here ======*/
.cartItemsWrap{
  height: 60vh;
  overflow-y:auto ;
  overflow-x: hidden;
}
.checkout-items-wrap {
  height: auto;
  overflow: visible;
}
.cart-header { text-align:center; padding:50px 0 20px; }
    .cart-header h1 { font-size:clamp(26px,4vw,32px); font-weight:500; font-family: var(--font-primary); color: var(--accent-orange); }
    .cart-offer { color:#DA8A2F; font-size:14px; font-weight:500; margin-top:8px; }

    .cart-item-card {
      background:white;
      border-radius:16px;
      border:1px solid var(--border);
      padding:16px;
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-bottom:10px;
      transition:box-shadow var(--transition);
    }
    .cart-item-card:hover { box-shadow:var(--shadow-sm); }

   .cart-item-img {
      width: 119px;
      height: 130px;
      border-radius: 22px;
      background: #f0ece4;
      flex-shrink: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cart-item-img img { width:100%; height:100%; object-fit:cover; }

    .cart-item-cat { font-size:0.875rem; color:var(--text-gray900); letter-spacing:-0.25px; margin-bottom:4px; font-family: var(--font-primary);}
    .cart-item-name { font-family:var(--font-primary); font-weight:500; font-size:1rem; margin-bottom:10px; color: var(--text-gray900); letter-spacing: -0.15px;}
    .cart-item-details { width: 100%; max-width: 100%; }
    .cart-item-meta { font-size:1rem; font-weight: 400; font-family: var(--font-primary); color:var(--text-gray900); letter-spacing: -0.1px; }
    .cart-item-meta .color-btn{
      border:0px;
    }
    .cart-item-meta .size-btn {
      width: 28px;
      height: 28px;
      font-size: 0.75rem;
      background: #273145;
      font-weight: 400;
      color: var(--white);
    }
    .accordion-body p{
      color: #3B3B3B;
      font-size: 1rem;
      font-family: var(--font-primary);
      font-weight: 400;
    }
    .sale-price{
      font-size: 1.375rem;
      font-family: var(--font-primary);
      font-weight: 700;
      letter-spacing: -0.15px;
    }
    .original-price{
      font-size: 0.875rem;
      color: var(--text-gray900);
      font-weight: 500;
      font-family: var(--font-primary);
    }

    .offer{
      color: var(--success);
      font-weight: 600;
    }

    @media (min-width: 1025px) {
      .cart-item-details {
        width: 500px;
      }
    }

    .accordion-item{
      border-radius: 20px!important;
      border:1px solid #C2C2C2!important;
    }
    .accordion-button{
      background-color: var(--white);
      border-radius: 20px!important;
    }
/* Qty Control */

.qty-box{
    display:flex;
    align-items:center;
    border:1px solid var(--primary);
    border-radius:8px;
    overflow:hidden;
}

.qty-box.qty-box-readonly {
  justify-content: center;
  min-width: 42px;
  min-height: 40px;
  padding: 0 12px;
}

.qty-number {
	min-width: 42px;
	text-align: center;
	font-size: 1rem;
	font-weight: 500;
	color: var(--text-dark);
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-box.qty-box-readonly .qty-number {
  min-width: auto;
  width: 100%;
  min-height: 40px;
}

.qty-btn{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#f3f4f6;
    cursor:pointer;
    font-size:20px;
    font-weight:bold;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.qty-btn:hover{
    background:#e5e7eb;
}


   
.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-dark);
  transition: background var(--transition);
  border: 0px solid var(--primary);
  border-radius: 0;
}
.qty-btn.minus-btn, .qty-btn.delete-btn{
  border-right: 1px solid var(--primary);
}
.qty-btn.plus-btn{
  border-left: 1px solid var(--primary);
}

.qty-btn:hover { background:var(--bg-light); }

.qty-input {
  width:40px; text-align:center;
  border:none; outline:none;
  font-family:var(--font-primary);
  font-size:14px; font-weight:600;
}

.remove-btn {
  background:none; border:none;
  color:var(--text-muted);
  font-size:18px;
  cursor:pointer;
  transition:color var(--transition);
  padding:4px;
}




   .product-detials-page .btn-add-cart {
    font-size: 1.25rem;
    padding: 12px 16px;
    font-weight: 500;
  }
  .product-detials-page .love-it-icon {
    /* margin: 0; */
    height: 55px;
    width: 60px;
  }

  .product-detials-page .love-it-icon .bi {
    font-size: 1.5rem;
    line-height: normal;
    padding-top: 5px;
  }

  .overall-rating{
    font-size: 5rem;
    color: var(--text-dark);
    font-family: var(--font-display);
    font-weight: 300;
    width: 25%;
    text-align: center;
  }

  .overall-rating-step .star-icon-big .bi{
      font-size: 1.5rem;
      color: #FFC300;
      font-weight: normal;
  }
  .overall-rating-step .progress {
    height: 6px!important;
    border-radius: 20px!important;
    background-color: #D9D9D9!important;
  }
  .overall-rating-step .progress-bar{
    background-color:#000000;
  }


    /* Summary */
    .text-muted-gray{
      color: var(--border);
    }
    .cart-summary {
      background:white;
      border-radius:16px;
      border:1px solid var(--border);
      padding:16px;
      position:sticky;
      top:90px;
    }
    .cart-summary h5 { font-family:var(--font-primary); font-weight:600; font-size:1rem; margin-bottom:10px; padding-bottom: 10px; color: var(--text-dark); border-bottom: 1px solid var(--border); }

    .summary-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.875rem;
      margin-bottom: 16px;
      font-family: var(--font-primary);
    }
    .summary-row.total { font-family:var(--font-primary); font-weight:600; font-size:0.875rem; border-top:1px solid var(--border); padding-top:14px; margin-top:8px; }
    .coupon-input {
      border:1px solid var(--border);
      border-radius:10px;
      padding:8px 10px;
      font-size:0.875rem;
      outline:none;
      width:100%;
      color: var(--text-muted);
      max-width: 210px;
    }
    .coupon-input:focus { border-color:var(--primary); }
    .btn-apply {
      position: absolute;
      right: 4px;
      top: 4px;
      border-radius: 6px;
      border: 0;
      background-color: var(--bs-black);
      padding: 5px 10px;
      color: var(--white);
      font-size: 0.875rem;
      cursor: pointer;
    }
    .summary-row > .btn-apply {
      position: static;
      right: auto;
      top: auto;
      background-color: transparent;
      padding: 0;
    }
    .add-address.btn-apply {
      position: relative;
      right: auto;
      top: auto;
    }

    /* Checkout page */
    .section-title-2 {
      color: #1F1F1F;
      display: flex;
      gap: 8px;
      font-weight: 600;
      font-family: var(--font-primary);
      font-size: 1rem;
      margin-bottom: 5px;
      align-items: center;
    }
    .section-title-2 .radio-btn {
      width: 20px;
      height: 20px;
      accent-color: var(--bg-cream);
      cursor: pointer;
      flex-shrink: 0;
    }
    .section-title-2 label {
      margin-bottom: 0;
      cursor: pointer;
      font-weight: 600;
    }
    .addres-details p {
      font-size: 0.875rem;
      color: #3B3B3B;
      font-family: var(--font-primary);
      line-height: 1.5;
    }
    .billing-title h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.5px;
      font-weight: 400;
      margin-bottom: 0;
    }
    .checkout-page-content .faq-accordion .accordion-button {
      font-family: var(--font-display);
      font-size: 1.15rem;
      letter-spacing: -0.5px;
      font-weight: 400;
    }
    .checkout-page-content .faq-accordion .accordion-body {
      color: var(--text-dark);
    }
    .cheout-payment-method .filter-check input[type=radio] {
      width: 24px;
      height: 24px;
      accent-color: var(--bg-cream);
      cursor: pointer;
    }
    .add_new_address .form-label {
      font-size: 0.875rem;
      color: #3B3B3B;
      font-family: var(--font-primary);
    }
    .checkout-page-content .add_new_address .form-control,
    .checkout-page-content .add_new_address .form-select {
      color: var(--text-dark);
      background-color: var(--white);
    }
    .btn-coupon {
      background:var(--primary);
      color:white;
      border:none;
      border-radius:8px;
      padding:10px 20px;
      font-size:13px;
      font-weight:600;
      cursor:pointer;
      white-space:nowrap;
      transition:background var(--transition);
    }
    .btn-coupon:hover { background:#2d4159; }
    .btn-checkout {
      width:100%;
      background:var(--primary);
      color:white;
      border:none;
      border-radius:50px;
      padding:14px;
      font-family:var(--font-primary);
      font-weight:700;
      font-size:16px;
      cursor:pointer;
      margin-top:16px;
      transition:all var(--transition);
    }
    .btn-checkout:hover { background:#2d4159; transform:translateY(-1px); box-shadow:var(--shadow-md); }

    .empty-cart { text-align:center; padding:80px 0; }
    .empty-cart i { font-size:64px; color:#ddd; }
    .empty-cart h3 { font-family:var(--font-primary); font-size:22px; margin-top:20px; }

    .img-placeholder { background:linear-gradient(135deg,#f0ece4,#e5ddd0); display:flex; align-items:center; justify-content:center; }
    
    .img-placeholder img{
      width: 100%;
      height: auto;
    }

    /* ====FAQ Page css start here ====*/

    .faq-tabs .nav-link {
      border-radius: 50px;
      padding: 10px 24px;
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: 14px;
      color: #75513F;
      border: 1px solid #75513F;
      margin: 0 4px;
      transition: all var(--transition);
      background: var(--white);
    }
    .faq-tabs .nav-link.active {
      background: #75513F;
      color: white;
      border-color: #75513F;
    }
    .faq-tabs .nav-link:hover:not(.active) {
      border-color: #75513F;
      color: #75513F;
    }

    .faq-accordion .accordion-item {
      border-radius: var(--radius) !important;
      border: 1px solid var(--border) !important;
      margin-bottom: 12px;
      overflow: hidden;
    }
    .faq-accordion .accordion-button {
      font-family: var(--font-primary);
      font-weight: 600;
      font-size: 15px;
      color: var(--text-dark);
      background: white;
      padding: 20px 24px;
      box-shadow: none;
    }
    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--text-dark);
      background: white;
      box-shadow: none;
    }
    .faq-accordion .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e2d40' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
      width: 20px; height: 20px;
    }
    .faq-accordion .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e2d40' stroke-width='2'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
      transform: none;
    }
    .faq-accordion .accordion-body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.8;
      padding: 0 24px 20px;
    }
    .chat-link { color: #094099; text-decoration: underline; font-weight: 400; }
    .chat-link:hover { text-decoration: none; }

:focus, :visited, :focus-visible{
  outline: none;
  box-shadow: none!important;
}


.offcanvas {
	width: 280px !important;
	border-right: 0;
	transition: all .35s ease;
	height: 100vh;
}

.offcanvas-header{
  border-bottom: 1px solid var(--border);
}
.menu_logo{
  max-width: 100px;
}
.menu_logo img {
	max-width: 100%;
	display: block;
}

.contact-info {
	padding: 10px 20px;
	max-height: 240px;
	overflow-y: auto;
	overflow-x: hidden;
}

.contact-info h2 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 0;
}
.info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 0px;
	padding-bottom: 10px;
  padding-top: 10px;
	border-bottom: 1px solid var(--border);
}
.info-item svg {
	margin-top: 5px;
}

.info-item p {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-transform: uppercase;
  	font-weight: 400;
}

.info-item a {
	font-size: 1rem;
	font-weight: 400;
	color: var(--accent);
	margin-bottom: 6px;
	display: flex;
  text-decoration: none;
}
.info-item p {
	font-size: 0.875rem;
	color: var(--text-muted);
	text-transform: uppercase;
} 


/* ======Hero Section Slider Section =======*/


.bg-title{
    position:absolute;
    font-size:16rem;
    font-weight:400;
    opacity:1;
    text-transform:uppercase;
    white-space:nowrap;
    pointer-events:none;
    color:#FFEFE8;
    font-family: var(--font-display);
    letter-spacing: -0.15px;
    transition:.5s;
}

.swiper.hero-slider{
    width:900px;
    height:auto;
    overflow:hidden;
}

.hero-slider .swiper-slide{
    width:330px !important;
    height:auto;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transition:all .6s ease;
}

.hero-slider .swiper-slide img{
    width:100%;
    height:100%;
}

/* Only 3 visible slides */

.hero-slider .swiper-slide-active,
.hero-slider .swiper-slide-prev,
.hero-slider .swiper-slide-next{
    opacity:1;
    visibility:visible;
}

/* Center */

.hero-slider .swiper-slide-active {
	width: 250px !important;
	height: auto;
	transform: scale(1.12) !important;
	z-index: 10;
}

/* Left */

.hero-slider .swiper-slide-prev{
    transform: translateX(10px) scale(.55) !important;
    z-index:5;
}

/* Right */

.hero-slider .swiper-slide-next{
    transform: translateX(10px) scale(.55) !important;
    z-index:5;
}
.hero-slider .swiper-slide img{
  width:100%;
  height:100%;
  display:block;
}

/* Active Slide */

.hero-slider .swiper-slide-active{
  transform:scale(1.15);
}



.morph-section{
  height:400vh;
  position:relative;
}

.sticky-wrap{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden;

  display:flex;
  justify-content:center;
  align-items:center;

  background:#FBF7F2;
}

.reveal-wrap{
  position:relative;
  width:220px;
  height:220px;
  z-index:5;
}

.mask-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transform-origin:center center;
  will-change:transform,opacity;
}

.full-img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  z-index:1;
  will-change:opacity;
}

/* Chrome, Edge, Safari scrollbar css */

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: none;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar{
    width:5px;
}

::-webkit-scrollbar-track{
    background:none;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

.profile-box{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}


/*===== Login page start here ====*/
.login-page {
	width: 100%;
	min-height: 100vh;
	overflow: visible;
	padding-bottom: 48px;
}
.login-page > .d-flex {
	min-height: 100vh;
	align-items: flex-start;
}
.marqueeSwiper{
    width:320px;
    height:100vh;
    flex-shrink: 0;
}

.marqueeSwiper .swiper-slide{
    height:auto;
}

.marqueeSwiper .swiper-slide img{
    width:100%;
    display:block;
}

.marqueeSwiper .swiper-wrapper{
    transition-timing-function: linear !important;
}

.marqueeSwiper2{
    width:320px;
    height:100vh;
    flex-shrink: 0;
}

.marqueeSwiper2 .swiper-slide{
    height:auto;
}

.marqueeSwiper2 .swiper-slide img{
    width:100%;
    display:block;
}

.marqueeSwiper2 .swiper-wrapper{
    transition-timing-function: linear !important;
}
.login-page-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-shrink: 0;
	align-self: flex-start;
	min-height: 100vh;
}

.login_form-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-bottom: 24px;
}
.form-section{
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.form-section-inner{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #DEDEDE;
}

.form-label{
  color: var(--text-gray900);
  font-family: var(--font-primary);
  font-size: 1rem;
  letter-spacing: -0.5px;
  font-weight: 400;
}
.form-control, .form-select{
  font-size: 1rem;
  color: var(--text-gray900);
  font-weight: 400;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
  padding: .753rem .75rem;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  transition:all .3s ease;
}

.form-control:focus, .form-control:hover, .form-control:focus-visible, .form-control:active,
.form-select:focus, .form-select:hover{
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  border-color: var(--text-gray900);
  transform: translateY(-3px);
}


.login-form .btn-add-cart {
	font-size: 1.25rem;
	padding: .853rem .75rem;
}

.login-with-google {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	width: 100%;
	padding: 5px 16px;
	text-align: center;
	gap: 8px;
	border: 1px solid #DEDEDE;
	color: var(--text-gray900);
	font-family: var(--font-primary);
	font-weight: 400;
	letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition:all .3s ease;
}

.login-with-google:hover {
  box-shadow: 0 1px 5px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}
.eye-btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
  cursor: pointer;
}

.profile-img-afterlogin{
  background-color: #E6D4C5;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.5px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
}
.profile-img-afterlogin.show{
  border-radius: 100px 100px 0 0;
}

.wishlist-page-title {
  position: relative;
  margin-bottom: 8px;
}
.wishlist-page-title .page-header {
  flex: 1;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}
.wishlist-page-title .back-link {
  position: absolute;
  left: 0;
  z-index: 1;
}


/* ===== MOBILE MENU ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: white;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .navbar-nav .nav-link{
    padding: 8px 0px !important;
    font-size: 1rem;
  }
  .mobile-menu {
    padding: 0;
  }
  .mobile-menu li {
    list-style-type: none;
    padding: 0;
  }
  .mobile-menu li a{
    padding: 8px 0;
    font-weight: 500;
  }
  .search-bar { min-width: unset; }

 .hero-section {
    padding-top: 90px;
    min-height: 85vh;
  }


  .bg-title {
    font-size: 10rem;
  }

  .navbar{
    padding: 0px 0;
  }

  .swiper.hero-slider {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section .swiper-wrapper{width: 100%;}
 
  .hero-slider .swiper-slide-active {
    width: 200px !important;
    transform: scale(1.12) !important;
    z-index: 10;
  }
  .hero-slider .swiper-slide {
    width: auto !important;
  }
  .login-page{
    min-height: auto;
    height: auto;
    padding-bottom: 32px;
  }
  .login-page > .d-flex {
    min-height: auto;
  }
  
}

@media(max-width:767px){
  .section-title span {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .summer-card p {
    font-size: 1rem;
  }
  .testimonial-maidsection{
    position: relative;
    left: 0;
    bottom: 0;
  }
  .testimonial-top-section, .tesitmonal-right-img{
    display: none;
  }
  .testimonial-maidsection .d-flex {
    flex-direction: column;
  }
  .testimonial-maidsection .glass-card{
    width: 100%;
    padding: 16px;
    margin-bottom: 20px;
  }
  .textimonial-content{
    background-size: 100%;
  }
  .testimonial-maidsection .glass-card p, .testimonial-maidsection .glass-card b{
    font-size: 1rem;
  }
  .co-ord-tag-box{
    margin-bottom: 0px;
    font-size: 0.875rem;
  }
  .speciality-boximg {
    height: 400px;
  }
  .newsletter-left p {
    font-size: 1rem;
  }
  .newsletter-form-text {
    font-size: 1rem;
  }
  .newsletter-form{
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form .form-floating .form-control{
    font-size: 1rem;
    color: var(--text-muted);
    padding: 15px 16px;
    border:1px solid var(--border)
  }
  .newsletter-form .form-floating > label{
    left: 16px;
    top: 16px;
  }
  .newsletter-form-text {
    text-align: left !important;
  }
  .footer-address {
    font-size: 1rem;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .newsletter-form .form-floating{
    width: 100%;
  }
  .trust-item {
    max-width: 100%;
    padding: 20px;
    border-radius: 16px;
  }
  .trust-item .trust-title{
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  .trust-item .trust-sub{
    font-size: 1rem;
  }

  .footer-bottom {
    padding: 20px 0;
  }
  .newsletter-section {
    padding: 40px 0;
  }
  .footer-bottom p {
    font-size: 13px;
    margin-bottom: 10px;
    text-align: center;
  }

  .shop-content {
    padding: 0;
  }

  .badge-limited {
    font-size: 0.75rem;
    font-weight: 700;
  }
  .product-detials-page .love-it-icon {
    width: 68px;
  }
  .product-detials-page .btn-add-cart {
    font-size: 1.15rem;
  }
  .accordion-body p{
    font-size:0.875rem;
  }
  .overall-rating {
    font-size: 4rem;
  }

  .overall-rating-step .star-icon-big .bi {
    font-size: 1.2rem;
  }
  .policy-content p{
    font-size: 0.875rem;
  }
  .policy-content {
    padding: 0;
  }
  .cart-item-card {
    padding: 10px;
    display: flex;
  }
  .cart-item-img {
    width: 70px;
    height: 70px;
  }
  .cart-summary {
    padding: 14px;
  }
  .faq-tabs .nav-link {
    padding: 10px 16px;
    font-size: 12px;
  }
  .page-header {
    padding: 40px 0 40px;
  }
  .page-header p {
    font-weight: 400;
  }

  .bg-title {
	font-size: 6rem;
}

.limited-badge {
	font-size: 2.75rem;
}
.limited-sub {
	font-size: 1.2rem;
}
.hero-slider .swiper-slide {
	width: 300px !important;
}

.cat-tag span.cat-tag-text {
	font-size: 1rem;
}

.cartItemsWrap{
  height: auto;
}
.cart-item-name {
	font-size: 0.875rem;
}
.qty-container {
	margin-top: 10px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 5px;
}
.qty-container span{
  font-size: 0.875rem!important;
  margin-bottom: 0px!important;
}
.price-box-container {
	margin-top: 16px;
}
.cart-offer{
  font-size: 0.785rem;
}

.cart-header {
	text-align: center;
	padding: 20px 0 20px;
}
.cart-item-meta{
  font-size: 0.875rem;
}
.sale-price {
	font-size: 1.2rem;
}
.cart-item-cat{
  font-size: 0.75rem;
}

/*---login page css--*/
.login-page-content{
  display: none
}
.login_form-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding:0 20px;
}
.login-page{
  height: auto;
}
.form-section .page-header {
	padding: 20px 0 20px;
}
.login-page .form-label {
	font-size: 0.875rem;
}
.login-form .btn-add-cart {
	font-size: 1rem;
	letter-spacing: 0.5px;
}
.login-page .form-control {
	font-size: 0.875rem;
	padding: .53rem .75rem;
}
}
.summer-card{
  text-decoration:none !important;
}

/*--Order History page content--*/
.order-id-big {
	font-size: 1.25rem;
  color: #282828;
}
.order-details-content p{
  margin-bottom: 0;
  font-size: 1rem;
  color: #3e3e3e;
  font-weight: 400;
}
.status-tag{
  background-color: #E7E7E7;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  color:#3e3e3e;
  font-family: var(--font-primary);
  padding: 5px 10px;
  display: inline-flex;
  width: auto;
  margin-bottom: 8px;
}
.product-thumbnail-img {
	display: flex;
	align-items: center;
	gap: 10px;
}
.product-thumbnail-img .counting {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3e3e3e;
  white-space: nowrap;
}
.product-thumb-photo {
	width: 124px;
	height: 100px;
	overflow: hidden;
}
.box1 {
	border: 1px solid #E1E1E1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	position: absolute;
	left: 0px;
	top: 0;
	z-index: 0;
	width: 100px;
	height: 100px;
	background-color: var(--white);
    overflow: hidden;
}
.box2 {
	border: 1px solid #E1E1E1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	position: absolute;
	left: 12px;
	top: 0;
	z-index: 0;
	width: 100px;
	height: 100px;
	background-color: var(--white);
  z-index: 1;
    overflow: hidden;
}
.box3 {
	border: 1px solid #E1E1E1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 22px;
	position: absolute;
	left: 24px;
	top: 0;
	z-index: 0;
	width: 100px;
	height: 100px;
	background-color: var(--white);
  z-index: 2;
  overflow: hidden;
}
.box1 img,
.box2 img,
.box3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.orderhistory-page .accordion-item {
	border: 0px !important;
	border-bottom: 1px solid #c2c2c2 !important;
	border-radius: 0 !important;
}
.shipped {
  background-color: #EBFDD9!important;
  color: #2B4119 !important;
}
.download-invoice-btn {
	font-size: 1rem;
	text-decoration: none;
	color: var(--text-dark);
	border: 1px solid var(--text-dark);
	padding: 8px 16px;
	border-radius: 50px;
	letter-spacing: -0.5px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
  transition: var(--transition);
}
.download-invoice-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.20);
}
.orderhistory-page .checkout-items-wrap,
.orderhistory-page .cartItemsWrap{
  height: auto;
  max-height: none;
  overflow: visible;
}

.orderhistory-page .order-accordion-panel {
  visibility: visible;
}

.orderhistory-page .order-accordion-panel.collapse:not(.show) {
  display: none;
}

.orderhistory-page .order-accordion-panel.collapse.show {
  display: block;
  visibility: visible;
  height: auto;
  overflow: visible;
}

.orderhistory-page .order-accordion-panel .accordion-body {
  display: block;
  visibility: visible;
  height: auto;
  overflow: visible;
  padding: 15px 0;
}

.orderhistory-page .order-history-summary {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  position: static;
  top: auto;
  margin-top: 8px;
}

.orderhistory-page .order-history-summary h5 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.orderhistory-page .order-history-summary .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 16px;
  font-family: var(--font-primary);
}

.orderhistory-page .order-history-summary .summary-row.total {
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}

.order-placed-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid #9fd89f;
  border-radius: 12px;
  background: linear-gradient(180deg, #f3faf3 0%, #e8f7e8 100%);
  box-shadow: 0 2px 8px rgba(24, 158, 0, 0.08);
}

.order-placed-success-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #189e00;
  color: #fff;
  font-size: 1.5rem;
}

.order-placed-success-content {
  flex: 1;
  min-width: 0;
}

.order-placed-success-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f5f00;
  margin-bottom: 4px;
}

.order-placed-success-text {
  font-size: 0.95rem;
  color: #2f6b24;
}

.order-placed-success-close {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #2f6b24;
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
  cursor: pointer;
}

.order-placed-success-close:hover {
  color: #0f5f00;
}

@media (max-width: 575px) {
  .order-placed-success {
    padding: 16px;
    gap: 12px;
  }

  .order-placed-success-icon {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .order-placed-success-title {
    font-size: 1rem;
  }

  .order-placed-success-text {
    font-size: 0.875rem;
  }
}
.orderhistory-page .accordion-button {
  background: transparent;
  box-shadow: none;
  border: 0;
  width: 100%;
}
.orderhistory-page .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
.orderhistory-page .accordion-button::after {
  flex-shrink: 0;
}
@media (max-width: 991px) {
.orderhistory-page .accordion-button {
	flex-direction: column;
	align-items: flex-start !important;
	justify-content: flex-start !important;
  padding: 0;
  position: relative;
}
.box1, .box2, .box3 {
	width: 70px;
	height: 70px;
  overflow: hidden;
}
.orderhistory-page .accordion-button .w-75 {
	width: 100%!important;
  margin-bottom: 10px;
}
.order-id-big {
	font-size: 1rem;
}
.orderhistory-page .accordion-button::after {
	position: absolute;
	right: 10px;
	top: 120px;
}
.orderhistory-page .accordion-body{
  padding: 15px 0;
}

.product-thumb-photo {
	width: 124px;
	height: 80px;
	overflow: hidden;
}
}
