@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-text-color: #312319;
  --secondary-text-color: #a68268;
  --tertiary-text-color: #ffffff;
  --dark-text-color: #000000;
  --footer-title-color: #7f604a;
  --heart-color: #de0000;
  --some-bg-color: linear-gradient(to bottom, #fff6ef 0%, #ffffff 100%);
  --some-bg-color-secondary: #fff6ef;
  --line-color: #dfcbbd;
  --card-bg: #ffffff;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 34px rgba(0, 0, 0, 0.18);
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style-type: none;
}

.container {
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* Loader */
body.luxshop-loader-active {
  overflow: hidden;
}

.luxshop-loader {
  position: fixed;
  inset: 0;
  background: #050304;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.luxshop-loader-inner {
  text-align: center;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  color: var(--tertiary-text-color);
}

.luxshop-loader-label {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--tertiary-text-color);
  animation: luxshopLoaderWord 0.8s ease-out forwards;
  font-size: 3.2rem;
  letter-spacing: 0.18em;
}

.luxshop-loader-sub {
  display: block;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 26px;
  opacity: 0;
  animation: luxshopLoaderSub 0.7s ease-out 0.25s forwards;
  font-size: 1.1rem;
}

.luxshop-loader-line {
  width: 0;
  height: 3px;
  margin: 0 auto;
  background: var(--secondary-text-color);
  box-shadow: 0 0 18px rgba(166, 130, 104, 0.9);
  border-radius: 999px;
  animation: luxshopLoaderLine 0.7s ease-out 0.35s forwards;
}

.luxshop-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.luxshop-loader--hide-immediate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

@keyframes luxshopLoaderWord {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxshopLoaderSub {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxshopLoaderLine {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 140px;
    opacity: 1;
  }
}

/* GSAP */
.flair {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(166, 130, 104, 0.35);
  mix-blend-mode: multiply;
  transition: background-color 0.25s ease-out, opacity 0.25s ease-out;
  z-index: 999999;
}

.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  opacity: 1;
  transform: scale(1);
  mix-blend-mode: color-dodge;
  transition: background-color 0.15s ease-out;
}

.sparkle-gold {
  background: rgba(166, 130, 104, 0.9);
}

.sparkle-white {
  background: rgba(255, 255, 255, 0.9);
}

/* Header Section */
.navbar-container {
  max-width: 1480px;
  width: 100%;
  padding-top: 5px;
}

.main-logo {
  width: 158px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  padding-top: 5px;
}

.main-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-wrap {
  width: 100%;
  position: relative;
}

.brand-logo > a {
  width: 91px;
}

.brand-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-icons {
  display: flex;
  height: fit-content;
  justify-content: center;
  text-align: center;
  margin: 8px 15px 0 0;
}

.nav-link {
  margin-right: 15px;
  color: var(--primary-text-color);
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin-right: 10px;
}

.search-input {
  padding-left: 42px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--tertiary-text-color);
  border-radius: 12px;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  font-size: 16px;
  caret-color: #222;
  color: var(--primary-text-color);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.85;
  pointer-events: none;
}

.search-input:focus,
.search-input:not(:placeholder-shown) {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.search-input:focus {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06),
    0 0 0 4px rgba(0, 114, 245, 0.12);
  border-color: rgba(0, 114, 245, 0.38);
}

.search-input::placeholder {
  color: var(--primary-text-color);
}

.nav-contact {
  margin-right: 100px;
}

.nav-icon-account,
.nav-icon-cart {
  margin-right: 15px;
  cursor: pointer;
}

#heartIcon {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
  cursor: pointer;
}

#heartIcon.liked {
  color: var(--heart-color);
}

#heartIcon:hover {
  transform: scale(1.1);
}

.btn-close {
  --bs-btn-close-color: var(--tertiary-text-color);
  --bs-btn-close-opacity: 1;
  filter: invert(1) brightness(100%);
}

.dropdown-menu {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  border: 2px solid var(--tertiary-text-color);
  border-radius: 10px;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 6px 0;
  transform: perspective(800px) translateZ(0);
  animation: dropdownPop 0.3s ease forwards;
}

.dropdown-item {
  color: var(--tertiary-text-color);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-item:hover {
  background: linear-gradient(
    145deg,
    var(--secondary-text-color) 0%,
    var(--primary-text-color) 100%
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.dropdown-item:active {
  transform: translateY(1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
  border: none;
}

.hover-link {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
}

.hover-link:hover,
.hover-link.active {
  color: var(--primary-text-color);
}

.hover-link::before,
.hover-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  transition: width 0.3s ease;
}

.hover-link::before {
  top: 0;
  left: 0;
  background: var(--footer-title-color);
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
}

.hover-link::after {
  bottom: 0;
  right: 0;
  background: var(--primary-text-color);
  transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

.hover-link:hover::before,
.hover-link:hover::after,
.hover-link.active::before,
.hover-link.active::after {
  width: 100%;
}

.hover-link:hover::before,
.hover-link.active::before {
  left: 0;
}
.hover-link:hover::after,
.hover-link.active::after {
  right: 0;
}

.nav-icons i {
  color: var(--primary-text-color);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, color;
}

.nav-icons i:hover {
  color: var(--secondary-text-color);
  transform: translateY(-4px) scale(1.12);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-icons i:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* Banner Section */
.banner-copy {
  background: url("../assets/page-one-images/navbar-banner/banner-background.png")
    no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 85vh;
  padding: 0 80px;
}

.banner-text {
  color: var(--tertiary-text-color);
  text-align: left;
  padding: 120px 180px 0 0;
}

.banner-title {
  margin: 0 0 14px;
  line-height: 1.05;
  font-weight: 400;
  max-width: 351px;
  font-size: 114px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.banner-title > span {
  display: block;
  max-width: 634px;
  font-weight: 600;
  font-size: 114px;
  font-family: "Playfair Display", serif;
  font-style: normal;
}

.banner-desc {
  display: block;
  max-width: 353px;
  margin: 12px 0;
  font-size: 20px;
  color: var(--tertiary-text-color);
}

.banner-cta {
  position: relative;
  display: inline-block;
  color: var(--tertiary-text-color);
  text-decoration: none;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: 300;
}
.banner-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--tertiary-text-color);
  transition: width 0.28s ease;
}
.banner-cta:hover::after,
.banner-cta:focus-visible::after {
  width: 100%;
}

/* Features Section */
.features-section {
  padding: 10px 0 20px;
}

.featuresSwiper {
  overflow: hidden;
  position: relative;
}

.featuresSwiper .swiper-wrapper {
  display: flex;
  width: 200%;
  animation: scroll-loop 35s linear infinite;
}

.featuresSwiper .swiper-slide {
  flex: 0 0 auto;
  width: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 60px;
}

.feature-icon {
  width: 44px;
  margin-right: 8px;
}

.feature-text {
  color: var(--primary-text-color);
  font-size: 16px;
}

@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Feature Section 2.0 */
.features-section {
  padding: 10px 0 20px;
}

.features-slider {
  overflow: hidden;
}

.features-slider .slick-track {
  display: flex !important;
  align-items: center;
}

.features-slider .slick-slide {
  display: flex !important;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 60px;
}

.feature-icon {
  width: 44px;
  margin-right: 8px;
}

.feature-text {
  color: var(--primary-text-color);
  font-size: 16px;
}

.features-slider .slick-arrow,
.features-slider .slick-dots {
  display: none !important;
}

/* About Section */
.about-section {
  padding: 60px 0;
}

.about-wrap {
  text-align: center;
  margin: 0 auto;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.05;
  color: var(--primary-text-color);
  font-size: 50px;
  margin: 0 auto;
  max-width: 231px;
  margin-bottom: -75px;
}

.about-title span {
  color: var(--secondary-text-color);
  font-weight: 600;
}

.about-divider {
  position: relative;
  width: 231px;
  margin: 6px auto -70px;
}

.about-ornament {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-divider:hover .about-ornament {
  transform: translateY(-2px);
}

.about-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 40%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: ornamentShine 4.5s linear infinite;
  opacity: 0.35;
  pointer-events: none;
}

@keyframes ornamentShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.about-subtitle {
  color: var(--primary-text-color);
  font-weight: 400;
  line-height: 1.25;
  font-size: 24px;
  margin: 0 auto;
  max-width: 833px;
}

.about-copy {
  color: var(--primary-text-color);
  font-size: 14px;
  line-height: 1.85;
  margin: 20px auto 0;
  max-width: 911px;
  opacity: 0.95;
}

/* Discover Section */
.discover-wrap {
  text-align: center;
  margin: 0 auto;
  background: var(--some-bg-color);
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.discover-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.discover-title {
  display: inline-block;
  position: relative;
  color: var(--primary-text-color);
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  font-size: 40px;
  margin-bottom: 20px;
  width: 504px;
}

.discover-title span {
  color: var(--secondary-text-color);
}

.discover-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  height: 1px;
  width: 65%;
  background: var(--secondary-text-color);
  border-radius: 1px;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.discover-copy {
  margin: 24px auto 0;
  color: var(--primary-text-color);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.2px;
  max-width: 452px;
  font-weight: 300;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -12px;
  padding: 70px 0 5px;
}

.shine-card {
  flex: 0 0 300px;
  position: relative;
  width: 320px;
  height: 420px;
  margin: 12px;
  border-radius: 24px;
  overflow: hidden;
  background-image: linear-gradient(163deg, #a68268 0%, #7f604a 100%);
  box-shadow: 0 0 20px rgba(166, 130, 104, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1),
    0 8px 25px rgba(115, 112, 112, 0.35), inset 0 0 8px rgba(0, 0, 0, 0.15);
}

.shine-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    0 12px 30px rgba(124, 124, 124, 0.45),
    inset 0 0 12px rgba(150, 149, 149, 0.18);
}

.shine-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff6ef;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.shine-card:hover .card-inner {
  transform: scale(0.98);
}

.img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-photo,
.card-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-photo {
  transition: transform 0.6s ease;
}
.card-tint {
  mix-blend-mode: multiply;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}

.img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.35) 60%,
    rgba(255, 255, 255, 0.45) 100%
  );
  z-index: 2;
  transition: opacity 1s ease;
  pointer-events: none;
}

.shine-card:hover .img-wrap::before {
  opacity: 0.65;
}

.shine-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: glassShine 6s linear infinite;
  pointer-events: none;
  z-index: 3;
}
@keyframes glassShine {
  0% {
    transform: translate(-40%, -40%);
  }
  100% {
    transform: translate(40%, 40%);
  }
}

.card-q {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
  color: var(--tertiary-text-color);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.2;
  z-index: 4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(251, 233, 220, 0.6),
    rgba(85, 74, 66, 0.8)
  );
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.35s ease, transform 0.45s ease;
  z-index: 4;
  border-radius: 20px;
}

.card-desc {
  color: var(--tertiary-text-color);
  font: 400 clamp(13px, 1.6vw, 15px) / 1.6 "Poppins", sans-serif;
  max-width: 80%;
  margin: 0;
}

.shine-card:hover .card-photo {
  transform: scale(1.05);
}
.shine-card:hover .card-q {
  opacity: 0;
  transform: translateY(6px);
}
.shine-card:hover .card-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Our Product Section */
.our-product-section {
  padding: 60px 0 0;
}

.our-product-copy {
  background: url(../assets/page-one-images/about-discover-products/product_background.png)
    no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  max-height: 100vh;
  padding: 40px 10px;
  position: relative;
}

.product-top {
  margin-inline: 30px;
}

.decor-icon {
  position: absolute;
  top: 0;
  right: 35px;
  width: 80px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.product_title {
  font-size: 40px;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product_title > span {
  color: var(--secondary-text-color);
}

.para-span {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.para-span > span {
  font-size: 20px;
  font-weight: 300;
}

.arrow-wrap > img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  cursor: pointer;
}

.left_btn {
  margin-right: 5px;
}

.para-span .line {
  flex: 1;
  height: 1px;
  margin: 0 16px;
  background: var(--line-color);
  transition: flex 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.prod-card-wrap {
  margin: 40px 30px 0;
}

.prod-card-lg {
  width: 280px;
  height: 360px;
  border-radius: 30px;
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prod-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prod-card-lg:hover .prod-img img {
  transform: translateY(-3px) scale(1.02);
}

.prod-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ebebeb;
  color: var(--dark-text-color);
  font-size: 13px;
  padding: 5px 8px;
  border-radius: 20px;
}

.prod-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.prod-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.prod-heart i {
  font-size: 22px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.heart-outline {
  color: var(--dark-text-color);
}

.heart-solid {
  position: absolute;
  color: var(--heart-color);
  opacity: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
}

.prod-heart.liked .heart-outline {
  opacity: 0;
  transform: scale(0.9);
}
.prod-heart.liked .heart-solid {
  opacity: 1;
  transform: scale(1);
}

.prod-img {
  width: 68%;
  max-width: 200px;
}

.prod-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.mini-row {
  display: flex;
  margin-top: 14px;
}

.prod-mini {
  width: 240px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--tertiary-text-color);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-text h4 {
  font-size: 10px;
  color: var(--primary-text-color);
  margin-bottom: -5px;
}

.mini-text span {
  font-size: 9px;
  color: var(--secondary-text-color);
}

.mini-bag {
  width: 60px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border: none;
  outline: none;
  border-radius: 50%;
  margin-left: -10px;
}

.mini-bag:hover {
  transform: scale(1.07);
}

.mini-bag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Shop Section */
.shop-section {
  padding: 80px 0;
}

.why-title {
  color: var(--primary-text-color);
  letter-spacing: 0.2px;
  font-family: "Playfair Display", serif;
  font-size: 35px;
}
.why-title span {
  color: var(--secondary-text-color);
}
.shop-section .lead_para {
  color: var(--primary-text-color);
  opacity: 0.9;
  margin-bottom: 30px;
}
.why-title,
.lead_para {
  padding-left: 30px;
}

.lead_para {
  font-size: 16px;
}

.why-wrap {
  position: relative;
  padding-left: 30px;
  padding-top: 30px;
}

.why-list {
  max-height: 420px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: 10px;
  padding-top: 35px;
  direction: rtl;
}

.why-list > * {
  direction: ltr;
}

.why-list::-webkit-scrollbar {
  width: 2px;
  height: 1px;
}

.why-list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background: var(--line-color);
}

.why-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--secondary-text-color);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.why-list::-webkit-scrollbar-thumb:window-inactive {
  background: var(--secondary-text-color);
}

.why-list::-webkit-scrollbar-button {
  display: none;
}

.why-item {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 18px 18px 18px 12px;
  margin-bottom: 18px;
}

.why-item:last-child {
  margin-bottom: 0;
}

.why-item h5 {
  color: var(--primary-text-color);
  margin: 0 0 6px 0;
  font-weight: 400;
  font-size: 28px;
}

.h-para {
  font-size: 14px;
  line-height: 0.5;
  margin-top: 5px;
}

.num {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary-text-color);
  color: var(--secondary-text-color);
  font-family: "Playfair Display", serif;
  font-size: 36px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.why-img {
  width: 230px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.why-images > img:first-child {
  margin-right: 20px;
  padding-bottom: 180px;
  clip-path: inset(0 0 180px 0 round 24px);
}

.why-images > img:last-child {
  margin-top: 180px;
}

.why-images > img {
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  border-radius: 24px;
  transform-origin: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.why-images > img:hover {
  transform: scale(1.07) rotateX(6deg) rotateY(-6deg) skew(4deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1) contrast(1.05);
  cursor: pointer;
}
.why-images > img:hover:first-child {
  transform: skew(5deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.why-images > img:hover:last-child {
  transform: skew(-5deg);
}

.why-images > img:hover {
  position: relative;
}

.why-images > img:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

/* Newsletter Section */
.newsletter {
  position: relative;
  z-index: 0;
  padding: 100px 0 0;
}

.newsletter-copy {
  position: relative;
  background: url("../assets/page-one-images/news-customer-footer/newsletter_background.png")
    no-repeat center/cover;
  border-radius: 40px;
  overflow: visible;
  width: 100%;
  max-height: 360px;
  padding: 64px 34px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.newsletter-model {
  position: absolute;
  left: 32px;
  bottom: -90px;
  transform: translateY(-90px);
  width: clamp(730px, 36vw, 520px);
  max-width: calc(100% - 68px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  z-index: 2;
}

.newsletter-content {
  margin-left: auto;
  max-width: 720px;
  padding-right: 14px;
  position: relative;
  z-index: 3;
}

.newsletter-content {
  margin-left: auto;
  max-width: 620px;
  padding-right: 14px;
  position: relative;
  z-index: 10;
}

.nl-heading {
  margin: 0 0 18px 0;
  line-height: 1.05;
}

.nl-kicker {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 45px;
  color: var(--tertiary-text-color);
  opacity: 0.95;
  margin-bottom: 6px;
}

.nl-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 75px;
  color: var(--tertiary-text-color);
  line-height: 1.5;
}

.nl-input {
  display: flex;
  align-items: center;
  background: var(--tertiary-text-color);
  border-radius: 999px;
  height: 56px;
  padding: 6px;
  width: 400px;
  margin-top: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nl-field {
  flex: 1 1 auto;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 14px 0 18px;
  font-size: 16px;
  color: #312319;
}

.nl-field::placeholder {
  color: #6e5a4c;
  opacity: 0.85;
}

.nl-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #e9d7cc;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  margin-left: 10px;
}
.nl-btn:hover {
  transform: scale(1.06);
  background: #d9c6ba;
}

/* Customer Section */
.customer-section {
  padding: 80px 0;
}

.customer-copy {
  text-align: center;
  margin: 0 auto;
}

.customer-title {
  display: inline;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.05;
  color: var(--primary-text-color);
  font-size: 35px;
  margin: 0 auto;
  max-width: 231px;
  margin-bottom: -75px;
}

.customer-title span {
  color: var(--secondary-text-color);
  font-weight: 600;
}

.customer-divider {
  position: relative;
  width: 131px;
  margin: 6px auto 0;
}

.customer-ornament {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  margin-top: -50px;
}

.customer-divider:hover .customer-ornament {
  transform: translateY(-2px);
}

.customer-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 40%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: ornamentShine 4.5s linear infinite;
  opacity: 0.35;
  pointer-events: none;
}

@keyframes ornamentShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.customer-subtitle {
  color: var(--primary-text-color);
  font-weight: 400;
  line-height: 1.25;
  font-size: 20px;
  margin: 0 auto;
  max-width: 833px;
  margin-top: -50px;
}

.horizontal-accordion {
  padding: 50px 0 10px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  height: 520px;
  max-width: 95%;
  margin: 0 auto;
}

.horizontal-accordion .accordion-items {
  margin-right: 50px;
}

.horizontal-accordion .accordion-items:last-child {
  margin-right: 0;
}

.accordion-items {
  position: relative;
  flex: 1;
  min-width: 120px;
  border-radius: 40px;
  border: 1px solid #dfcbbd;
  text-align: center;
  padding: 20px 10px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.accordion-items::before {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  background: url("../assets/page-one-images/news-customer-footer/inside_button.png")
    no-repeat center/cover;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.accordion-items:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.accordion-items::after {
  content: "";
  position: absolute;
  top: 85%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  background: url("../assets/page-one-images/news-customer-footer/outside_button.png")
    no-repeat center/cover;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.accordion-items:hover::after {
  opacity: 0;
}

.timings-arrow {
  position: absolute;
  left: 20px;
  bottom: 22px;
  display: flex;
  align-items: center;
  width: auto;
  font-size: 0.85rem;
  color: #7a5a3a;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.accordion-items:hover .timings-arrow {
  opacity: 1;
  transform: translateY(0);
}

.timings-arrow > div:first-child {
  display: inline-flex;
  align-items: center;
}

.timings-arrow > div:first-child::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../assets/page-one-images/news-customer-footer/clock_accordion.png")
    no-repeat center/cover;
  display: inline-block;
  margin-right: 8px;
}

.timings-arrow > div:first-child {
  margin-right: 8px;
}

.arrow img {
  width: 18px;
  transition: transform 0.4s ease;
}

.accordion-items:hover .arrow img {
  transform: translateX(5px);
}

.accordion-items:hover {
  flex: 3;
  background: #f9f6f4;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.profile-img {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.profile-img > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.accordion-items:hover {
  justify-content: center;
}

.accordion-items:hover .profile-img {
  margin-bottom: 15px;
  margin-top: -40px;
}

.accordion-items > h3 {
  margin-bottom: 180px;
  transform: rotate(270deg);
  transform-origin: center;
  transition: transform 0.6s ease, color 0.4s ease, margin-bottom 0.4s ease;
  font-size: 1.2rem;
  font-weight: 400;
}

.accordion-items:hover > h3 {
  transform: rotate(0);
  color: #7a5a3a;
  margin: 20px 0;
}

.accordion-items > p {
  display: none;
  opacity: 0;
  font-size: 0.95rem;
  color: #5a4a3d;
  padding: 0 10px;
  margin-top: 0;
  transition: opacity 0.6s ease, margin-top 0.4s ease;
}

.accordion-items:hover > p {
  display: block;
  opacity: 1;
  margin-top: 0;
}

.accordion-items:hover {
  padding-bottom: 48px;
}

/* Beauty Journal Scetion */
.our-beauty-journal-section {
  margin-top: -50px;
}

.decor-icon-jrnl {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 150px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.journal-wrap {
  width: 300px;
  margin: 28px;
  position: relative;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
}

.journal-card {
  border-radius: 22px;
  overflow: hidden;
  background: var(--tertiary-text-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
  position: relative;
}

.journal-card img {
  width: 100%;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.journal-card::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 45%,
    rgba(255, 255, 255, 0.4) 55%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-100%);
  transition: transform 1.3s ease;
  pointer-events: none;
  opacity: 0;
}

.journal-mini {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: -24px auto 0;
  background: #ffffff;
  border-radius: 50px;
  text-align: center;
  padding: 14px 16px;
  color: #3a2b1f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
}

.journal-wrap:hover {
  transform: translateY(-10px);
  filter: brightness(1.05);
}

.journal-wrap:hover .journal-card {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transform: scale(1.02);
}

.journal-wrap:hover .journal-card img {
  transform: scale(1.06);
}

.journal-wrap:hover .journal-card::after {
  transform: translateX(100%);
  opacity: 1;
}

.journal-wrap:hover .journal-mini {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  background: linear-gradient(180deg, #fff6ef 0%, #ffffff 100%);
  color: #2e1b0d;
  transform: translateY(-3px);
}

.journal-wrap:hover::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 240, 220, 0.6),
    transparent 60%
  );
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

/* Batch Section */
.batch-section {
  padding: 80px 20px;
}

.batch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0 -12px;
}

.batch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(25% - 24px);
  padding: 6px 0;
  cursor: pointer;
}

.divider {
  flex: 0 0 1px;
  width: 1px;
  min-width: 1px;
  height: 72px;
  align-self: center;
  background: var(--tertiary-text-color);
  background: url("../assets/page-one-images/news-customer-footer/dicider_batch.png")
    no-repeat center/cover;
  background-size: 72px;
}

.ico-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-right: 10px;
  transform-style: preserve-3d;
}

.ico-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s;
  justify-content: space-between;
}

.batch:hover .ico-wrap > img {
  transform: translateY(-4px) rotateZ(-2deg) scale(1.06);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.ico-wrap::after {
  content: "";
  position: absolute;
  inset: -8%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-120%) rotate(8deg);
  pointer-events: none;
  opacity: 0;
}

.batch:hover .ico-wrap::after {
  animation: shine 900ms ease forwards;
}

.batch {
  transition: transform 0.35s ease, background-color 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
}

.batch:hover {
  transform: translateY(-2px);
  animation: wobble 700ms ease both;
}

@keyframes shine {
  0% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
}
@keyframes wobble {
  0% {
    transform: translateY(-2px) rotateZ(0deg);
  }
  40% {
    transform: translateY(-2px) rotateZ(-1.5deg);
  }
  70% {
    transform: translateY(-2px) rotateZ(0.8deg);
  }
  100% {
    transform: translateY(-2px) rotateZ(0deg);
  }
}

.copy {
  margin-left: 2px;
}

.copy h5 {
  font-size: 14px;
  font-weight: 400;
  color: #3b2b22;
  margin: 0 0 2px;
}

.copy span {
  font-size: 10px;
  color: #000;
}

/* Footer Section */
.footer-section {
  padding: 40px 0 0;
}

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

.footer-copy {
  position: relative;
  background: #efefef;
  border-radius: 30px 30px 0 0;
  overflow: visible;
  width: 100%;
  padding: 50px 40px 24px;
}

.footer-logo li {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brnad {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
}

.outer {
  font-size: 70px;
  color: var(--primary-text-color);
}

.inner {
  font-size: 100px;
  color: var(--secondary-text-color);
}

.footer-copy .footer-sep {
  all: unset;
  display: block;
  flex-basis: 100%;
  height: 2px;
  margin: 40px 0;
  background: var(--line-color);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  width: 111px;
  height: 111px;
  object-fit: contain;
  cursor: pointer;
}

.footer-grid {
  margin: 0 -14px;
}

.footer-col {
  padding: 0 14px;
}

.footer-about,
.footer-block,
.payments,
.socials,
.footer-bottom {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-block {
  margin-top: 40px;
}

.about-text span {
  display: inline-block;
  color: var(--footer-title-color);
  line-height: 1.7;
  font-size: 14px;
  width: 450px;
}

.block-title > span {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--footer-title-color);
  font-family: "Playfair Display", serif;
}

.payments {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.payments li {
  margin-right: 14px;
}

.payments li:last-child {
  margin-right: 0;
}

.pay-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.pay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.15) 38%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.pay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.socials {
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-left: -40px;
}

.socials li {
  margin-right: 14px;
}

.socials li:last-child {
  margin-right: 0;
}

.access-span {
  padding-bottom: 20px;
  color: var(--primary-text-color);
}

.faqs-span {
  padding-bottom: 20px;
  color: var(--primary-text-color);
}

.footer-block .access-span a,
.footer-block .faqs-span a {
  color: var(--primary-text-color);
}

.footer-bottom a {
  color: var(--primary-text-color);
}

.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5a5a5a;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.soc i {
  font-size: 16px;
  line-height: 1;
}

.soc:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.soc[aria-label="LinkedIn"]:hover {
  color: #0a66c2;
}

.soc[aria-label="Facebook"]:hover {
  color: #1877f2;
}

.soc[aria-label="X"]:hover {
  color: #111;
}

.soc[aria-label="Instagram"]:hover {
  color: #e1306c;
}

.soc[aria-label="WhatsApp"]:hover {
  color: #25d366;
}

.footer-block li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.footer-block li .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  transition: transform 0.25s ease, filter 0.25s ease;
  margin-top: -12px;
}

.footer-block li .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(7%) saturate(419%)
    hue-rotate(2deg) brightness(95%) contrast(90%);
  margin-top: 10px;
}

.footer-block li:hover .icon-wrap {
  transition: color 0.9s ease, transform 0.9s ease;
}
.footer-block li:hover .icon-wrap img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(12%) saturate(1551%)
    hue-rotate(336deg) brightness(90%) contrast(90%);
}

.span-num {
  color: var(--dark-text-color);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.span-num > span {
  color: var(--footer-title-color);
  font-size: 14px;
  font-weight: 900;
}

.span-para {
  font-size: 14px;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--primary-text-color);
}

.span-para-contact {
  padding-bottom: 20px;
}

.footer-sep {
  height: 1px;
  width: 100%;
  background: #e5e5e5;
  margin: 24px 0 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom li {
  margin: 0;
}

.footer-bottom span {
  color: var(--primary-text-color);
  font-size: 15px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 -14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
}

.footer-block a {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-block a::after {
  content: "";
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-block a:hover {
  color: var(--secondary-text-color);
  transform: scale(1.05);
}

.footer-block a:hover::after {
  width: 60%;
}

.span-para-contact:hover {
  color: var(--secondary-text-color);
  transform: scale(1.05);
}

.footer-block li:hover .icon-wrap {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.1);
}

.footer-block li.span-para-contact a,
.footer-block li.span-para-contact a:hover,
.footer-block li.span-para-contact a:focus {
  color: var(--primary-text-color) !important;
  transform: none !important;
  text-decoration: none !important;
}
.footer-block li.span-para-contact a::after {
  display: none !important;
}

/* Media Queries */
/* <=1400px */
@media screen and (max-width: 1400px) {
  .nav-contact {
    margin-right: 75px;
  }

  /* Our Product Section */
  .prod-card-lg {
    width: 240px;
  }
  .mini-text h4 {
    font-size: 8px;
  }

  /* Shop Section */
  .why-images > img {
    width: 200px;
  }

  /* newsletter Section */
  .newsletter-model {
    left: -20px;
  }
  .newsletter-content {
    max-width: 520px;
  }

  /* Footer Section */
  .footer-copy {
    padding: 60px 40px 24px;
  }
  .outer {
    font-size: 60px;
  }
  .inner {
    font-size: 86px;
  }
  .about-text span {
    width: 420px;
  }
}

/* <=1200px */
@media screen and (max-width: 1200px) {
  /* GSAP */
  .flair {
    display: none;
  }
  /* Header Section */
  .nav-link {
    font-size: 12px;
  }
  .main-logo {
    width: 101px;
  }
  .search-input::placeholder {
    font-size: 12px;
  }
  .nav-contact {
    margin-right: 80px;
  }
  .nav-link {
    margin-right: 5px;
  }

  /* Our Product Section */
  .prod-mini {
    width: 200px;
  }

  /* Shop Section */
  .why-images > img {
    width: 180px;
  }
  .why-item h5 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .h-para {
    font-size: 13px;
    line-height: 1.3;
  }

  /* Newsletter Section */
  .newsletter-model {
    left: -120px;
  }
  .newsletter-content {
    max-width: 420px;
  }
  .nl-kicker {
    font-size: 30px;
  }
  .nl-title {
    font-size: 55px;
  }
  .nl-input {
    width: 350px;
  }
  .nl-field::placeholder {
    font-size: 14px;
  }
  .nl-btn {
    width: 34px;
    height: 34px;
  }

  /* Beauty Journal Scetion */
  .journal-wrap {
    width: 260px;
    margin: 22px;
  }
  .journal-mini {
    width: 100%;
    font-size: 14px;
    padding: 12px 14px;
  }
  .journal-card {
    border-radius: 20px;
  }

  /* Footer Section */
  .custom-40,
  .custom-20 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
  }
  .payments,
  .socials {
    justify-content: center;
  }
  .about-text span {
    width: auto;
    max-width: 560px;
  }
  .pay-card {
    width: 78px;
    height: 44px;
  }
}

/* <=992px */
@media screen and (max-width: 991px) {
  /* Loader */
  .luxshop-loader-label {
    font-size: 2.4rem;
  }
  .luxshop-loader-sub {
    font-size: 0.9rem;
  }
  /* Header Section */
  .search-wrap {
    max-width: 100%;
  }
  .brand-logo > a {
    width: 71px;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 18px 28px;
  }
  .offcanvas .search-wrap {
    width: 100%;
    max-width: 260px;
    margin: 12px auto 16px;
  }
  .offcanvas .search-input {
    background: var(--tertiary-text-color);
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    box-shadow: none !important;
  }
  .offcanvas .navbar-nav {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin: 10px auto 10px;
  }
  .offcanvas .navbar-nav .nav-item {
    display: block;
    margin: 0 auto 10px;
  }
  .offcanvas .navbar-nav .nav-link {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 0;
    color: var(--tertiary-text-color);
  }
  .nav-icons {
    margin: 0 auto;
    padding: 30px 30px;
  }
  .nav-icon-account i,
  .nav-icon-cart i {
    margin-right: 60px;
  }
  .nav-icon-account i,
  .nav-icon-cart i,
  .nav-icon-heart i {
    color: var(--tertiary-text-color);
  }
  .offcanvas .navbar-nav .dropdown {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .offcanvas .navbar-nav .dropdown + .nav-item {
    margin-top: 6px;
  }
  .dropdown-menu {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(0, 0, 0, 0.25) 100%
    );
    border: 2px solid var(--tertiary-text-color);
    border-radius: 10px;
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.2),
      0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 6px 0;
    transform: perspective(800px) translateZ(0);
    animation: dropdownPop 0.3s ease forwards;
  }
  .dropdown-item {
    color: var(--tertiary-text-color);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-item:hover {
    background: linear-gradient(
      145deg,
      var(--secondary-text-color) 0%,
      var(--primary-text-color) 100%
    );
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
      inset 0 2px 4px rgba(255, 255, 255, 0.15);
    border-radius: 6px;
  }
  .dropdown-item:active {
    transform: translateY(1px);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4),
      0 1px 2px rgba(255, 255, 255, 0.1);
  }
  .offcanvas {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(239, 239, 239, 0.35)),
      url("../assets/page-one-images/navbar-banner/offcanvas_background.jpg")
        no-repeat center/cover;
    z-index: 9000;
  }
  .hover-link::before,
  .hover-link::after {
    display: none !important;
  }
  .off-divider {
    position: relative;
    width: 100%;
    height: 2px;
    background: transparent;
    overflow: hidden;
    margin: 6px 0 16px;
  }
  .mb-2 {
    margin-top: -0.5rem !important;
  }
  .off-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d0a676, #8b5e3c, #d0a676);
    animation: dividerGrow 1.2s ease forwards;
  }
  @keyframes dividerGrow {
    from {
      width: 0;
      opacity: 0.3;
      transform: scaleX(0);
      transform-origin: left;
    }
    to {
      width: 100%;
      opacity: 1;
      transform: scaleX(1);
    }
  }

  /* Banner Section */
  .banner-text {
    padding-top: 10px;
  }
  .banner-copy {
    justify-content: center;
    padding: 60px 0 0 180px;
  }
  .banner-text {
    text-align: center;
  }
  .banner-desc {
    width: 350px;
  }
  .banner-title,
  .banner-title > span,
  .banner-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  /* Features Section */
  .featuresSwiper .swiper-wrapper {
    animation-duration: 30s;
  }

  /* About Section */
  .about-title {
    font-size: 35px;
  }
  .about-divider {
    width: 201px;
  }
  .about-subtitle {
    width: 533px;
    font-size: 18px;
  }
  .about-copy {
    font-size: 12px;
    width: 700px;
  }

  /* Discover Section */
  .shine-card {
    width: calc(50% - 24px);
    height: 380px;
  }

  /* Shop Section */
  .why-title {
    text-align: center;
  }
  .lead_para {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
  }
  .why-wrap {
    padding-left: 0;
    padding-top: 20px;
  }
  .why-list {
    max-height: 360px;
    padding-left: 6px;
    padding-top: 20px;
    direction: rtl;
    margin: 0 auto;
    width: 100%;
    max-width: 640px;
  }
  .why-list > * {
    direction: ltr;
  }
  .why-item {
    padding: 14px 14px 14px 10px;
    margin-bottom: 14px;
  }
  .why-item h5 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .h-para {
    font-size: 13px;
    line-height: 1.3;
  }
  .num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 30px;
  }
  .why-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  .why-img {
    width: 200px;
  }
  .why-images > img:first-child {
    margin-right: 16px;
    padding-bottom: 120px;
    clip-path: inset(0 0 120px 0 round 24px);
  }
  .why-images > img:last-child {
    margin-top: 120px;
  }

  /* Newsletter Section */
  .newsletter-copy {
    padding: 90px 20px 10px;
    text-align: center;
  }
  .newsletter-model {
    left: 50% !important;
    top: -80px;
    transform: translate(-50%, -50px);
    width: 600px;
  }
  .newsletter-content {
    max-width: 500px;
    margin: 20px auto;
  }
  .nl-input {
    margin-left: auto;
    margin-right: auto;
    width: min(90%, 520px);
  }

  /* Customer Section */
  .horizontal-accordion {
    position: relative;
    flex-direction: column;
    height: auto;
    overflow: visible;
    max-width: 92%;
    margin: 0 auto;
  }
  .accordion-items {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 88px;
    margin: 12px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
    padding: 14px 16px;
    overflow: visible;
    z-index: 0;
  }
  .profile-img {
    height: 56px;
    width: 56px;
    flex: 0 0 56px;
  }
  .accordion-items > h3 {
    transform: rotate(0);
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0 auto;
  }
  .accordion-items::after,
  .accordion-items::before {
    display: none !important;
  }
  .accordion-items > p {
    display: none !important;
    opacity: 0;
  }
  .timings-arrow {
    display: none;
  }
  .accordion-items:hover {
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 16px 20px;
    min-height: unset;
    z-index: 1;
  }
  .accordion-items:hover > h3 {
    margin: 10px 0 6px 0;
  }
  .accordion-items:hover > p {
    display: block !important;
    opacity: 1;
    text-align: center;
    padding: 0 10px;
    line-height: 1.5;
    margin: 0;
  }
  .accordion-items:hover .timings-arrow {
    display: flex;
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }
  .timings-arrow > div:first-child::before {
    width: 18px;
    height: 18px;
  }

  /* Beauty Journal Scetion */
  .journal-wrap {
    width: 240px;
    margin: 20px auto;
  }
  .journal-card {
    border-radius: 18px;
  }
  .journal-card img {
    transform: scale(1);
  }
  .journal-mini {
    font-size: 13px;
    padding: 10px 12px;
  }

  /* Batch Section */
  .batch-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .batch {
    flex: 0 0 calc(33.333% - 24px);
  }
  .divider {
    display: none;
  }
  .batch:nth-of-type(4) {
    margin-top: 40px;
  }

  /* Footer Section */
  .span-para {
    font-size: 12px;
  }
  .span-para-contact > a {
    text-align: start;
  }
  .custom-40 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .custom-20 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .payments,
  .socials {
    justify-content: center;
  }
  .about-text span {
    width: auto;
    max-width: 680px;
  }
  .span-num > span {
    font-size: 12px;
  }
}

/* <=768px */
@media screen and (max-width: 768px) {
  /* Loader */
  .luxshop-loader-label {
    font-size: 1.9rem;
  }
  .luxshop-loader-sub {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }
  /* Banner Section */
  .banner-title {
    font-size: 84px;
  }
  .banner-title > span {
    font-size: 84px;
  }
  .banner-desc {
    font-size: 16px;
  }
  .banner-cta {
    font-size: 16px;
  }

  /* Features Section */
  .feature-icon {
    width: 40px;
    margin-right: 8px;
  }
  .feature-text {
    font-size: 15px;
  }
  .featuresSwiper .swiper-wrapper {
    animation-duration: 22s;
  }

  /* About Section */
  .about-title {
    font-size: 25px;
  }
  .about-divider {
    width: 151px;
    margin-top: 20px;
  }
  .about-subtitle {
    width: 353px;
    font-size: 13px;
    margin-top: 20px;
  }
  .about-copy {
    font-size: 12px;
    width: 500px;
  }

  /* Discover Section */
  .discover-title {
    font-size: 34px;
  }
  .discover-copy {
    font-size: 16px;
    padding: 0 20px;
  }
  .discover-title::after {
    width: 55%;
  }
  .shine-card {
    flex: 0 0 240px;
    height: 340px;
  }
  .card-q {
    font-size: 18px;
  }
  .card-desc {
    font-size: 14px;
  }

  /* Our Product Section */
  .product_title {
    font-size: 30px;
  }
  .para-span > span {
    font-size: 16px;
  }
  .prod-card-lg {
    width: 300px;
    margin: 0 auto;
  }
  .mini-row {
    width: 300px;
    margin: 10px 20px 0;
  }

  /* Shop Section */
  .why-list {
    direction: rtl;
    max-height: 370px;
    padding-left: 0;
    padding-right: 0;
  }
  .why-title {
    font-size: 30px;
  }
  .lead {
    font-size: 14px;
  }
  .why-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  .why-item h5 {
    font-size: 20px;
  }
  .h-para {
    font-size: 12.5px;
    line-height: 1.35;
  }
  .num {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 28px;
  }

  /* Newsletter Section */
  .newsletter-model {
    left: 50% !important;
    top: -20px;
    transform: translate(-50%, -50px);
    width: 500px;
  }

  .newsletter-content {
    max-width: 500px;
    margin: 20px auto;
  }

  .nl-input {
    margin-left: auto;
    margin-right: auto;
    width: min(90%, 520px);
  }

  /* Beauty Journal Scetion */
  .journal-wrap {
    width: 220px;
    margin: 18px auto;
  }
  .journal-card {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  .journal-mini {
    font-size: 13px;
    padding: 9px 10px;
  }

  /* Batch Section */
  .batch {
    flex: 0 0 calc(50% - 20px);
    justify-content: center;
    align-items: center;
  }
  .batch:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .batch:nth-of-type(2) {
    margin-bottom: 40px;
  }
  .batch:nth-of-type(4) {
    margin-top: 0;
  }
  .batch-row {
    justify-content: center;
  }

  /* Footer Section */
  .span-para {
    font-size: 12px;
  }
  .span-para-contact > a {
    text-align: start;
  }
  .custom-20 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .custom-20:last-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .pay-card {
    width: 74px;
    height: 42px;
  }
  .soc {
    width: 38px;
    height: 38px;
  }
  .about-text span {
    width: 550px;
  }
}

/* <=576px */
@media screen and (max-width: 576px) {
  /* Loader */
  .luxshop-loader-label {
    font-size: 1.5rem;
  }
  .luxshop-loader-sub {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }
  .luxshop-loader-line {
    width: 100px !important;
    height: 2px;
  }

  /* Header Section */
  .banner-copy {
    background: url("../assets/page-one-images/navbar-banner/banner-background.png")
      no-repeat 23% 0% / cover;
  }

  /* Banner Section */
  .banner-title {
    font-size: 64px;
  }
  .banner-title > span {
    font-size: 64px;
  }
  .banner-desc {
    font-size: 13px;
    width: 250px;
  }
  .banner-cta {
    font-size: 13px;
  }

  /* Features Section */
  .feature-icon {
    width: 34px;
    margin-right: 8px;
  }
  .feature-text {
    font-size: 13px;
  }
  .featuresSwiper .swiper-wrapper {
    animation-duration: 10s;
  }

  /* About Section */
  .about-subtitle {
    width: 280px;
    font-size: 14px;
    margin-top: 20px;
  }
  .about-copy {
    font-size: 11px;
    width: 280px;
  }

  /* Discover Section */
  .discover-title {
    font-size: 26px;
  }
  .discover-copy {
    max-width: 315px;
  }
  .discover-title::after {
    width: 40%;
  }
  .card-q {
    font-size: 16px;
  }
  .card-desc {
    font-size: 13px;
  }

  /* Our Product Section */
  .prod-card-lg {
    width: 220px;
    margin: 0 auto;
  }
  .mini-row {
    width: 220px;
    margin: 10px auto 0;
  }

  /* Shop Section */
  .why-title {
    font-size: 20px;
  }
  .lead_para {
    font-size: 12px;
  }
  .why-item h5 {
    font-size: 15px;
  }
  .num {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 16x;
  }
  .why-img {
    width: 100%;
  }
  .why-images > img {
    width: 275px;
    margin: 0 auto;
  }
  .why-images > img:first-child {
    margin: 0 auto;
  }
  .why-images > img:last-child {
    margin-top: -120px;
  }
  .h-para {
    display: inline-block;
    width: 222px !important;
  }
  .why-wrap {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
  .why-list {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    direction: rtl;
    max-height: 400px;
  }
  .why-item {
    text-align: center;
  }

  /* Newsletter Section */
  .newsletter-copy {
    position: relative;
    padding: 60px 12px 20px;
    text-align: center;
    border-radius: 26px;
    overflow: visible;
  }
  .newsletter-model {
    position: absolute;
    left: 50%;
    top: -80px;
    transform: translateX(-50%);
    display: block;
    width: 435px !important;
    max-width: none !important;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
    pointer-events: none;
  }
  .nl-kicker {
    font-size: 25px;
  }
  .nl-title {
    font-size: 40px;
  }
  .nl-input {
    width: 265px;
    height: 44px;
    margin: 12px auto 0;
    padding: 4px;
  }
  .nl-field {
    font-size: 13px;
    padding: 0 10px;
  }
  .nl-field::placeholder {
    font-size: 12px;
  }
  .nl-btn {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin-left: -20px;
  }

  /* Customer Section */
  .customer-title {
    font-size: 20px;
  }
  .customer-subtitle {
    font-size: 16px;
    margin-bottom: -30px;
  }
  .accordion-items {
    min-height: 80px;
    padding: 12px;
  }
  .profile-img {
    height: 52px;
    width: 52px;
    flex: 0 0 52px;
  }
  .accordion-items > h3 {
    font-size: 0.98rem;
  }
  .accordion-items > p {
    font-size: 12px;
  }
  .accordion-items::after,
  .accordion-items::before {
    display: none !important;
  }
  .accordion-items:hover .timings-arrow {
    display: flex;
    justify-content: center;
    margin-top: 8px;
  }
  .timings-arrow > div:first-child::before {
    width: 16px;
    height: 16px;
  }

  /* Beauty Journal Scetion */
  .journal-wrap {
    width: 230px;
    margin: 16px auto;
  }
  .journal-card {
    border-radius: 16px;
  }
  .journal-mini {
    font-size: 12px;
    padding: 8px 9px;
    border-radius: 40px;
  }
  .journal-wrap:hover {
    transform: none;
  }
  .journal-wrap:hover .journal-card {
    transform: none;
  }
  .journal_title {
    font-size: 16px;
    text-align: center;
  }
  .para-span > .journal-span {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }
  .journal-wrap {
    text-align: center;
  }
  .j-span {
    flex-direction: column;
  }

  /* Batch Section */
  .batch {
    flex: 0 0 calc(100% - 24px);
    justify-content: center;
    text-align: center;
  }
  .batch:nth-of-type(3) {
    margin-bottom: 40px;
  }

  /* Footer Section */
  .footer-block {
    margin-top: 0;
  }
  .span-para {
    font-size: 11px;
  }
  .custom-40,
  .custom-20 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-copy {
    padding: 70px 20px 40px;
    text-align: center;
  }
  .footer-col {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
  .footer-brnad {
    margin-bottom: 10px;
    text-align: center;
  }
  .outer {
    font-size: 40px;
    line-height: 1;
  }
  .inner {
    font-size: 60px;
  }
  .about-text span {
    display: block;
    max-width: 95%;
    margin: 10px auto 24px;
    line-height: 1.6;
  }
  .payments {
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 26px;
  }
  .payments li {
    margin: 6px;
  }
  .pay-card {
    width: 72px;
    height: 40px;
  }
  .footer-block,
  .footer-block li,
  .footer-block a,
  .block-title span {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer-block li {
    margin: 8px 0;
  }
  .footer-block a {
    display: inline-block;
    margin: 0 6px;
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .footer-block a:hover {
    color: var(--secondary-text-color);
  }
  .block-title span {
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
  }
  .socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .socials li {
    margin: 6px 10px;
  }
  .soc {
    width: 38px;
    height: 38px;
  }
  .footer-sep {
    margin: 24px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 8px;
  }
  .footer-bottom li {
    margin: 6px 0;
  }
  .about-text span {
    width: 250px;
    margin: 20px auto;
  }
  .footer-col {
    margin-bottom: 10px;
  }
  .footer-bottom span {
    font-size: 12px;
  }
}

/* Special Media Queries */
/* <=860px */
@media screen and (max-width: 860px) {
  /* Our Product Section */
  .prod-card-lg {
    width: 260px;
  }
  .prod-mini {
    width: 200px;
  }
}

/* <=425px */
@media screen and (max-width: 425px) {
  /* Our Product Section  */
  .product_title {
    text-align: center;
    margin-bottom: 10px;
  }
  .para-span .line {
    display: none;
  }
  .para-span {
    flex-direction: column;
  }
  .arrow-wrap {
    margin-top: 10px;
  }
}

/* <=320px */
@media screen and (max-width: 320px) {
  /* Our Product Section */
  .prod-card-lg {
    width: 220px;
    margin: 0 -10px;
  }
}
