@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

.no-scroll {
  overflow: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  color: #121212;
  line-height: 1.7;
}

h1, h2, h3, h4, .serif-font {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02rem;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
}

.text-muted {
  color: #666666;
  font-weight: 400;
}

.link-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-hover:hover {
  color: #008542;
}

.btn {
  display: inline-block;
  padding: 1.3rem 3.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  .btn {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
  }
}
.btn--pill {
  border-radius: 50rem;
}
.btn--primary {
  background-color: #008542;
  color: #ffffff;
  border-color: #008542;
}
.btn--primary:hover {
  background-color: rgb(0, 107.5, 53.3458646617);
  border-color: rgb(0, 107.5, 53.3458646617);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 133, 66, 0.15);
}
.btn--outline {
  background-color: transparent;
  color: #121212;
  border-color: #121212;
}
.btn--outline:hover {
  background-color: #121212;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar__content {
  height: 7rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}
@media (min-width: 1025px) {
  .navbar__content {
    height: 11rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
}
.navbar__mobile-search {
  display: block;
  background: #fff;
  padding: 0.5rem 0 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
@media (min-width: 1025px) {
  .navbar__mobile-search {
    display: none;
  }
}
.navbar__mobile-search .mobile-search-input-wrapper {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  padding: 0.6rem 1.8rem;
  width: 100%;
}
.navbar__mobile-search .mobile-search-input-wrapper i {
  font-size: 1.6rem;
  color: #888;
  margin-right: 1rem;
}
.navbar__mobile-search .mobile-search-input-wrapper input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  color: #121212;
}
.navbar__mobile-search .mobile-search-input-wrapper input::-moz-placeholder {
  color: #aaa;
}
.navbar__mobile-search .mobile-search-input-wrapper input::placeholder {
  color: #aaa;
}
@media (max-width: 1024px) {
  .navbar__mobile-search .simple-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    max-height: 75vh;
    overflow-y: auto;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list .section-title {
    background: #f9f9f9;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: background 0.2s;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a:hover {
    background: #fcfcfc;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a img {
    width: 4.5rem;
    height: 4.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
    margin-right: 1.5rem;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a .item-details {
    display: flex;
    flex-direction: column;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a .item-details .item-name {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 0.2rem;
  }
  .navbar__mobile-search .simple-search-dropdown .search-results-list li a .item-details .item-meta {
    font-size: 1.2rem;
    color: #888;
  }
}
.navbar__mobile-menu {
  font-size: 2.6rem;
  color: #121212;
  cursor: pointer;
  justify-self: start;
}
@media (min-width: 1025px) {
  .navbar__mobile-menu {
    display: none;
  }
}
.navbar__logo {
  justify-self: center;
}
@media (min-width: 1025px) {
  .navbar__logo {
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
  }
}
.navbar__logo .logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.navbar__logo .fesderm-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}
@media (min-width: 1025px) {
  .navbar__logo .fesderm-logo {
    align-items: flex-start;
  }
}
.navbar__logo .fesderm-logo__main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #2d2a32;
  letter-spacing: 0.25rem;
  margin-bottom: 0.4rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 1025px) {
  .navbar__logo .fesderm-logo__main {
    font-size: 3.2rem;
    letter-spacing: 0.4rem;
  }
}
.navbar__logo .fesderm-logo__tagline {
  background-color: #2d2a32;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar__logo .fesderm-logo__tagline span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .navbar__logo .fesderm-logo__tagline span {
    font-size: 0.85rem;
    letter-spacing: 0.18rem;
  }
}
.navbar__logo:hover .fesderm-logo__main {
  transform: translateY(-1px);
  opacity: 0.8;
}
.navbar__icons {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1025px) {
  .navbar__icons {
    justify-content: flex-end;
    gap: 2.5rem;
    flex-shrink: 0;
  }
}
.navbar__icons .desktop-search-icon {
  display: none;
}
@media (min-width: 1025px) {
  .navbar__icons .desktop-search-icon {
    display: flex;
  }
}
.navbar__icons a {
  font-size: 2.1rem;
  color: #121212;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
}
@media (min-width: 1025px) {
  .navbar__icons a {
    font-size: 2.3rem;
  }
}
.navbar__icons a:hover {
  color: #008542;
  transform: translateY(-4px);
}
.navbar__icons .nav-icon-cart {
  position: relative;
}
.navbar__icons .nav-icon-cart .cart-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  height: 20px;
  min-width: 20px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #ffffff;
  z-index: 2;
  line-height: 1;
}
.navbar__drawer {
  position: fixed;
  top: 7rem;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: calc(100vh - 7rem);
  background-color: #fff;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.05);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.navbar__drawer.active {
  left: 0;
}
@media (min-width: 1025px) {
  .navbar__drawer {
    position: static;
    height: auto;
    width: auto;
    max-width: none;
    box-shadow: none;
    background-color: transparent;
    display: flex;
    flex: 1;
    justify-content: center;
    overflow-y: visible;
  }
}
.navbar__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 3rem 5rem 3rem;
  list-style: none;
}
@media (min-width: 1025px) {
  .navbar__links {
    flex-direction: row;
    gap: 3rem;
    padding: 0;
    align-items: center;
  }
}
.navbar__links a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #121212;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.8rem 0;
  display: inline-block;
}
@media (min-width: 1025px) {
  .navbar__links a {
    font-size: 1.3rem;
    letter-spacing: 0.12rem;
  }
}
.navbar__links a:hover, .navbar__links a.active {
  color: #008542;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: #008542;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}
.navbar__links a:hover::after {
  width: 100%;
}
.navbar__links .nav-dropdown {
  position: relative;
}
@media (max-width: 1024px) {
  .navbar__links .nav-dropdown > a::after {
    display: none;
  }
}
.navbar__links .nav-dropdown .dropdown-menu {
  display: none;
  list-style: none;
}
@media (max-width: 1024px) {
  .navbar__links .nav-dropdown .dropdown-menu {
    padding: 0.5rem 0 0 1.5rem;
    margin-left: 0.5rem;
    border-left: 2px solid rgba(0, 150, 136, 0.2);
    margin-top: 0.5rem;
  }
}
@media (min-width: 1025px) {
  .navbar__links .nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 240px;
    padding: 1rem 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }
}
.navbar__links .nav-dropdown .dropdown-menu li {
  width: 100%;
}
.navbar__links .nav-dropdown .dropdown-menu a {
  display: block;
  width: 100%;
  letter-spacing: 0.12rem;
}
@media (max-width: 1024px) {
  .navbar__links .nav-dropdown .dropdown-menu a {
    font-size: 1.15rem;
    padding: 0.6rem 0;
    color: #666;
    font-weight: 500;
  }
}
@media (min-width: 1025px) {
  .navbar__links .nav-dropdown .dropdown-menu a {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }
}
.navbar__links .nav-dropdown .dropdown-menu a::after {
  display: none;
}
.navbar__links .nav-dropdown .dropdown-menu a:hover {
  color: #008542;
  transform: none;
}
@media (min-width: 1025px) {
  .navbar__links .nav-dropdown .dropdown-menu a:hover {
    background-color: #f9f9f9;
  }
}
.navbar__links .nav-dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .navbar__links .nav-dropdown:hover .dropdown-menu {
    animation: slideDown 0.3s ease forwards;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.navbar__search-container {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  z-index: 998;
  padding-bottom: 3rem;
}
.navbar__search-container.active {
  display: block;
  animation: slideDown 0.3s ease forwards;
}
.navbar__search-container .search-header {
  padding: 3rem 0 0 0;
}
.navbar__search-container .search-header .search-input-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.navbar__search-container .search-header .search-input-wrapper .search-icon {
  position: absolute;
  left: 2rem;
  font-size: 2rem;
  color: #777;
}
.navbar__search-container .search-header .search-input-wrapper input {
  width: 100%;
  padding: 1.5rem 5rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  outline: none;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}
.navbar__search-container .search-header .search-input-wrapper input:focus {
  border-color: #008542;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}
.navbar__search-container .search-header .search-input-wrapper #close-search-btn {
  position: absolute;
  right: 2rem;
  cursor: pointer;
  font-size: 2.5rem;
  color: #333;
  transition: color 0.2s;
}
.navbar__search-container .search-header .search-input-wrapper #close-search-btn:hover {
  color: red;
}
.navbar__search-container .search-header .simple-search-dropdown {
  max-width: 800px;
  margin: 0.5rem auto 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  max-height: 450px;
  overflow-y: auto;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li {
  border-bottom: 1px solid #f5f5f5;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li:last-child {
  border-bottom: none;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li.section-title {
  background: #f9f9f9;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a {
  display: flex;
  align-items: center;
  padding: 1.2rem 2rem;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
  gap: 1.5rem;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a:hover {
  background-color: #f8fdfd;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  background: #eee;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a .item-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a .item-details .item-name {
  font-size: 1.4rem;
  font-weight: 600;
}
.navbar__search-container .search-header .simple-search-dropdown .search-results-list li a .item-details .item-meta {
  font-size: 1.2rem;
  color: #777;
}

.hero {
  margin-top: 13rem;
}
@media (min-width: 1025px) {
  .hero {
    margin-top: 11rem;
  }
}
.hero {
  padding: 1.5rem 0 4rem;
  background: transparent;
}
@media (max-width: 768px) {
  .hero {
    padding: 0.5rem 0 3rem;
  }
}
.hero__banner {
  position: relative;
  width: 100%;
  height: 48rem;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .hero__banner {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    align-items: flex-start;
  }
}
.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__image {
    position: relative;
    height: 28rem;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 70%);
}
@media (max-width: 768px) {
  .hero__image::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
  }
}
.hero__content {
  position: relative;
  z-index: 5;
  max-width: 58rem;
  padding-left: 6rem;
  animation: heroFadeLeft 1s ease-out forwards;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 2.5rem 2rem 4rem;
    max-width: 100%;
    text-align: center;
  }
}
.hero__subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #008542;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}
.hero__title {
  font-size: 5.4rem;
  line-height: 1.1;
  color: #121212;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
.hero__title span {
  font-weight: 300;
  font-style: italic;
  font-family: "Playfair Display", serif;
}
.hero__description {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 45rem;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 1.4rem;
    margin: 0 auto 3rem;
  }
}
.hero__actions {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero__actions {
    justify-content: center;
    gap: 1.5rem;
  }
}

@keyframes heroFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.categories {
  padding: 6rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .categories {
    padding: 4rem 0;
  }
}
.categories .section-header {
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .categories .section-header {
    margin-bottom: 2.5rem;
  }
}
.categories .section-header .section-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #121212;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 768px) {
  .categories .section-header .section-title {
    font-size: 2.4rem;
  }
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 5rem auto;
}
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 90%;
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem;
    margin-bottom: 3rem;
    padding: 0 0.3rem;
  }
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 0.82/1;
  display: block;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .category-card {
    border-radius: 6px;
    aspect-ratio: 0.6/1;
  }
}
.category-card__image {
  width: 100%;
  height: 100%;
}
.category-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .category-card__content {
    padding: 0.4rem;
  }
}
.category-card__content span {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02rem;
}
@media (max-width: 768px) {
  .category-card__content span {
    font-size: 0.95rem;
  }
}
.category-card__content i {
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .category-card__content i {
    font-size: 1rem;
  }
}
.category-card:hover {
  transform: translateY(-5px);
}

.categories__footer {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 5rem;
}
@media (max-width: 768px) {
  .categories__footer {
    padding: 0 1.5rem;
  }
}
.categories__footer .btn-slim-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 1300px;
  background-color: #000;
  color: #fff;
  padding: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .categories__footer .btn-slim-link {
    padding: 1.4rem;
    font-size: 1.3rem;
    border-radius: 6px;
  }
}
.categories__footer .btn-slim-link:hover {
  background-color: #1a1a1a;
  gap: 1.2rem;
}

/* ==========================================
   PROMO STRIP (FLOATING ON DESKTOP, FIXED ON MOBILE)
========================================== */
.promo-strip {
  background-color: #f7e0a3;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 998;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: auto;
}
@media (min-width: 1025px) {
  .promo-strip {
    width: auto;
    left: auto;
    right: 3rem;
    bottom: 0;
    padding: 0.5rem 2.5rem;
    border-radius: 8px 8px 0 0;
    border-top: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
  }
}
.promo-strip__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .promo-strip__content {
    padding: 0 1.5rem;
    gap: 1rem;
  }
}
.promo-strip__text {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
@media (max-width: 768px) {
  .promo-strip__text {
    font-size: 1.2rem;
  }
}
.promo-strip__text strong {
  font-weight: 700;
}
.promo-strip__text .highlight {
  color: #006d6d;
  font-weight: 700;
  text-decoration: underline;
}
.promo-strip__icon {
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease;
  line-height: 1;
}
.promo-strip__icon:hover {
  transform: translateY(-2px);
}

body {
  padding-bottom: 0 !important;
}

/* ==========================================
   TRENDING NOW SECTION
========================================== */
.trending {
  padding: 5rem 0;
  background-color: #f2f9f8;
}
@media (max-width: 768px) {
  .trending {
    padding: 4rem 0;
  }
}
.trending__header {
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .trending__header {
    padding: 0 1.5rem;
  }
}
.trending__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #006d6d;
  margin-bottom: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
@media (max-width: 768px) {
  .trending__title {
    font-size: 2.2rem;
  }
}
.trending__subtitle {
  font-size: 1.4rem;
  color: #777;
}
@media (max-width: 768px) {
  .trending__subtitle {
    font-size: 1.2rem;
  }
}
.trending__filters {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding: 0 0 1rem 0;
  margin-bottom: 2rem;
  scrollbar-width: none;
}
.trending__filters::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .trending__filters {
    padding: 0 1.5rem 1rem 1.5rem;
    gap: 0.6rem;
  }
}
.trending .filter-pill {
  white-space: nowrap;
  padding: 0.8rem 2.2rem;
  border-radius: 50rem;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #777;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .trending .filter-pill {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}
.trending .filter-pill.active {
  border-color: #006d6d;
  color: #006d6d;
  background-color: rgba(0, 109, 109, 0.05);
}
.trending .filter-pill:hover {
  border-color: #006d6d;
  color: #006d6d;
}

/* ==========================================
   TRENDING SECTION SPACING FIX
========================================== */
.trending {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f2f9f8;
}
@media (max-width: 768px) {
  .trending {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
}

/* ==========================================
   PRODUCT SLIDER WRAPPER
========================================== */
.trending__slider-wrapper {
  position: relative;
  margin-top: 1.5rem;
}
.trending__slider-wrapper:hover .slider-arrow {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   PRODUCT SLIDER (HORIZONTAL SCROLL)
========================================== */
.trending__slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 0.5rem 0 2.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.trending__slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .trending__slider {
    gap: 1.2rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

/* ==========================================
   NAVIGATION ARROWS
========================================== */
.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #333;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.slider-arrow:hover {
  background: #f5f5f5;
  color: #008542;
}
.slider-arrow--left {
  left: -2.2rem;
}
.slider-arrow--right {
  right: -2.2rem;
}
@media (max-width: 1024px) {
  .slider-arrow {
    display: none;
  }
}

/* ==========================================
   PRODUCT CARD (PILGRIM STYLE)
========================================== */
.product-card {
  flex: 0 0 28rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  text-align: center;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 22rem;
  }
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.product-card__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image-wrapper img {
  transform: scale(1.05);
}
.product-card__badges {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.product-card .badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
}
.product-card .badge--best {
  background-color: #f7e0a3;
  color: #000;
}
.product-card .badge--new {
  background-color: #f07e6e; /* Using a nice coral/orange color for NEW */
  color: #fff;
}
.product-card .badge--discount {
  background-color: #006d6d;
  color: #fff;
}
.product-card__info {
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-card__rating {
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #004d4d;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card__rating i {
  color: #00b5b5;
}
.product-card__rating .reviews {
  color: #666;
  font-size: 1.1rem;
  font-weight: 400;
}
.product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: #004d4d;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 3.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__pricing {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: auto;
}
.product-card__pricing .price-current {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004d4d;
}
.product-card__pricing .price-original {
  font-size: 1.3rem;
  color: #999;
  text-decoration: line-through;
}
.product-card .btn-add-to-cart {
  width: 100%;
  padding: 1.2rem;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-card .btn-add-to-cart:hover {
  background-color: #e6b800;
}
@media (max-width: 768px) {
  .product-card .btn-add-to-cart {
    padding: 1rem;
    font-size: 1.1rem;
  }
}

.ad-banner {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: transparent;
}
.ad-banner__wrapper {
  position: relative;
  width: 100%;
  height: 40rem;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .ad-banner__wrapper {
    flex-direction: column;
    height: auto;
  }
}
.ad-banner__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .ad-banner__image {
    position: relative;
    height: 22rem;
  }
}
.ad-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
.ad-banner__content {
  position: relative;
  z-index: 5;
  padding-left: 5rem;
  width: 60%;
}
@media (max-width: 768px) {
  .ad-banner__content {
    padding: 2.5rem;
    width: 100%;
  }
}
.ad-banner__badge {
  display: inline-block;
  background-color: #d85a3b;
  color: #fff;
  padding: 0.4rem 1.2rem;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  border-radius: 6px;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.ad-banner__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  color: #006d6d;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .ad-banner__title {
    font-size: 2.2rem;
  }
}
.ad-banner__title .highlight {
  color: #004d4d;
  font-size: 3.8rem;
  display: block;
}
@media (max-width: 768px) {
  .ad-banner__title .highlight {
    font-size: 2.6rem;
  }
}
.ad-banner__title .sub-highlight {
  color: #d85a3b;
  font-size: 3rem;
  display: block;
}
@media (max-width: 768px) {
  .ad-banner__title .sub-highlight {
    font-size: 2.2rem;
  }
}
.ad-banner__tagline {
  font-size: 1.8rem;
  color: #006d6d;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .ad-banner__tagline {
    font-size: 1.5rem;
  }
}
.ad-banner .btn-ad-shop {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 1rem 2.5rem;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 0 #cca300;
  transition: all 0.2s;
}
.ad-banner .btn-ad-shop:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #cca300;
}
.ad-banner__disclaimer {
  margin-top: 3rem;
  font-size: 1rem;
  color: #777;
  line-height: 1.4;
}

/* ==========================================
   NEW ARRIVALS SECTION
========================================== */
.new-arrivals {
  padding: 4rem 0 6rem;
  background-color: #f4f7f6;
}
@media (max-width: 768px) {
  .new-arrivals {
    padding: 3rem 0 4rem;
  }
}

/* --- Flex Header Layout --- */
.section-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section-header--flex {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
    gap: 1rem;
  }
}

.view-all-link {
  color: #006d6d;
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}
.view-all-link:hover {
  color: #004d4d;
  border-bottom-color: #004d4d;
}
@media (max-width: 768px) {
  .view-all-link {
    font-size: 1.3rem;
  }
}

/* --- Filter Buttons (Pill Design) --- */
.new-arrivals__filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .new-arrivals__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }
  .new-arrivals__filters::-webkit-scrollbar {
    display: none;
  }
  .new-arrivals__filters {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}
.new-arrivals__filters .filter-pill {
  background-color: transparent;
  color: #666;
  border: 1px solid #ccc;
  padding: 0.6rem 1.8rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .new-arrivals__filters .filter-pill {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
}
.new-arrivals__filters .filter-pill:hover {
  border-color: #006d6d;
  color: #006d6d;
}
.new-arrivals__filters .filter-pill.active {
  background-color: #006d6d;
  color: #fff;
  border-color: #006d6d;
}

/* ==========================================
   NEW PRODUCT CARD MODIFIERS
========================================== */
.product-card .badge--new {
  background-color: #d66b55;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-card__tag {
  font-size: 1rem;
  color: #d66b55;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.6rem;
  display: block;
}
.product-card__short-desc {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.product-card__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.summer-banner {
  padding: 2rem 0 6rem;
  background-color: #fff;
}
.summer-banner__wrapper {
  position: relative;
  width: 100%;
  height: 38rem;
  background-color: #e5f4f8;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .summer-banner__wrapper {
    flex-direction: column;
    height: auto;
    background-color: #fff;
  }
}
.summer-banner__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .summer-banner__image {
    position: relative;
    height: 28rem;
    width: 100%;
  }
}
.summer-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}
@media (max-width: 768px) {
  .summer-banner__image img {
    -o-object-position: right center;
       object-position: right center;
  }
}
.summer-banner__content {
  position: relative;
  z-index: 5;
  padding-left: 6rem;
  width: 50%;
}
@media (max-width: 768px) {
  .summer-banner__content {
    padding: 3rem 2rem;
    width: 100%;
  }
}
.summer-banner {
  /* --- Speech Bubble Badge --- */
}
.summer-banner__badge {
  position: relative;
  display: inline-block;
  background-color: #ef7b28;
  color: #fff;
  padding: 0.6rem 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 1.8rem;
}
.summer-banner__badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 15px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #ef7b28 transparent transparent transparent;
}
.summer-banner {
  /* --- Teal Typography --- */
}
.summer-banner__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #125e63;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .summer-banner__title {
    font-size: 2.2rem;
  }
}
.summer-banner__title .highlight {
  color: #318a8f;
  font-size: 4.2rem;
  font-weight: 800;
  display: block;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .summer-banner__title .highlight {
    font-size: 3rem;
  }
}
.summer-banner {
  /* --- Yellow Button --- */
}
.summer-banner .btn-summer-shop {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 1.2rem 3.5rem;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 0 #cca300;
  transition: all 0.2s;
}
.summer-banner .btn-summer-shop:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #cca300;
}
@media (max-width: 768px) {
  .summer-banner .btn-summer-shop {
    padding: 1rem 2.5rem;
    font-size: 1.4rem;
  }
}

/* ==========================================
   THE RX CODE & PROMISES SECTION
========================================== */
.rx-trust {
  padding: 6rem 0;
  background-color: #fafafa;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
.rx-trust__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}
@media (max-width: 992px) {
  .rx-trust__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.rx-trust__left {
  flex: 1.2;
  width: 100%;
}
.rx-trust {
  /* The vertical line separating the two sides */
}
.rx-trust__divider {
  width: 1px;
  background-color: #e0e0e0;
  align-self: stretch;
}
@media (max-width: 992px) {
  .rx-trust__divider {
    width: 100%;
    height: 1px;
  }
}
.rx-trust__right {
  flex: 1;
  width: 100%;
}
.rx-trust__title {
  font-size: 2.2rem;
  color: #125e63;
  margin-bottom: 3.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ==========================================
   LEFT SIDE: RX CODE GRID
========================================== */
.rx-code__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}
@media (max-width: 576px) {
  .rx-code__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rx-code__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.rx-code__item:hover {
  transform: translateY(-4px);
}
.rx-code__item i {
  font-size: 2.6rem;
  color: #006d6d;
  background: #eef6f6;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.rx-code__item .rx-code__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}
.rx-code__item .rx-code__desc {
  font-size: 1.1rem;
  color: #777;
}

/* ==========================================
   RIGHT SIDE: PROMISES LIST
========================================== */
.rx-promises__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 2rem;
}
@media (max-width: 992px) {
  .rx-promises__list {
    padding: 0;
  }
}

.rx-promise__item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}
.rx-promise__item .rx-promise__icon {
  font-size: 2.6rem;
  color: #d66b55;
  flex-shrink: 0;
  margin-top: -0.4rem;
}
.rx-promise__item .rx-promise__content {
  display: flex;
  flex-direction: column;
}
.rx-promise__item .rx-promise__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 0.5rem;
}
.rx-promise__item .rx-promise__desc {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.5;
}

/* ==========================================
   FOOTER MARQUEE (MOVING RIBBON)
========================================== */
.footer-marquee {
  background-color: #006d6d;
  color: #fff;
  padding: 1.5rem 0;
  position: relative;
  z-index: 20;
  transform: rotate(-2.5deg);
  width: 115vw;
  margin-left: -7.5vw;
  margin-bottom: -5.5rem;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.footer-marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollMarquee 25s linear infinite;
}
.footer-marquee__track span {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding-right: 2.5rem;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer-marquee:hover .footer-marquee__track {
  animation-play-state: paused;
}

/* ==========================================
   GLOBAL FOOTER
========================================== */
.site-footer {
  background-color: #0b1717;
  color: #d1d9d9;
  padding: 10rem 0 0;
  position: relative;
  z-index: 10;
  clip-path: polygon(0 6rem, 100% 0, 100% 100%, 0% 100%);
  margin-top: -2rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }
}
@media (max-width: 576px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
}
.site-footer__col {
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .site-footer__col {
    align-items: center;
  }
}
.site-footer__logo {
  margin-bottom: 2.5rem;
}
@media (max-width: 576px) {
  .site-footer__logo {
    display: flex;
    justify-content: center;
  }
}
.site-footer__logo .fesderm-logo--footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
@media (max-width: 576px) {
  .site-footer__logo .fesderm-logo--footer {
    align-items: center;
  }
}
.site-footer__logo .fesderm-logo--footer .fesderm-logo__main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 1025px) {
  .site-footer__logo .fesderm-logo--footer .fesderm-logo__main {
    font-size: 3rem;
  }
}
.site-footer__logo .fesderm-logo--footer .fesderm-logo__tagline {
  background-color: #fff;
  padding: 0.3rem 0.6rem;
  display: flex;
  align-items: center;
}
.site-footer__logo .fesderm-logo--footer .fesderm-logo__tagline span {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0b1717;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1025px) {
  .site-footer__logo .fesderm-logo--footer .fesderm-logo__tagline span {
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
  }
}
.site-footer__desc {
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  max-width: 35rem;
}
.site-footer__socials {
  display: flex;
  gap: 1.5rem;
}
.site-footer__socials a {
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}
.site-footer__socials a:hover {
  color: #d66b55;
  transform: translateY(-3px);
}
.site-footer__title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.site-footer__links, .site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.site-footer__links a {
  color: #d1d9d9;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.site-footer__links a:hover {
  color: #d66b55;
  padding-left: 5px;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  line-height: 1.4;
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .site-footer__contact li {
    justify-content: center;
  }
}
.site-footer__contact li i {
  color: #d66b55;
  font-size: 1.6rem;
  margin-top: 0.1rem;
}
.site-footer__contact li span {
  max-width: 20rem;
}
.site-footer {
  /* --- BOTTOM BAR --- */
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 0;
  }
}
.site-footer__copyright {
  font-size: 1.1rem;
  color: #777;
}
.site-footer__payments {
  display: flex;
  gap: 2rem;
  font-size: 2.6rem;
  color: #666;
}
.site-footer__payments i {
  transition: color 0.3s ease;
}
.site-footer__payments i:hover {
  color: #fff;
}

/* --- ANIMATIONS --- */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.active {
  transform: translateX(0);
}
.cart-drawer .cart-header {
  padding: 2rem;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer .cart-header h2 {
  font-size: 2rem;
  color: #222;
  margin: 0;
}
.cart-drawer .cart-header .close-cart-btn {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #555;
  cursor: pointer;
  transition: color 0.2s;
}
.cart-drawer .cart-header .close-cart-btn:hover {
  color: #000;
}
.cart-drawer .cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}
.cart-drawer .cart-body::-webkit-scrollbar {
  width: 6px;
}
.cart-drawer .cart-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.cart-drawer .cart-body .empty-cart-message {
  text-align: center;
  margin-top: 4rem;
}
.cart-drawer .cart-body .empty-cart-message p {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 2rem;
}
.cart-drawer .cart-body .empty-cart-message .btn-continue-shopping {
  padding: 1.2rem 2.4rem;
  background-color: transparent;
  border: 2px solid #009688;
  color: #009688;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-drawer .cart-body .empty-cart-message .btn-continue-shopping:hover {
  background-color: #009688;
  color: #fff;
}
.cart-drawer .cart-footer {
  padding: 2rem;
  border-top: 1px solid #eaeaea;
  background-color: #fdfdfd;
}
.cart-drawer .cart-footer .cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}
.cart-drawer .cart-footer .tax-shipping-note {
  font-size: 1.3rem;
  color: #888;
  margin-bottom: 2rem;
  text-align: center;
}
.cart-drawer .cart-footer .btn-checkout {
  display: block;
  width: 100%;
  padding: 1.6rem;
  background-color: #ffcc00;
  color: #000;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.cart-drawer .cart-footer .btn-checkout:hover {
  background-color: rgb(204, 163.2, 0);
}

.all-products-page {
  padding-top: 14rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.all-products-page .category-block {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.all-products-page .category-block--spotlight {
  background-color: #f9f9f7;
  border-bottom: none;
}
.all-products-page .category-block__header {
  text-align: center;
  margin-bottom: 3rem;
}
.all-products-page .category-block__header h2 {
  font-size: 3.6rem;
  color: #121212;
  margin: 0;
}
@media (max-width: 768px) {
  .all-products-page .category-block__header h2 {
    font-size: 2.6rem;
  }
}
.all-products-page .category-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .all-products-page .category-block__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .all-products-page .category-block__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .all-products-page .category-block__grid::-webkit-scrollbar {
    display: none;
  }
  .all-products-page .category-block__grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .all-products-page .category-block__grid > * {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
.all-products-page .category-block__footer {
  text-align: center;
  margin-top: 3rem;
}
.all-products-page .category-block__footer .view-all-link {
  color: #008542;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.all-products-page .category-block__footer .view-all-link i {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.all-products-page .category-block__footer .view-all-link:hover {
  color: rgb(0, 82, 40.6917293233);
  border-bottom-color: rgb(0, 82, 40.6917293233);
}
.all-products-page .category-block__footer .view-all-link:hover i {
  transform: translateX(4px);
}
.all-products-page .product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .all-products-page .product-card {
    padding: 1.2rem;
  }
}
.all-products-page .product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.all-products-page .product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.all-products-page .product-card__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.all-products-page .product-card__badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.all-products-page .product-card__badges .badge {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.all-products-page .product-card__badges .badge--new {
  background: #d66b55;
  color: #fff;
}
.all-products-page .product-card__badges .badge--best {
  background: #e5c158;
  color: #000;
}
.all-products-page .product-card__tag {
  font-size: 1rem;
  color: #d66b55;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  margin-bottom: 0.6rem;
  display: block;
}
.all-products-page .product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  color: #121212;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .all-products-page .product-card__title {
    font-size: 1.3rem;
  }
}
.all-products-page .product-card__short-desc {
  font-size: 1.15rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
}
@media (max-width: 768px) {
  .all-products-page .product-card__short-desc {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
}
.all-products-page .product-card__rating {
  font-size: 1.2rem;
  color: #00b5b5;
  margin-bottom: 1rem;
  font-weight: 600;
}
.all-products-page .product-card__pricing {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #121212;
}
@media (max-width: 768px) {
  .all-products-page .product-card__pricing {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.all-products-page .product-card .btn-add-to-cart {
  margin-top: auto;
  padding: 1.2rem 0;
  background-color: #ffcc00;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .all-products-page .product-card .btn-add-to-cart {
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
}
.all-products-page .product-card .btn-add-to-cart:hover {
  background-color: rgb(214.2, 171.36, 0);
}

.category-page {
  padding-top: 10rem;
  background-color: #ffffff;
}
.category-page .category-banner {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .category-page .category-banner {
    height: 250px;
    margin-bottom: 3rem;
  }
}
.category-page .category-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.category-page .category-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
}
.category-page .category-banner__content h1 {
  font-size: 4.8rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .category-page .category-banner__content h1 {
    font-size: 3.2rem;
  }
}
.category-page .category-banner__content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .category-page .category-banner__content p {
    font-size: 1.5rem;
  }
}
.category-page__wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .category-page__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.category-page .product-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
@media (max-width: 768px) {
  .category-page .product-card {
    padding: 1rem 0.8rem;
  }
}
.category-page .product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.category-page .product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.category-page .product-card__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .category-page .product-card__image-wrapper {
    margin-bottom: 0.8rem;
  }
}
.category-page .product-card__badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.category-page .product-card__badges .badge {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.category-page .product-card__badges .badge--new {
  background: #d66b55;
  color: #fff;
}
.category-page .product-card__badges .badge--best {
  background: #e5c158;
  color: #000;
}
@media (max-width: 768px) {
  .category-page .product-card__badges {
    top: 0.5rem;
    left: 0.5rem;
  }
  .category-page .product-card__badges .badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.4rem;
    letter-spacing: 0;
  }
}
.category-page .product-card__tag {
  font-size: 1rem;
  color: #d66b55;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  margin-bottom: 0.6rem;
  display: block;
}
@media (max-width: 768px) {
  .category-page .product-card__tag {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0;
  }
}
.category-page .product-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.8rem 0;
  color: #121212;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .category-page .product-card__title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.category-page .product-card__short-desc {
  font-size: 1.15rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2rem;
}
@media (max-width: 768px) {
  .category-page .product-card__short-desc {
    font-size: 0.85rem;
    min-height: auto;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
}
.category-page .product-card__rating {
  font-size: 1.2rem;
  color: #00b5b5;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .category-page .product-card__rating {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    white-space: nowrap;
  }
}
.category-page .product-card__pricing {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #121212;
}
@media (max-width: 768px) {
  .category-page .product-card__pricing {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
  }
}
.category-page .product-card .btn-add-to-cart {
  margin-top: auto;
  padding: 1.2rem 0;
  background-color: #ffcc00;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .category-page .product-card .btn-add-to-cart {
    padding: 0.8rem 0.2rem;
    font-size: 1rem;
    gap: 0.3rem;
    letter-spacing: normal;
  }
}
.category-page .product-card .btn-add-to-cart:hover {
  background-color: rgb(214.2, 171.36, 0);
}
@media (max-width: 1024px) {
  .category-page .filter-sidebar {
    display: none;
  }
  .category-page .filter-sidebar.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
  }
}
.category-page .filter-sidebar .mobile-filter-header {
  display: none;
}
@media (max-width: 1024px) {
  .category-page .filter-sidebar .mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
  }
  .category-page .filter-sidebar .mobile-filter-header h2 {
    font-size: 2.2rem;
    margin: 0;
    font-weight: 600;
  }
  .category-page .filter-sidebar .mobile-filter-header button {
    background: none;
    border: none;
    font-size: 2.8rem;
    cursor: pointer;
    color: #333;
  }
}
@media (max-width: 1024px) {
  .category-page .filter-sidebar .desktop-filter-title {
    display: none;
  }
}
.category-page .filter-sidebar h3 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.category-page .filter-sidebar details {
  border-top: 1px solid #e0e0e0;
  padding: 2rem 0;
}
.category-page .filter-sidebar details:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}
.category-page .filter-sidebar details summary {
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.category-page .filter-sidebar details summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  margin-bottom: 4px;
  transition: transform 0.3s ease;
}
.category-page .filter-sidebar details summary:hover {
  color: #888;
}
.category-page .filter-sidebar details[open] summary::after {
  transform: rotate(-135deg);
  margin-bottom: -4px;
}
.category-page .filter-sidebar .filter-group {
  margin-top: 1.5rem;
}
.category-page .filter-sidebar .price-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}
.category-page .filter-sidebar .price-input-wrapper .price-box {
  background: #fff;
  border: 1px solid #e0e0e0 !important;
  border-radius: 2px;
  padding: 8px 10px;
  width: 45%;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
}
.category-page .filter-sidebar .price-input-wrapper .price-box:focus-within {
  border-color: #000 !important;
}
.category-page .filter-sidebar .price-input-wrapper .price-box span {
  color: #888;
  margin-right: 5px;
  font-size: 1.4rem;
}
.category-page .filter-sidebar .price-input-wrapper .price-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: #333;
  background: transparent;
}
.category-page .filter-sidebar .price-input-wrapper .price-box input::-webkit-inner-spin-button, .category-page .filter-sidebar .price-input-wrapper .price-box input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.category-page .filter-sidebar #price-slider {
  height: 4px !important;
  background: #e0e0e0 !important;
  border: none !important;
  box-shadow: none !important;
  margin: 20px 0 30px 0;
}
.category-page .filter-sidebar #price-slider .noUi-connect {
  background: #000 !important;
}
.category-page .filter-sidebar #price-slider .noUi-handle {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #000 !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
  cursor: pointer;
  right: -9px !important;
  top: -7px !important;
}
.category-page .filter-sidebar #price-slider .noUi-handle::after, .category-page .filter-sidebar #price-slider .noUi-handle::before {
  display: none !important;
}
.category-page .filter-sidebar .checkbox-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #444;
  cursor: pointer;
}
.category-page .filter-sidebar .checkbox-item input {
  margin-right: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1.5px solid #ccc;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.category-page .filter-sidebar .checkbox-item input:checked {
  background-color: #000;
  border-color: #000;
}
.category-page .filter-sidebar .checkbox-item input:checked::after {
  content: "✓";
  color: #fff;
  font-size: 1.2rem;
}
.category-page .filter-sidebar .checkbox-item span {
  transition: color 0.2s;
}
.category-page .filter-sidebar .checkbox-item:hover span {
  color: #000;
}
.category-page .category-grid-section .mobile-action-bar {
  display: none;
}
@media (max-width: 1024px) {
  .category-page .category-grid-section .mobile-action-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .category-page .category-grid-section .mobile-action-bar .mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: background 0.2s ease;
  }
  .category-page .category-grid-section .mobile-action-bar .mobile-action-btn:hover {
    background: #f9f9f9;
  }
  .category-page .category-grid-section .mobile-action-bar .mobile-action-btn i {
    color: #555;
    font-size: 1.6rem;
  }
}
.category-page .category-grid-section .grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  font-size: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
@media (max-width: 1024px) {
  .category-page .category-grid-section .grid-header {
    justify-content: center;
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
  }
  .category-page .category-grid-section .grid-header .product-count {
    font-size: 1.6rem;
    color: #555;
  }
}
@media (max-width: 1024px) {
  .category-page .category-grid-section .grid-header .desktop-sort-wrapper {
    display: none !important;
  }
}
.category-page .category-grid-section .grid-header .sort-wrapper {
  display: flex;
  align-items: center;
}
.category-page .category-grid-section .grid-header .sort-wrapper label {
  margin-right: 1.2rem;
  font-size: 1.4rem;
  color: #555;
  font-weight: 500;
}
.category-page .category-grid-section .grid-header .sort-wrapper select {
  min-width: 220px;
  padding: 0.8rem 3rem 0.8rem 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 1.4rem;
  color: #333;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem auto;
  transition: border-color 0.2s ease;
}
.category-page .category-grid-section .grid-header .sort-wrapper select:focus, .category-page .category-grid-section .grid-header .sort-wrapper select:hover {
  border-color: #000;
}
.category-page .category-grid-section .category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .category-page .category-grid-section .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.product-pdp {
  padding-top: 12rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.product-pdp .product-nav-tabs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #eee;
  padding: 0 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.product-pdp .product-nav-tabs.is-sticky {
  transform: translateY(110px);
}
body.search-active .product-pdp .product-nav-tabs {
  transform: translateY(-100%);
}
.product-pdp .product-nav-tabs ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 auto;
  max-width: 1200px;
}
.product-pdp .product-nav-tabs ul::-webkit-scrollbar {
  display: none;
}
.product-pdp .product-nav-tabs ul li a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.4rem;
  color: #555;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.product-pdp .product-nav-tabs ul li a:hover {
  color: #009688;
}
.product-pdp .product-nav-tabs ul li a.active {
  color: #009688;
  border-bottom-color: #009688;
}
.product-pdp .product-hero,
.product-pdp .product-sub-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 900px) {
  .product-pdp .product-hero,
  .product-pdp .product-sub-hero {
    flex-direction: column;
    gap: 40px;
  }
}
.product-pdp .product-hero {
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.product-pdp .product-sub-hero {
  margin-bottom: 6rem;
}
.product-pdp .hero-left-column,
.product-pdp .sub-left-column,
.product-pdp .hero-right-column,
.product-pdp .sub-right-column {
  width: calc(50% - 30px);
}
@media (max-width: 900px) {
  .product-pdp .hero-left-column,
  .product-pdp .sub-left-column,
  .product-pdp .hero-right-column,
  .product-pdp .sub-right-column {
    width: 100%;
  }
}
.product-pdp .product-gallery {
  display: flex;
  gap: 20px;
}
@media (max-width: 900px) {
  .product-pdp .product-gallery {
    flex-direction: column-reverse;
  }
}
.product-pdp .product-gallery .gallery-thumbnails {
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 5px;
  max-height: 400px;
}
@media (max-width: 900px) {
  .product-pdp .product-gallery .gallery-thumbnails {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    max-height: none;
  }
}
.product-pdp .product-gallery .gallery-thumbnails::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.product-pdp .product-gallery .gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.product-pdp .product-gallery .gallery-thumbnails .thumb-item {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.product-pdp .product-gallery .gallery-thumbnails .thumb-item img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-pdp .product-gallery .gallery-thumbnails .thumb-item.active {
  border-color: #000;
}
.product-pdp .product-gallery .gallery-main {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 400px;
}
@media (max-width: 900px) {
  .product-pdp .product-gallery .gallery-main {
    height: auto;
    min-height: 300px;
  }
}
.product-pdp .product-gallery .gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: multiply;
}
.product-pdp .product-gallery .gallery-main .no-image-placeholder {
  color: #888;
  font-size: 1.6rem;
}
.product-pdp .active-offers {
  width: 100%;
}
.product-pdp .active-offers h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.product-pdp .active-offers .offer-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-pdp .active-offers .offer-cards .offer-card {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-header {
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 5px 5px 0 0;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-header.teal {
  background-color: #009688;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body {
  padding: 1.5rem;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body p {
  font-size: 1.3rem;
  color: #444;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body .coupon-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px dashed #009688;
  background-color: #e0f2f1;
  padding: 0.8rem 1rem;
  border-radius: 4px;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body .coupon-code .code {
  font-weight: 700;
  font-size: 1.4rem;
  color: #009688;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body .coupon-code .copy-btn {
  background: none;
  border: none;
  color: #009688;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.product-pdp .active-offers .offer-cards .offer-card .offer-body .coupon-code .copy-btn:hover {
  text-decoration: underline;
}
.product-pdp .hero-right-column .product-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}
.product-pdp .hero-right-column .product-header .rank-badge {
  color: #d32f2f;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}
.product-pdp .hero-right-column .product-header h1 {
  font-size: 3.2rem;
  color: #222;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.product-pdp .hero-right-column .product-header .subtitle {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
}
.product-pdp .hero-right-column .product-header .price-block {
  margin-bottom: 1.5rem;
}
.product-pdp .hero-right-column .product-header .price-block .current-price {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-right: 1rem;
}
.product-pdp .hero-right-column .product-header .price-block .tax-inclusive {
  font-size: 1.3rem;
  color: #888;
}
.product-pdp .hero-right-column .product-header .rating-block {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.product-pdp .hero-right-column .product-header .rating-block .star-badge {
  background-color: #009688;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-pdp .hero-right-column .product-header .rating-block .review-count {
  font-size: 1.4rem;
  color: #555;
  font-weight: 500;
}
.product-pdp .hero-right-column .variant-selector {
  margin-bottom: 3rem;
}
.product-pdp .hero-right-column .variant-selector .variant-label {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 1rem;
}
.product-pdp .hero-right-column .variant-selector .variant-label strong {
  color: #000;
}
.product-pdp .hero-right-column .variant-selector .variant-options {
  display: flex;
  gap: 1.5rem;
}
.product-pdp .hero-right-column .variant-selector .variant-options .variant-btn {
  padding: 1rem 2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.5rem;
  color: #333;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.product-pdp .hero-right-column .variant-selector .variant-options .variant-btn.active {
  border: 2px solid #009688;
  font-weight: 600;
}
.product-pdp .hero-right-column .variant-selector .variant-options .variant-btn:hover:not(.active) {
  border-color: #888;
}
.product-pdp .hero-right-column .action-block {
  margin-bottom: 3rem;
}
.product-pdp .hero-right-column .action-block .btn-add-to-cart {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
@media (max-width: 768px) {
  .product-pdp .hero-right-column .action-block .btn-add-to-cart {
    padding: 0.8rem;
    font-size: 1.4rem;
  }
}
.product-pdp .hero-right-column .action-block .btn-add-to-cart:hover {
  background-color: rgb(204, 163.2, 0);
}
.product-pdp .product-benefits-content {
  width: 100%;
}
.product-pdp .product-benefits-content .benefits-header {
  margin-bottom: 1.5rem;
}
.product-pdp .product-benefits-content .benefits-header h3 {
  font-size: 1.8rem;
  color: #333;
}
.product-pdp .product-benefits-content .benefits-grid details {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.product-pdp .product-benefits-content .benefits-grid details summary {
  padding: 1.8rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  background: #fdfdfd;
}
.product-pdp .product-benefits-content .benefits-grid details summary::-webkit-details-marker {
  display: none;
}
.product-pdp .product-benefits-content .benefits-grid details summary .icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-pdp .product-benefits-content .benefits-grid details summary::after {
  content: "+";
  font-size: 2.4rem;
  font-weight: 300;
  color: #888;
  line-height: 1;
}
.product-pdp .product-benefits-content .benefits-grid details summary:hover {
  background: #fafafa;
}
.product-pdp .product-benefits-content .benefits-grid details[open] summary {
  border-bottom: 1px solid #eaeaea;
}
.product-pdp .product-benefits-content .benefits-grid details[open] summary::after {
  content: "−";
}
.product-pdp .product-benefits-content .benefits-grid details .details-content {
  padding: 2rem;
  background: #fff;
}
.product-pdp .product-benefits-content .benefits-grid details .details-content p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.product-pdp .product-description-section {
  padding: 3rem 0;
  background: #fff;
}
.product-pdp .product-description-section .full-width-tabs {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
}
.product-pdp .product-description-section .full-width-tabs ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5rem;
  padding: 0;
  margin: 0;
}
.product-pdp .product-description-section .full-width-tabs ul li {
  margin-bottom: -1px;
}
.product-pdp .product-description-section .full-width-tabs ul li a {
  display: block;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  color: #777;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.product-pdp .product-description-section .full-width-tabs ul li a:hover {
  color: #009688;
}
.product-pdp .product-description-section .full-width-tabs ul li a.active {
  color: #009688;
  border-bottom: 2px solid #009688;
}
.product-pdp .product-description-section .tab-content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.product-pdp .product-description-section .tab-content {
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-pdp .product-description-section .tab-content h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: inherit;
}
.product-pdp .product-description-section .tab-content p {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.product-pdp .product-description-section .tab-content p strong {
  color: #222;
  font-weight: 600;
}
.product-pdp .product-description-section .tab-content .usage-instructions {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}
.product-pdp .product-description-section .tab-content .usage-instructions li {
  margin-bottom: 0.8rem;
}
.product-pdp .product-description-section .tab-content .read-more-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #009688;
  text-decoration: none;
  text-transform: none;
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: pointer;
}
.product-pdp .product-description-section .tab-content .read-more-link:hover {
  text-decoration: underline;
}
.product-pdp .drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.product-pdp .drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}
.product-pdp .product-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 10001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.product-pdp .product-drawer.active {
  right: 0;
}
.product-pdp .product-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem;
  border-bottom: 1px solid #eee;
}
.product-pdp .product-drawer .drawer-header h3 {
  font-size: 1.8rem;
  color: #222;
  margin: 0;
  font-weight: 500;
}
.product-pdp .product-drawer .drawer-header .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: transform 0.2s;
}
.product-pdp .product-drawer .drawer-header .close-btn:hover {
  transform: scale(1.1);
}
.product-pdp .product-drawer .drawer-body {
  padding: 2.5rem;
  overflow-y: auto;
  flex: 1;
}
.product-pdp .product-drawer .drawer-body p {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.product-pdp .product-drawer .drawer-body p strong {
  color: #111;
  font-weight: 600;
}
.product-pdp .product-ingredients-section {
  background-color: #eefaf9;
  margin-top: 5rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.product-pdp .product-ingredients-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #009688;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .section-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card {
  background: transparent;
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card .img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid .ingredient-card .img-wrapper {
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: none;
    width: 100%;
    aspect-ratio: 16/9;
    background: #fff;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card .img-wrapper img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid .ingredient-card .img-wrapper img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding: 5px;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card h4 {
  font-size: 2rem;
  color: #009688;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid .ingredient-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card ul {
  list-style: none;
  padding: 0;
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card ul li {
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid .ingredient-card ul li {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
}
.product-pdp .product-ingredients-section .ingredients-grid .ingredient-card ul li::before {
  content: "•";
  color: #009688;
  font-size: 2.5rem;
  margin-right: 1rem;
  line-height: 0.8;
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .product-pdp .product-ingredients-section .ingredients-grid .ingredient-card ul li::before {
    font-size: 1.8rem;
    margin-right: 0.6rem;
    margin-top: 0.2rem;
  }
}
.product-pdp .product-reviews-section {
  padding: 6rem 0;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.product-pdp .product-reviews-section .reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .product-pdp .product-reviews-section .reviews-header-block {
    flex-direction: column;
    gap: 2rem;
  }
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary h2 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stars {
  margin-bottom: 1rem;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stars .star-icon {
  font-size: 2.2rem;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stars .star-icon.teal-star {
  color: #009688;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stars .star-icon.gray-star {
  color: #d3d3d3;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stats {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stats strong {
  color: #222;
  font-weight: 700;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-stats .verified-text {
  color: #007bff;
  font-weight: 500;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-summary .summary-subtitle {
  font-size: 1.4rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 500;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-action .btn-rate-outline {
  background: #fff;
  border: 1px solid #333;
  color: #333;
  padding: 1rem 3.5rem;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-pdp .product-reviews-section .reviews-header-block .reviews-action .btn-rate-outline:hover {
  background: #f9f9f9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.product-pdp .product-reviews-section .customer-photos-block {
  margin-bottom: 4rem;
  text-align: center;
}
.product-pdp .product-reviews-section .customer-photos-block h3 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery .gallery-img-box {
  width: 90px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery .gallery-img-box:hover {
  opacity: 0.85;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery .gallery-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery .see-more-photos {
  font-size: 1.4rem;
  color: #777;
  text-decoration: underline;
  margin-left: 1rem;
  cursor: pointer;
}
.product-pdp .product-reviews-section .customer-photos-block .photo-gallery .see-more-photos:hover {
  color: #333;
}
.product-pdp .product-reviews-section .reviews-list-controls {
  margin-bottom: 3rem;
}
.product-pdp .product-reviews-section .reviews-list-controls .sort-dropdown {
  font-size: 1.4rem;
  color: #009688;
  font-weight: 500;
}
.product-pdp .product-reviews-section .reviews-list .review-item {
  border-top: 1px solid #eee;
  padding: 3rem 0;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-stars {
  margin-bottom: 1.5rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-stars .star-icon {
  font-size: 1.6rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-stars .star-icon.teal-star {
  color: #009688;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-stars .star-icon.gray-star {
  color: #d3d3d3;
}
.product-pdp .product-reviews-section .reviews-list .review-item .reviewer-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .reviewer-info .reviewer-icon {
  margin-right: 1rem;
  color: #009688;
  background: #eefaf9;
  border: 1px solid #ccece9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.product-pdp .product-reviews-section .reviews-list .review-item .reviewer-info .reviewer-name {
  color: #333;
  font-weight: 500;
  margin-right: 1rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .reviewer-info .verified-badge {
  color: #007bff;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-title {
  font-size: 1.5rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-text {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-attached-photos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-attached-photos .attached-img-box {
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}
.product-pdp .product-reviews-section .reviews-list .review-item .review-attached-photos .attached-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-pdp .product-reviews-section .reviews-list .no-reviews-msg {
  font-size: 1.5rem;
  color: #777;
  font-style: italic;
  padding: 2rem 0;
}
.product-pdp .product-faqs-section {
  padding: 4rem 0;
  width: 100%;
  margin: 0 auto;
}
.product-pdp .product-faqs-section .section-title {
  font-size: 2rem;
  color: #222;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}
.product-pdp .product-faqs-section .faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .product-pdp .product-faqs-section .faq-container {
    padding: 0 4rem;
  }
}
.product-pdp .product-faqs-section .faq-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.8rem 1.2rem;
  transition: all 0.3s ease;
}
.product-pdp .product-faqs-section .faq-item[open] {
  border-color: #009688;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding-bottom: 1.2rem;
}
.product-pdp .product-faqs-section .faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.4rem;
  color: #333;
  outline: none;
  padding-right: 0.5rem;
}
.product-pdp .product-faqs-section .faq-item summary::after {
  content: "⌄";
  font-size: 1.8rem;
  color: #555;
  transition: transform 0.2s ease;
}
.product-pdp .product-faqs-section .faq-item[open] summary::after {
  transform: rotate(180deg);
  color: #009688;
}
.product-pdp .product-faqs-section .faq-item .faq-answer {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid #f0f0f0;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.5;
}
.product-pdp .similar-products-section {
  padding: 6rem 0;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-pdp .similar-products-section {
    padding: 3rem 0;
  }
}
.product-pdp .similar-products-section .section-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .product-pdp .similar-products-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.product-pdp .similar-products-section .similar-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .product-pdp .similar-products-section .similar-products-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0 1.5rem 2rem 1.5rem;
  }
  .product-pdp .similar-products-section .similar-products-grid::-webkit-scrollbar {
    display: none;
  }
  .product-pdp .similar-products-section .similar-products-grid {
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 768px) {
  .product-pdp .similar-products-section .similar-products-grid .product-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    padding: 1.5rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card__image-wrapper {
    margin-bottom: 1rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card__title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    min-height: 3.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card__short-desc {
    display: -webkit-box;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card__rating {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card__pricing {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card .btn-add-to-cart {
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }
  .product-pdp .similar-products-section .similar-products-grid .product-card .btn-add-to-cart i {
    font-size: 1.2rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-pdp .similar-products-section .similar-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.search-results-page {
  margin-top: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 1024px) {
  .search-results-page {
    margin-top: 12rem;
  }
}
.search-results-page .mobile-action-bar {
  display: none;
}
@media (max-width: 1024px) {
  .search-results-page .mobile-action-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .search-results-page .mobile-action-bar .mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    transition: background 0.2s ease;
  }
  .search-results-page .mobile-action-bar .mobile-action-btn:hover {
    background: #f9f9f9;
  }
  .search-results-page .mobile-action-bar .mobile-action-btn i {
    color: #555;
  }
}
.search-results-page .search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
@media (max-width: 1024px) {
  .search-results-page .search-results-header {
    margin-bottom: 2rem;
    border-bottom: none;
    padding-bottom: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.search-results-page .search-results-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
  .search-results-page .search-results-header h1 {
    font-size: 1.8rem;
  }
}
.search-results-page .search-results-header p {
  font-size: 1.4rem;
  color: #666;
}
@media (max-width: 1024px) {
  .search-results-page .search-results-header .desktop-sort-container {
    display: none !important;
  }
}
.search-results-page .search-results-header .sort-container {
  font-size: 1.4rem;
}
.search-results-page .search-results-header .sort-container label {
  color: #555;
  margin-right: 0.5rem;
}
.search-results-page .search-results-header .sort-container select {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  background-color: #fff;
  cursor: pointer;
}
.search-results-page .search-results-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .search-results-page .search-results-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.search-results-page .search-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .search-results-page .search-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.search-results-page .search-product-grid .no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 6rem 2rem;
  background: #f9f9f9;
  border-radius: 8px;
}
.search-results-page .search-product-grid .no-results i {
  font-size: 5rem;
  color: #ccc;
}
.search-results-page .search-product-grid .no-results h2 {
  font-size: 2rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.search-results-page .search-product-grid .no-results p {
  font-size: 1.5rem;
  color: #777;
}

@media (max-width: 1024px) {
  .search-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-right: none !important;
  }
  .search-sidebar.mobile-active {
    left: 0;
  }
}
.search-sidebar .mobile-filter-header {
  display: none;
}
@media (max-width: 1024px) {
  .search-sidebar .mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
  }
  .search-sidebar .mobile-filter-header h2 {
    font-size: 2rem;
    margin: 0;
    color: #333;
    font-weight: 700;
  }
  .search-sidebar .mobile-filter-header button {
    background: none;
    border: none;
    font-size: 2.8rem;
    color: #333;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  .search-sidebar .mobile-filter-header button:active {
    transform: scale(0.9);
  }
}
.search-sidebar h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .search-sidebar h3 {
    display: none;
  }
}
.search-sidebar .filter-group {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.search-sidebar .filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.search-sidebar .filter-group h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #222;
  transition: color 0.2s ease;
}
.search-sidebar .filter-group h4:hover {
  color: #008542;
}
.search-sidebar .filter-group h4 i {
  font-size: 1.8rem;
  color: #777;
  transition: transform 0.3s ease;
}
.search-sidebar .filter-group h4.collapsed i {
  transform: rotate(-90deg);
}
.search-sidebar .filter-group .filter-options {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.search-sidebar .filter-group .filter-options label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
}
.search-sidebar .filter-group .filter-options label:hover {
  color: #111;
}
.search-sidebar .filter-group .filter-options label input[type=checkbox] {
  margin-right: 1rem;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
  accent-color: #333;
}

.search-product-grid .product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  transition: transform 0.2s ease;
  height: 100%;
}
.search-product-grid .product-card .image-wrapper {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: #f4f4f4;
}
@media (max-width: 768px) {
  .search-product-grid .product-card .image-wrapper {
    margin-bottom: 1rem;
  }
}
.search-product-grid .product-card .image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.search-product-grid .product-card:hover .image-wrapper img {
  transform: scale(1.05);
}
.search-product-grid .product-card .p-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.search-product-grid .product-card .p-details .p-name {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  color: #333;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
@media (max-width: 768px) {
  .search-product-grid .product-card .p-details .p-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
}
.search-product-grid .product-card .p-details .p-name:hover {
  color: #008542;
}
.search-product-grid .product-card .p-details .p-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-top: auto;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .search-product-grid .product-card .p-details .p-price {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.search-product-grid .product-card .btn-add-cart {
  width: 100%;
  padding: 1.2rem;
  background: #ffdb15;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
@media (max-width: 768px) {
  .search-product-grid .product-card .btn-add-cart {
    padding: 1rem;
    font-size: 1.3rem;
  }
}
.search-product-grid .product-card .btn-add-cart:hover {
  background: #fcc200;
}
.search-product-grid .product-card .btn-add-cart:active {
  transform: scale(0.98);
}

.search-results-page {
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.search-results-page .search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  .search-results-page .search-results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.search-results-page .search-results-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
.search-results-page .search-results-header p {
  font-size: 1.4rem;
  color: #666;
}
.search-results-page .search-results-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .search-results-page .search-results-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.brands-page {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100vh - 300px);
}
.brands-page__header {
  text-align: center;
  margin-bottom: 5rem;
}
.brands-page__header h1 {
  font-size: 3.2rem;
  color: #004d4d;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
@media (max-width: 768px) {
  .brands-page__header h1 {
    font-size: 2.4rem;
  }
}
.brands-page__header p {
  color: #666;
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.brand-section {
  margin-bottom: 7rem;
}
.brand-section:not(:last-child) {
  border-bottom: 1px solid #e6f0f0;
  padding-bottom: 7rem;
}
.brand-section__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* --- MOBILE SPACING (Much tighter now!) --- */
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f2f9f8;
  border-radius: 8px;
  border: 1px solid rgba(0, 77, 77, 0.05);
}
@media (min-width: 1025px) {
  .brand-section__info {
    flex-direction: row;
    text-align: left;
    padding: 4rem 5rem;
    gap: 5rem;
    margin-bottom: 4rem;
  }
}
.brand-section__logo {
  flex-shrink: 0;
  background: #fff;
  /* --- MOBILE LOGO BOX (Slimmed down) --- */
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 220px;
}
@media (min-width: 1025px) {
  .brand-section__logo {
    padding: 2.5rem;
    min-width: 250px;
    width: auto;
  }
}
.brand-section__logo img {
  max-height: 55px; /* Shrunk from 90px for mobile */
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.8);
  transition: all 0.4s ease;
}
@media (min-width: 1025px) {
  .brand-section__logo img {
    max-height: 90px;
    max-width: 200px;
  }
}
.brand-section__logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}
.brand-section__logo h2 {
  font-size: 2rem;
  color: #004d4d;
  letter-spacing: 0.1rem;
}
@media (min-width: 1025px) {
  .brand-section__logo h2 {
    font-size: 2.8rem;
  }
}
.brand-section__details {
  flex: 1;
}
.brand-section__details .brand-story {
  color: #444;
  font-size: 1rem; /* Slightly smaller text for mobile */
  line-height: 1.5;
  margin-bottom: 1.2rem; /* Tighter gap below text */
  max-width: 800px;
}
@media (min-width: 1025px) {
  .brand-section__details .brand-story {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
}
.brand-section__details .brand-location {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  padding: 0.5rem 1rem; /* Slimmer pill on mobile */
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .brand-section__details .brand-location {
    padding: 0.8rem 1.5rem;
    gap: 0.8rem;
  }
}
.brand-section__details .brand-location:hover {
  transform: translateY(-2px);
  border-color: #00b5b5;
}
.brand-section__details .brand-location i {
  color: #00b5b5;
  font-size: 1.2rem;
}
@media (min-width: 1025px) {
  .brand-section__details .brand-location i {
    font-size: 1.4rem;
  }
}
.brand-section__details .brand-location span {
  font-size: 0.8rem;
  color: #004d4d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (min-width: 1025px) {
  .brand-section__details .brand-location span {
    font-size: 0.95rem;
  }
}

/* ==========================================
   PRODUCT GRID OVERRIDE (Desktop Grid -> Mobile Slider)
========================================== */
.brand-section .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(26rem, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .brand-section .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .brand-section .category-grid::-webkit-scrollbar {
    display: none;
  }
  .brand-section .category-grid {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    margin-left: -5%;
    margin-right: -5%;
  }
  .brand-section .category-grid .product-card {
    flex: 0 0 24rem !important;
    min-width: 24rem;
    max-width: 85vw;
  }
  .brand-section .category-grid .product-card__image-wrapper {
    padding-top: 75%;
  }
}

/* ==========================================
   GLASSMORPHISM MODAL WRAPPER
========================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 77, 77, 0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-content {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width: 768px) {
  .modal-content {
    padding: 3.5rem 4rem;
  }
}
.modal-content .close-modal {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-content .close-modal:hover {
  color: #d9534f;
}

/* ==========================================
   FORM STYLING INSIDE MODAL
========================================== */
.auth-form-box {
  width: 100%;
}
.auth-form-box #email-check-section, .auth-form-box #login-section, .auth-form-box #register-section {
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.auth-form-box h2 {
  font-size: 2.4rem;
  color: #004d4d;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .auth-form-box h2 {
    font-size: 2.8rem;
  }
}
.auth-form-box .subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .auth-form-box .subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
}
.auth-form-box .form-group {
  margin-bottom: 1.5rem;
}
.auth-form-box .form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.6rem;
}
.auth-form-box .form-group label sup {
  color: #d9534f;
}
.auth-form-box .form-group label .edit-email-btn {
  float: right;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: underline;
  color: #004d4d;
  transition: color 0.2s;
  pointer-events: auto;
}
.auth-form-box .form-group label .edit-email-btn:hover {
  color: #00b5b5;
}
.auth-form-box .form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}
.auth-form-box .form-group input::-ms-reveal, .auth-form-box .form-group input::-ms-clear {
  display: none;
}
.auth-form-box .form-group input:focus {
  outline: none;
  border-color: #00b5b5;
  box-shadow: 0 0 0 3px rgba(0, 181, 181, 0.1);
}
.auth-form-box .form-group input.is-invalid {
  border-color: #d9534f;
  background-color: #fdf2f2;
}
.auth-form-box .form-group input[readonly] {
  background-color: #f4f6f8;
  color: #666;
  pointer-events: none;
  border-color: #e2e8f0;
}
.auth-form-box .form-group input[readonly]:focus {
  box-shadow: none;
  border-color: #e2e8f0;
}
.auth-form-box .form-group .invalid-feedback {
  display: block;
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  font-weight: 500;
}
.auth-form-box .password-wrapper {
  position: relative;
}
.auth-form-box .password-wrapper .toggle-password {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: #888;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s;
}
.auth-form-box .password-wrapper .toggle-password:hover {
  color: #004d4d;
}
.auth-form-box .btn-block {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background-color: #004d4d;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}
.auth-form-box .btn-block:hover {
  background-color: #00b5b5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 181, 181, 0.2);
}
.auth-form-box .btn-block:active {
  transform: translateY(0);
}
.auth-form-box .form-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
  font-size: 0.95rem;
}
.auth-form-box .form-footer a {
  color: #004d4d;
  font-weight: 700;
  text-decoration: underline;
}
.auth-form-box .form-footer a:hover {
  color: #00b5b5;
}
.auth-form-box .forgot-password-link {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 20px;
}
.auth-form-box .forgot-password-link a {
  color: #004d4d;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.auth-form-box .forgot-password-link a:hover {
  opacity: 0.7;
}
.auth-form-box .auth-success-message {
  text-align: center;
  padding: 30px 10px;
}
.auth-form-box .auth-success-message svg {
  margin-bottom: 15px;
}
.auth-form-box .auth-success-message h2 {
  color: #004d4d;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}
.auth-form-box .auth-success-message p {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}
.auth-form-box .auth-success-message p.spam-note {
  color: #888;
  font-size: 0.8rem;
  margin-top: 15px;
}

.reset-password-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f6f8;
  padding: 100px 20px 40px 20px;
}
.reset-password-page__card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 450px;
  width: 100%;
}
.reset-password-page__header {
  text-align: center;
  margin-bottom: 30px;
}
.reset-password-page__header h2 {
  color: #004d4d;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}
.reset-password-page__header p {
  color: #666;
  font-size: 0.95rem;
}
.reset-password-page__btn {
  width: 100%;
  padding: 14px;
  background-color: #004d4d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.reset-password-page__btn:hover {
  background-color: #003333;
}
.reset-password-page input::-ms-reveal,
.reset-password-page input::-ms-clear {
  display: none;
}

body {
  background-color: #f9f9f7;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #121212;
  line-height: 1.7;
  text-align: left;
  overflow-x: hidden;
  width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f9f9f7;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 133, 66, 0.2);
  border-radius: 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
::-webkit-scrollbar-thumb:hover {
  background: #008542;
}

::-moz-selection {
  background-color: rgba(0, 133, 66, 0.1);
  color: #008542;
}

::selection {
  background-color: rgba(0, 133, 66, 0.1);
  color: #008542;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
}

main {
  display: block;
  width: 100%;
}/*# sourceMappingURL=main.css.map */