* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Almarai";
  color: var(--text);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Almarai";
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-family: "Almarai";
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3.2rem;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #777;
}

.hero {
  display: flex;
  align-items: center;
  height: 100vh;
}

.hero-flex {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 0 0 49%;
  padding-inline: 10px;
  padding-right: 40px;
}

.hero-image {
  flex: 0 0 49%;
}

.hero-image img {
  width: 100%;
}

section.hero.hero-custom {
  margin-top: 50px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 500;
  color: #000 !important;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 34.6px;
}

button.discovery-btn {
  background-color: #000;
  color: #fff;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-transform: uppercase;
}

.hero p {
  font-size: 14px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

button.discovery-btn:hover {
  background: white;
  color: black;
  border: 1px solid;
}

.same-btn {
  display: inline-block;
  padding: 13px 34px;
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  max-width: 300px;
  margin: 0 auto;
}

.same-btn:hover {
  background-color: transparent;
  color: #1a1a1a;
}

.hero .same-btn:hover {
  background-color: transparent;
  color: #000;
  border-color: #000;
}

.category-slider {
  background-color: #f5f5f5;
  position: relative;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 0 20px;
}

.category-card {
  background-color: white;
  padding: 40px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(200, 169, 126, 0.1),
      transparent);
  transition: left 0.7s ease;
}

.category-card:hover:before {
  left: 100%;
}

.category-card h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.category-card p {
  margin-bottom: 30px;
  flex-grow: 1;
  font-size: 16px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slider-dot.active {
  background-color: #000;
}

.slider-dot:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid #000;
  opacity: 0;
  transition: all 0.3s ease;
}

.slider-dot.active:after {
  opacity: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto !important;
  padding-inline: 10px;
}

/* fragrance-grid */
.fragrance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.fragrance-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.fragrance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 280px;
  width: 100%;
  background-size: cover;
  background-position: center top;
  position: relative;
  background-repeat: no-repeat;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      transparent 100%);
  color: white;
  padding: 20px;
}

.container3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.card-title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 400;
  color: white;
}

.card-subtitle {
  font-size: 16px;
  opacity: 0.8;
  font-weight: 300;
}

.card-content {
  padding: 25px;
}

.card-description {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.card-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-cta:hover {
  background-color: #6b5a45;
}

.highlight {
  color: #8b7355;
  font-weight: 500;
}

.product-content {
  padding-inline: 20px !important;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  line-height: 20px;
  min-height: 100px;
}

.product-card .subtitle {
  font-style: italic;
  color: #777;
  margin-bottom: 15px;
}

/* here is the collection css start */
.collections {
  display: block;
  padding-block: 40px !important;
  padding-inline: 16px;
}

.collections h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  position: relative;
}

.collections h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #000;
}

.collections p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.product-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-inline: 12px;
}

.sellers-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-size: cover;
  width: 100% !important;
}

.sellers-card-1 {
  background-image: url("https://scontent.cdninstagram.com/v/t51.75761-15/491899287_18494099092025934_7862307879398696805_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=MzYyMTk5MTY3ODQwNTczODM4Ng%3D%3D.3-ccb1-7&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTQ0MC5zZHIuQzMifQ%3D%3D&_nc_ohc=5rrRKQkhSO4Q7kNvwGXFOd7&_nc_oc=Adn2zJGa6vA3Jo5MaH8Q7WhT38S0TQH8pvQOu0a0BKuSqRiyTBq7_SFan-xJtK0iMoQPU8vSiCAYa6eMliPZHp8T&_nc_ad=z-m&_nc_cid=1174&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=fRPBrl-jRZeJijMcWDT3RA&oh=00_AfeNbR4QPujwbc1z-OcQ240_m27tfkjEv4RQkY1vXX2N5w&oe=68F54D84");
}

.sellers-card-2 {
  background-image: url("https://min.com/wp-content/uploads/2025/10/Scent-Stories-Banner.jpg");
}

.sellers-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 96%) 0%,
      rgb(0 0 0 / 97%) 100%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
  transition: all 0.4s ease;
}

.sellers-card:hover .overlay {
  background: #2826268a !important;
  opacity: 1;
}

.sellers-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: #fff;
  transform: translateY(20px);
  opacity: 1;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.sellers-card-1 .btn {
  background-color: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.sellers-card-1 .btn:hover {
  background-color: #f0f0f0;
}

.sellers-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: white !important;
}

.sellers-card .subtitle {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.sellers-card p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  max-width: 90%;
  opacity: 0.9;
  letter-spacing: 1.2px;
}

.accordion-content p {
  margin: 0;
}

.sellers-card .btn {
  background: 0 0 !important;
  color: #fff;
  border: none !important;
  text-decoration: underline !important;
  text-align: left;
}

.sellers-card .btn:hover {
  color: #333;
}

section.signature {
  background-color: #000;
  background-image: linear-gradient(rgba(192, 192, 192, 0.15),
      rgba(0, 0, 0, 0.6)),
    url("https://i.pinimg.com/736x/d3/08/a4/d308a4ad1d459bd198389b9cea108a63.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 0;
  text-align: center;
  background-attachment: fixed;
}

section.signature .container {
  padding: 0 !important;
}

.content-container {
  text-align: center;
}

h1.headline.animate-text {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2rem);
  max-width: 800px;
  margin: 0 auto 20px;
}

.subheadline.animate-text {
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-button {
  background: #fff;
  color: #000;
  padding: 13px 30px;
  display: inline-flex !important;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  font-size: 15px;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.fragrance-names {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
  justify-content: center;
}

.fragrance-name {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

a.fragrance-name:hover {
  transform: scale(1.05);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  transition: transform 0.3s ease, text-decoration 0.3s ease;
}

.slick-dots li.slick-active {
  border: 1px solid #000;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  font-size: 9px;
}

.slick-dots {
  bottom: -50px;
}

.content-container {
  text-align: center;
  background: #0000003b;
  padding: 100px 80px;
  border-radius: 4px;
}

.product-content .btn {
  margin-bottom: 20px !important;
}

.product-section {
  padding: 40px 20px;
  margin-top: 40px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.product-item {
  list-style: none;
  text-align: center;
  position: relative;
  background: #fff;
  transition: 0.3s ease;
}

button.wishlist-btn svg {
  width: 32%;
}

.wishlist {
  position: absolute;
  bottom: 69px;
  right: 0px;
  z-index: 9;
  width: 15%;
}

.hero-inner ul li {
  padding-right: 14px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  gap: 3px;
  font-size: 16px;
}

.hero-inner ul {
  padding-left: 0px !important;
  margin-left: 0px;
}

.wishlist-btn {
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: black;
  padding: 0 !important;
  justify-content: flex-start;
}

.wishlist-btn:hover {
  transform: scale(1.2);
}

.product-image img {
  width: 100%;
  transition: opacity 0.3s ease;
  height: 250px;
  object-fit: contain;
}

.product-image img {
  width: 100%;
  transition: opacity 0.3s ease;
}

.product-image .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: #fff;
}

.product-image:hover .hover-img {
  opacity: 1;
  object-position: left;
}

.product-subtitle {
  color: #777;
  font-size: 12px;
  margin: 0;
}

.product-title {
  font-size: 16px;
  margin: 0;
  line-height: 15px;
  text-transform: uppercase !important;
}

.product-price {
  font-size: 15px;
  color: #000;
  margin: 0;
}

.product-size {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.add-to-cart {
  border: none;
  background: #fff;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 25px;
  height: 25px;
  border-radius: 20px;
  padding: 6px;
  position: absolute;
  top: 0;
  left: 90%;
  z-index: 1;
}

.product-info {
  text-align: left;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 2px !important;
  z-index: 10;
  position: relative;
}

/*   body wash collection css start here   */
.collection-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
}

.collection-card {
  position: relative;
  flex: 1 1 400px;
  min-height: 730px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  transition: all 0.4s ease;
}

section.collection-section a {
  width: 49%;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.8));
}

.content {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.subheading {
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.content h2 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase !important;
}

.discover {
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease;
}

.discover:hover {
  opacity: 0.8;
}

/*    accordian css start here  */
.container2 {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  align-items: flex-start;
  gap: 40px;
}

.accordion {
  flex: 1 1 45%;
  min-width: 300px;
}

.accordion h2 {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 500;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: #777;
}

.accordion-header h3 {
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion-content p {
  font-size: 16px;
}

.accordion-header button {
  color: black;
  border: 1px solid;
}

.accordion-header span {
  color: #999;
}

.accordion-content button a {
  background: black;
  color: white;
}

.accordion-content button {
  margin-block: 20px;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* --- Slider Section --- */
.slider-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}

section.slider-inner {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 15px;
}

header.site-header {
  position: sticky;
  top: 0;
  width: 100% !important;
  padding-top: 15px;
}

.hero-image1 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image1 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: transform 1.2s ease-in-out;
}

.hero-content1 {
  width: 50%;
  padding-left: 60px;
}

.hero-content1 h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content1 p {
  font-size: 16px !important;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.discovery-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.discovery-btn:hover {
  background: #333;
}

/* Pagination */
.pagination {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.pagination span {
  width: 2px;
  height: 40px;
  background: #ccc;
  transition: 0.3s;
  cursor: pointer;
}

.pagination span.active {
  background: #000;
  transform: scale(1.3);
}

.hero-inner {
  max-width: 65%;
  margin: 0 auto;
}

.accordion-header button {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header button:hover {
  background: #000;
  color: #fff;
}

.accordion-content {
  display: none;
  padding: 15px 0 0 35px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.accordion-item.active .accordion-content {
  display: block;
}

.right-image {
  flex: 1 1 45%;
  min-width: 300px;
  position: relative;
}

.hero-inner ul li svg {
  width: 17px;
}

.hero-inner p {
  margin: 0;
  padding-bottom: 10px;
  color: black !important;
}

.right-image img {
  width: 100%;
  border-radius: 8px;
  transition: opacity 0.5s ease;
  object-fit: cover;
}

.accordion-content button {
  background: black;
}

button.wishlist-icon {
  color: #000 !important;
}

a.wishlist-toggle img {
  position: relative;
  width: 16px !important;
  height: 15px;
}

.icon_above_image {
  bottom: 48px;
}

img.hover-img {
  object-position: left;
}

/*perfume page css changes*/
.page-id-34030 .hero-image img {
  object-position: top;
}

.page-id-34033 .hero {
  display: flex;
  align-items: center;
  height: 100vh;
}

.page-template-perfume img.pcm-img.pcm-img--base {
  height: 250px;
  object-fit: contain;
}

.page-template-perfume .swiper-slide img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.page-template-perfume .swiper {
  width: 100%;
  height: auto;
}

section.quick-links.breadcrumbs {
  margin-left: 5px !important;
  justify-content: flex-start;
  padding: 12px 24px;
  gap: 12px !important;
  margin-top: 20px;
  z-index: 10;
}

@media (max-width: 1140px) {
  .pagination {
    display: none !important;
  }

  .hero-inner {
    max-width: 90%;
    margin: 0 auto;
  }

  .slider-wrapper {
    height: auto;
  }

  section.slider-inner {
    height: 100% !important;
  }

  .slider {
    height: 100% !important;
  }

  .hero-content1 {
    padding-left: 20px;
  }

  .hero-image1 img {
    height: 100%;
  }

  .hero-image img {
    height: 100%;
  }
}

@media (max-width: 1024px) {
  .hero-image img {
    height: 100%;
  }

  .hero-content1 {
    padding-left: 0px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    max-width: 85%;
    margin: 0 auto;
  }

  .container2 {
    flex-direction: column;
    align-items: center;
  }

  .accordion,
  .right-image {
    flex: 1 1 100%;
  }
}

@media (max-width: 992px) {
  button.wishlist-btn svg {
    width: 25%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collection-section {
    padding: 0px !important;
  }
}

@media (max-width: 770px) {
  section.collection-section a {
    width: 100%;
  }

  button.wishlist-btn svg {
    width: 35%;
  }

  .product-grid1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .pagination {
    display: none !important;
  }

  section.slider-inner {
    flex-direction: column;
  }

  .slider-wrapper {
    height: auto;
  }

  section.slider-inner {
    height: auto;
  }

  .hero-image1 {
    width: 100%;
  }

  .hero-content1 {
    width: 100%;
    padding-block: 40px;
  }

  .product-grids {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 0px;
  }

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

  .sellers-card .content {
    padding: 40px 13px;
  }

  .cta-button {
    padding: 10px 17px;
  }

  .hero-image,
  .hero-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 15px !important;
  }

  .hero-flex {
    gap: 20px;
    flex-direction: column-reverse;
  }

  .fragrance-names {
    gap: 0px 8px;
  }

  .content-container {
    padding: 40px 10px;
  }

  .content h2 {
    font-size: 20px;
  }

  .subheading {
    font-size: 12px;
  }

  .product-grids {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-inline: 0px !important;
  }

  .container {
    width: 100%;
    max-width: 100% !important;
    margin: 0 auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
  }

  .collection-section {
    padding: 0px !important;
  }

  .banner {
    flex-direction: column;
    padding: 0%;
  }

  .banner h1 {
    font-size: 26px;
  }

  .banner p {
    font-size: 15px;
    margin: 20px auto;
  }

  .banner button {
    padding: 12px 28px;
  }

  .banner-content {
    padding-inline: 15px;
  }

  .banner-image img {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .fragrance-grid {
    grid-template-columns: 1fr;
  }

  .top-intro .content {
    padding: 0px !important;
  }

  .accordion h2 {
    font-size: 24px;
  }

  .accordion-header h3 {
    font-size: 14px;
  }

  .top-intro {
    margin-top: 85px;
    padding-block: 100px;
    padding-inline: 0px !important;
  }

  .wishlist {
    top: 14px;
    left: 0px;
  }

  .accordion-content {
    padding: 15px 0 0 4px !important;
  }

  .collections {
    margin-bottom: 0;
  }
}

@media (max-width: 450px) {
  .hero-content1 h1 {
    font-size: 19px;
  }

  .container2 {
    padding-inline: 15px !important;
  }

  .hero h1 {
    font-size: 19px;
  }

  .product-section {
    margin-top: 0px;
  }

  .wishlist {
    top: 5px;
    left: 11px;
    width: 30%;
    height: 21px;
  }

  .hero-inner {
    max-width: 100% !important;
    margin: 0 auto;
  }

  .hero-image1 img {
    height: 100% !important;
  }
}

@media (max-width: 950px) {
  .page-id-34033 .hero {
    height: 100% !important;
  }
}

@media (max-width: 768px) {
  a.wishlist-toggle img {
    position: relative;
    width: 13px !important;
    height: 13px;
  }

  .product-title {
    font-size: 14px;
  }

  .product-subtitle {
    font-size: 9px;
    line-height: 16px;
    margin-bottom: 6px;
    padding-top: 10px;
    text-transform: uppercase !important;
  }

  .page-id-34033 .hero {
    height: 100% !important;
  }

  .swiper-slide img {
    object-fit: contain !important;
    height: 210px !important;
  }
}