* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #fff;
  overflow-x: hidden;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
body,
html {
  scroll-behavior: smooth;
}
.container {
  max-width: 1790px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.top-bar {
  background-color: #1d2d3d;
  color: #fff;
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 1px;
}
.top-bar-content {
  text-align: center;
}
.top-bar-content a {
  color: rgba(255, 255, 255, 0.742);
  text-decoration: none;
  transition: all 0.3s linear;
}
.top-bar-content a:hover {
  color: #d4af37;
}
.logo-section {
  padding: 20px 0 2px 0;
  border-bottom: 1px solid #f2f2f2;
  transition: all 0.3s ease;
}
.logo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
}
.search-box i {
  color: #444;
  font-size: 16px;
}
.search-box input {
  border: none;
  border-bottom: 1px solid #ddd;
  margin-left: 10px;
  width: 200px;
  outline: none;
  font-size: 13px;
  padding: 5px;
}
.logo-main {
  text-align: center;
}
.logo-main a {
  display: block;
  max-width: 145px;
}
.logo-main h1 {
  font-weight: 200;
  letter-spacing: 8px;
  color: #d4b097;
  text-transform: lowercase;
  font-size: 35px;
}
.icon-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.icon-box i {
  margin-left: 20px;
  cursor: pointer;
  color: #444;
  font-size: 18px;
  transition: all 0.3s ease;
}
.icon-box i:hover {
  color: #aa8c2c;
}
nav.nav-bar {
  background: #fff;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  position: relative;
}
.sticky-logo {
  display: none;
  font-weight: 200;
  color: #d4b097;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 3px;
  margin-right: 40px;
}
.sticky-right-group {
  display: none;
  align-items: center;
  margin-left: auto;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  padding: 0 12px;
}
.nav-links li a {
  text-decoration: none;
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #d4b097;
}
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.5s linear;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.is-sticky .sticky-logo {
  display: block;
}
.is-sticky .sticky-logo img {
  max-width: 50px;
  padding: 10px 0;
}
.is-sticky .sticky-right-group {
  display: flex;
}
.is-sticky .nav-inner {
  justify-content: flex-start;
}
.hamburger {
  display: none;
  cursor: pointer;
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 2000;
  margin-left: 20px;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}
.hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}
.bg-dark-blue {
  background-color: #2c364c;
}
.bg-white .text-wrapper {
  background-color: white;
  color: black;
}
.bg-gold {
  background-color: #c5a045;
  background: linear-gradient(135deg, #d4af37 0%, #aa8c2c 100%);
}
.banner-section {
  width: 100%;
  overflow: hidden;
}
.banner-section-4 {
  padding: 50px 0;
}
.banner-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.banner-col {
  flex: 0 0 50%;
  padding: 0 15px;
  display: flex;
}
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 450px;
}
.text-wrapper {
  padding: 60px;
  width: 100%;
  color: #fff;
}
.sparkle-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 15px;
}
.banner-title {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: "Times New Roman", serif;
}
.banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
  font-family: Arial, sans-serif;
  max-width: 500px;
}
.image-col {
  position: relative;
  padding: 0;
}
.banner-image {
  width: 100%;
  height: 100%;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  display: block;
}
.img-sustainable {
  background-image: url("images/same-banner-img-1.png");
}
.img-gold {
  background-image: url("images/same-banner-img-2.png");
  background-color: #d4af37;
}
.img-unique {
  background-image: url("images/same-banner-img-3.png");
  background-color: #999;
}
.img-crafted {
  background-image: url("images/same-banner-img-4.png");
}
.img-exquisite {
  background-image: url("images/same-banner-img-5.png");
}
h2.section-title {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #2c364c;
  margin-bottom: 30px;
  line-height: 1.2;
}
.gift-section a {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}
.gift-section a:hover {
  opacity: 0.9;
}
.gift-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.gift-col {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}
.gift-section {
  padding: 60px 0;
}
.gift-image-wrapper {
  overflow: hidden;
  background-color: #f4f4f4;
}
.gift-image-wrapper img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: all 0.3s linear;
}
.gift-image-wrapper img:hover {
  transform: scale(1.2);
}
.main-banner {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-image: url("images/hero.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}
.cmn-banner {
  min-height: 171px;
  height: 60vh;
  background-image: url("images/about-her-banner.png");
  background-attachment: fixed;
}
.banner-content {
  max-width: 650px;
  width: 100%;
}
.banner-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 400;
}
.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}
.cmn-ban-content h1 {
  font-size: 50px;
  color: black;
}
.banner-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.ban-btn {
  display: inline-block;
  padding: 15px 35px;
  /* margin: 0 10px 10px 10px; */
  /* margin-left: 10px; */
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  color: #333;
  background-color: white;
  transition: all 0.3s;
  font-family: sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}
.ban-btn:hover {
  background-color: #cbb39e;
  color: white;
}
.ban-margin-btn {
  margin: 0 10px 10px 10px;
}
.about-btn {
  background: #cbb39e;
  color: white;
  border: 1px solid #cbb39e;
}
.about-btn:hover {
  background: none;
  color: black;
  border: 1px solid #cbb39e;
}
.dark-bg-btn {
  background: #2e394b;
  color: white;
  border: 1px solid #2e394b;
}
.dark-bg-btn:hover {
  border: 1px solid #2e394b;
  color: black;
  background: transparent;
}
.section-title {
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  color: #1d2d3d;
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: start;
}
.category-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.cat-card {
  display: block;
  text-decoration: none;
}
.cat-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  position: relative;
}
.cat-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-img-wrapper img {
  transform: scale(1.1);
}
.cat-name {
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.cat-card:hover .cat-name {
  color: #d4b097;
}
.top-styles-section {
  padding: 20px 0 80px 0;
  background: #fff;
}
.product-card {
  text-align: center;
  background: #fff;
  cursor: pointer;
}
.prod-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 20px;
}
.prod-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .prod-img-box img {
  transform: scale(1.05);
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d2d3d;
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
  text-transform: capitalize;
  z-index: 10;
  letter-spacing: 0.5px;
  /* border: 1px solid white; */
}
.prod-info h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #444;
  margin-bottom: 8px;
}
.prod-info p {
  font-size: 0.95rem;
  color: #777;
  font-weight: 500;
}
.custom-nav-btn {
  background-color: #1d2d3d;
  width: 45px;
  height: 45px;
  color: #fff !important;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.custom-nav-btn:hover {
  opacity: 1;
}
.custom-nav-btn:after {
  font-size: 18px !important;
}
.scrolling-banner {
  background-color: #cbb39e;
  overflow: hidden;
  padding: 10px 0;
  color: white;
  font-family: sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.scrolling-track {
  display: inline-block;
}
.scrolling-track span,
.scrolling-track i {
  display: inline-block;
  padding-right: 25px;
  position: relative;
  font-size: 12px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.timmer {
  padding: 50px 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.col {
  position: relative;
  display: flex;
}
.col-7 {
  width: 66.5%;
  margin-right: 1.5%;
}
.col-5 {
  width: 32%;
}
.col-4 {
  width: 32.33%;
  margin-right: 1.5%;
}
.row .col-4:last-child {
  margin-right: 0;
}
.box {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background-color: #fff;
}
.dark-bg {
  background-color: #2c3644;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.box-hover img {
  transition: all 0.3s linear;
}
.box-hover img:hover {
  transform: scale(1.1);
}
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.annual-h2 p {
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 250px;
  margin-bottom: 25px;
  opacity: 0.9;
}
.timer-display {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.time-unit {
  margin: 0 15px;
}
.time-unit span {
  font-size: 2rem;
  display: block;
  font-family: "Playfair Display", serif;
}
.time-unit p {
  font-size: 0.65rem;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 1px;
}
.every-you-section {
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.every-you-swiper {
  padding: 60px 0;
  overflow: visible !important;
}
.ey-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s ease,
    box-shadow 0.8s ease;
  opacity: 0.5;
  transform: scale(0.9);
  border-radius: 4px;
}
.ey-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: all 0.8s ease;
}
.ey-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}
.ey-content h3 {
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.swiper-slide-active.ey-slide {
  opacity: 1;
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.swiper-slide-active .ey-content {
  opacity: 1;
  transform: translateY(0);
}
.ey-nav-btn {
  background-color: #1d2d3d;
  width: 50px;
  height: 50px;
  color: #fff !important;
  border-radius: 50%;
  transition: all 0.3s;
}
.ey-nav-btn:hover {
  background-color: #cbb39e;
  transform: scale(1.1);
}
.ey-nav-btn:after {
  font-size: 18px !important;
}
.jewelry-slider-section {
  /* padding-top: 50px; */
  background-color: #fff;
}
.jewelrySwiper {
  width: 100%;
  padding: 10px 0;
  display: flex;
}
.jewelry-slider {
  padding: 0 10px;
}
.jewelry-slider img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.logo-slider {
  padding: 25px 0;
  background: #fff;
  overflow: hidden;
}
.logo-slide-track {
  display: flex;
  width: 100%;
  animation: scroll 25s linear infinite;
}
.logo-slide-track img {
  max-width: 125px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-slide-track figure {
  padding-right: 50px;
}
.collection {
  padding: 25px 0;
}
.coll-h1 {
  color: white;
}
.collection-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;

  align-items: center;
}
.collection-main {
  position: relative;
  flex: 1.2;
}
.collection-main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.coll-overlay-text {
  position: absolute;
  bottom: 40px;
  left: 30px;
  color: #fff;
}
.coll-overlay-text h1 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
.collection-grid {
  flex: 1;
  display: flex;
  justify-content: center;
}
.collection-item {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.coll-left {
  padding-left: 10px;
}
.coll-right {
  padding-left: 10px;
}
.collection-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.3s ease;
}
.coll-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f4f1ea;
  color: #444;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-small {
  position: absolute;
  bottom: 15px;
  left: 25px;
  padding: 8px 15px;
  background-color: #f4f1ea;
  color: #444;
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.coll-btn:hover,
.btn-small:hover {
  background-color: #e5e2d9;
}
.testimonial {
  padding: 40px 0;
  text-align: center;
}
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 33.333%;
  box-sizing: border-box;
  padding: 0 25px;
}
.testi-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  overflow: hidden;
}
.testi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stars {
  color: #1a2a3a;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testimonial-card h2 {
  font-size: 30px;
  font-weight: 400;
  color: #4a5a6a;
  margin: 0 0 15px 0;
}
.testimonial-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 25px auto;
  max-width: 300px;
}
.author {
  display: block;
  color: #888;
  font-size: 18px;
  font-style: italic;
}
.testi-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2b3a4a;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.testi-nav-btn:hover {
  opacity: 0.8;
}
.testi-prev {
  left: 10px;
}
.testi-next {
  right: 10px;
}
.pagination {
  padding: 40px 0;
}
.pagi-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.pagi-col {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
}
.col-sidebar {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.pagi-card {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.pagi-image-wrapper {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
}
.main-img-height {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
}
.side-img-height {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
}
.pagination-nav {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #1a202c;
  color: white;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 2px;
  user-select: none;
}
.pagination-nav i {
  cursor: pointer;
  padding: 5px;
  font-size: 12px;
}
.pagination-nav span {
  font-size: 13px;
  margin: 0 10px;
  min-width: 35px;
  text-align: center;
}
.pagi-info {
  padding-top: 12px;
}
.pagi-name {
  font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 4px;
}
.pagi-price {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}
.pagi-stars {
  font-size: 10px;
  letter-spacing: 1px;
}
.review-count {
  font-size: 11px;
  color: #718096;
  margin-left: 5px;
  font-weight: normal;
}
.feature {
  margin: 0;
  padding: 50px 20px;
  background-color: var(--bg-color);
  font-family: "Montserrat", sans-serif;
}
.feature-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
.feature-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-circle {
  width: 45px;
  height: 45px;
  background-color: var(--icon-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #444;
  font-size: 30px;
}
.feature-item h3 {
  font-family: "Cinzel", serif;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  color: var(--text-heading);
  font-weight: 400;
}
.feature-item p {
  font-size: 12px;
  color: var(--text-main);
  margin: 0;
  line-height: 1.4;
}
.footer {
  background-color: #1d2d3d;
  color: #fff;
  padding-top: 30px;
  font-size: 14px;
}
.footer-newsletter {
  text-align: center;
  padding-bottom: 40px;
}
.footer-heading-large {
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
  display: block;
}
.footer-sub-text {
  color: #b0b0b0;
  margin-bottom: 30px;
  font-size: 1rem;
  display: block;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 13px;
  margin-right: 10px;
}
.newsletter-input::placeholder {
  color: #888;
}

.newsletter-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #1d2d3d;
  border: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #1d2d3d;
}
.newsletter-btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid white;
}
.footer-content-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.footer-col {
  padding: 0 20px;
  margin-bottom: 30px;
}
.col-brand {
  width: 35%;
}
.col-links {
  width: 20%;
}
.footer-col-title {
  font-family: "Times New Roman", serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 25px;
  display: block;
  letter-spacing: 0.5px;
}
.footer-desc {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 300px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.2s linear;
  font-size: 13px;
  display: inline-block;
}
.footer-links a:hover {
  color: #cbb39e;
  transform: translateX(5px);
}
.social-links {
  display: flex;
}
.social-icon {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
  margin-right: 15px;
}
.social-icon:last-child {
  margin-right: 0;
}
.social-icon:hover {
  background-color: #cbb39e;
  border-color: #cbb39e;
  color: #fff;
}

/* Stat Section */
.stat-section {
  background-color: #ede0cf;
  padding: 30px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
}
.counter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.counter-item {
  flex: 1;
  min-width: 250px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 50px;
  color: #2c3e50;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  color: #5d5d5d;
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* Second Features Section */
.second-features {
  padding: 20px 0;
  text-align: center;
}
.second-feature-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: "Arial", sans-serif;
  color: #333;
}
.second-feature-item {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -5px;
  width: 60px;
  height: 60px;
  background-color: #f0f0f0;
  border-radius: 50%;
  z-index: -1;
}
.icon-wrapper img {
  width: 50px;
  height: auto;
  display: block;
}
.feature-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #555;
  max-width: 150px;
  text-transform: capitalize;
}

/* --- Team Section --- */
.team-section {
  padding: 10px 0 10px 0;
  background-color: #ffffff;
  width: 100%;
}
.team-swiper-slider {
  width: 100%;
  overflow: hidden;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.image-box {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  margin-bottom: 25px;
  overflow: hidden;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #222;
  margin-bottom: 10px;
}
.member-role {
  font-size: 14px;
  color: #777;
  text-transform: capitalize;
  letter-spacing: 0.8px;
}
.custom-pagination {
  margin-top: 40px;
  position: relative !important;
}
.swiper-pagination-bullet-active {
  background: #2c3e50 !important;
}

/* Video Section */
.video-section {
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.video-content {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  background-color: #000;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.5s ease;
}
.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
  transition: all 0.4s ease;
}
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}
.play-button {
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.play-button::after {
  content: "";
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  margin-left: 5px;
}
.play-overlay:hover .play-button {
  transform: scale(1.2);
}
.video-content:hover {
  filter: brightness(0.7);
}
#video-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
.is-playing .video-thumbnail,
.is-playing .play-overlay {
  display: none;
}
.is-playing #video-frame {
  display: block;
}

/* Contact Form Section Starts */
.contact-section {
  padding: 60px 0;
  background-color: #fff;
  width: 100%;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.contact-info {
  flex: 1;
  min-width: 300px;
  margin: 0 15px 40px 15px;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #2c3e50;
}
.contact-info p.description {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 40px;
}
.info-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.info-item {
  flex: 0 0 50%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 0 10px;
}
.info-text a {
  text-decoration: none;
  color: #777;
}
.contact-icon-box {
  width: 45px;
  height: 45px;
  background-color: #2c3e50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}
.info-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #2c3e50;
}
.info-text p {
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}
.contact-form-wrapper {
  flex: 1;
  min-width: 300px;
  margin: 0 15px;
}

.contact-form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.contact-form-group {
  flex: 1;
  min-width: 200px;
  margin: 0 10px 20px 10px;
}

.contact-form-group.full-width {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 15px;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form-group textarea {
  height: 150px;
  resize: none;
}

.captcha-text {
  font-size: 11px;
  color: #999;
  margin-top: 20px;
  margin-bottom: 20px;
}

.submit-btn {
  background-color: #2c3e50;
  color: #fff;
  padding: 15px 40px;
  border: 1px solid #2c3e50;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: transparent;
  color: #2c3e50;
  border: 1px solid #2c3e50;
}

/* Download App Section */
.download-app-section {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/contact-app-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.download-app-section:hover {
  filter: brightness(0.9);
}
.app-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.app-title {
  font-family: "Playfair Display", serif;
  font-size: 35px;
  margin-bottom: 25px;
  line-height: 1.2;
}
.app-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-weight: 300;
}
.button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.app-btn {
  display: inline-block;
  margin: 10px 15px;
  transition: transform 0.3s ease;
}
.app-btn:hover {
  transform: translateY(-5px);
}
.app-btn img {
  height: 50px;
  display: block;
}

/* FAQs Section */
.faq-section {
  padding: 100px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
}
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.tab-btn {
  font-family: "Playfair Display", serif;
  text-decoration: none;
  font-size: 24px;
  padding: 15px 40px;
  cursor: pointer;
  border: 1px solid #34495e;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 250px;
  margin: 10px;
  background-color: #34495e;
  color: #ffffff;
}
.tab-btn:hover {
  background: transparent;
  color: black;
  border: 1px solid black;
}
.tab-btn.active {
  background-color: #ffffff;
  color: #34495e;
}
.accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  border-bottom: 2px solid #ddd;
}
.accordion-header {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #555;
  transition: color 0.3s;
}
.accordion-header h4 {
  font-size: 18px;
  font-weight: 400;
}
.accordion-header i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.accordion-content {
  display: none;
  padding-bottom: 25px;
  color: #777;
  line-height: 1.6;
  font-size: 15px;
}
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

/* Whishlist Section */
.wishlist-section {
  font-family: "Inter", sans-serif;
  padding: 50px 0 20px 0;
  width: 100%;
}
.wishlist-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.wishlist-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #f9f9f9;
}
.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wishlist-item:hover img {
  transform: scale(1.05);
}
.remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-color: rgba(44, 62, 80, 0.8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 12px;
  border: none;
  transition: background-color 0.3s;
}
.remove-btn:hover {
  background-color: #000;
}
.product-name {
  font-size: 16px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 400;
}
.product-price {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

/* Login Signup Modal */
.trigger-link {
  font-size: 18px;
  color: #2d3e50;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 10px;
}
.auth-modal {
  background-color: #2d3e50;
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  padding: 40px 25px;
  position: relative;
  color: #fff;
  text-align: center;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.modal-header h2 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.social-box {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #2d3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  text-decoration: none;
  font-size: 16px;
}
.or-divider {
  font-size: 12px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.inner-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  color: #2d3e50;
  text-align: left;
}
.inner-card h3 {
  font-size: 19px;
  margin-bottom: 5px;
}
.inner-card .subtext {
  font-size: 11px;
  color: #777;
  margin-bottom: 15px;
}
.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  padding: 10px;
}
.input-group i {
  margin-right: 10px;
  color: #2d3e50;
  font-size: 13px;
}
.input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}
.phone-prefix {
  display: flex;
  align-items: center;
  margin-right: 8px;
  font-size: 13px;
  border-right: 1px solid #ddd;
  padding-right: 8px;
}
.phone-prefix img {
  width: 16px;
  margin-right: 4px;
}
.check-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 11px;
  color: #555;
}
.check-row input {
  margin-right: 8px;
  margin-top: 2px;
}
.check-row a {
  color: #2d3e50;
  text-decoration: underline;
}
.login-submit-btn {
  width: 100%;
  background: #2d3e50;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 8px 0;
}
.auth-view {
  display: none;
}
.auth-view.active {
  display: block;
}
.modal-footer {
  margin-top: 20px;
}
.modal-footer a {
  color: #fff;
  font-size: 11px;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.modal-footer a span {
  text-decoration: underline;
  cursor: pointer;
}

/* --- Shop All Section --- */
.shop-section {
  padding: 40px 0;
  width: 100%;
  background-color: #fff;
}
.shop-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.cat-side-bar {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 15px;
}
.main-content {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 15px;
}
.cat-side-bar-widget {
  margin-bottom: 40px;
}
.cat-side-bar-widget h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.category-list {
  list-style: none;
}
.category-list li {
  margin-bottom: 12px;
}
.category-list a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  transition: color 0.3s;
}
.category-list a:hover {
  color: #2c3e50;
}
.price-range-info {
  font-size: 14px;
  color: #777;
  margin-top: 15px;
}
input[type="range"] {
  width: 100%;
  cursor: pointer;
  accent-color: #2c3e50;
}
.filter-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}
.filter-item input {
  margin-right: 10px;
}
.filter-item span {
  margin-left: 10px;
  color: #999;
}
.more-filters {
  display: inline-block;
  margin-top: 10px;
  color: #2c3e50;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;
}
.shop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.shop-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  width: 100%;
  margin-bottom: 15px;
}
.results-count {
  font-size: 14px;
  color: #888;
}
.sort-options {
  display: flex;
  align-items: center;
}
.sort-options span {
  font-size: 14px;
  margin-right: 10px;
}
.sort-options select {
  padding: 5px 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.cat-product-card {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding: 0 10px;
  margin-bottom: 30px;
  text-align: center;
}
.product-img {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}
.cat-product-card h4 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #444;
}
.cat-product-card .price {
  font-size: 14px;
  color: #888;
}

/* img shine */
.shine-effect {
  position: relative;
  overflow: hidden;
}
.shine-effect::after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}
.shine-effect:hover::after {
  opacity: 1;
  top: -30%;
  left: -30%;
  transition-property: left, top;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}
.shine-effect:active::after {
  opacity: 0;
}

/* Auto Shine Effect */
.auto-shine-effect {
  position: relative;
  /* cursor: pointer; */
  overflow: hidden;
}
.auto-shine-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-25deg);
  animation: shine-anim 3s infinite linear;
}
@keyframes shine-anim {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Typing Effect Styles */
#typed-text {
  color: white;
}
.typed-cursor {
  font-size: 50px;
  color: #cbb39e;
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Media Query Starts From Here */
@media (max-width: 1024px) {
  .nav-inner {
    min-height: auto;
  }
  .logo-main a {
    max-width: 60px;
  }
  .hamburger {
    display: block;
  }
  .search-box,
  .nav-links {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-links li {
    margin: 0;
    border-bottom: 1px solid #f9f9f9;
    width: 100%;
  }
  .nav-links li a {
    padding: 15px 25px;
    display: block;
    font-size: 16px;
  }
  .logo-main h1 {
    font-size: 28px;
  }
  .search-box {
    display: none;
  }
}

@media (max-width: 992px) {
  .main-banner {
    height: 60vh;
  }
  .banner-col {
    flex: 0 0 100%;
    height: auto;
  }
  .content-col {
    min-height: auto;
  }
  .banner-image {
    min-height: 350px;
  }
  .text-wrapper {
    padding: 50px 30px;
  }
  .reverse-mobile {
    flex-direction: column-reverse;
  }
  /* timming section */
  .box {
    height: 280px;
  }
  h2 {
    font-size: 1.8rem;
  }
  .col-brand {
    width: 100%;
    margin-bottom: 40px;
  }
  .col-links {
    width: 33.33%;
  }
  .footer-desc {
    max-width: 100%;
  }
  .stat-number {
    font-size: 55px;
  }
  .wishlist-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .cat-side-bar {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .main-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cat-product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
  input[type="range"] {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .ban-btn {
    width: 40%;
    text-align: center;
  }
  .cat-img-wrapper {
    width: 120px;
    height: 120px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  h2.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .gift-col {
    width: 100%;
    margin-bottom: 30px;
  }
  .gift-col:last-child {
    margin-bottom: 0;
  }
  .col-7,
  .col-5,
  .col-4 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .box {
    height: auto;
    min-height: 250px;
  }
  .row {
    margin-bottom: 0;
  }
  .ey-slide img {
    height: 400px;
  }
  .section-title {
    font-size: 2rem;
  }
  .swiper-slide-active.ey-slide {
    transform: scale(1.05);
  }
  .ey-slide {
    transform: scale(0.95);
  }
  .collection-content {
    flex-direction: column;
  }
  .collection-grid {
    width: 100%;
  }
  .overlay-text h1 {
    font-size: 1.8rem;
  }
  .testimonial-card {
    min-width: 50%;
  }
  .pagi-col,
  .col-sidebar {
    width: 100%;
  }
  .main-img-height {
    aspect-ratio: 5 / 3;
  }
  .collection-main {
    padding-bottom: 10px;
  }
  .coll-left {
    padding-left: 0;
  }
  .stat-section {
    padding: 60px 0;
  }
  .counter-item {
    flex: 0 0 100%;
    margin-bottom: 40px;
  }
  .counter-item:last-child {
    margin-bottom: 0;
  }
  .stat-number {
    font-size: 30px;
  }
  .stat-label {
    font-size: 14px;
  }
  /* Contact */
  .info-item {
    flex: 0 0 100%;
  }
  .contact-info h2 {
    font-size: 32px;
  }
  .tab-btn {
    flex: 0 0 100%;
    font-size: 20px;
  }
  .accordion-header h4 {
    font-size: 16px;
  }
  .wishlist-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .nav-links li a {
    padding: 10px 25px;
    font-size: 10px;
  }
  .ban-btn {
    width: 60%;
    text-align: center;
  }
  .main-banner {
    height: 55vh;
  }
  .icon-box .cart {
    display: none;
  }
  .banner-title {
    font-size: 2rem;
  }
  .banner-text {
    font-size: 1rem;
  }
  .text-wrapper {
    padding: 40px 20px;
  }
  .testimonial-card {
    min-width: 100%;
  }
  .footer-newsletter {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-input {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .newsletter-btn {
    width: 100%;
  }
  .col-links {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .col-brand {
    text-align: center;
  }
  .footer-desc {
    margin: 0 auto 20px auto;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-section {
    padding: 10px 0;
  }
  .ey-slide img {
    height: 350px;
  }
  .ey-nav-btn {
    display: none;
  }
  .ey-content h3 {
    font-size: 1.5rem;
  }
  .feature-item {
    flex: 0 0 100%;
  }
  /* login */
  .auth-modal {
    padding: 30px 15px;
  }
  .modal-header h2 {
    font-size: 18px;
  }
  .inner-card {
    padding: 15px;
  }
  .inner-card h3 {
    font-size: 17px;
  }
  .social-btn {
    width: 34px;
    height: 34px;
    margin: 0 4px;
  }
  .phone-prefix {
    font-size: 12px;
    padding-right: 5px;
  }
  .cat-product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .shop-header h2 {
    font-size: 28px;
  }
  .sort-options {
    width: 100%;
    margin-top: 15px;
    justify-content: space-between;
  }
  input[type="range"] {
    width: 70%;
  }
}

@media (max-width: 426px) {
  .banner-content h1 {
    font-size: 32px;
  }
  .ban-btn {
    width: 100%;
    text-align: center;
    padding: 10px 25px;
  }
  .custom-nav-btn {
    display: none;
  }
  .coll-overlay-text h1 {
    font-size: 1.5rem;
  }
  .btn-small {
    left: 17px;
    padding: 5px 1px;

    font-size: 10px;
  }
}

@media (max-width: 320px) {
  .top-bar-content {
    font-size: 9px;
  }
  .banner-content h1 {
    font-size: 25px;
    line-height: 1;
  }
  .container {
    padding: 0;
  }
  .banner-row {
    margin: 0;
  }
  .banner-col {
    padding: 0;
  }
  .text-wrapper {
    padding: 30px 15px;
  }
  .banner-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .banner-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  .banner-image {
    min-height: 250px;
  }
  h2.section-title {
    font-size: 1.6rem;
  }
  .container {
    padding: 0 15px;
  }
  .main-banner {
    height: 80vh;
  }
  .shop-header h2 {
    font-size: 24px;
  }
  input[type="range"] {
    width: 100%;
  }
}
