p,
ul,
li {
  padding: 0;
  margin: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ================= HEADER CSS START ================= */

#main-header-wrapper .top-banner {
  background: #f8f8f8;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid #e5e5e5
}

#main-header-wrapper .banner-right {
  display: flex;
  align-items: center;
  gap: 25px
}

#main-header-wrapper .main-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 40px;
  background: #636363
}

#main-header-wrapper .nav-left {
  display: flex;
  gap: 35px
}

#main-header-wrapper .nav-left a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  transition: .3s
}

#main-header-wrapper .nav-left a:hover {
  color: #f47c35
}

#main-header-wrapper .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center
}

#main-header-wrapper .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  text-decoration: none;
  color: #333
}

#main-header-wrapper .logo-icon a img {
  width: 200px;
  height: auto
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px
}

#main-header-wrapper .nav-right a,
.nav-right button {
  background: none;
  border: none;
  font-size: 18px;
  color: #4d4c4b;
  cursor: pointer;
  text-decoration: none;
  transition: .3s;
  display: flex;
  gap: 5px
}

#main-header-wrapper .nav-right a:hover,
.nav-right button:hover {
  color: #000
}

#main-header-wrapper .cart-icon {
  position: relative
}

#main-header-wrapper .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #000;
  color: #fff;
  width: 18px;
  height: 18px;
  font-size: 11px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

#main-header-wrapper .mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, .1);
  transition: .3s ease;
  z-index: 1000
}

#main-header-wrapper .mobile-nav.active {
  left: 0
}

#main-header-wrapper .mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  background: #636363;
  padding-right: 20px
}

#main-header-wrapper .mobile-nav-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer
}

#main-header-wrapper .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px
}

#main-header-wrapper .mobile-nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: #333
}

#main-header-wrapper .dropdown {
  position: relative
}

#main-header-wrapper .dropdown-content {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  padding: 10px 0;
  z-index: 999
}

#main-header-wrapper .dropdown-content a {
  display: block;
  padding: 8px 15px;
  color: #333;
  transition: .3s
}

#main-header-wrapper .dropdown-content a:hover {
  background: #f5f5f5;
  color: #000
}

#main-header-wrapper .dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

#main-header-wrapper .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer
}

@media (max-width:1024px) {
  #main-header-wrapper .main-header {
    padding: 15px 25px
  }

  .nav-left {
    gap: 20px
  }
}

@media (max-width:768px) {
  #main-header-wrapper .top-banner {
    display: flex !important;
    justify-content: center !important;
    padding: 8px 10px !important;
  }
  #main-header-wrapper .banner-left,
  #main-header-wrapper .banner-right span {
    display: none !important;
  }

  #main-header-wrapper .main-header {
    grid-template-columns: auto 1fr auto;
    padding: 15px
  }

  #main-header-wrapper .nav-left {
    display: none
  }

  #main-header-wrapper .nav-right .currency-wrapper,
  .nav-right .language-dropdown,
  .nav-right .account-icon {
    display: none !important
  }

  #main-header-wrapper .mobile-menu-toggle {
    display: block
  }

  #main-header-wrapper .logo {
    justify-self: center
  }

  #main-header-wrapper .nav-right a:nth-child(2),
  .nav-right a:nth-child(3),
  .nav-right button:nth-child(3) {
    display: none
  }
}

#main-header-wrapper .mobile-bottom-nav {
  display: none
}

@media (max-width:768px) {
  #main-header-wrapper .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999
  }

  #main-header-wrapper .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px
  }

  #main-header-wrapper .mobile-bottom-nav i {
    font-size: 18px;
    margin-bottom: 4px
  }
}





#main-header-wrapper .search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease
}

#main-header-wrapper .search-overlay.active {
  opacity: 1;
  visibility: visible
}

#main-header-wrapper .search-container {
  width: 100%;
  max-width: 650px;
  padding: 0 20px;
  transform: translateY(-20px);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1)
}

#main-header-wrapper .search-overlay.active .search-container {
  transform: translateY(0)
}

#main-header-wrapper .search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

#main-header-wrapper .search-icon-inner {
  color: #888;
  font-size: 18px;
  flex-shrink: 0
}

#main-header-wrapper .search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  color: #222;
  background: transparent;
  font-family: inherit
}

#main-header-wrapper .search-box input::placeholder {
  color: #aaa
}

#main-header-wrapper .close-search {
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, color .2s
}

#main-header-wrapper .close-search:hover {
  background: #e0e0e0;
  color: #111
}

#main-header-wrapper .search-hint {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-top: 12px
}

#main-header-wrapper .search-hint kbd {
  background: rgba(255, 255, 255, .15);
  border-radius: 4px;
  padding: 2px 7px;
  font-family: inherit;
  font-size: 12px
}





#main-header-wrapper .currency-wrapper {
  position: relative
}

#main-header-wrapper .currency-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  transition: background .2s
}

#main-header-wrapper .currency-btn:hover {
  background: rgba(255, 255, 255, .15)
}

#main-header-wrapper .currency-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
  min-width: 220px;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease
}

#main-header-wrapper .currency-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

#main-header-wrapper .currency-dropdown-header {
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  border-bottom: 1px solid #f0f0f0
}

#main-header-wrapper .currency-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background .15s;
  color: #333;
  font-size: 14px
}

#main-header-wrapper .currency-option:hover {
  background: #f7f7f7
}

#main-header-wrapper .currency-option img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px
}

#main-header-wrapper .currency-option.active {
  background: #f0f7ff;
  color: #007bff;
  font-weight: 600
}

#main-header-wrapper .rate-loading {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: 4px
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}




/* ================= HEADER CSS END ================= */










/* ================= HERO CSS START ================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .8s ease-in-out
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.hero-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25)
}

.hero-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 600px;
  color: #fff;
  z-index: 2
}

.hero-slider .slide-content h1 {
  font-size: 70px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px
}

.hero-slider .slide-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px
}

.hero-slider .shop-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 16px 35px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: .3s
}

.hero-slider .shop-now-btn:hover {
  background: #333
}

.hero-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5
}

.hero-slider .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
  cursor: pointer
}

.hero-slider .dot.active {
  background: #fff
}

@media (max-width:1024px) {
  .hero-slider {
    height: 75vh
  }

  .hero-slider .slide-content h1 {
    font-size: 48px
  }

  .hero-slider .slide-content p {
    font-size: 16px
  }
}

@media (max-width:992px) {
   .hero-slider .dashtop-slider {
       display: none;
   }
   
   .hero-slider .slide img{
       height: auto;
   }
}


@media (max-width:768px) {
  .hero-slider {
    height: 80vh
  }

  .hero-slider .slide-content {
    left: 5%;
    right: 5%;
    text-align: left;
    max-width: 100%
  }

  .hero-slider .slide-content h1 {
    font-size: 34px;
    margin-bottom: 15px
  }

  .hero-slider .slide-content p {
    font-size: 14px;
    margin-bottom: 25px
  }

  .hero-slider .shop-now-btn {
    width: 100%;
    justify-content: center
  }
}

@media (max-width:480px) {
  .hero-slider {
    height: 75vh
  }

  .hero-slider .slide-content h1 {
    font-size: 28px
  }

  .hero-slider .slide-content p {
    font-size: 13px
  }
}


/* ================= HERO CSS END ================= */






/* ================= CATEGROY CSS START ================= */



#categories-part {
  padding: 80px 0;
  text-align: center
}

.category-section h2 {
  font-size: 30px;
  font-weight: 300;
  color: #353535;
  margin-bottom: 15px;
  letter-spacing: .5px
}

.category-section p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 50px auto;
  line-height: 1.6
}

#categories-part .carousel-wrapper {
  overflow: hidden;
  margin-top: 60px
}

#categories-part .carousel-track {
  display: flex;
  gap: 30px;
  padding-left: 60px;
  animation: scroll 25s linear infinite
}

#categories-part .card {
  min-width: 260px;
  flex-shrink: 0;
  border: none;
  display: flex;
  align-items: center;
}

#categories-part .card img {
  width: 260px;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08)
}

#categories-part .card a {
  margin-top: 15px;
  font-weight: 400;
  text-decoration: none;
  color: #333;
  font-size: 17px
}

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@media(max-width:768px) {
  #categories-part .card {
    min-width: 200px
  }

  #categories-part .card img {
    height: 260px
  }
}


/* ================= CATEGROY CSS END ================= */







/* ================= FEATURE CSS START ================= */

#featuredProducts {
  background-color: #fafafa;
}

#featuredProducts h2 {
  font-size: 30px;
  font-weight: 300;
  color: #353535;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

#featuredProducts p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
}

#featuredProducts .product-card {
  position: relative;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s ease
}

#featuredProducts .product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .3s ease
}

#featuredProducts .product-card:hover .product-image {
  transform: scale(1.05)
}

#featuredProducts .action-icons {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10
}

#featuredProducts .icon-btn {
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  opacity: 0;
  transform: translateY(16px)
}

#featuredProducts .icon-btn:hover {
  background: #1f2937;
  color: white
}

#featuredProducts .icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

#featuredProducts .product-card:hover .icon-btn:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms
}

#featuredProducts .product-card:hover .icon-btn:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 75ms
}

#featuredProducts .product-card:hover .icon-btn:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms
}

#featuredProducts .product-card:hover .icon-btn:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 225ms
}

#featuredProducts .product-card:not(:hover) .icon-btn:nth-child(1) {
  transition-delay: 225ms
}

#featuredProducts .product-card:not(:hover) .icon-btn:nth-child(2) {
  transition-delay: 150ms
}

#featuredProducts .product-card:not(:hover) .icon-btn:nth-child(3) {
  transition-delay: 75ms
}

#featuredProducts .product-card:not(:hover) .icon-btn:nth-child(4) {
  transition-delay: 0ms
}

#featuredProducts .new-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: black;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  z-index: 10
}

#featuredProducts .tab-button {
  padding-bottom: 12px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 16px;
  white-space: nowrap;
  transition: all .3s ease;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  border-bottom: 2px solid transparent
}

#featuredProducts .tab-button:hover {
  color: #374151
}

#featuredProducts .tab-button.active {
  color: #111827;
  border-bottom-color: #111827;
  font-weight: 500
}

#featuredProducts .products-grid {
  display: none
}

#featuredProducts .products-grid.active {
  display: grid
}

@media (min-width:640px) {
  #featuredProducts .products-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width:1024px) {
  #featuredProducts .products-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}



/* ================= FEATURE CSS END ================= */










/* ================= ABOUT DESIGN CSS START ================= */


#about-design {
  background-image: url(../images/background-pattern.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0
}

#about-design .hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
  align-items: center
}

#about-design .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px
}

#about-design .hero-image-container {
  height: 100%;
  min-height: 600px;
  padding: 20px
}

#about-design .hero-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

#about-design .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #111827
}

#about-design .hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 48px
}

#about-design .features-list {
  list-style: none;
  margin-bottom: 48px
}

#about-design .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  color: #111827
}

#about-design .checkmark {
  width: 24px;
  height: 24px;
  flex-shrink: 0
}

#about-design .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111827;
  color: white;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  width: fit-content
}

#about-design .cta-button:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

#about-design .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform .3s ease
}

#about-design .cta-button:hover .arrow-icon {
  transform: translateX(4px)
}

@media (max-width:1024px) {
  #about-design .hero-content {
    padding: 40px
  }

  #about-design .hero-title {
    font-size: 2.5rem
  }

  #about-design .hero-description {
    font-size: .95rem
  }
}

@media (max-width:768px) {
  #about-design .hero-section {
    grid-template-columns: auto 3fr auto 3fr auto;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    padding-left: auto;
    padding-right: auto
  }
}

@media (max-width:480px) {
  #about-design .hero-image-container {
    min-height: 30px
  }

  #about-design .hero-title {
    font-size: 1.75rem
  }

  #about-design .hero-content {
    padding: 24px 16px
  }
}


/* ================= ABOUT DESIGN CSS END ================= */





/* ================= COLLECTION CSS START ================= */


#collections-section .carousel-container {
  position: relative;
  padding: 0 60px
}

#collections-section .carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
  padding: 20px 0
}

#collections-section .product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 280px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer
}

#collections-section .product-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5
}

#collections-section .product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

#collections-section .product-card:hover .product-image {
  transform: scale(1.05)
}

#collections-section .discount-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #111827;
  color: white;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10
}

#collections-section .action-icons {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10
}

#collections-section .icon-btn {
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  opacity: 0;
  transform: translateY(16px)
}

#collections-section .icon-btn:hover {
  background: #1f2937;
  color: white
}

#collections-section .icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

#collections-section .product-card:hover .icon-btn:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms
}

#collections-section .product-card:hover .icon-btn:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 75ms
}

#collections-section .product-card:hover .icon-btn:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms
}

#collections-section .product-card:hover .icon-btn:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 225ms
}

#collections-section .product-card:not(:hover) .icon-btn:nth-child(1) {
  transition-delay: 225ms
}

#collections-section .product-card:not(:hover) .icon-btn:nth-child(2) {
  transition-delay: 150ms
}

#collections-section .product-card:not(:hover) .icon-btn:nth-child(3) {
  transition-delay: 75ms
}

#collections-section .product-card:not(:hover) .icon-btn:nth-child(4) {
  transition-delay: 0ms
}

#collections-section .product-info {
  padding: 20px
}

.product-name {
  font-size: 1.125rem;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 400
}

#collections-section .product-price {
  display: flex;
  align-items: center;
  gap: 12px
}

#collections-section .original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through
}

#collections-section .sale-price {
  font-size: 1.25rem;
  color: #111827;
  font-weight: 600
}

#collections-section .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

#collections-section .nav-button:hover {
  background: #111827;
  border-color: #111827;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

#collections-section .nav-button svg {
  width: 24px;
  height: 24px
}

#collections-section .nav-button.prev {
  left: 0
}

#collections-section .nav-button.next {
  right: 0
}

#collections-section .nav-button:disabled {
  opacity: .3;
  cursor: not-allowed
}

#collections-section .nav-button:disabled:hover {
  background: white;
  color: #111827
}

@media (max-width:1280px) {
  #collections-section .product-card {
    flex: 0 0 calc(33.333% - 16px)
  }
}

@media (max-width:1024px) {
  #collections-section .carousel-container {
    padding: 0 50px;
    overflow: hidden;
  }

  #collections-section .product-card {
    flex: 0 0 calc(50% - 12px)
  }
}

@media (max-width:768px) {
  #collections-section .carousel-container {
    padding: 0 40px;
    overflow: hidden;
  }

  #collections-section .product-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 250px
  }

  #collections-section .product-name {
    font-size: 1rem
  }

  #collections-section .nav-button {
    width: 40px;
    height: 40px
  }

  #collections-section .nav-button svg {
    width: 20px;
    height: 20px
  }
}

@media (max-width:480px) {
  #collections-section .carousel-container {
    padding: 0 35px;
    overflow: hidden;
  }

  #collections-section .product-info {
    padding: 16px
  }
}


/* ================= COLLECTION CSS START ================= */




/* ================= VIDEO CSS START ================= */


#gallery-section .gallery-carousel-wrapper {
  position: relative;
  padding: 0;
  width: 100%
}

#gallery-section .gallery-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
  padding: 40px 0
}

#gallery-section .gallery-slide {
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
  transition: all .4s ease;
  width: 800px;
  max-width: 60vw
}

#gallery-section .gallery-slide.active {}

.gallery-slide:not(.active) {
  opacity: .5;
  filter: grayscale(30%)
}

#gallery-section .gallery-slide:hover {
  transform: scale(1.02)
}

#gallery-section .gallery-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 16px;
  background: #f0f0f0
}

#gallery-section .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#gallery-section .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15)
}

#gallery-section .play-button-overlay:hover {
  background: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .2)
}

#gallery-section .play-icon {
  width: 0;
  height: 0;
  border-left: 28px solid #111827;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  margin-left: 6px
}

#gallery-section .gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

#gallery-section .gallery-nav-btn:hover {
  background: #111827;
  border-color: #111827;
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15)
}

#gallery-section .gallery-nav-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

#gallery-section .gallery-nav-btn.gallery-prev {
  left: -10px
}

#gallery-section .gallery-nav-btn.gallery-next {
  right: -10px
}

#gallery-section .gallery-nav-btn:disabled {
  opacity: .3;
  cursor: not-allowed
}

#gallery-section .gallery-nav-btn:disabled:hover {
  background: white;
  color: #111827
}

@media (max-width:1024px) {
  #gallery-section .gallery-slide {
    width: 600px;
    max-width: 70vw
  }

  #gallery-section .play-button-overlay {
    width: 80px;
    height: 80px
  }

  #gallery-section .play-icon {
    border-left: 24px solid #111827;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent
  }
}

@media (max-width:768px) {
  #gallery-section .gallery-carousel-wrapper {
    overflow: hidden;
  }

  #gallery-section .gallery-slide {
    width: 500px;
    max-width: 80vw
  }

  #gallery-section .play-button-overlay {
    width: 70px;
    height: 70px
  }

  #gallery-section .play-icon {
    border-left: 22px solid #111827;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent
  }
}

@media (max-width:480px) {
  #gallery-section .gallery-slide {
    width: 350px;
    max-width: 85vw
  }

  #gallery-section .play-button-overlay {
    width: 60px;
    height: 60px
  }

  #gallery-section .play-icon {
    border-left: 20px solid #111827;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent
  }

  #gallery-section .gallery-bottom-info h3 {
    font-size: 1.25rem
  }
}


/* ================= VIDEO CSS END ================= */








/* ================= BLOG CSS START ================= */


#blogs-section .blogs-carousel-wrapper {
  position: relative;
  overflow: hidden
}

#blogs-section .blogs-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
  padding: 20px 0 40px 0
}

#blogs-section .blog-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 350px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  transition: all .3s ease;
  cursor: pointer
}

#blogs-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12)
}

#blogs-section .blog-image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
  padding: 16px
}

#blogs-section .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .3s ease
}

#blogs-section .blog-card:hover .blog-image {
  transform: scale(1.05)
}

#blogs-section .blog-content {
  padding: 24px
}

#blogs-section .blog-meta {
  display: flex;
  align-items: center;
  font-size: .875rem;
  color: #9ca3af;
  margin-bottom: 16px;
  flex-wrap: wrap
}

#blogs-section .blog-meta span {
  display: flex;
  align-items: center
}

#blogs-section .blog-meta .dot {
  width: 4px;
  height: 4px;
  background: #9ca3af;
  border-radius: 50%;
  margin: 0 8px
}

#blogs-section .blog-title {
  font-size: 1.375rem;
  font-weight: 400;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.4
}

#blogs-section .blog-description {
  font-size: .9375rem;
  color: #6b7280;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

#blogs-section .blogs-nav-btn {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: white;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease
}

#blogs-section .blogs-nav-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db
}

#blogs-section .blogs-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #111827;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

#blogs-section .blogs-nav-btn.blogs-prev {
  right: 60px
}

#blogs-section .blogs-nav-btn.blogs-next {
  right: 0
}

#blogs-section .blogs-nav-btn:disabled {
  opacity: .3;
  cursor: not-allowed
}

#blogs-section .blogs-nav-btn:disabled:hover {
  background: white;
  border-color: #e5e7eb
}

#blogs-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative
}

#blogs-section .section-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #111827
}

#blogs-section .nav-buttons-container {
  display: flex;
  gap: 12px
}

@media (max-width:1280px) {
  #blogs-section .blog-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 320px
  }
}

@media (max-width:1024px) {
  #blogs-section .section-title {
    font-size: 2rem
  }

  #blogs-section .blog-title {
    font-size: 1.25rem
  }
}

@media (max-width:768px) {
  #blogs-section .blog-card {
    flex: 0 0 calc(100% - 0px);
    min-width: 300px
  }

  #blogs-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  #blogs-section .nav-buttons-container {
    align-self: flex-end
  }

  #blogs-section .blogs-nav-btn {
    position: static
  }

  #blogs-section .section-title {
    font-size: 1.75rem
  }

  #blogs-section .blog-image-container {
    height: 240px
  }

  #blogs-section .blog-content {
    padding: 20px
  }
}

@media (max-width:480px) {
  #blogs-section .section-title {
    font-size: 1.5rem
  }

  #blogs-section .blog-card {
    min-width: 280px
  }

  #blogs-section .blog-image-container {
    height: 200px
  }

  #blogs-section .blog-title {
    font-size: 1.125rem
  }

  #blogs-section .blog-description {
    font-size: .875rem
  }
}


/* ================= BLOG CSS END ================= */






/* ================= TESTIMONIAL CSS START ================= */


#testimonials-section {
  width: 100%;
  padding: 80px 40px;
  text-align: center;
  background-image: url(../images/testimonial-bg-pattern.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#testimonials-section .section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1a1a1a;
  letter-spacing: -.01em;
  margin-bottom: 48px
}

#testimonials-section .testi-carousel-wrapper {
  position: relative;
  overflow: hidden
}

#testimonials-section .testi-carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.77, 0, .175, 1)
}

#testimonials-section .testi-slide {
  min-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center
}

#testimonials-section .testi-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
  justify-content: center
}

#testimonials-section .testi-star {
  color: #F5B800;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  animation: testiStarIn .4s forwards
}

#testimonials-section .testi-star:nth-child(1) {
  animation-delay: .05s
}

#testimonials-section .testi-star:nth-child(2) {
  animation-delay: .1s
}

#testimonials-section .testi-star:nth-child(3) {
  animation-delay: .15s
}

#testimonials-section .testi-star:nth-child(4) {
  animation-delay: .2s
}

#testimonials-section .testi-star:nth-child(5) {
  animation-delay: .25s
}

@keyframes testiStarIn {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#testimonials-section .testi-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: #2a2a2a;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: testiFadeUp .6s .2s forwards
}

@keyframes testiFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#testimonials-section .testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: testiFadeUp .6s .35s forwards
}

#testimonials-section .author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0ece4
}

#testimonials-section .author-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4c9b8, #b8a99a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
  border: 2px solid #f0ece4;
  flex-shrink: 0
}

#testimonials-section .author-info {
  text-align: left
}

.author-name {
  font-size: .95rem;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: .01em
}

#testimonials-section .author-role {
  font-size: .8rem;
  font-weight: 300;
  color: #888;
  margin-top: 2px
}

#testimonials-section .testi-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px
}

#testimonials-section .testi-nav-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid #d8d0c5;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: all .25s ease;
  flex-shrink: 0
}

#testimonials-section .testi-nav-btn:hover {
  border-color: #F5B800;
  color: #F5B800;
  transform: scale(1.08)
}

#testimonials-section .testi-nav-btn svg {
  width: 18px;
  height: 18px
}

#testimonials-section .testi-dots {
  display: flex;
  gap: 8px;
  align-items: center
}

#testimonials-section .testi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d0c5;
  cursor: pointer;
  transition: all .3s ease;
  border: none;
  padding: 0
}

#testimonials-section .testi-dot.active {
  background: #F5B800;
  width: 20px;
  border-radius: 3px
}

/* ================= TESTIMONIAL CSS END ================= */





/* ================= GALLERY CSS START ================= */



#fgal-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(45deg, #ffffff, #fffefd);
  overflow: hidden;
}

#fgal-section .fgal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0 40px;
}

#fgal-section .fgal-head-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

#fgal-section .fgal-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 500;
  color: #111;
  letter-spacing: -.02em;
  margin: 0;
}

#fgal-section .fgal-follow-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
}

#fgal-section .fgal-follow-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

#fgal-section .fgal-follow-btn svg {
  width: 18px;
  height: 18px;
}

#fgal-section .fgal-nav {
  display: flex;
  gap: 10px;
}

#fgal-section .fgal-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#fgal-section .fgal-nav-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

#fgal-section .fgal-carousel-wrapper {
  padding: 0 40px;
  position: relative;
}

#fgal-section .fgal-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#fgal-section .fgal-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  cursor: pointer;
  background: #e8e2d9;
  flex: 0 0 calc(25% - 15px);
}

#fgal-section .fgal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

#fgal-section .fgal-card:hover img {
  transform: scale(1.08);
}

#fgal-section .fgal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .4s ease;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fgal-section .fgal-card:hover .fgal-overlay {
  opacity: 1;
}

#fgal-section .fgal-overlay-text {
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  transform: translateY(12px);
  opacity: 0;
  transition: transform .4s ease .05s, opacity .4s ease .05s;
}

#fgal-section .fgal-card:hover .fgal-overlay-text {
  transform: translateY(0);
  opacity: 1;
}

#fgal-section .fgal-overlay-icon {
  display: block;
  margin: 0 auto 10px;
  opacity: .9;
}

@media (max-width: 1024px) {
  #fgal-section .fgal-card {
    flex: 0 0 calc(33.333% - 14px);
  }
}

@media (max-width: 768px) {
  #fgal-section {
    padding: 60px 0;
  }

  #fgal-section .fgal-header {
    padding: 0 20px;
  }

  #fgal-section .fgal-carousel-wrapper {
    padding: 0 20px;
  }

  #fgal-section .fgal-card {
    flex: 0 0 calc(50% - 10px);
  }

  #fgal-section .fgal-follow-btn span {
    display: none;
  }

  #fgal-section .fgal-follow-btn {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  #fgal-section .fgal-card {
    flex: 0 0 100%;
  }
}



/* ================= GALLERY CSS END ================= */








/* ================= FOOTER CSS START ================= */


#fur-footer {
  width: 100%;
  padding: 70px 80px 0;
  background: #b1b1b1
}

#fur-footer .fur-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px
}

#fur-footer .fur-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-decoration: none
}

#fur-footer .fur-brand__logo-icon a {
  width: 52px;
  height: auto
}

#fur-footer .fur-brand__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #111;
  letter-spacing: -.01em;
  line-height: 1
}

#fur-footer .fur-brand__desc {
  font-size: .88rem;
  font-weight: 300;
  color: #000;
  line-height: 1.7;
  max-width: 260px
}

#fur-footer .fur-nav-col__heading {
  font-size: .9rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 22px;
  letter-spacing: .01em
}

#fur-footer .fur-nav-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px
}

#fur-footer .fur-nav-col__list a {
  font-size: .875rem;
  font-weight: 300;
  color: #555;
  text-decoration: none;
  transition: color .2s ease;
  line-height: 1.4
}

#fur-footer .fur-nav-col__list a:hover {
  color: #111
}

#fur-footer .fur-footer__divider {
  border: none;
  border-top: 1px solid #e8e4df;
  margin: 0 0 0 0
}

#fur-footer .fur-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0
}

#fur-footer .fur-gdi img {
  width: 200px;
  background: #000;
  border-radius: 50px;
  /*padding: 10px;*/
}

#fur-footer .fur-payment {
  display: flex;
  align-items: center;
  gap: 10px
}

#fur-footer .fur-payment__label {
  font-size: .82rem;
  font-weight: 400;
  color: #555;
  margin-right: 4px
}

#fur-footer .fur-payment__icons {
  display: flex;
  gap: 6px;
  align-items: center
}

#fur-footer .fur-payment__card {
  height: 26px;
  border-radius: 4px;
  border: 1px solid #e0dbd4;
  padding: 2px 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center
}

#fur-footer .fur-payment__card svg,
.fur-payment__card img {
  height: 18px;
  width: auto
}

@media (max-width:1024px) {
  #fur-footer {
    padding: 60px 40px 0
  }

  #fur-footer .fur-footer__top {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px
  }

  #fur-footer .fur-brand {
    grid-column: 1 / -1
  }

  #fur-footer .fur-brand__desc {
    max-width: 100%
  }
}

@media (max-width:640px) {
  #fur-footer {
    padding: 48px 24px 0
  }

  #fur-footer .fur-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  #fur-footer .fur-brand {
    grid-column: 1 / -1
  }

  #fur-footer .fur-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

@media (max-width:380px) {
  #fur-footer .fur-footer__top {
    grid-template-columns: 1fr
  }
}



/* ================= FOOTER CSS END ================= */

























/* =====================================================================================
                               ABOUT PAGE CSS START                                   
===================================================================================== */




.about-hero {
  position: relative;
  width: 100%;
  height: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: 35px;
  padding-top: 35px;
}

/*.about-hero__bg{position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600&q=80') center/cover no-repeat;transform:scale(1.05);animation:heroZoom 8s ease-out forwards}*/
@keyframes heroZoom {
  from {
    transform: scale(1.08)
  }

  to {
    transform: scale(1.00)
  }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: #fff;
}

.about-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  animation: fadeUp .9s ease both;
  animation-delay: .2s
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.about-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.8rem);
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 14px
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .08em;
  color: #000;
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
  transition: color .2s
}

.breadcrumb a:hover {
  color: #fff
}

.breadcrumb__sep {
  font-size: .65rem;
  opacity: .6
}


















.abts-section {
  position: relative;
  overflow: hidden;
  background: #faf9f6;
  padding: 90px 0
}

.abts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='700' viewBox='0 0 1200 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9aa72' stroke-width='.7' opacity='.22'%3E%3Ccircle cx='1050' cy='100' r='80'/%3E%3Ccircle cx='1050' cy='100' r='130'/%3E%3Ccircle cx='1050' cy='100' r='180'/%3E%3Ccircle cx='1050' cy='100' r='230'/%3E%3Cpath d='M0 700 Q200 500 400 600 Q600 700 800 500' stroke-width='.8'/%3E%3Cpath d='M0 650 Q200 450 400 550 Q600 650 800 450' stroke-width='.6'/%3E%3Cline x1='600' y1='0' x2='600' y2='700' stroke-dasharray='3 22'/%3E%3Cline x1='640' y1='0' x2='640' y2='700' stroke-dasharray='3 22'/%3E%3Cline x1='680' y1='0' x2='680' y2='700' stroke-dasharray='3 22'/%3E%3Cline x1='720' y1='0' x2='720' y2='700' stroke-dasharray='3 22'/%3E%3Cline x1='760' y1='0' x2='760' y2='700' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='200' x2='1200' y2='200' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='240' x2='1200' y2='240' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='280' x2='1200' y2='280' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='320' x2='1200' y2='320' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='360' x2='1200' y2='360' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='400' x2='1200' y2='400' stroke-dasharray='3 22'/%3E%3Cline x1='600' y1='440' x2='1200' y2='440' stroke-dasharray='3 22'/%3E%3Cpath d='M150 0 Q0 150 80 350 Q160 550 0 700' stroke-width='.6'/%3E%3Cpath d='M200 0 Q50 150 130 350 Q210 550 50 700' stroke-width='.5'/%3E%3C/g%3E%3CradialGradient id='rg1' cx='85%25' cy='15%25' r='35%25'%3E%3Cstop offset='0%25' stop-color='%23e8d5a3' stop-opacity='.18'/%3E%3Cstop offset='100%25' stop-color='%23faf9f6' stop-opacity='0'/%3E%3C/radialGradient%3E%3Crect width='1200' height='700' fill='url(%23rg1)'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center
}

.abts-corner-tl {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  border-top: 1.5px solid rgba(180, 150, 90, .35);
  border-left: 1.5px solid rgba(180, 150, 90, .35);
  border-radius: 4px 0 0 0;
  z-index: 1;
  pointer-events: none
}

.abts-corner-br {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  border-bottom: 1.5px solid rgba(180, 150, 90, .35);
  border-right: 1.5px solid rgba(180, 150, 90, .35);
  border-radius: 0 0 4px 0;
  z-index: 1;
  pointer-events: none
}

.abts-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.abts-img-side {
  position: relative
}

.abts-img-side::after {
  content: '';
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 75%;
  height: 75%;
  border: 1.5px solid rgba(180, 150, 90, .3);
  border-radius: 14px;
  z-index: 0
}

.abts-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  position: relative;
  z-index: 1
}

.abts-img-badge {
  position: absolute;
  bottom: 30px;
  left: -24px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2
}

.abts-img-badge__icon {
  width: 42px;
  height: 42px;
  background: #1a1f2e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.abts-img-badge__icon svg {
  width: 22px;
  height: 22px;
  color: #fff
}

.abts-img-badge__num {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1f2e;
  line-height: 1
}

.abts-img-badge__lbl {
  font-size: .75rem;
  font-weight: 300;
  color: #888;
  margin-top: 3px
}

.abts-content-side {
  display: flex;
  flex-direction: column;
  gap: 0
}

.abts-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #b8973a;
  margin-bottom: 14px
}

.abts-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #1a1f2e;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 22px
}

.abts-title span {
  font-style: italic
}

.abts-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #b8973a, #e8c96a);
  border-radius: 2px;
  margin-bottom: 24px
}

.abts-desc {
  font-size: .9rem;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
  margin-bottom: 36px
}

.abts-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #ede8df
}

.abts-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1a1f2e;
  line-height: 1
}

.abts-stat__lbl {
  font-size: .78rem;
  font-weight: 300;
  color: #888;
  margin-top: 4px
}

@media (max-width:960px) {
  .abts-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px
  }

  .abts-img-side::after {
    display: none
  }

  .abts-img-main {
    height: 380px
  }

  .abts-img-badge {
    left: 16px;
    bottom: 16px
  }

  .abts-section {
    padding: 60px 0
  }

  .abts-corner-tl,
  .abts-corner-br {
    display: none
  }
}

@media (max-width:520px) {
  .abts-wrapper {
    padding: 0 20px
  }

  .abts-img-main {
    height: 280px
  }

  .abts-stats {
    gap: 24px
  }
}













.abts-bottom-image {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: 4px
}

.abts-bottom-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #c8a97e;
  border-radius: 4px;
  z-index: 0;
  pointer-events: none
}

.abts-bottom-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform .6s ease
}

.abts-bottom-image:hover img {
  transform: scale(1.03)
}

.abts-bottom-content {
  padding: 40px 0 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%
}

.abts-bottom-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 400;
  color: #2c2420;
  line-height: 1.25;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px
}

.abts-bottom-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, #c8a97e, #e8c99e);
  border-radius: 2px
}

.abts-bottom-desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: #6b6360;
  margin-bottom: 30px
}

.abts-bottom-content ul {
  display: grid;
  gap: 12px 20px
}

.abts-bottom-content ul li {
  position: relative;
  padding-left: 28px;
  font-family: 'Jost', 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #3d3330;
  letter-spacing: .02em;
  counter-increment: process-counter
}

.abts-bottom-content ul li::before {
  content: counter(process-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: .68rem;
  font-weight: 600;
  color: #c8a97e;
  letter-spacing: .05em;
  line-height: 1
}

@media (max-width:991px) {
  .abts-bottom-content {
    padding: 40px 0 0 0
  }

  .abts-bottom-image {
    min-height: 320px
  }

  .abts-bottom-image::before {
    display: none
  }
}

@media (max-width:576px) {
  .abts-bottom-content ul {
    grid-template-columns: 1fr
  }

  .abts-bottom-title {
    font-size: 1.6rem
  }
}














.video-section {
  padding: 60px 80px
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer
}

.video-wrapper__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1631049307264-da0ec9d70304?w=1600&q=80') center/cover no-repeat;
  transition: transform .6s ease
}

.video-wrapper:hover .video-wrapper__bg {
  transform: scale(1.03)
}

.video-wrapper__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .18)
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 5;
  transition: background .3s ease, border-color .3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, .08)
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  animation: pulse 2.2s ease-out infinite
}

.play-btn::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  animation: pulse 2.2s ease-out infinite .6s
}

@keyframes pulse {
  0% {
    transform: scale(.9);
    opacity: .9
  }

  70% {
    transform: scale(1.15);
    opacity: 0
  }

  100% {
    transform: scale(1.15);
    opacity: 0
  }
}

.play-btn:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.video-modal.active {
  display: flex;
  animation: modalIn .35s ease
}

@keyframes modalIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, .88);
  backdrop-filter: blur(6px);
  cursor: pointer
}

.video-modal__box {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  animation: boxIn .4s cubic-bezier(.22, 1, .36, 1);
  z-index: 1
}

@keyframes boxIn {
  from {
    transform: scale(.88) translateY(30px);
    opacity: 0
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1
  }
}

.video-modal__box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .5);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  line-height: 1
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff
}

@media (max-width:768px) {
  .video-section {
    padding: 40px 20px
  }

  .video-wrapper {
    height: 260px
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: .72rem
  }
}





/* =====================================================================================
                               CONTACT PAGE CSS START                                   
===================================================================================== */





.contact-section {
  padding: 70px 80px;
  max-width: 1300px;
  margin: 0 auto
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start
}

.contact-form-side {}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #2c2420;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: #c8a97e;
  border-radius: 2px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.form-group.full {
  margin-bottom: 20px
}

.form-group label {
  font-size: .82rem;
  font-weight: 400;
  color: #6b6360;
  letter-spacing: .03em
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd9d4;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: #2c2420;
  background: #fff;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: none
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb6b2
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c8a97e;
  box-shadow: 0 0 0 3px rgba(200, 169, 126, .12)
}

.form-group textarea {
  height: 150px
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: #2c2420;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .3s ease, transform .15s ease
}

.submit-btn:hover {
  background: #c8a97e;
  transform: translateY(-1px)
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform .2s ease
}

.submit-btn:hover svg {
  transform: translateX(3px)
}

.contact-info-side {
  background: #f8f6f3;
  border-radius: 6px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd9d4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: #c8a97e;
  stroke-width: 1.6;
  fill: none
}

.info-text {}

.info-label {
  font-size: .88rem;
  font-weight: 500;
  color: #2c2420;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px
}

.info-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #2c2420
}

.info-value {
  font-size: .83rem;
  font-weight: 300;
  color: #6b6360;
  line-height: 1.6
}

.info-item+.info-item {
  padding-top: 30px;
  border-top: 1px solid #ece9e4
}

@media (max-width:991px) {
  .contact-section {
    padding: 50px 40px
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-info-side {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px
  }

  .info-item {
    flex: 1 1 200px
  }

  .info-item+.info-item {
    padding-top: 0;
    border-top: none;
    padding-left: 20px;
    border-left: 1px solid #ece9e4
  }
}

@media (max-width:600px) {
  .contact-section {
    padding: 40px 20px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-info-side {
    flex-direction: column
  }

  .info-item+.info-item {
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    border-top: 1px solid #ece9e4
  }
}












/* =====================================================================================
                               POLICES PAGE CSS START                                   
===================================================================================== */



.policy-page {
  padding: 80px 0;
  background: #f9fafc;
  font-family: 'Poppins', sans-serif
}

.policy-header {
  text-align: center;
  margin-bottom: 50px
}

.policy-header h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222
}

.policy-header p {
  color: #777;
  font-size: 14px
}

.policy-text h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #111
}

.policy-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555
}

.policy-text h2:not(:first-child) {
  border-top: 1px solid #eee;
  padding-top: 25px
}

@media (max-width:768px) {
  .policy-header h1 {
    font-size: 28px
  }

  .policy-text p {
    font-size: 15px
  }
}





/* =====================================================================================
                               PRODUCT PAGE CSS START                                   
===================================================================================== */

#productsSection .page-wrap {
  display: grid;
  grid-template-columns: 350px 1fr;
  min-height: 100vh;
}

/* SIDEBAR */
#productsSection .sidebar {
  padding: 32px 28px;
  border-right: 1px solid #eee;
}

#productsSection .sidebar-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}

#productsSection .sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#productsSection .sidebar-section h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
}

#productsSection .slider-track-wrap {
  position: relative;
  height: 4px;
  margin-bottom: 18px;
}

#productsSection .slider-bg {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  top: 0;
}

#productsSection .slider-fill {
  position: absolute;
  height: 4px;
  background: #222;
  border-radius: 2px;
  top: 0;
}

#productsSection .slider-track-wrap input[type=range] {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  top: 0;
}

#productsSection .slider-track-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #222;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #222;
  cursor: pointer;
  pointer-events: all;
}

#productsSection .price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

#productsSection .price-label {
  font-size: 13px;
  color: #555;
  white-space: nowrap;
}

#productsSection .price-box {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 13px;
  background: #fff;
  white-space: nowrap;
  min-width: 95px;
  text-align: center;
}

#productsSection .btn-filter {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

#productsSection .btn-filter:hover {
  background: #444;
}

#productsSection .swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#productsSection .swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: all .2s ease;
}

#productsSection .swatch:hover {
  transform: scale(1.15);
  border-color: rgba(0, 0, 0, 0.25);
}

#productsSection .swatch.active {
  outline: 2px solid #222;
  border-color: #222;
}

#productsSection .bs-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}

#productsSection .bs-item:last-child {
  border-bottom: none;
}

#productsSection .bs-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

#productsSection .bs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#productsSection .bs-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 3px;
}

#productsSection .bs-price {
  font-size: 13px;
  color: #555;
}

#productsSection .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#productsSection .tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 3px;
  border: 1px solid #ddd;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

#productsSection .tag:hover,
.tag.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* DRAWER */
#productsSection .drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 200;
  opacity: 0;
  transition: opacity .3s;
}

#productsSection .drawer-overlay.open {
  display: block;
  opacity: 1;
}

#productsSection .filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100%;
  background: #fff;
  z-index: 201;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  padding: 24px 24px 40px;
}

#productsSection .filter-drawer.open {
  transform: translateX(0);
}

#productsSection .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

#productsSection .drawer-header h2 {
  font-size: 15px;
  font-weight: 600;
}

#productsSection .drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #555;
  display: flex;
  align-items: center;
}

#productsSection .drawer-close:hover {
  color: #111;
}

#productsSection .filter-drawer .sidebar-section {
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

#productsSection .filter-drawer .sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

#productsSection .filter-drawer .sidebar-section h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
}

/* MAIN */
#productsSection .main {
  display: flex;
  flex-direction: column;
}

#productsSection .mobile-topbar {
  display: none;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  gap: 12px;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

#productsSection .btn-mobile-filter {
  background: #111;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
}

#productsSection .toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

#productsSection .search-wrap {
  flex: 1;
  position: relative;
  max-width: 380px;
}

#productsSection .search-wrap input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: #111;
  transition: border-color .2s;
}

#productsSection .search-wrap input:focus {
  border-color: #888;
}

#productsSection .search-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

#productsSection .view-toggle {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

#productsSection .view-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #aaa;
  transition: all .15s;
}

#productsSection .view-btn.active,
.view-btn:hover {
  color: #111;
  border-color: #111;
}

#productsSection .sort-wrap select {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 32px 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: #111;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  min-width: 140px;
}

#productsSection .products-area {
  padding: 28px 32px;
  flex: 1;
}

/* TAB PANELS */
#productsSection #gridPanel {
  display: block;
}

#productsSection #listPanel {
  display: none;
}


/* ══════════════════════════════════════
   GLOBAL PRODUCT GRID & CARD (gc)
══════════════════════════════════════ */
.gc {
  position: relative;
  cursor: pointer;
  margin: 10px;
  transition: box-shadow .2s, transform .2s;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 20px);
  border: 1px solid #f0f0f0;
  overflow: hidden;
}

.gc:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  border-color: #e0e0e0;
}

.gc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  z-index: 2;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gc-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fdfdfd;
  position: relative;
  border-bottom: 1px solid #f9f9f9;
}

.gc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gc:hover .gc-img img {
  transform: scale(1.05);
}

.gc-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 3;
}

.gc:hover .gc-actions {
  opacity: 1;
  transform: translateX(0);
}

.gc-icon {
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  color: #555;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.gc-icon:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.gc-icon i,
.gc-icon svg {
  font-size: 12px;
  width: 14px;
  height: 14px;
}

.gc-info {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.gc-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
  min-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.gc-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.gc-name a:hover {
  color: #ff6801;
}

.gc-variant-part {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 26px;
}

.color-options {
  display: flex;
  gap: 6px;
  align-items: center;
}

.variant-thumb {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  object-fit: cover;
  background: #fdfdfd;
}

.variant-thumb.active {
  border-color: #ff6801;
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(255, 104, 1, 0.25);
  z-index: 2;
}

.variant-thumb:hover {
  transform: translateY(-3px);
  border-color: #ff6801;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.more-swatches {
  font-size: 10px;
  color: #ff6801;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ccc;
  display: flex;
}

.stars span {
  line-height: 1;
}

.rating-text {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}

.gc-price {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f9f9f9;
}

.gc-sale {
  font-weight: 700;
  font-size: 16px;
  color: #111;
  letter-spacing: -0.2px;
}

.right-btn .custom-buy-button {
  background: #ff6801;
  color: #fff;
  padding: 7px 15px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  border: 1px solid #ff6801;
}

.right-btn .custom-buy-button:hover {
  background: #fff;
  color: #ff6801;
}

/* Grid Structures */
.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#carouselTrack1 .gc {
  width: 280px;
  flex-shrink: 0;
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .grid-products {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
  }

  .products-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 10px;
  }

  .gc {
    margin: 10px 0;
  }
}

/* ══════════════════════════════════════
   LIST PANEL — own classes: lc-*
══════════════════════════════════════ */
#productsSection .list-products {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#productsSection .lc {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #eee;
  background: #fff;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}

#productsSection .lc:hover {
  background: #fafafa;
}

#productsSection .lc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  z-index: 2;
}

#productsSection .lc-img-wrap {
  width: 280px;
  min-width: 280px;
  height: 260px;
  overflow: hidden;
  background: #f8f8f8;
  flex-shrink: 0;
}

#productsSection .lc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

#productsSection .lc:hover .lc-img-wrap img {
  transform: scale(1.03);
}

#productsSection .lc-info {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#productsSection .lc-name {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

#productsSection .lc-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
}

#productsSection .lc-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

#productsSection .lc-orig {
  font-size: 13px;
  color: #aaa;
  text-decoration: line-through;
}

#productsSection .lc-sale {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

#productsSection .lc-usd {
  font-weight: 400;
  font-size: 13px;
}

#productsSection .lc-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

#productsSection .lc-add-cart {
  background: #111;
  color: #fff;
  border: none;
  padding: 11px 24px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3px;
  transition: background .2s;
  white-space: nowrap;
}

#productsSection .lc-add-cart:hover {
  background: #444;
}

#productsSection .lc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

#productsSection .lc-icon:hover {
  background: #111;
  border-color: #111;
}

#productsSection .lc-icon svg {
  width: 15px;
  height: 15px;
  stroke: #666;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#productsSection .lc-icon:hover svg {
  stroke: #fff;
}

#productsSection .lc-icon.liked svg {
  fill: #e05252;
  stroke: #e05252;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  #productsSection .sidebar {
    display: none;
  }

  #productsSection .page-wrap {
    grid-template-columns: 1fr;
  }

  #productsSection .mobile-topbar {
    display: flex;
  }

  #productsSection .toolbar {
    padding: 12px 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  #productsSection .search-wrap {
    max-width: 100%;
    order: 1;
    flex: 1;
    width: 100%;
  }

  #productsSection .view-toggle {
    order: 2;
    margin-left: 0;
  }

  #productsSection .sort-wrap {
    order: 3;
    width: 100%;
  }

  #productsSection .sort-wrap select {
    width: 100%;
    font-size: 12px;
  }

  #productsSection .products-area {
    padding: 16px;
  }

  /* Mobile Grid */
  #productsSection .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }

  #productsSection .gc-info {
    padding: 10px 12px 14px;
  }

  #productsSection .gc-name {
    font-size: 13px;
  }

  #productsSection .gc-sale {
    font-size: 13px;
  }

  /* Mobile List */
  #productsSection .lc {
    flex-direction: column;
  }

  #productsSection .lc-img-wrap {
    width: 100%;
    min-width: unset;
    height: 220px;
  }

  #productsSection .lc-info {
    padding: 16px;
  }

  #productsSection .lc-name {
    font-size: 16px;
  }

  #productsSection .lc-sale {
    font-size: 15px;
  }

  #productsSection .lc-btns {
    flex-wrap: wrap;
  }

  #productsSection .lc-add-cart {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #productsSection .grid-products {
    grid-template-columns: 1fr;
  }
}








/* =====================================================================================
                               PRODUCT DEATIL PAGE CSS START                                   
===================================================================================== */





:root {
  --cream: #f9f6f1;
  --warm: #e8e0d4;
  --oak: #c4935a;
  --dark: #1a1714;
  --mid: #6b5f52;
  --light: #9e9087;
  --red: #c0432a;
  --green: #6b8c7a;
  --sand: #c4935a;
  --beige: #d4c4a8;
  --pale: #e8e0d4;
}


#productdetailsection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  align-items: start
}

@media(max-width: 991px) {
  #productdetailsection {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.5rem;
  }

  #productdetailsection .gallery {
    position: static;
  }
}

@media(max-width: 500px) {
  #productdetailsection {
    padding: 1.2rem;
    gap: 2rem;
  }

  #productdetailsection .price {
    font-size: 1.8rem;
  }

  #productdetailsection .product-title {
    font-size: 22px;
  }
}

#productdetailsection .gallery {
  position: sticky;
  top: 2rem
}

#productdetailsection .main-image-wrap {
  position: relative;
  background: #f0ebe3;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center
}

#productdetailsection .main-image-wrap img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform .4s ease
}

#productdetailsection .main-image-wrap:hover img {
  transform: scale(1.04)
}

#productdetailsection .gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
  font-size: 1rem;
  color: var(--dark);
  transition: background .2s;
  z-index: 2
}

#productdetailsection .gallery-btn:hover {
  background: var(--dark);
  color: #fff
}

#productdetailsection .gallery-btn.prev {
  left: 14px
}

#productdetailsection .gallery-btn.next {
  right: 14px
}

#productdetailsection .expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, .85);
  border: none;
  border-radius: 4px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--dark);
  backdrop-filter: blur(4px);
  z-index: 2
}

/* Custom Vanilla JS Slider */
.custom-slider-container {
  position: relative;
  margin-top: 15px;
  padding: 0 45px;
}

.custom-thumbnails-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.custom-thumbnails-track::-webkit-scrollbar {
  display: none;
}

.custom-thumbnails-track .thumb {
  flex: 0 0 calc(20% - 9.6px);
  aspect-ratio: 1 / 1;
  height: auto;
  background: #f0ebe3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  box-sizing: border-box;
  opacity: 0.65;
}

.custom-thumbnails-track .thumb:hover {
  opacity: 1;
  border-color: rgba(0, 0, 0, 0.15);
}

.custom-thumbnails-track .thumb.active {
  border-color: var(--dark);
  opacity: 1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.custom-thumbnails-track .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.custom-slider-nav:hover {
  background: var(--dark);
  color: #fff;
}

.custom-slider-nav.prev {
  left: 0;
}

.custom-slider-nav.next {
  right: 0;
}

@media(max-width: 768px) {
  .custom-thumbnails-track .thumb {
    flex: 0 0 calc(25% - 9px);
  }
}

@media(max-width: 480px) {
  .custom-thumbnails-track .thumb {
    flex: 0 0 calc(33.33% - 8px);
  }
}



#productdetailsection .product-info {
  padding-top: .5rem
}

#productdetailsection .product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal !important;
}

#productdetailsection .rating-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem
}

#productdetailsection .stars {
  color: #f0a500;
  font-size: .95rem;
  letter-spacing: 2px
}

#productdetailsection .rating-count {
  font-size: .82rem;
  color: var(--light)
}

#productdetailsection .stock-badge {
  margin-left: auto;
  font-size: .78rem;
  font-weight: 500;
  color: #2d7a45;
  background: #e8f5ee;
  padding: 3px 10px;
  border-radius: 20px
}

#productdetailsection .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.2rem;
  letter-spacing: -.01em
}

#productdetailsection .description {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--warm)
}

#productdetailsection .option-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .7rem
}

#productdetailsection .color-options {
  display: flex;
  gap: 20px;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  text-align: center;
}

#productdetailsection .color-swatch {
  width: 70px;
  height: 70px;
  border-radius: 5%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all .25s ease;
  outline-offset: 3px;
  background-position: center;
}

#productdetailsection .color-swatch:hover {
  transform: scale(1.15);
  border-color: rgba(0, 0, 0, 0.25);
}

#productdetailsection .color-swatch.active {
  border-color: var(--dark);
  transform: scale(1.15);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 0, 0, 0.15);
}

#productdetailsection .size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem
}

#productdetailsection .size-btn {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--warm);
  background: #fff;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: 'DM Sans', sans-serif
}

#productdetailsection .size-btn:hover {
  border-color: var(--dark)
}

#productdetailsection .size-btn.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark)
}

#productdetailsection .cart-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 1.4rem
}

#productdetailsection .qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 50px
}

#productdetailsection .qty-btn {
  width: 42px;
  height: 50px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark);
  transition: background .15s;
  font-family: 'DM Sans', sans-serif
}

#productdetailsection .qty-btn:hover {
  background: var(--warm)
}

#productdetailsection .qty-display {
  width: 40px;
  text-align: center;
  font-size: .95rem;
  font-weight: 500;
  border-left: 1.5px solid var(--warm);
  border-right: 1.5px solid var(--warm);
  line-height: 50px
}

#productdetailsection .add-to-cart {
  flex: 1;
  height: 50px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s
}

#productdetailsection .add-to-cart:hover {
  background: #2d2927;
  transform: translateY(-1px)
}

#productdetailsection .add-to-cart:active {
  transform: translateY(0)
}

#productdetailsection .wishlist-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem
}

#productdetailsection .action-link {
  background: none;
  border: none;
  font-size: .83rem;
  color: var(--mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  padding: 0;
  transition: color .2s
}

#productdetailsection .action-link:hover {
  color: var(--dark)
}

#productdetailsection .product-meta {
  padding-top: 1.6rem;
  border-top: 1px solid var(--warm);
  font-size: .82rem;
  color: var(--mid);
  line-height: 2
}

#productdetailsection .product-meta span {
  color: var(--dark);
  font-weight: 500
}

#productdetailsection .share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: .4rem
}

#productdetailsection .share-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none
}

#productdetailsection .share-icon:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark)
}

@media (max-width:768px) {
  .breadcrumb {
    display: none !important;
  }

  #productdetailsection {
    display: flow-root;
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 2rem
  }

  #productdetailsection .gallery {
    position: static
  }

  #productdetailsection .thumbnails {
    overflow-x: auto
  }

  #productdetailsection .thumb {
    flex-shrink: 0
  }

  #productdetailsection .cart-row {
    flex-wrap: wrap
  }

  #productdetailsection .add-to-cart {
    min-width: 200px
  }
}

@media (max-width:480px) {
  #productdetailsection .product-title {
    font-size: 1.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
  }

  #productdetailsection .price {
    font-size: 1.8rem
  }

  #productdetailsection .cart-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }

  #productdetailsection .qty-control {
    width: 124px;
    margin: 0;
  }

  #productdetailsection .qty-btn {
    width: 42px;
  }

  #productdetailsection .qty-display {
    width: 40px;
  }

  #productdetailsection .add-to-cart,
  .add-to-cart {
    flex: 1 !important;
    width: auto !important;
    min-width: 150px !important;
    margin: 0;
  }

  #productdetailsection .buy-now,
  .buy-now {
    width: 100% !important;
    flex: unset !important;
    margin: 0;
  }

  #productdetailsection .toast {
    width: 90%;
    max-width: 300px;
    right: 50%;
    transform: translate(50%, 80px)
  }
}

#productdetailsection .toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 1000;
  pointer-events: none
}

#productdetailsection .toast.show {
  transform: translateY(0);
  opacity: 1
}

#productdetailsection .description table tr td:first-child {
    font-weight: 600;
}








/* ============================================
   SIZE SELECTOR — Paste this CSS in your file
   ============================================ */

.size-section {
  margin: 18px 0
}

.size-section .size-label-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .9rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  font-family: 'Segoe UI', sans-serif
}

.size-section .size-label-row .req {
  color: #e05a2b;
  font-size: .85rem
}

.size-section .size-label-row .dash {
  color: #777;
  font-weight: 400
}

.size-section .size-label-row .type-text {
  color: #555;
  font-weight: 400;
  font-size: .88rem
}

.size-section .size-toggle {
  display: flex;
  width: fit-content;
  border: 1.5px solid #d0d0d0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px
}

.size-section .size-toggle-btn {
  padding: 9px 22px;
  font-size: .85rem;
  font-weight: 600;
  border: none;
  background: #fff;
  color: #444;
  cursor: pointer;
  transition: background .2s, color .2s;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: .01em
}

.size-section .size-toggle-btn+.size-toggle-btn {
  border-left: 1.5px solid #d0d0d0
}

.size-section .size-toggle-btn.active {
  background: #e05a2b;
  color: #fff
}

.size-section .size-toggle-btn:hover:not(.active) {
  background: #fff3ef
}

.size-section .size-fields {
  display: none;
  flex-direction: column;
  gap: 14px;
  animation: sizeIn .2s ease
}

.size-section .size-fields.show {
  display: flex
}

@keyframes sizeIn {
  from {
    opacity: 0;
    transform: translateY(-5px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.size-section .size-field-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px
}

.size-section .size-field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .86rem;
  color: #333;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  flex-shrink: 0;
  min-width: 140px
}

.size-section .size-field-label .req {
  color: #e05a2b
}

.size-section .info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: #e05a2b;
  color: #fff;
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 800;
  cursor: default;
  flex-shrink: 0;
  font-style: italic;
  font-family: Georgia, serif
}

.size-section .size-select {
  flex: 1;
  max-width: 210px;
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: .85rem;
  color: #333;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-family: 'Segoe UI', sans-serif
}

.size-section .size-select:focus {
  border-color: #e05a2b;
  box-shadow: 0 0 0 3px rgba(224, 90, 43, .12);
  background-color: #fff
}

.size-section .size-input {
  flex: 1;
  max-width: 210px;
  padding: 8px 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: .85rem;
  color: #333;
  background: #fafafa;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-family: 'Segoe UI', sans-serif
}

.size-section .size-input:focus {
  border-color: #e05a2b;
  box-shadow: 0 0 0 3px rgba(224, 90, 43, .12);
  background: #fff
}

.size-section .size-input::placeholder {
  color: #bbb
}

.size-section .card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 30px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08)
}

.size-section .option-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px
}

@media (max-width:992px) {
  .size-section .size-field-row {
    display: block;
  }

  .size-section .size-select {
    max-width: 100%;
    width: 100%;
    margin-top: 8px;
  }

  .size-section .size-input {
    max-width: 100%;
    width: 100%;
    margin-top: 8px;
  }
}







:root {
  --cream: #f9f6f1;
  --warm: #e8e0d4;
  --dark: #1a1714;
  --mid: #6b5f52;
  --light: #9e9087;
  --oak: #c4935a;
  --gold: #f0a500;
  --green: #2d7a45;
  --green-bg: #e8f5ee;
}





#tabspartsection .tabs-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem
}

#tabspartsection .tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--warm);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none
}

#tabspartsection .tab-nav::-webkit-scrollbar {
  display: none
}

#tabspartsection .tab-btn {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  color: var(--light);
  padding: .9rem 1.8rem .9rem 0;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
  margin-right: 2rem
}

#tabspartsection .tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  transition: width .3s ease
}

#tabspartsection .tab-btn.active {
  color: var(--dark);
  font-weight: 500
}

#tabspartsection .tab-btn.active::after {
  width: 100%
}

#tabspartsection .tab-btn:hover {
  color: var(--dark)
}

#tabspartsection .tab-pane {
  display: none;
  animation: fadeIn .3s ease
}

#tabspartsection .tab-pane.active {
  display: block
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#tabspartsection .desc-intro {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 900px
}

#tabspartsection .feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem
}

#tabspartsection .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start
}

#tabspartsection .feature-dot {
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .45rem
}

#tabspartsection .feature-text {
  font-size: .93rem;
  line-height: 1.75;
  color: var(--mid)
}

#tabspartsection .feature-text strong {
  color: var(--dark);
  font-weight: 600
}

#tabspartsection .info-text {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--mid);
  max-width: 900px;
  margin-bottom: 1.2rem
}

#tabspartsection .reviews-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem
}

#tabspartsection .review-card {
  background: #fff;
  border: 1px solid var(--warm);
  border-radius: 6px;
  padding: 1.5rem
}

#tabspartsection .reviewer-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .8rem
}

#tabspartsection .reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  background: var(--warm)
}

#tabspartsection .reviewer-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mid);
  flex-shrink: 0
}

#tabspartsection .reviewer-name {
  font-weight: 500;
  font-size: .95rem;
  color: var(--dark)
}

#tabspartsection .review-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-top: 2px
}

#tabspartsection .review-text {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--mid)
}

#tabspartsection .write-review-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem
}

#tabspartsection .form-field {
  margin-bottom: 1.4rem
}

#tabspartsection .form-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem
}

#tabspartsection .star-rating {
  display: flex;
  gap: 6px
}

#tabspartsection .star-rating input {
  display: none
}

#tabspartsection .star-rating label {
  font-size: 1.6rem;
  color: var(--warm);
  cursor: pointer;
  transition: color .15s, transform .15s;
  line-height: 1
}

#tabspartsection .star-rating label:hover,
.star-rating label.highlighted {
  color: var(--gold);
  transform: scale(1.1)
}

#tabspartsection .form-textarea {
  width: 100%;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  padding: .9rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--dark);
  background: #fff;
  resize: vertical;
  min-height: 120px;
  transition: border-color .2s;
  outline: none
}

#tabspartsection .form-textarea:focus {
  border-color: var(--dark)
}

#tabspartsection .form-textarea::placeholder {
  color: var(--light)
}

#tabspartsection .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem
}

#tabspartsection .form-input {
  width: 100%;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  padding: .75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
  outline: none
}

#tabspartsection .form-input:focus {
  border-color: var(--dark)
}

#tabspartsection .form-input::placeholder {
  color: var(--light)
}

#tabspartsection .submit-btn {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .85rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s
}

#tabspartsection .submit-btn:hover {
  background: #2d2927;
  transform: translateY(-1px)
}

#tabspartsection .submit-btn:active {
  transform: translateY(0)
}

#tabspartsection .divider {
  border: none;
  border-top: 1px solid var(--warm);
  margin: 2.5rem 0
}

#tabspartsection .toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 1000;
  pointer-events: none
}

#tabspartsection .toast.show {
  transform: translateY(0);
  opacity: 1
}

@media (max-width:600px) {
  #tabspartsection .tabs-section {
    padding: 2rem 1rem
  }

  #tabspartsection .tab-btn {
    font-size: .85rem;
    padding: .8rem 1.2rem .8rem 0;
    margin-right: 1rem
  }

  #tabspartsection .form-row {
    grid-template-columns: 1fr
  }

  #tabspartsection .write-review-title {
    font-size: 1.3rem
  }
}









/* =====================================================================================
                               USER FOLDER CSS START                                   
===================================================================================== */



/* =====================================================================================
                               LOGIN PAGE CSS START                                   
===================================================================================== */

:root {
  --bg: #f5f4f2;
  --text: #1a1a1a;
  --muted: #888;
  --border: #ddd;
  --accent: #1a1a1a;
  --radius: 8px;
}


#user-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

#user-section .left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  background: var(--bg)
}

#user-section .form-box {
  width: 100%;
  max-width: 420px;
  animation: fadeUp .6s ease both
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

#user-section h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.2
}

#user-section .field {
  margin-bottom: 20px
}

#user-section label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .02em
}

#user-section label span {
  color: #c0392b
}

#user-section input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s
}

#user-section input::placeholder {
  color: #bbb
}

#user-section input:focus {
  border-color: #aaa
}

#user-section .lost-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px
}

#user-section .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text);
  cursor: pointer
}

#user-section .remember input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: var(--accent)
}

#user-section .forgot {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s
}

#user-section .forgot:hover {
  color: var(--text)
}

#user-section .btn-signin {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  margin-bottom: 22px
}

#user-section .btn-signin:hover {
  opacity: .85;
  transform: translateY(-1px)
}

#user-section .btn-signin:active {
  transform: translateY(0)
}

#user-section .divider {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 16px
}

#user-section .signup-text {
  text-align: center;
  font-size: .85rem;
  color: var(--muted)
}

#user-section .signup-text a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none
}

#user-section .signup-text a:hover {
  text-decoration: underline
}

.right {
  position: relative;
  overflow: hidden
}

#user-section .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

@media (max-width:900px) {
  #user-section {
    grid-template-columns: 1fr
  }

  #user-section .right {
    display: none
  }

  #user-section .left {
    padding: 50px 30px
  }
}

@media (max-width:480px) {
  #user-section .left {
    padding: 40px 20px
  }

  #user-section h1 {
    font-size: 1.6rem
  }
}







/* =====================================================================================
                               SHOPPING CART PAGE CSS START                                   
===================================================================================== */


:root {
  --gold: #c8a96e;
  --gold2: #e8c98a;
  --dark: #1e1e1e;
  --muted: #909090;
  --border: #ebebeb;
  --bg: #f7f7f7;
  --white: #ffffff;
  --red: #e05252;
}

#cart-section .cart-table-wrap {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0, 0, 0, .06);
  animation: fadeUp .45s .1s ease both
}

#cart-section .cart-table {
  width: 100%;
  border-collapse: collapse
}

#cart-section .cart-table thead tr {
  background: var(--dark)
}

#cart-section .cart-table thead th {
  padding: 15px 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left
}

#cart-section .cart-table thead th.c {
  text-align: center
}

#cart-section .cart-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s
}

#cart-section .cart-table tbody tr:last-child {
  border-bottom: none
}

#cart-section .cart-table tbody tr:hover {
  background: #fafafa
}

#cart-section .cart-table td {
  padding: 20px 22px;
  vertical-align: middle
}

#cart-section .cart-table td.c {
  text-align: center
}

#cart-section .prod-wrap {
  display: flex;
  align-items: center;
  gap: 14px
}

#cart-section .prod-img {
  width: 66px;
  height: 66px;
  border-radius: 10px;
  background: #f3f3f3;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  overflow: hidden
}

#cart-section .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#cart-section .prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 4px
}

#cart-section .prod-code {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase
}

#cart-section .qty-box {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden
}

#cart-section .qty-box button {
  width: 32px;
  height: 34px;
  border: none;
  background: #f5f5f5;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  transition: background .18s
}

#cart-section .qty-box button:hover {
  background: var(--gold);
  color: #fff
}

#cart-section .qty-box span {
  width: 38px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  line-height: 34px
}

#cart-section .amount {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold)
}

#cart-section .remove-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

#cart-section .remove-btn:hover {
  background: #fff0f0;
  border-color: var(--red);
  color: var(--red)
}

#cart-section .cart-total-row td {
  padding: 15px 22px;
  background: #fafafa;
  border-top: 2px solid var(--border)
}

#cart-section .ct-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

#cart-section .ct-amount {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  text-align: center
}

#cart-section .mobile-cards {
  display: none
}

#cart-section .mobile-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start
}

#cart-section .mc-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #f3f3f3;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  overflow: hidden
}

#cart-section .mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#cart-section .mc-body {
  flex: 1;
  min-width: 0
}

#cart-section .mc-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 3px
}

#cart-section .mc-code {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px
}

#cart-section .mc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px
}

#cart-section .mc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold)
}

#cart-section .mc-right {
  display: flex;
  align-items: center;
  gap: 10px
}

#cart-section .mobile-total {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px
}

#cart-section .mobile-total .mt-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

#cart-section .mobile-total .mt-val {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark)
}

#cart-section .actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0 28px;
  flex-wrap: wrap;
  gap: 10px
}

#cart-section .btn-text {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
  transition: color .2s
}

#cart-section .btn-text:hover {
  color: var(--gold)
}

#cart-section .btn-text.red:hover {
  color: var(--red)
}

#cart-section .bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  animation: fadeUp .45s .2s ease both
}

#cart-section .coupon-box,
.summary-box {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  padding: 28px
}

#cart-section .box-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px
}

#cart-section .box-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 300
}

#cart-section .coupon-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

#cart-section .coupon-input {
  flex: 1;
  min-width: 120px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fafafa;
  outline: none;
  transition: border .2s
}

#cart-section .coupon-input:focus {
  border-color: var(--gold);
  background: #fff
}

#cart-section .coupon-input::placeholder {
  color: #ccc
}

#cart-section .btn-dark {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap
}

#cart-section .btn-dark:hover {
  background: var(--gold)
}

#cart-section .btn-outline {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap
}

#cart-section .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold)
}

#cart-section .summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px
}

#cart-section .s-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border)
}

#cart-section .s-row:last-of-type {
  border-bottom: none
}

#cart-section .s-label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500
}

#cart-section .s-val {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--dark)
}

#cart-section .s-row.grand .s-label {
  color: var(--dark);
  font-size: 12px;
  font-weight: 600
}

#cart-section .s-row.grand .s-val {
  color: var(--gold);
  font-size: 26px;
  font-weight: 700
}

#cart-section .btn-checkout {
  display: block;
  width: 100%;
  margin-top: 20px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .22s, transform .15s;
  text-align: center
}

#cart-section .btn-checkout:hover {
  background: var(--gold);
  transform: translateY(-1px)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media (max-width:760px) {
  #cart-section .page-head {
    padding: 32px 16px 22px
  }

  #cart-section .page-head h1 {
    font-size: 28px
  }

  #cart-section .container {
    padding: 0 14px 50px
  }

  #cart-section .cart-table-wrap {
    display: none
  }

  #cart-section .mobile-cards {
    display: block
  }

  #cart-section .actions-row {
    align-items: center;
    justify-content: center
  }

  #cart-section .bottom-grid {
    grid-template-columns: 1fr;
    gap: 14px
  }

  #cart-section .coupon-box,
  .summary-box {
    padding: 20px 16px
  }

  #cart-section .mc-right {
    gap: 5px;
  }

  #cart-section .mc-amount {
    font-size: 15px
  }

  #cart-section .mc-bottom {
    gap: 5px;
  }

  #cart-section .btn-dark,
  .btn-outline {
    width: 100%;
  }
}








/* =====================================================================================
                               CHECKOUT PAGE CSS START                                   
===================================================================================== */




:root {
  --gold: #c8a96e;
  --gold-lt: #f5ecd8;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --muted: #9a9a9a;
  --border: #e4e4e4;
  --bg: #f5f5f5;
  --white: #ffffff;
  --red: #e05252;
  --green: #2e9e6b;
}

#checkout-section .page-wrap {
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: start
}

#checkout-section .sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px
}

#checkout-section .sec-title svg {
  color: var(--gold)
}

#checkout-section .sec-title .line {
  flex: 1;
  height: 1px;
  background: var(--border)
}

#checkout-section .form-block {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 16px
}

#checkout-section .form-block:last-child {
  margin-bottom: 0
}

#checkout-section .fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

#checkout-section .fg .full {
  grid-column: 1 / -1
}

#checkout-section .f {
  display: flex;
  flex-direction: column;
  gap: 5px
}

#checkout-section .f label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--muted)
}

#checkout-section .f label .req {
  color: var(--red);
  margin-left: 1px
}

#checkout-section .f input,
.f select,
.f textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fafafa;
  outline: none;
  width: 100%;
  transition: border .2s, background .2s
}

#checkout-section .f input:focus,
.f select:focus,
.f textarea:focus {
  border-color: var(--gold);
  background: var(--white)
}

#checkout-section .f input::placeholder,
.f textarea::placeholder {
  color: #c8c8c8
}

#checkout-section .f select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23aaa' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px
}

#checkout-section .f textarea {
  resize: vertical;
  min-height: 76px
}

#checkout-section .phone-row {
  display: flex;
  gap: 8px
}

#checkout-section .phone-flag {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fafafa;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap
}

#checkout-section .phone-row input {
  flex: 1
}

#checkout-section .otp-row {
  display: flex;
  gap: 8px
}

#checkout-section .otp-row input {
  flex: 1
}

#checkout-section .btn-otp {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: var(--gold);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s
}

#checkout-section .btn-otp:hover {
  background: var(--gold);
  color: var(--white)
}

#checkout-section .add-link {
  font-size: 12px;
  color: var(--gold);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: opacity .2s
}

#checkout-section .add-link:hover {
  opacity: .75
}

#checkout-section .pay-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #fffbf4;
  border-radius: 8px;
  border-left: 3px solid var(--gold)
}

#checkout-section .pay-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px
}

#checkout-section .pay-opt {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border .2s, background .2s
}

#checkout-section .pay-opt.active {
  border-color: var(--gold);
  background: #fffbf4
}

#checkout-section .pay-opt input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px
}

#checkout-section .pay-opt-body {
  flex: 1
}

#checkout-section .pay-opt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text)
}

#checkout-section .pay-opt-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.5
}

#checkout-section .pay-opt-sub.highlight {
  color: var(--green);
  font-weight: 500
}

#checkout-section .pay-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap
}

#checkout-section .pay-chip {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  background: var(--white);
  color: var(--text);
  letter-spacing: .3px
}

#checkout-section .pay-chip.visa {
  color: #1A1F71;
  border-color: #1A1F71
}

#checkout-section .pay-chip.mc {
  color: #EB001B;
  border-color: #EB001B
}

#checkout-section .pay-chip.rupay {
  color: #008752;
  border-color: #008752
}

#checkout-section .pay-chip.upi {
  color: #6A1B9A;
  border-color: #6A1B9A
}

#checkout-section .pay-chip.nb {
  color: #0066CC;
  border-color: #0066CC
}

#checkout-section .billing-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px
}

#checkout-section .b-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  transition: border .2s, background .2s
}

#checkout-section .b-opt.active {
  border-color: var(--gold);
  background: #fffbf4
}

#checkout-section .b-opt input[type="radio"] {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  cursor: pointer
}

#checkout-section .b-opt span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text)
}

#checkout-section .billing-extra {
  display: none
}

#checkout-section .billing-extra.show {
  display: block;
  margin-top: 12px
}

#checkout-section .btn-pay {
  display: flex;
  width: 100%;
  margin-top: 20px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .22s, transform .15s;
  align-items: center;
  justify-content: center
}

#checkout-section .btn-pay:hover {
  background: var(--gold);
  transform: translateY(-1px)
}

#checkout-section .right-col {
  position: sticky;
  top: 15px
}

#checkout-section .review-box {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px
}

#checkout-section .review-head {
  padding: 14px 20px;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 80px 100px;
  gap: 8px
}

#checkout-section .review-head span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

#checkout-section .review-head span:nth-child(2),
.review-head span:nth-child(3) {
  text-align: center
}

#checkout-section .prod-row {
  display: grid;
  grid-template-columns: 1fr 80px 100px;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  align-items: center
}

#checkout-section .prod-row:last-of-type {
  border-bottom: none
}

#checkout-section .prod-info {
  display: flex;
  align-items: center;
  gap: 13px
}

#checkout-section .prod-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f3f3f3;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px
}

#checkout-section .prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#checkout-section .prod-meta .pm-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px
}

#checkout-section .prod-meta .pm-detail {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7
}

#checkout-section .prod-meta .pm-detail b {
  color: var(--text);
  font-weight: 500
}

#checkout-section .prod-qty {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text)
}

#checkout-section .prod-amt {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold)
}

#checkout-section .coupon-box {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 16px
}

#checkout-section .coupon-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px
}

#checkout-section .coupon-row input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fafafa;
  outline: none;
  transition: border .2s
}

#checkout-section .coupon-row input:focus {
  border-color: var(--gold)
}

#checkout-section .coupon-row input::placeholder {
  color: #ccc
}

#checkout-section .btn-coupon {
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap
}

#checkout-section .btn-coupon:hover {
  background: var(--gold)
}

#checkout-section .btn-offers {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border .2s, color .2s;
  text-align: center
}

#checkout-section .btn-offers:hover {
  border-color: var(--gold);
  color: var(--gold)
}

#checkout-section .totals-box {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden
}

#checkout-section .totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border)
}

#checkout-section .totals-row:last-child {
  border-bottom: none
}

#checkout-section .tr-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted)
}

#checkout-section .tr-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--text)
}

#checkout-section .tr-val.free {
  color: var(--green);
  font-weight: 600
}

#checkout-section .totals-row.grand {
  background: #fffbf4
}

#checkout-section .totals-row.grand .tr-label {
  color: var(--dark);
  font-size: 12px;
  font-weight: 700
}

#checkout-section .totals-row.grand .tr-val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold)
}

#checkout-section .trust-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px
}

#checkout-section .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  text-align: center
}

#checkout-section .trust-item svg {
  color: var(--gold)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.a1 {
  animation: fadeUp .4s ease both
}

.a2 {
  animation: fadeUp .4s .07s ease both
}

.a3 {
  animation: fadeUp .4s .14s ease both
}

.a4 {
  animation: fadeUp .4s .21s ease both
}

@media (max-width:900px) {
  #checkout-section .page-wrap {
    grid-template-columns: 1fr;
    padding: 20px 14px 50px;
    gap: 18px
  }

  #checkout-section .right-col {
    position: static;
    order: -1
  }
}

@media (max-width:580px) {
  #checkout-section .fg {
    grid-template-columns: 1fr
  }

  #checkout-section .fg .full {
    grid-column: 1
  }

  #checkout-section .review-head {
    grid-template-columns: 1fr 50px 80px
  }

  #checkout-section .prod-row {
    grid-template-columns: 1fr 50px 80px
  }

  #checkout-section .prod-info {
    gap: 10px
  }

  #checkout-section .prod-thumb {
    width: 50px;
    height: 50px;
    font-size: 18px
  }

  #checkout-section .prod-meta .pm-name {
    font-size: 13px
  }

  #checkout-section .trust-row {
    gap: 12px
  }
}




/* =====================================================================================
                               WISHLIST PAGE CSS START                                   
===================================================================================== */

:root {
  --gold: #c8a96e;
  --gold2: #e8d49a;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --muted: #999;
  --border: #ebebeb;
  --bg: #f6f6f6;
  --white: #fff;
  --red: #e05252;
  --green: #3aaa6e;
}

#wishlist-section .back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color .2s;
  font-weight: 500
}

#wishlist-section .back-link:hover {
  color: var(--gold)
}

#wishlist-section .list-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px
}

#wishlist-section .list-topbar-left {
  font-size: 13px;
  color: var(--muted)
}

#wishlist-section .list-topbar-left strong {
  color: var(--dark);
  font-weight: 600
}

#wishlist-section .btn-clear {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: all .2s
}

#wishlist-section .btn-clear:hover {
  border-color: var(--red);
  color: var(--red)
}

#wishlist-section .wish-table-wrap {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  overflow: hidden
}

#wishlist-section .wish-table {
  width: 100%;
  border-collapse: collapse
}

#wishlist-section .wish-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid var(--border)
}

#wishlist-section .wish-table thead th {
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  white-space: nowrap
}

#wishlist-section .wish-table thead th:last-child {
  text-align: center
}

#wishlist-section .wish-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s
}

#wishlist-section .wish-table tbody tr:last-child {
  border-bottom: none
}

#wishlist-section .wish-table tbody tr:hover {
  background: #fffbf4
}

#wishlist-section .wish-table td {
  padding: 16px 18px;
  vertical-align: middle
}

#wishlist-section .td-product {
  display: flex;
  align-items: center;
  gap: 14px
}

#wishlist-section .td-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #f3f3f3
}

#wishlist-section .td-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

#wishlist-section .td-cat {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 600;
  margin-bottom: 3px
}

#wishlist-section .td-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 3px
}

#wishlist-section .td-sku {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .8px;
  text-transform: uppercase
}

#wishlist-section .wish-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle
}

#wishlist-section .wish-badge.sale {
  background: var(--red)
}

#wishlist-section .td-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap
}

#wishlist-section .td-price-old {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 2px
}

#wishlist-section .td-actions {
  text-align: center
}

#wishlist-section .actions-wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 8px
}

#wishlist-section .btn-add-cart {
  padding: 8px 16px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap
}

#wishlist-section .btn-add-cart:hover {
  background: var(--gold)
}

#wishlist-section .btn-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: all .2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  flex-shrink: 0
}

#wishlist-section .btn-remove:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

@media (max-width:768px) {
  #wishlist-section .wish-table thead {
    display: none
  }

  #wishlist-section .wish-table,
  #wishlist-section .wish-table tbody,
  #wishlist-section .wish-table tr,
  #wishlist-section .wish-table td {
    display: block;
    width: 100%
  }

  #wishlist-section .wish-table tbody tr {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    position: relative
  }

  #wishlist-section .wish-table td {
    padding: 4px 0;
    border: none
  }

  #wishlist-section .td-product {
    margin-bottom: 10px
  }

  #wishlist-section .td-img {
    width: 60px;
    height: 60px
  }

  #wishlist-section .actions-wrap {
    justify-content: flex-start;
    margin-top: 10px
  }
}

















/* =====================================================================================
                               DASHBOARD PAGE CSS START                                   
===================================================================================== */






:root {
  --gold: #c8a96e;
  --gold2: #e8d49a;
  --dark: #1a1a1a;
  --text: #2d2d2d;
  --muted: #999;
  --border: #ebebeb;
  --bg: #f6f6f6;
  --white: #fff;
  --red: #e05252;
  --green: #3aaa6e;
  --blue: #4a90d9;
  --orange: #e6920a;
}

#dashboard-section .dash-wrap {
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start
}

#dashboard-section .sidebar {
  position: sticky;
  top: 76px
}

#dashboard-section .user-card {
  background: var(--dark);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  margin-bottom: 12px
}

#dashboard-section .user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Playfair Display', serif
}

#dashboard-section .user-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px
}

#dashboard-section .user-email {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .3px
}

#dashboard-section .user-since {
  font-size: 10px;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-weight: 500
}

#dashboard-section .side-nav {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  overflow: hidden
}

#dashboard-section .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s
}

#dashboard-section .nav-item:last-child {
  border-bottom: none
}

#dashboard-section .nav-item:hover {
  background: #fafafa;
  color: var(--text)
}

#dashboard-section .nav-item.active {
  background: #fffbf4;
  color: var(--gold);
  border-left: 3px solid var(--gold)
}

#dashboard-section .nav-item.logout:hover {
  background: #fff5f5;
  color: var(--red)
}

#dashboard-section .nav-badge {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px
}

#dashboard-section .card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  padding: 26px;
  margin-bottom: 18px
}

#dashboard-section .card:last-child {
  margin-bottom: 0
}

#dashboard-section .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between
}

#dashboard-section .card-title-left {
  display: flex;
  align-items: center;
  gap: 10px
}

#dashboard-section .card-title svg {
  color: var(--gold)
}

#dashboard-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

#dashboard-section .form-grid .full {
  grid-column: 1 / -1
}

#dashboard-section .field {
  display: flex;
  flex-direction: column;
  gap: 5px
}

#dashboard-section .field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--muted)
}

#dashboard-section .field input,
.field select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fafafa;
  outline: none;
  width: 100%;
  transition: border .2s, background .2s
}

#dashboard-section .field input:focus,
.field select:focus {
  border-color: var(--gold);
  background: #fff
}

#dashboard-section .field input::placeholder {
  color: #ccc
}

#dashboard-section .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23aaa' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px
}

#dashboard-section .btn-save {
  margin-top: 18px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s
}

#dashboard-section .btn-save:hover {
  background: var(--gold)
}

#dashboard-section .btn-sm {
  padding: 7px 16px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: var(--muted);
  text-decoration: none;
  display: inline-block
}

#dashboard-section .btn-sm:hover {
  border-color: var(--gold);
  color: var(--gold)
}

#dashboard-section .btn-sm.dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark)
}

#dashboard-section .btn-sm.dark:hover {
  background: var(--gold);
  border-color: var(--gold)
}

#dashboard-section .btn-sm.danger {
  color: var(--red);
  border-color: #ffd4d4
}

#dashboard-section .btn-sm.danger:hover {
  background: #fff0f0;
  border-color: var(--red)
}

#dashboard-section .pass-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6
}

#dashboard-section .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px
}

#dashboard-section .stat-box {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  padding: 18px 16px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: transform .2s, box-shadow .2s
}

#dashboard-section .stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .09)
}

#dashboard-section .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold)
}

#dashboard-section .stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500
}

#dashboard-section .quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px
}

#dashboard-section .quick-link-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  padding: 20px 18px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  border: 1.5px solid transparent
}

#dashboard-section .quick-link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  border-color: var(--gold)
}

#dashboard-section .ql-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #fffbf4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

#dashboard-section .ql-icon svg {
  color: var(--gold)
}

#dashboard-section .ql-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px
}

#dashboard-section .ql-sub {
  font-size: 11px;
  color: var(--muted)
}

#dashboard-section .ql-arrow {
  margin-left: auto;
  color: var(--border);
  font-size: 20px;
  transition: color .2s;
  line-height: 1
}

#dashboard-section .quick-link-card:hover .ql-arrow {
  color: var(--gold)
}

#dashboard-section .list-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px
}

#dashboard-section .list-topbar-left {
  font-size: 13px;
  color: var(--muted)
}

#dashboard-section .list-topbar-left strong {
  color: var(--dark);
  font-weight: 600
}

#dashboard-section .order-table-wrap {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  overflow: hidden
}

#dashboard-section .order-table {
  width: 100%;
  border-collapse: collapse
}

#dashboard-section .order-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid var(--border)
}

#dashboard-section .order-table thead th {
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  white-space: nowrap
}

#dashboard-section .order-table thead th:last-child {
  text-align: center
}

#dashboard-section .order-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s
}

#dashboard-section .order-table tbody tr:last-child {
  border-bottom: none
}

#dashboard-section .order-table tbody tr:hover {
  background: #fffbf4
}

#dashboard-section .order-table td {
  padding: 16px 18px;
  vertical-align: middle;
  font-size: 13px;
  color: var(--text)
}

#dashboard-section .order-id-cell {
  font-weight: 700;
  color: var(--dark);
  font-size: 13px;
  margin-bottom: 3px
}

#dashboard-section .order-date-cell {
  font-size: 11px;
  color: var(--muted)
}

#dashboard-section .order-items-preview {
  display: flex;
  flex-direction: column;
  gap: 6px
}

#dashboard-section .order-item-row {
  display: flex;
  align-items: center;
  gap: 8px
}

#dashboard-section .order-item-img {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3f3f3;
  flex-shrink: 0
}

#dashboard-section .order-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

#dashboard-section .order-item-name {
  font-size: 12px;
  color: var(--text);
  font-weight: 500
}

#dashboard-section .order-item-qty {
  font-size: 11px;
  color: var(--muted)
}

#dashboard-section .order-amount {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap
}

#dashboard-section .order-items-count {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px
}

#dashboard-section .order-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  white-space: nowrap
}

#dashboard-section .order-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block
}

#dashboard-section .status-delivered {
  background: #edfbf4;
  color: var(--green)
}

#dashboard-section .status-delivered::before {
  background: var(--green)
}

#dashboard-section .status-processing {
  background: #fff8ed;
  color: var(--orange)
}

#dashboard-section .status-processing::before {
  background: var(--orange)
}

#dashboard-section .status-shipped {
  background: #edf4fb;
  color: var(--blue)
}

#dashboard-section .status-shipped::before {
  background: var(--blue)
}

#dashboard-section .status-cancelled {
  background: #ffeeed;
  color: var(--red)
}

#dashboard-section .status-cancelled::before {
  background: var(--red)
}

#dashboard-section .td-actions {
  text-align: center
}

#dashboard-section .actions-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap
}

#dashboard-section .wish-table-wrap {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  overflow: hidden
}

#dashboard-section .wish-table {
  width: 100%;
  border-collapse: collapse
}

#dashboard-section .wish-table thead tr {
  background: #fafafa;
  border-bottom: 2px solid var(--border)
}

#dashboard-section .wish-table thead th {
  padding: 14px 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  white-space: nowrap
}

#dashboard-section .wish-table thead th:last-child {
  text-align: center
}

#dashboard-section .wish-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s
}

#dashboard-section .wish-table tbody tr:last-child {
  border-bottom: none
}

#dashboard-section .wish-table tbody tr:hover {
  background: #fffbf4
}

#dashboard-section .wish-table td {
  padding: 16px 18px;
  vertical-align: middle
}

#dashboard-section .td-product {
  display: flex;
  align-items: center;
  gap: 14px
}

#dashboard-section .td-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: #f3f3f3
}

#dashboard-section .td-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

#dashboard-section .td-cat {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 600;
  margin-bottom: 3px
}

#dashboard-section .td-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.3
}

#dashboard-section .td-sku {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .8px;
  text-transform: uppercase
}

#dashboard-section .wish-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle
}

#dashboard-section .wish-badge.sale {
  background: var(--red)
}

#dashboard-section .td-price-val {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap
}

#dashboard-section .td-price-old {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 2px
}

#dashboard-section .stock-in {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green)
}

#dashboard-section .stock-in::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block
}

#dashboard-section .stock-out {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--red)
}

#dashboard-section .stock-out::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block
}

#dashboard-section .btn-add-cart {
  padding: 8px 14px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap
}

#dashboard-section .btn-add-cart:hover {
  background: var(--gold)
}

#dashboard-section .btn-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: all .2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  flex-shrink: 0
}

#dashboard-section .btn-remove:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red)
}

#dashboard-section .mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 200;
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 12px rgba(0, 0, 0, .08)
}

#dashboard-section .mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around
}

#dashboard-section .mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .5px;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s
}

#dashboard-section .mob-nav-item.active {
  color: var(--gold)
}

#dashboard-section .mob-nav-item.logout-mob:hover {
  color: var(--red)
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.a1 {
  animation: fadeUp .4s ease both
}

.a2 {
  animation: fadeUp .4s .08s ease both
}

.a3 {
  animation: fadeUp .4s .16s ease both
}

@media (max-width:860px) {
  #dashboard-section .dash-wrap {
    grid-template-columns: 1fr;
    padding: 0 14px 90px
  }

  #dashboard-section .sidebar {
    display: none
  }

  #dashboard-section .mobile-bottom-nav {
    display: block
  }

  #dashboard-section .col-product {
    display: none
  }
}

@media (max-width:600px) {
  #dashboard-section .card {
    padding: 18px 15px
  }

  #dashboard-section .form-grid {
    grid-template-columns: 1fr
  }

  #dashboard-section .form-grid .full {
    grid-column: 1
  }

  #dashboard-section .stats-row {
    gap: 8px
  }

  #dashboard-section .stat-num {
    font-size: 22px
  }

  #dashboard-section .stat-box {
    padding: 14px 10px
  }

  #dashboard-section .quick-links {
    grid-template-columns: 1fr;
    gap: 10px
  }

  #dashboard-section .order-table thead {
    display: none
  }

  #dashboard-section .order-table,
  .order-table tbody,
  .order-table tr,
  .order-table td {
    display: block;
    width: 100%
  }

  #dashboard-section .order-table tbody tr {
    padding: 16px;
    border-bottom: 1px solid var(--border)
  }

  #dashboard-section .order-table td {
    padding: 4px 0;
    border: none
  }

  #dashboard-section .td-actions .actions-wrap {
    justify-content: flex-start;
    margin-top: 10px
  }

  #dashboard-section .wish-table thead {
    display: none
  }

  #dashboard-section .wish-table,
  .wish-table tbody,
  .wish-table tr,
  .wish-table td {
    display: block;
    width: 100%
  }

  #dashboard-section .wish-table tbody tr {
    padding: 16px;
    border-bottom: 1px solid var(--border)
  }

  #dashboard-section .wish-table td {
    padding: 4px 0;
    border: none
  }
}



/* ===================================================================== */

#offerModalpart .btn-outline {
  padding: 10px 20px;
  border: 1.5px solid #333;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  transition: all 0.18s;
}

#offerModalpart .btn-outline:hover {
  background: #333;
  color: #fff;
}

/* ══════════════════════════════════ MODAL BACKDROP ══════════════════════════════════ */
.offer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  backdrop-filter: blur(3px);
  animation: bfadeIn 0.2s ease;
}

#offerModalpart .offer-backdrop.show {
  display: block;
}

@keyframes bfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ══════════════════════════════════ MODAL BOX ══════════════════════════════════ */
.offer-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.95);
  z-index: 9999;
  background: #fff;
  border-radius: 16px;
  width: 92%;
  max-width: 580px;
  max-height: 88vh;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  flex-direction: column;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

#offerModalpart .offer-modal.show {
  display: flex;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#offerModalpart .om-header {
  background: linear-gradient(135deg, #c0432a 0%, #e8703a 100%);
  padding: 20px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

#offerModalpart .om-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

#offerModalpart .om-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

#offerModalpart .om-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#offerModalpart .om-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  margin-top: 2px;
}

#offerModalpart .om-close {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

#offerModalpart .om-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

#offerModalpart .om-body {
  padding: 20px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#offerModalpart .offer-card {
  border: 1.5px dashed #ddd;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fafafa;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
}

#offerModalpart .offer-card:hover {
  border-color: #c0432a;
  background: #fff7f5;
  box-shadow: 0 4px 18px rgba(192, 67, 42, 0.1);
}

#offerModalpart .offer-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(180deg, #c0432a, #e8703a);
}

#offerModalpart .oc-info {
  flex: 1;
}

#offerModalpart .oc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}

#offerModalpart .oc-desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.45;
  margin-bottom: 8px;
}

#offerModalpart .oc-code-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

#offerModalpart .oc-code {
  background: #fff;
  border: 1.5px dashed #c0432a;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c0432a;
  letter-spacing: 0.08em;
  font-family: 'Courier New', monospace;
}

#offerModalpart .oc-copy {
  background: #c0432a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

#offerModalpart .oc-copy:hover {
  background: #a33520;
}

#offerModalpart .oc-copy.copied {
  background: #2e7d32;
}

#offerModalpart .oc-expiry {
  font-size: 0.7rem;
  color: #e05a2b;
  margin-top: 6px;
  font-weight: 500;
}

#offerModalpart .om-footer {
  padding: 14px 20px;
  border-top: 1px solid #f0f0f0;
  text-align: center;
  font-size: 0.75rem;
  color: #999;
  flex-shrink: 0;
}

/* SIDE CART */
.side-cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.side-cart-overlay.active {
  display: block;
  opacity: 1;
}

.side-cart {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.side-cart.active {
  right: 0;
}

.side-cart-header {
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.side-cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #1e1e1e;
}

.side-cart-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #909090;
}

.side-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.side-cart-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.side-cart-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  flex-shrink: 0;
}

.side-cart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-cart-details {
  flex: 1;
}

.side-cart-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #1e1e1e;
  display: block;
  text-decoration: none;
}

.side-cart-meta {
  font-size: 0.75rem;
  color: #909090;
  margin-bottom: 5px;
}

.side-cart-price {
  font-weight: 700;
  color: #e05a2b;
  font-size: 0.95rem;
}

.side-cart-remove {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 5px;
}

.side-cart-remove:hover {
  color: #f00;
}

.side-cart-footer {
  padding: 20px;
  border-top: 1px solid #ebebeb;
  background: #fafafa;
}

.side-cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1e1e1e;
}

.side-cart-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-cart-btn {
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.side-cart-btn.outline {
  border: 1.5px solid #1e1e1e;
  color: #1e1e1e;
}

.side-cart-btn.outline:hover {
  background: #1e1e1e;
  color: #fff;
}

.side-cart-btn.dark {
  background: #1e1e1e;
  color: #fff;
}

.side-cart-btn.dark:hover {
  background: #e05a2b;
}

.empty-side-cart {
  text-align: center;
  padding: 40px 0;
  color: #999;
}

@media (max-width: 480px) {
  .side-cart {
    width: 100%;
    right: -100%;
  }
}

#mainImgWrap {
  overflow: visible !important;
  position: relative;
}

.add-to-cart {
  flex: 1;
  height: 50px;
  background: #1a1714;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s
}

.add-to-cart:hover {
  background: #2d2927;
  transform: translateY(-1px)
}

.buy-now {
  flex: 1;
  height: 50px;
  background: #e05a2b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .15s
}

.buy-now:hover {
  background: #e05a2b;
  transform: translateY(-1px)
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 20px;
  margin: 25px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #555;
}

.badge-item i {
  color: #e05a2b;
  font-size: 1rem;
}

/* Product Meta Refined */
.product-meta {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px dashed #ddd;
}

.meta-item {
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: #666;
}

.meta-item strong {
  color: #1a1714;
  font-weight: 500;
  margin-right: 5px;
}

.share-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.share-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1714;
}

.share-links {
  display: flex;
  gap: 10px;
}

.share-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  color: #666;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.share-icon:hover {
  color: #fff;
  transform: translateY(-2px);
}

.share-icon.fb:hover {
  background: #3b5998;
}

.share-icon.tw:hover {
  background: #000;
}

.share-icon.li:hover {
  background: #0077b5;
}

.share-icon.ig:hover {
  background: #e4405f;
}

/* Stock Badge */
.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.stock-status.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}

.stock-status.out-of-stock {
  background: #ffebee;
  color: #c62828;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.in-stock .stock-dot {
  background: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

/* Review Form & Cards */
.reviewer-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-card {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 20px;
  background: #fff;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.reviewer-avatar-placeholder {
  width: 50px;
  height: 50px;
  background: #f5f1ea;
  color: #e05a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewer-name {
  font-weight: 600;
  color: #1a1714;
  font-size: 1rem;
}

.review-stars {
  color: #f0a500;
  font-size: 0.9rem;
  margin-top: 4px;
}

.review-text {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 15px;
}

.write-review-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: #1a1714;
}

.review-form-container {
  background: #fefefe;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #f0f0f0;
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .review-form-row {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
}

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a1714;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
}

.form-control-custom:focus {
  border-color: #e05a2b;
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.1);
  outline: none;
}

.submit-btn-custom {
  background: #1a1714;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn-custom:hover {
  background: #e05a2b;
  transform: translateY(-2px);
}

/* ================= CUSTOM FLOATING BUTTONS START ================= */
.quickcontact {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.quickcontact a img {
  width: 60px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.quickcontact a:hover img {
  transform: scale(1.1);
}
/* ================= CUSTOM FLOATING BUTTONS END ================= */

/* ================= GOOGLE TRANSLATE DESIGNER FIXES START ================= */
#google_translate_element {
  display: flex !important;
  align-items: center !important;
  height: auto !important;
}
.goog-te-gadget {
  font-family: 'Poppins', sans-serif !important;
  color: transparent !important;
  font-size: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.goog-te-gadget .goog-te-combo {
  padding: 4px 8px !important;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: #333 !important;
  background: #fff !important;
  outline: none !important;
  cursor: pointer;
  margin: 0 !important; /* Remove any default margins */
}
.goog-logo-link, .goog-te-gadget span {
  display: none !important;
}
body {
  top: 0 !important;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
/* ================= GOOGLE TRANSLATE DESIGNER FIXES END ================= */
