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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0f0f1a;
  color: #e0e0e0;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.nav {
  background-color: #8fe3ff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
}
.nav__logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f0f1a;
  margin-right: 2rem;
}
.nav__menu {
  display: flex;
  gap: 2rem;
}
.nav__item {
  position: relative;
}
.nav__item--dropdown:hover .nav__dropdown, .nav__item--dropdown.active .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__link {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #0f0f1a;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.nav__link:hover {
  background-color: rgba(15, 15, 26, 0.1);
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 15, 26, 0.12);
  border: 1px solid rgba(15, 15, 26, 0.2);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  margin-left: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.nav__search:focus-within {
  background: rgba(15, 15, 26, 0.18);
  border-color: rgba(15, 15, 26, 0.4);
}
.nav__search-icon {
  color: #0f0f1a;
  opacity: 0.6;
  flex-shrink: 0;
}
.nav__search-input {
  background: none;
  border: none;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #0f0f1a;
  width: 180px;
}
.nav__search-input::placeholder {
  color: rgba(15, 15, 26, 0.5);
}
.nav__auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.nav__cart {
  display: flex;
  align-items: center;
  color: #0f0f1a;
  padding: 0.4rem;
  border-radius: 4px;
  transition: background-color 0.2s;
}
.nav__cart:hover {
  background-color: rgba(15, 15, 26, 0.1);
}
.nav__btn {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.nav__btn--login {
  color: #0f0f1a;
  background-color: transparent;
  border: 1.5px solid #0f0f1a;
}
.nav__btn--login:hover {
  background-color: rgba(15, 15, 26, 0.1);
}
.nav__btn--register {
  color: #ffffff;
  background-color: #0f0f1a;
}
.nav__btn--register:hover {
  background-color: rgb(33.6585365854, 33.6585365854, 58.3414634146);
}
.nav__dropdown-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Inter", sans-serif;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  color: #0f0f1a;
  cursor: pointer;
  transition: background-color 0.15s;
}
.nav__dropdown-link:hover {
  background-color: rgba(143, 227, 255, 0.2);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f0f1a;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__user {
  position: relative;
}
.nav__user-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1.5px solid #0f0f1a;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #0f0f1a;
  cursor: pointer;
  transition: background 0.2s;
}
.nav__user-btn:hover {
  background: rgba(15, 15, 26, 0.08);
}
.nav__user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  padding: 0.4rem 0;
  z-index: 200;
}
.nav__user--open .nav__user-dropdown {
  display: block;
}
.nav__user-link {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 0.55rem 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #0f0f1a;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.nav__user-link:hover {
  background: rgba(143, 227, 255, 0.15);
}
.nav__user-link--logout {
  color: #e05;
}

@media (max-width: 1023px) {
  .nav__search-input {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }
  .nav__container {
    flex-wrap: wrap;
    height: auto;
    padding: 0 1rem;
    min-height: 56px;
    position: relative;
  }
  .nav__logo {
    margin-right: auto;
  }
  .nav__search {
    display: none;
  }
  .nav__auth {
    order: -1;
    margin-left: 0;
    gap: 0.5rem;
  }
  .nav__btn {
    display: none;
  }
  .nav__menu {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    background: #0f0f1a;
    border-top: 1px solid rgba(143, 227, 255, 0.15);
    padding: 0.75rem 0 1.25rem;
  }
  .nav__menu--open {
    display: flex;
  }
  .nav__item {
    width: 100%;
  }
  .nav__link {
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 0.85rem 1.25rem;
    color: #e0e0e0;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
  }
  .nav__link:hover {
    background: rgba(143, 227, 255, 0.08);
    color: #8fe3ff;
  }
  .nav__dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(143, 227, 255, 0.04);
    border-top: 1px solid rgba(143, 227, 255, 0.08);
    border-bottom: 1px solid rgba(143, 227, 255, 0.08);
    border-radius: 0;
    padding: 0.25rem 0;
    display: none;
  }
  .nav__item--dropdown.active .nav__dropdown {
    display: block;
  }
  .nav__dropdown-link {
    padding: 0.7rem 2rem;
    color: #a0a0a0;
    font-size: 0.88rem;
  }
  .nav__dropdown-link:hover {
    background: rgba(143, 227, 255, 0.08);
    color: #8fe3ff;
  }
}
.banner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, #0f0f1a 0%, transparent 30%), linear-gradient(to left, #0f0f1a 0%, transparent 30%);
}
.banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 150px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% -20%, transparent 55%, #0f0f1a 75%);
}
.banner__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1023px) {
  .banner__img {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .banner__img {
    height: 220px;
  }
}
.products {
  padding: 3rem 0;
}
.products__container {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.products__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.filters {
  width: 220px;
  flex-shrink: 0;
}
.filters__group {
  margin-bottom: 1.25rem;
}
.filters__heading {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e0e0e0;
  padding: 0.4rem 0;
}
.filters__list {
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.filters__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #a0a0a0;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.filters__option:hover {
  color: #def7ff;
}
.filters__option input[type=checkbox] {
  accent-color: #8fe3ff;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.filters__clear {
  background: none;
  border: 1px solid rgba(160, 160, 160, 0.3);
  color: #a0a0a0;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
  transition: color 0.2s, border-color 0.2s;
}
.filters__clear:hover {
  color: #def7ff;
  border-color: #def7ff;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(143, 227, 255, 0.4);
}
.product-card--out {
  opacity: 0.5;
  pointer-events: none;
}
.product-card__img {
  width: 100%;
  height: 200px;
  background-color: rgba(192, 192, 192, 0.1);
  background-size: cover;
  background-position: center;
}
.product-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  padding: 0.75rem 1rem 0.25rem;
}
.product-card__price {
  font-size: 0.95rem;
  font-weight: 600;
  color: #8fe3ff;
  padding: 0 1rem 0.25rem;
}
.product-card__stock {
  display: block;
  font-size: 0.8rem;
  color: #a0a0a0;
  padding: 0 1rem 0.5rem;
  margin-top: auto;
}
.product-card__add-btn {
  margin: 0 1rem 1rem;
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1px solid rgba(143, 227, 255, 0.5);
  border-radius: 6px;
  color: #8fe3ff;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.product-card__add-btn:hover {
  background: #8fe3ff;
  border-color: #8fe3ff;
  color: #0f0f1a;
}

.products__empty {
  grid-column: 1/-1;
  text-align: center;
  color: #a0a0a0;
  padding: 2rem;
}

.filters__toggle {
  display: none;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.filters__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1023px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .products {
    padding: 1.5rem 0;
  }
  .products__container {
    flex-direction: column;
    padding: 0 1rem;
    gap: 1rem;
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .filters {
    width: 100%;
  }
  .filters__toggle {
    display: block;
  }
  .filters__group, .filters__clear {
    display: none;
  }
  .filters--visible .filters__group,
  .filters--visible .filters__clear {
    display: block;
  }
  .product-card__img {
    height: 150px;
  }
  .product-card__name {
    font-size: 0.9rem;
  }
}
.footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  gap: 2rem;
}
.footer__title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #def7ff;
  margin-bottom: 0.75rem;
}
.footer__text {
  font-size: 0.9rem;
  color: #a0a0a0;
  line-height: 1.8;
}
.footer__icons {
  display: flex;
  gap: 1rem;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #a0a0a0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.footer__link:hover {
  color: #8fe3ff;
  border-color: #8fe3ff;
}
.footer__icon {
  width: 18px;
  height: 18px;
}
.footer__bottom {
  text-align: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: #a0a0a0;
}

@media (max-width: 767px) {
  .footer {
    margin-top: 2.5rem;
  }
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .footer__icons {
    justify-content: center;
  }
}
.product-detail {
  padding: 2rem 0 4rem;
}
.product-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.product-detail__back {
  display: inline-block;
  font-size: 0.9rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.product-detail__back:hover {
  color: #def7ff;
}
.product-detail__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.product-detail__image {
  width: 500px;
  height: 500px;
  flex-shrink: 0;
  background-color: rgba(192, 192, 192, 0.1);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.product-detail__info {
  flex: 1;
}
.product-detail__name {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 0.75rem;
}
.product-detail__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8fe3ff;
  margin-bottom: 1.5rem;
}
.product-detail__description {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-detail__meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.product-detail__category, .product-detail__metal {
  font-size: 0.85rem;
  color: #a0a0a0;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}
.product-detail__stock {
  font-size: 0.95rem;
  color: #a0a0a0;
  margin-bottom: 2rem;
}
.product-detail__stock--out {
  color: #e74c3c;
}
.product-detail__actions {
  display: flex;
  gap: 1rem;
}
.product-detail__btn {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}
.product-detail__btn:active {
  transform: scale(0.97);
}
.product-detail__btn--buy {
  background-color: #8fe3ff;
  color: #0f0f1a;
  border: none;
}
.product-detail__btn--buy:hover {
  background-color: rgb(102.2, 216.8, 255);
}
.product-detail__btn--cart {
  background-color: transparent;
  color: #e0e0e0;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.product-detail__btn--cart:hover {
  border-color: #8fe3ff;
  color: #8fe3ff;
}

@media (max-width: 1023px) {
  .product-detail__image {
    width: 380px;
    height: 380px;
  }
  .product-detail__name {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .product-detail {
    padding: 1.5rem 0 3rem;
  }
  .product-detail__container {
    padding: 0 1rem;
  }
  .product-detail__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-detail__image {
    width: 100%;
    height: 300px;
  }
  .product-detail__name {
    font-size: 1.4rem;
  }
  .product-detail__price {
    font-size: 1.2rem;
  }
  .product-detail__actions {
    flex-direction: column;
  }
  .product-detail__btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.auth-container {
  flex: 1;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  margin-top: 0;
  margin-bottom: 0;
}

.auth-box {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(77, 165, 200, 0.3);
  border-radius: 12px;
  padding: 3rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(77, 165, 200, 0.1);
  backdrop-filter: blur(10px);
}
.auth-box h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password] {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(77, 165, 200, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus {
  outline: none;
  border-color: #4da5c8;
  background: rgb(30, 30, 30);
  box-shadow: 0 0 10px rgba(77, 165, 200, 0.2);
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=password]::placeholder {
  color: #6b7280;
}
.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.form-group.checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #4da5c8;
}
.form-group.checkbox label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-group.checkbox label a {
  color: #4da5c8;
  text-decoration: none;
  border-bottom: 1px solid rgba(77, 165, 200, 0.3);
  transition: color 0.3s ease;
}
.form-group.checkbox label a:hover {
  color: #6db8d9;
  border-bottom-color: #6db8d9;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  min-height: 1.2rem;
  display: block;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, #4da5c8 0%, #3d8fb0 100%);
  color: white;
  width: 100%;
  margin-top: 0.5rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #5db3d7 0%, #4d9cc0 100%);
  box-shadow: 0 8px 20px rgba(77, 165, 200, 0.3);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn-secondary {
  background: rgba(77, 165, 200, 0.1);
  color: #4da5c8;
  border: 1px solid rgba(77, 165, 200, 0.3);
  width: 100%;
}
.btn-secondary:hover {
  background: rgba(77, 165, 200, 0.2);
  border-color: rgba(77, 165, 200, 0.5);
}

.auth-link {
  text-align: center;
  margin-top: 1rem;
}
.auth-link p {
  color: #9ca3af;
  font-size: 0.9rem;
}
.auth-link a {
  color: #4da5c8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.auth-link a:hover {
  color: #6db8d9;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #6b7280;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(77, 165, 200, 0.2);
}
.auth-divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
}

.success-message {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .auth-box {
    padding: 2rem 1.5rem;
  }
  .auth-box h1 {
    font-size: 1.5rem;
  }
  .auth-form {
    gap: 1rem;
  }
  .form-group {
    gap: 0.3rem;
  }
}
.admin-header {
  background: rgba(143, 227, 255, 0.1);
  border-bottom: 2px solid rgba(143, 227, 255, 0.3);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #4da5c8;
  margin: 0;
}
.admin-header .user-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #e0e0e0;
}
.admin-header button {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.admin-header button:hover {
  background: #dc2626;
}

.admin-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #4da5c8;
  margin-bottom: 1.5rem;
}

.btn-new {
  background: linear-gradient(135deg, #4da5c8 0%, #3d8fb0 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.btn-new:hover {
  background: linear-gradient(135deg, #5db3d7 0%, #4d9cc0 100%);
  transform: translateY(-2px);
}

.table-container {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(77, 165, 200, 0.2);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table thead {
  background: rgba(77, 165, 200, 0.1);
  border-bottom: 2px solid rgba(77, 165, 200, 0.3);
}
table thead th {
  padding: 1rem;
  text-align: left;
  color: #4da5c8;
  font-weight: 600;
}
table tbody tr {
  transition: background 0.2s ease;
}
table tbody tr:hover {
  background: rgba(77, 165, 200, 0.05);
}
table tbody tr td {
  padding: 1rem;
  border-bottom: 1px solid rgba(77, 165, 200, 0.1);
  color: #e0e0e0;
}

.action-btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}
.action-btn.btn-edit {
  background: #3b82f6;
  color: white;
}
.action-btn.btn-edit:hover {
  background: #2563eb;
}
.action-btn.btn-delete {
  background: #ef4444;
  color: white;
}
.action-btn.btn-delete:hover {
  background: #dc2626;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
}

.modal-content {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(77, 165, 200, 0.2);
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.modal-header h2 {
  font-family: "Playfair Display", serif;
  color: #4da5c8;
  margin: 0;
}
.modal-header .close-btn {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-header .close-btn:hover {
  color: #e5e7eb;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.form-group label {
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(77, 165, 200, 0.2);
  border-radius: 4px;
  padding: 0.75rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4da5c8;
  background: rgb(30, 30, 30);
  box-shadow: 0 0 10px rgba(77, 165, 200, 0.2);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.drop-zone {
  border: 2px dashed rgba(77, 165, 200, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: rgba(77, 165, 200, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}
.drop-zone:hover, .drop-zone.active {
  border-color: #4da5c8;
  background: rgba(77, 165, 200, 0.1);
}
.drop-zone p {
  margin: 0;
  color: #e0e0e0;
  font-size: 0.95rem;
}
.drop-zone input {
  display: none;
}

.images-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.image-preview-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid rgba(77, 165, 200, 0.2);
  background: rgba(30, 30, 30, 0.8);
}
.image-preview-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.image-preview-item .remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(239, 68, 68, 0.9);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.image-preview-item .remove-btn:hover {
  background: #ef4444;
}
.image-preview-item .order-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(77, 165, 200, 0.9);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-submit {
  flex: 1;
  background: linear-gradient(135deg, #4da5c8 0%, #3d8fb0 100%);
  color: white;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-submit:hover {
  background: linear-gradient(135deg, #5db3d7 0%, #4d9cc0 100%);
  transform: translateY(-2px);
}

.btn-cancel {
  flex: 1;
  background: rgba(77, 165, 200, 0.1);
  color: #4da5c8;
  border: 1px solid rgba(77, 165, 200, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-cancel:hover {
  background: rgba(77, 165, 200, 0.2);
}

.message {
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  display: none;
  font-size: 0.9rem;
}
.message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}
.message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

@media (max-width: 768px) {
  .admin-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .admin-header h1 {
    font-size: 1.2rem;
  }
  .admin-header .user-info {
    flex-direction: column;
    gap: 0.5rem;
  }
  table tbody tr td {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
  .action-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
  .modal-content {
    padding: 1.5rem;
  }
  .images-preview {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}
.product-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel-main {
  position: relative;
  width: 100%;
  height: 500px;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(77, 165, 200, 0.2);
}
.carousel-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
}
.carousel-thumbnails::-webkit-scrollbar {
  height: 6px;
}
.carousel-thumbnails::-webkit-scrollbar-track {
  background: rgba(77, 165, 200, 0.1);
  border-radius: 3px;
}
.carousel-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(77, 165, 200, 0.3);
  border-radius: 3px;
}
.carousel-thumbnails::-webkit-scrollbar-thumb:hover {
  background: rgba(77, 165, 200, 0.5);
}

.carousel-thumb {
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: rgba(30, 30, 30, 0.8);
}
.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-thumb:hover {
  border-color: rgba(77, 165, 200, 0.5);
  transform: scale(1.05);
}
.carousel-thumb.active {
  border-color: #4da5c8;
  box-shadow: 0 0 10px rgba(77, 165, 200, 0.3);
}
.carousel-thumb.active img {
  filter: brightness(1.1);
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.carousel-btn {
  background: linear-gradient(135deg, #4da5c8 0%, #3d8fb0 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: linear-gradient(135deg, #5db3d7 0%, #4d9cc0 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(77, 165, 200, 0.3);
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.carousel-btn:disabled:hover {
  transform: scale(1);
  box-shadow: none;
}

.carousel-info {
  text-align: center;
  color: #a0a0a0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .carousel-main {
    height: 350px;
  }
  .carousel-thumbnails {
    gap: 0.5rem;
  }
  .carousel-thumb {
    width: 80px;
    height: 80px;
  }
  .carousel-controls {
    gap: 0.5rem;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .carousel-main {
    height: 250px;
  }
  .carousel-thumb {
    width: 70px;
    height: 70px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
}
.cart-drawer--open {
  visibility: visible;
}
.cart-drawer--open .cart-drawer__overlay {
  opacity: 1;
}
.cart-drawer--open .cart-drawer__panel {
  transform: translateX(0);
}
.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: #0f0f1a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #e0e0e0;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.2s;
}
.cart-drawer__close:hover {
  color: #e0e0e0;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}
.cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-drawer__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.cart-drawer__empty {
  color: #a0a0a0;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem 0;
}
.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #e0e0e0;
  font-weight: 500;
}
.cart-drawer__total-price {
  font-weight: 600;
  color: #8fe3ff;
}
.cart-drawer__view-full {
  text-align: center;
  font-size: 0.85rem;
  color: #a0a0a0;
  text-decoration: underline;
  transition: color 0.2s;
}
.cart-drawer__view-full:hover {
  color: #e0e0e0;
}
.cart-drawer__checkout {
  width: 100%;
  padding: 0.75rem;
  background: #8fe3ff;
  border: none;
  border-radius: 6px;
  color: #0f0f1a;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-drawer__checkout:hover {
  opacity: 0.88;
}

body.cart-open {
  overflow: hidden;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-size: 0.88rem;
  color: #e0e0e0;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price {
  font-size: 0.85rem;
  color: #8fe3ff;
  margin: 0.2rem 0 0.5rem;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item__qty span {
  font-size: 0.85rem;
  color: #e0e0e0;
  min-width: 1.2rem;
  text-align: center;
}
.cart-item__qty-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #e0e0e0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-item__qty-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.cart-item__remove {
  background: none;
  border: none;
  color: #a0a0a0;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.cart-item__remove:hover {
  color: #e0e0e0;
}

.nav__cart-badge {
  display: none;
  position: absolute;
  top: -6px;
  right: -8px;
  background: #8fe3ff;
  color: #0f0f1a;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 4px;
  align-items: center;
  justify-content: center;
}
.nav__cart-badge--visible {
  display: flex;
}

.nav__cart {
  position: relative;
}

.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: rgba(15, 15, 26, 0.95);
  border: 1px solid rgba(143, 227, 255, 0.3);
  color: #e0e0e0;
  font-size: 0.88rem;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  white-space: nowrap;
}
.cart-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.why-us {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.why-us__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.why-us__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: border-color 0.25s, transform 0.25s;
}
.why-us__item:hover {
  border-color: rgba(143, 227, 255, 0.35);
  transform: translateY(-3px);
}
.why-us__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(143, 227, 255, 0.1);
  border: 1px solid rgba(143, 227, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8fe3ff;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}
.why-us__title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.why-us__text {
  font-size: 0.85rem;
  color: #a0a0a0;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .why-us__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .why-us {
    padding: 2.5rem 0;
  }
  .why-us__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }
  .why-us__item {
    padding: 1.25rem 1rem;
  }
}
.about {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about__container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fe3ff;
  margin-bottom: 1rem;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #e0e0e0;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about__body {
  font-size: 0.95rem;
  color: #a0a0a0;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__body:last-of-type {
  margin-bottom: 2rem;
}
.about__values {
  display: flex;
  gap: 2.5rem;
}
.about__value {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.about__value-number {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #8fe3ff;
  line-height: 1;
}
.about__value-label {
  font-size: 0.78rem;
  color: #a0a0a0;
  line-height: 1.3;
}
.about__image {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(143, 227, 255, 0.06) 0%, transparent 70%);
}
.about__image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #8fe3ff;
  position: relative;
  z-index: 1;
}
.about__image-caption {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: rgba(224, 224, 224, 0.4);
  letter-spacing: 0.05em;
}

@media (max-width: 1023px) {
  .about__container {
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
  }
  .about__title {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 3rem 0;
  }
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  .about__image {
    aspect-ratio: 16/7;
  }
  .about__title {
    font-size: 1.4rem;
  }
  .about__values {
    gap: 1.5rem;
  }
}
.featured {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.featured__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.featured__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.featured__title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #e0e0e0;
}
.featured__tabs {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.25rem;
}
.featured__tab {
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a0a0a0;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.featured__tab--active {
  background: #8fe3ff;
  color: #0f0f1a;
}
.featured__tab:not(.featured__tab--active):hover {
  color: #e0e0e0;
}
.featured__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  transition: opacity 0.18s ease;
  scroll-snap-type: x mandatory;
}
.featured__track::-webkit-scrollbar {
  height: 4px;
}
.featured__track::-webkit-scrollbar-track {
  background: transparent;
}
.featured__track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}

.featured-card {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 227, 255, 0.35);
}
.featured-card__img {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.05);
}
.featured-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #e0e0e0;
  padding: 0.6rem 0.75rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8fe3ff;
  padding: 0 0.75rem 0.75rem;
}

@media (max-width: 767px) {
  .featured {
    padding: 2.5rem 0;
  }
  .featured__container {
    padding: 0 1rem;
  }
  .featured__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .featured-card {
    width: 155px;
  }
  .featured-card__img {
    height: 130px;
  }
}