@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__icons .user-profile-container {
  margin-left: 0.5rem;
}
@media (min-width: 1025px) {
  .navbar__icons .user-profile-container {
    margin-left: 1rem;
  }
}
.navbar__icons .user-profile-container .user-avatar {
  background-color: transparent !important;
  color: #2d2a32 !important;
  border: 2px solid #2d2a32 !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  width: 28px !important;
  height: 28px !important;
  font-size: 0.95rem !important;
}
@media (min-width: 1025px) {
  .navbar__icons .user-profile-container .user-avatar {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.15rem !important;
  }
}
.navbar__icons .user-profile-container .user-avatar:hover {
  background-color: #fafafa !important;
  border-color: #008542 !important;
  color: #008542 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.06);
}
.navbar__icons .user-profile-container #userMenu {
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}
.navbar__icons .user-profile-container #userMenu a {
  font-size: 1.4rem !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  color: #121212 !important;
  transform: none !important;
}
@media (min-width: 1025px) {
  .navbar__icons .user-profile-container #userMenu a {
    font-size: 1.4rem !important;
  }
}
.navbar__icons .user-profile-container #userMenu a:hover {
  color: #008542 !important;
  background-color: #f9f9f9 !important;
  transform: translateX(4px) !important;
}
.navbar__icons .user-profile-container #userMenu a i {
  color: #aaa !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar__icons .user-profile-container #userMenu a:hover i {
  color: #008542 !important;
}
.navbar__icons .user-profile-container #userMenu button {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
}
.navbar__icons .user-profile-container #userMenu button:hover {
  background-color: #fef2f2 !important;
}
.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);
  }
}
.user-modal-overlay {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.user-modal-overlay h3 {
  font-family: "Playfair Display", serif !important;
}
.user-modal-overlay button {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.05rem;
}

.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-banner-container {
  position: fixed;
  z-index: 9999;
  background-color: #f7e0a3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1025px) {
  .promo-banner-container {
    width: 380px;
    left: auto;
    right: 3rem;
    bottom: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.12);
  }
}
.promo-banner-container .promo-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.3s ease;
}
.promo-banner-container .promo-banner-header .promo-text-closed {
  font-size: 1.05rem;
  color: #333;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}
.promo-banner-container .promo-banner-header .promo-text-closed strong {
  font-weight: 700;
  color: #111;
}
.promo-banner-container .promo-banner-header .promo-text-closed .highlight {
  color: #006d6d;
  font-weight: 700;
  text-decoration: underline;
}
.promo-banner-container .promo-banner-header .promo-text-opened {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.promo-banner-container .promo-banner-header .chevron-btn {
  background: none;
  border: none;
  color: #333;
  transition: transform 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-banner-container.active {
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1025px) {
  .promo-banner-container.active {
    border-radius: 8px 8px 0 0;
  }
}
.promo-banner-container.active .promo-banner-header {
  background-color: #fff;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 1.2rem;
}
.promo-banner-container.active .promo-banner-header .chevron-btn {
  transform: rotate(180deg);
}
.promo-banner-container.active .promo-details-drawer {
  max-height: 60vh;
  padding: 1.5rem;
  opacity: 1;
  overflow-y: auto;
}
.promo-banner-container.active .promo-details-drawer::-webkit-scrollbar {
  width: 4px;
}
.promo-banner-container.active .promo-details-drawer::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.promo-banner-container .promo-details-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}
.promo-banner-container .promo-timeline .promo-step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.promo-banner-container .promo-timeline .promo-step:last-child {
  margin-bottom: 0;
}
.promo-banner-container .promo-timeline .promo-step:last-child .line {
  display: none;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: conic-gradient(#006d6d var(--progress), #eee 0);
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle i {
  z-index: 1;
  color: #006d6d;
  font-size: 0.75rem;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .line {
  width: 2px;
  flex-grow: 1;
  background: #eee;
  margin-top: 6px;
}
.promo-banner-container .promo-timeline .promo-step.unlocked .circle {
  background: #006d6d;
}
.promo-banner-container .promo-timeline .promo-step.unlocked .line {
  background: #006d6d;
}
.promo-banner-container .promo-timeline .promo-step .step-content {
  flex: 1;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  align-items: center;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header .tier-name {
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header .tier-count {
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0.8rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot.empty {
  border: 1px dashed #bbb;
  color: #999;
  font-size: 0.85rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot.filled {
  border: 1px solid #006d6d;
  background: rgba(0, 109, 109, 0.06);
  color: #006d6d;
}
.promo-banner-container .promo-timeline .promo-step .step-content .step-hint {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
}
.promo-banner-container .promo-timeline .promo-step .step-content .step-hint strong {
  color: #111;
  font-weight: 600;
}

/* ==========================================
   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 .key-highlights-wrapper {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}
.product-pdp .hero-right-column .key-highlights-wrapper .highlights-heading {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 1.2rem;
}
.product-pdp .hero-right-column .key-highlights-wrapper .highlights-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.product-pdp .hero-right-column .key-highlights-wrapper .highlights-pills-container .highlight-pill {
  background-color: #e0f2f1;
  color: #009688;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}
.product-pdp .hero-right-column .key-highlights-wrapper .highlights-pills-container .highlight-pill:hover {
  background-color: #009688;
  color: #fff;
}
.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: 520px;
  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: 2.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, .auth-form-box #edit-profile-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.8rem;
  color: #004d4d;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .auth-form-box h2 {
    font-size: 3.2rem;
  }
}
.auth-form-box .subtitle {
  color: #666;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .auth-form-box .subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}
.auth-form-box .form-group {
  margin-bottom: 1.8rem;
}
.auth-form-box .form-group label {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
}
.auth-form-box .form-group label sup {
  color: #d9534f;
}
.auth-form-box .form-group label .edit-email-btn {
  float: right;
  font-size: 1rem;
  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: 1.1rem 1.4rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1.2rem;
  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: rgba(0, 0, 0, 0.02);
  color: #888;
  cursor: not-allowed;
  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: 1rem;
  margin-top: 0.5rem;
  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.5rem;
  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.4rem;
  font-size: 1.3rem;
  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: 1.1rem;
}
.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: 1.05rem;
  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: 1.1rem;
}
.auth-form-box .auth-success-message p.spam-note {
  color: #888;
  font-size: 0.95rem;
  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;
}

.review-form-box {
  max-width: 650px !important;
}
.review-form-box h2 {
  font-size: 2.4rem !important;
  margin-bottom: 10px !important;
}
.review-form-box .subtitle {
  font-size: 1.15rem !important;
  margin-bottom: 30px !important;
  color: #555;
}
.review-form-box .form-group {
  margin-bottom: 1.8rem;
}
.review-form-box .form-group label {
  font-size: 1.1rem !important;
  margin-bottom: 8px !important;
}
.review-form-box .form-group input[type=text],
.review-form-box .form-group input[type=email],
.review-form-box .form-group textarea {
  font-size: 1.1rem !important;
  padding: 14px 16px !important;
}
.review-form-box .star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  font-size: 3.5rem !important;
}
.review-form-box .star-rating input {
  display: none;
}
.review-form-box .star-rating label {
  cursor: pointer;
  color: #ddd;
  transition: color 0.2s;
}
.review-form-box .star-rating label:hover,
.review-form-box .star-rating label:hover ~ label,
.review-form-box .star-rating input:checked ~ label {
  color: #ffb400 !important;
}
.review-form-box .upload-dropzone {
  border: 2px dashed #ccc;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
  background-color: #fafafa;
}
.review-form-box .upload-dropzone:hover {
  border-color: #004d4d;
}
.review-form-box .upload-dropzone i {
  font-size: 2.8rem;
  color: #888;
}
.review-form-box .upload-dropzone span {
  display: block;
  margin-top: 15px;
  color: #666;
  font-size: 1.1rem !important;
}
.review-form-box textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  resize: vertical;
}
.review-form-box textarea:focus {
  outline: none;
  border-color: #00b5b5;
  box-shadow: 0 0 0 3px rgba(0, 181, 181, 0.1);
}

.customer-photos-block {
  margin: 40px 0;
}
.customer-photos-block h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}
.customer-photos-block .photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.customer-photos-block .photo-gallery .gallery-img-box {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.customer-photos-block .photo-gallery .gallery-img-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.customer-photos-block .photo-gallery .gallery-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s ease;
}
.customer-photos-block .photo-gallery .gallery-img-box img:hover {
  opacity: 0.85;
}
.customer-photos-block .photo-gallery .see-more-photos {
  font-size: 1.1rem;
  color: #008080;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 10px;
  cursor: pointer;
}
.customer-photos-block .photo-gallery .see-more-photos:hover {
  color: #004d4d;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.lightbox-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-modal .lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 50px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.lightbox-modal .lightbox-close-btn:hover, .lightbox-modal .lightbox-close-btn:focus {
  color: #bbb;
  text-decoration: none;
}
.lightbox-modal .lightbox-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1000px;
  height: 85vh;
}
.lightbox-modal .lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}
.lightbox-modal .lightbox-content .lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 10;
}
.lightbox-modal .lightbox-content .lightbox-nav-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}
.lightbox-modal .lightbox-content .lightbox-nav-btn#lightbox-prev {
  left: -60px;
}
.lightbox-modal .lightbox-content .lightbox-nav-btn#lightbox-next {
  right: -60px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.checkout-wrapper {
  max-width: 1200px;
  margin: 140px auto 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 900px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 120px;
    display: flex;
    flex-direction: column;
  }
  .checkout-wrapper .checkout-right {
    order: 1;
    width: 100%;
  }
  .checkout-wrapper .checkout-left {
    order: 2;
    width: 100%;
  }
}

/* --- Left Column: Steps --- */
.checkout-left .checkout-step {
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.checkout-left .checkout-step--no-border {
  border-bottom: none;
  padding-bottom: 0;
}
.checkout-left .checkout-step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.checkout-left .checkout-step-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.checkout-left .checkout-step-header a {
  font-size: 1.2rem;
  color: #666;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.checkout-left .checkout-step-header a:hover {
  color: #000;
}
.checkout-left .checkout-step .customer-email-display {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
}
.checkout-left .checkout-step #checkout_login_form .form-group {
  margin-bottom: 20px;
}
.checkout-left .checkout-step #checkout_login_form .login-error-msg {
  color: #dc3545;
  display: block;
  margin-bottom: 15px;
  font-size: 1rem;
}
.checkout-left .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.checkout-left .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.checkout-left .form-group.full-width {
  grid-column: span 2;
}
.checkout-left .form-group label {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-left .form-group input[type=text],
.checkout-left .form-group input[type=email],
.checkout-left .form-group input[type=tel],
.checkout-left .form-group input[type=password],
.checkout-left .form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 1.2rem;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.3s ease;
}
.checkout-left .form-group input[type=text]:focus,
.checkout-left .form-group input[type=email]:focus,
.checkout-left .form-group input[type=tel]:focus,
.checkout-left .form-group input[type=password]:focus,
.checkout-left .form-group select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.checkout-left .form-group input[type=text]::-moz-placeholder, .checkout-left .form-group input[type=email]::-moz-placeholder, .checkout-left .form-group input[type=tel]::-moz-placeholder, .checkout-left .form-group input[type=password]::-moz-placeholder, .checkout-left .form-group select::-moz-placeholder {
  color: #bbb;
}
.checkout-left .form-group input[type=text]::placeholder,
.checkout-left .form-group input[type=email]::placeholder,
.checkout-left .form-group input[type=tel]::placeholder,
.checkout-left .form-group input[type=password]::placeholder,
.checkout-left .form-group select::placeholder {
  color: #bbb;
}
.checkout-left .form-group .password-input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.checkout-left .form-group .password-input-wrapper input[type=password],
.checkout-left .form-group .password-input-wrapper input[type=text] {
  padding-right: 70px;
}
.checkout-left .form-group .password-input-wrapper .password-toggle-btn {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #777;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px;
  z-index: 2;
  transition: color 0.2s ease;
}
.checkout-left .form-group .password-input-wrapper .password-toggle-btn:hover {
  color: #000;
}
.checkout-left .form-group .phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}
.checkout-left .form-group .phone-input-wrapper:focus-within {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.checkout-left .form-group .phone-input-wrapper .country-code {
  padding: 16px 15px;
  background-color: #f9f9f9;
  color: #555;
  font-size: 1.2rem;
  font-weight: 500;
  border-right: 1px solid #e0e0e0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkout-left .form-group .phone-input-wrapper input {
  flex: 1;
  border: none;
  padding: 16px;
  background: transparent;
}
.checkout-left .form-group .phone-input-wrapper input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
.checkout-left .checkbox-group {
  margin-top: 15px;
}
.checkout-left .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #555;
  font-size: 1.2rem;
  margin: 0;
  transition: color 0.3s ease;
}
.checkout-left .checkbox-group label:hover {
  color: #000;
}
.checkout-left .checkbox-group label input[type=checkbox], .checkout-left .checkbox-group label input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #000;
}
.checkout-left .payment-methods-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.checkout-left .payment-methods-wrapper .payment-method-card {
  margin-top: 0;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: transparent;
}
.checkout-left .payment-methods-wrapper .payment-method-card.active {
  border-color: #000;
  background-color: #fafafa;
}
.checkout-left .payment-methods-wrapper .payment-method-card label {
  width: 100%;
}
.checkout-left .payment-methods-wrapper .payment-method-card label input[type=radio] {
  margin-right: 15px;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-details {
  flex-grow: 1;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-details strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #000;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-details span {
  font-size: 0.95rem;
  color: #666;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-icon {
  font-size: 2rem;
  display: flex;
  gap: 8px;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-icon.cod {
  color: #28a745;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-icon.mobile {
  color: #e2136e;
}
.checkout-left .payment-methods-wrapper .payment-method-card label .payment-icon.card {
  color: #1a1f36;
}
.checkout-left .payment-methods-wrapper .payment-method-card:hover:not(.active) {
  border-color: #aaa;
}

/* --- Right Column: Order Summary --- */
.checkout-right .order-summary-box {
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  padding: 40px;
  border-radius: 4px;
  position: sticky;
  top: 140px;
}
@media (max-width: 900px) {
  .checkout-right .order-summary-box {
    position: relative;
    top: 0;
    padding: 30px 20px;
  }
}
.checkout-right .order-summary-box h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
}
.checkout-right .summary-items-list {
  max-height: 450px;
  overflow-y: auto;
  padding-right: 15px;
}
.checkout-right .summary-items-list::-webkit-scrollbar {
  width: 4px;
}
.checkout-right .summary-items-list::-webkit-scrollbar-track {
  background: transparent;
}
.checkout-right .summary-items-list::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.checkout-right .summary-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.checkout-right .summary-item img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
}
.checkout-right .summary-item-details {
  flex: 1;
}
.checkout-right .summary-item-details h4 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: #222;
  line-height: 1.4;
}
.checkout-right .summary-item-details p {
  margin: 0;
  font-size: 1.05rem;
  color: #777;
}
.checkout-right .summary-item .summary-price {
  font-weight: 600;
  font-size: 1.3rem;
}
.checkout-right .gamification-box {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin: 25px 0;
}
.checkout-right .gamification-box .meter-wrap {
  margin-bottom: 20px;
}
.checkout-right .gamification-box .meter-wrap:last-child {
  margin-bottom: 0;
}
.checkout-right .gamification-box .meter-wrap .meter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.checkout-right .gamification-box .meter-wrap .meter-header .locked-text {
  color: #888;
  font-size: 0.9rem;
  font-weight: 500;
}
.checkout-right .gamification-box .meter-wrap .meter-header .copy-btn {
  background: transparent;
  color: #008a45;
  border: 1px solid #008a45;
  padding: 4px 10px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkout-right .gamification-box .meter-wrap .meter-header .copy-btn:hover {
  background: #008a45;
  color: #fff;
}
.checkout-right .gamification-box .meter-wrap .meter-bar-bg {
  background: #e9ecef;
  height: 8px;
  border-radius: 50px;
  overflow: hidden;
}
.checkout-right .gamification-box .meter-wrap .meter-bar-bg .meter-bar-fill {
  height: 100%;
  transition: width 0.5s ease-in-out;
}
.checkout-right .gamification-box .meter-wrap .meter-bar-bg .meter-bar-fill.locked {
  background: #f5a623;
}
.checkout-right .gamification-box .meter-wrap .meter-bar-bg .meter-bar-fill.unlocked {
  background: #008a45;
}
.checkout-right .promo-code-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #ddd;
}
.checkout-right .promo-code-section .promo-input-group {
  display: flex;
  gap: 10px;
}
.checkout-right .promo-code-section .promo-input-group input[type=text] {
  flex: 1;
  padding: 14px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 1.2rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.checkout-right .promo-code-section .promo-input-group input[type=text]:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.checkout-right .promo-code-section .promo-input-group input[type=text]::-moz-placeholder {
  color: #999;
}
.checkout-right .promo-code-section .promo-input-group input[type=text]::placeholder {
  color: #999;
}
.checkout-right .promo-code-section .promo-input-group button {
  padding: 0 25px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 2px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.checkout-right .promo-code-section .promo-input-group button:hover {
  background: #000;
  color: #fff;
}
.checkout-right .promo-code-section .promo-input-group button:active {
  transform: scale(0.98);
}
.checkout-right .promo-code-section .promo-msg {
  margin: 10px 0 0 0;
  font-size: 1rem;
}
.checkout-right .summary-totals {
  border-top: 1px solid #ddd;
  padding-top: 25px;
  margin-top: 25px;
}
.checkout-right .summary-totals .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #555;
}
.checkout-right .summary-totals .summary-row.discount-row {
  color: #28a745;
}
.checkout-right .summary-totals .summary-row.grand-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  border-top: 2px solid #000;
  padding-top: 20px;
  margin-top: 15px;
}
.checkout-right .summary-totals .summary-row.tax-row {
  font-size: 1.05rem;
  color: #888;
  margin-top: 15px;
}

/* Generic Checkout Button & Modifiers */
.btn-checkout {
  display: block;
  width: 100%;
  padding: 18px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 25px;
  transition: background 0.3s ease, transform 0.1s ease, color 0.3s ease;
}
.btn-checkout:hover {
  background: #333;
}
.btn-checkout:active {
  transform: scale(0.99);
}
.btn-checkout--outline {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}
.btn-checkout--outline:hover {
  background: #000;
  color: #fff;
}
.btn-checkout--light {
  background: #f9f9f9;
  color: #000;
  border: 1px solid #ddd;
}
.btn-checkout--light:hover {
  background: #eaeaea;
}
.btn-checkout--highlight {
  background: #FFC107;
  color: #000;
}
.btn-checkout--highlight:hover {
  background: #e0a800;
}

/* ==========================================
   1. SIMULATED GATEWAY PAGE
   ========================================== */
.gateway-wrapper {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fafafa;
}

.gateway-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Header */
}
.gateway-card .gateway-header {
  background: #111;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  position: relative;
}
.gateway-card .gateway-header__icon {
  font-size: 2.5rem;
  color: #FFC107;
}
.gateway-card .gateway-header__title {
  margin: 15px 0 5px 0;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.gateway-card .gateway-header__order {
  margin: 0;
  font-size: 0.95rem;
  color: #aaa;
}
.gateway-card .gateway-header__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #fff;
  border-radius: 50% 50% 0 0;
}
.gateway-card {
  /* Body */
}
.gateway-card .gateway-body {
  padding: 30px 40px 40px 40px;
}
.gateway-card {
  /* Payment Method Icons Row */
}
.gateway-card .gateway-methods {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 2rem;
}
.gateway-card .gateway-methods .method-icon--visa {
  color: #1a1f36;
}
.gateway-card .gateway-methods .method-icon--mastercard {
  color: #eb001b;
}
.gateway-card .gateway-methods .method-icon--mobile {
  color: #e2136e;
}
.gateway-card .gateway-methods .method-divider {
  width: 2px;
  background: #eee;
  margin: 0 10px;
}
.gateway-card {
  /* Sandbox Notice */
}
.gateway-card .gateway-notice {
  background: #eef2f5;
  border-left: 4px solid #17a2b8;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.gateway-card .gateway-notice p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}
.gateway-card .gateway-notice p i {
  color: #17a2b8;
  margin-right: 5px;
}
.gateway-card {
  /* Inputs */
}
.gateway-card .gateway-input-group {
  margin-bottom: 20px;
}
.gateway-card .gateway-input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}
.gateway-card .gateway-input-group .gateway-input {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #f9f9f9;
  color: #888;
  text-align: center;
  font-family: monospace;
  font-size: 1.1rem;
  cursor: not-allowed;
}
.gateway-card .gateway-input-group .gateway-input--pin {
  font-size: 1.2rem;
  letter-spacing: 8px;
}
.gateway-card {
  /* Buttons inside gateway */
}
.gateway-card .gateway-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.gateway-card .gateway-actions .btn-checkout {
  margin-top: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gateway-card .gateway-actions .btn-checkout i {
  margin-right: 8px;
  font-size: 1.3rem;
}
.gateway-card {
  /* Footer */
}
.gateway-card .gateway-footer {
  background: #f4f6f8;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eaeaea;
}
.gateway-card .gateway-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}
.gateway-card .gateway-footer p i {
  color: #28a745;
  margin-right: 4px;
}

/* ==========================================
   2. SUCCESS & FAILED STATUS PAGES
   ========================================== */
.status-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.status-card {
  text-align: center;
  max-width: 600px;
  padding: 50px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 4px;
}
.status-card .status-icon {
  font-size: 80px;
  line-height: 1;
}
.status-card .status-icon--success {
  color: #28a745;
}
.status-card .status-icon--error {
  color: #dc3545;
}
.status-card .status-title {
  font-size: 2.2rem;
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.status-card .status-message {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.status-card .status-btn {
  display: inline-block;
  width: auto;
  padding: 15px 40px;
  text-decoration: none;
  margin-top: 0;
}

/* ==========================================
   3. NEW BUTTON MODIFIER (Add to existing buttons)
   ========================================== */
.btn-checkout--danger {
  background: transparent;
  color: #dc3545;
  border: 2px solid #dc3545;
}
.btn-checkout--danger:hover {
  background: #dc3545;
  color: #fff;
}

/* --- Fesderm About Page Styling --- */
.about-wrapper {
  max-width: 1200px;
  margin: 160px auto 80px;
  padding: 0 24px;
}

/* Hero Section: Thai Clinical Aesthetic */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.about-hero__text {
  flex: 1.2;
  min-width: 300px;
}
.about-hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: #e6f4ea;
  color: #008a45;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}
.about-hero__title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -1px;
}
@media (max-width: 600px) {
  .about-hero__title {
    font-size: 2.5rem;
  }
}
.about-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}
.about-hero__visual {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  height: auto;
  margin-left: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
  .about-hero__visual {
    max-width: 100%;
    margin-left: 0;
  }
}
.about-hero__visual img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.about-hero__visual img:hover {
  transform: scale(1.05);
}

/* Core Values: Professional Clinical Cards */
.about-values {
  margin-bottom: 120px;
}
.about-values__header {
  text-align: center;
  margin-bottom: 60px;
}
.about-values__header h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-values__header .divider-line {
  width: 50px;
  height: 4px;
  background: #008a45;
  margin: 0 auto;
  border-radius: 2px;
}
.about-values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.about-values .value-card {
  background: #ffffff;
  padding: 50px 40px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}
.about-values .value-card:hover {
  transform: translateY(-12px);
  border-color: #008a45;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}
.about-values .value-card__icon {
  font-size: 3rem;
  color: #008a45;
  margin-bottom: 24px;
  display: inline-block;
}
.about-values .value-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.about-values .value-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Call to Action: Premium Dark Banner */
.about-cta {
  background: #0b221a;
  color: #fff;
  text-align: center;
  padding: 90px 30px;
  border-radius: 20px;
  background-image: linear-gradient(135deg, #0b221a 0%, #05110d 100%);
  position: relative;
  overflow: hidden;
}
.about-cta__content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-cta__content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
@media (max-width: 600px) {
  .about-cta__content h2 {
    font-size: 2rem;
  }
}
.about-cta__content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 45px;
  font-weight: 300;
  line-height: 1.6;
}
.about-cta__content {
  /* --- NEW BUTTON STYLING (Round & Thin) --- */
}
.about-cta__content .cta-action a {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 40px;
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-cta__content .cta-action a:hover {
  background: #fff;
  color: #0b221a;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.about-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 138, 69, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.promo-banner-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  z-index: 9999;
  background: #fdf2d0;
  border: 1px solid #f0e0b0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.promo-banner-container .promo-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.3s ease;
}
.promo-banner-container .promo-banner-header .promo-text-closed {
  margin: 0;
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
  line-height: 1.2;
}
.promo-banner-container .promo-banner-header .promo-text-closed strong {
  color: #008a45;
}
.promo-banner-container .promo-banner-header .promo-text-closed .highlight {
  color: #008a45;
  font-weight: 700;
  text-decoration: underline;
}
.promo-banner-container .promo-banner-header .promo-text-opened {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}
.promo-banner-container .promo-banner-header .chevron-btn {
  background: none;
  border: none;
  color: #333;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 24px;
  height: 24px;
}
.promo-banner-container.active {
  background: #fff;
  border-color: #eee;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.promo-banner-container.active .promo-banner-header {
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
  padding: 10px 16px;
}
.promo-banner-container.active .promo-banner-header .chevron-btn {
  transform: rotate(180deg);
}
.promo-banner-container.active .promo-details-drawer {
  max-height: 600px;
  padding: 20px 16px;
  opacity: 1;
  overflow-y: auto;
}
.promo-banner-container .promo-details-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}
.promo-banner-container .promo-details-drawer .drawer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}
.promo-banner-container .promo-timeline .promo-step {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.promo-banner-container .promo-timeline .promo-step:last-child {
  margin-bottom: 0;
}
.promo-banner-container .promo-timeline .promo-step:last-child .line {
  display: none;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: conic-gradient(#008a45 var(--progress), #eaeaea 0);
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .circle i {
  z-index: 1;
  color: #008a45;
  font-size: 0.9rem;
}
.promo-banner-container .promo-timeline .promo-step .step-indicator .line {
  width: 2px;
  flex-grow: 1;
  background: #eaeaea;
  margin-top: 8px;
}
.promo-banner-container .promo-timeline .promo-step.unlocked .circle {
  background: #008a45;
}
.promo-banner-container .promo-timeline .promo-step.unlocked .line {
  background: #008a45;
}
.promo-banner-container .promo-timeline .promo-step .step-content {
  flex: 1;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header .tier-name {
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .tier-header .tier-count {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot.empty {
  border: 1px dashed #bbb;
  color: #999;
  font-size: 1rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .product-slots .slot.filled {
  border: 1px solid #008a45;
  background: #e6f4ea;
  color: #008a45;
  font-size: 1.1rem;
}
.promo-banner-container .promo-timeline .promo-step .step-content .step-hint {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.promo-banner-container .promo-timeline .promo-step .step-content .step-hint strong {
  color: #111;
}

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 */