@import url("../../settings/color-root.css");

*,
::after,
::before {
  box-sizing: border-box;
}
h1,
h2,
h3 {
  margin: 0;
}
li,
ul {
  list-style-type: none;
  padding: 0;
}
body,
html {
  height: 100%;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  background: radial-gradient(
      1200px 800px at 80% -10%,
      #34495e 0,
      var(--bg) 52%
    )
    no-repeat fixed;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.2px;
}
.card-body .title,
h3 {
  color: var(--text);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: 0 0;
  border: 0;
  cursor: pointer;
}
input,
textarea {
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.6rem 1.1rem;
  width: 100%;
  backdrop-filter: blur(6px);
}

::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

button:focus,
input:focus {
  outline: 0;
  /* box-shadow: var(--ring); */
}
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}
header.site {
  position: sticky;
  backdrop-filter: blur(18px);
  background: rgba(8, 14, 26, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(3, 6, 12, 0.55);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}
.nav-cart-btn {
  display: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand-text {
  display: block;
}
.nav-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.nav-links a.router-link-active.router-link-exact-active {
  color: var(--text);
  background: rgba(93, 211, 230, 0.12);
  border-color: rgba(93, 211, 230, 0.35);
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn {
      cursor: pointer;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(102, 123, 158, 0.65), rgba(40, 54, 76, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-1);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
  font-weight: 700;
}
.btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(5, 7, 12, 0.45);
  background: linear-gradient(180deg, rgba(122, 147, 182, 0.72), rgba(46, 64, 92, 0.95));
}
.btn.primary {
  background: linear-gradient(180deg, rgba(93, 211, 230, 0.45), rgba(63, 140, 153, 0.75));
  border-color: rgba(93, 211, 230, 0.5);
  color: #f7fdff;
  font-weight: 700;
}
.btn.primary:hover:not(:disabled) {
  background: linear-gradient(180deg, rgba(117, 232, 247, 0.55), rgba(72, 160, 174, 0.85));
  border-color: rgba(117, 232, 247, 0.6);
}
.btn.ghost {
  background: 0 0;
  border-color: rgba(255, 255, 255, 0.25);

}
.btn.ghost:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}
.ghost-flex {
  display: flex;
}
.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #00120e;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #c9fff0;
  box-shadow: 0 6px 14px rgba(125, 243, 212, 0.35);
}
.hero {
  position: relative;
  isolation: isolate;
  background: transparent;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 0;
}
.hero-inner img {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(4, 7, 15, 0.55);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 0.9rem;
  letter-spacing: 0.3px;
}
.hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 0 1.6rem;
}
.hero .cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.floating {
  inset: auto;
  right: 20px;
  bottom: 20px;
  padding: 0.6rem 0.9rem;
  background: rgba(12, 18, 30, 0.75);
  border: 1px solid #203053;
  border-radius: 12px;
  color: var(--muted);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-1);
}
section {
  padding: 2.2rem 0;
}
section.container:not(.cart-layout):not(.cart-section) {
  padding: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 2.5rem;
  background: rgba(12, 18, 30, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(3, 5, 12, 0.55);
}
.hero.container {
  padding: clamp(2.3rem, 4vw, 3.5rem);
}
.section-title {
  font-size: 1.6rem;
  margin: 0 0 1rem;
  letter-spacing: 0.4px;
}
.muted {
  color: var(--muted);
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  min-height: 110px;
  display: grid;
  align-content: flex-start;
  gap: 0.4rem;
  backdrop-filter: blur(12px);
}
.feature h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.card-body p {
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.cart-section {
  padding: 0;
  margin-top: 2.5rem;
}
.cart-panel--section {
  padding: 1.8rem;
  background: rgba(10, 18, 30, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(6, 8, 16, 0.55);
}
.cart-panel--section .cart-panel__head {
  margin: 0 0 1.5rem;
}
.cart-page .features--cart,
.cart-page .grid--cart {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.cart-page .feature--cart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: var(--text);
  padding: 1.2rem;
  backdrop-filter: blur(12px);
}
.cart-page .feature--cart h3 {
  color: var(--text);
}
.cart-page .feature--cart p {
  color: var(--muted);
}
.cart-page .card--cart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(6, 8, 16, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cart-page .card--cart:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(5, 7, 12, 0.6);
}
.cart-page .card--cart .card-media {
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-page .card--cart .card-body {
  padding: 1.2rem;
  gap: 0.5rem;
}
.cart-page .card--cart .title,
.cart-page .card--cart .price {
  color: var(--text);
}
.cart-page .card--cart .muted {
  color: var(--muted);
}
.cart-page .card--cart .card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-page .card--cart .card__stars {
  color: #f7cbff;
  letter-spacing: 2px;
}
.cart-page .card--cart .card__rating-num {
  color: #a8ffef;
}
.cart-page .card--cart .qty-control {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.cart-page .card--cart .btn-minus,
.cart-page .card--cart .btn-plus {
  background: rgba(238, 177, 223, 0.15);
  border: 1px solid rgba(238, 177, 223, 0.4);
  color: var(--text);
}
.cart-page .card--cart .qty {
  color: var(--text);
}
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(5, 7, 12, 0.55);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 211, 230, 0.35);
  box-shadow: 0 30px 60px rgba(3, 5, 12, 0.65);
}
.card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.6s;
}
.card:hover .card-media img {
  transform: scale(1.12);
}
.card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  flex: 1;
}
.title {
  font-weight: 700;
  color: var(--text);
}
.price {
  color: #aef4ff;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-top: auto;
}
.label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.2);
  border: 1px solid #6d5dd8;
  color: #d6cfff;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.qty {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 0.2rem;
}
.card-body .add-to-cart,
.card-body .qty-control {
  margin-top: 0.35rem;
}
.qty button {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #f3f3f3;
  border: 1px solid #ddd;
}
.cart-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background: #f1f2f5;
  border: 1px solid #7f8c8d;
  border-radius: 14px;
  padding: 0.6rem;
  justify-content: space-between;
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}
.success {
  display: none;
  padding: 1rem;
  background: #0f1f17;
  color: var(--ok);
  border: 1px solid #1d5039;
  border-radius: 14px;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s, transform 0.6s;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  gap: 10px;
}
footer.site {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #152038;
  color: var(--muted);
}
.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-contact {
  display: grid;
  gap: 0.15rem;
  min-width: 240px;
  font-size: 0.9rem;
}
.footer-contact strong {
  font-size: 0.92rem;
}
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-contact a:hover {
  color: var(--text);
}
header.site {
  background: var(--panel);
  position: fixed;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.15);
  width: 100%;
}
.main {
  margin-top: 6rem;
}
header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.3s;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: 0.3s;
}
.burger.open span:first-child {
  transform: rotate(45deg) translate(5px, 6px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
@media (max-width: 768px) {
  .brand-text {
    display: none;
  }
  .btn {
    font-weight: 500 !important;
  }
  .reveal.in {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  label input {
    width: 100%;
  }
  .cta.reveal.in.buttons-top {
    display: flex;
    gap: 5px;
    font-size: 0.76rem;
    flex-direction: row;
  }
  .buttons-top {
    display: flex;
    gap: 5px;
    font-size: 0.76rem;
    flex-direction: row;
  }
  .cta.reveal.in.buttons-top a.btn {
    padding: 0.7rem 0.5rem;
  }
  .buttons-top a.btn {
    padding: 0.7rem 0.5rem;
  }
  section.container.reveal.in.bottom-block {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1035px) {
  .nav-cart-btn {
    display: flex;
    background: 0 0;
    border-color: #7f8c8d;
    display: flex;
  }
  .burger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--panel);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .actions {
    display: none;
  }
  .brand-button-cart {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .features,
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mobile-burger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .desktop {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }
}
.mobile {
  display: none;
}
.desktop {
  display: flex;
}
@media (max-width: 560px) {
  .nav {
    grid-template-columns: 1fr auto;
  }
  .features,
  .grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card-media img,
  .card:hover,
  .reveal {
    transition: none;
  }
}

/* checkout form */
.form-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 6vw, 3rem);
  background: rgba(4, 7, 15, 0.85);
  backdrop-filter: blur(18px);
  overflow-y: auto;
}
.checkout-modal {
  width: min(960px, 94vw);
  background: rgba(10, 18, 30, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 40px 120px rgba(2, 4, 9, 0.7);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.checkout-subtext {
  margin: 0.35rem 0 0;
  color: var(--muted);
  max-width: 45ch;
}
.checkout-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.checkout-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: 1.5rem;
}
.checkout-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.checkout-field span {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.checkout-meta-line {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.checkout-meta-line strong {
  font-size: 1.3rem;
}
.checkout-form.form--validated input:invalid,
.checkout-form.form--validated textarea:invalid {
  border: 1px solid rgba(231, 76, 60, 0.8) !important;
}
.checkout-summary {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.checkout-summary__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.checkout-summary__head h3 {
  margin: 0.2rem 0 0;
}
.checkout-summary__count {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}
.checkout-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-summary__name {
  margin: 0;
  font-weight: 600;
}
.checkout-empty {
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--muted);
  text-align: center;
}
.checkout-note {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(93, 211, 230, 0.08);
  border: 1px solid rgba(93, 211, 230, 0.25);
}
.checkout-note__title {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}
.checkout-note__text {
  margin: 0.45rem 0 0;
  color: var(--muted);
}
@media (max-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .checkout-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* cart */
.cart-overlay {
  position: fixed;
  width: 100%;
  background-color: #00000017;
  height: 100%;
  display: flex;
  justify-content: center;
  top: 0;
  padding: 60px 0;
  z-index: 1000;
}
.cart-modal {
  width: 300px;
  margin: 0 auto;
  max-height: 500px;
  background: linear-gradient(180deg, #f3f3f3, #e0e0e0);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
  border: 1px solid #7f8c8d;
  height: 80%;
  /* justify-content: space-between; */
  display: flex;
  flex-direction: column;
}
.cart-item {
  display: flex;
  list-style-type: none;
  height: 80px;
  justify-content: space-between;
  padding: 8px;
  border: 1px solid #8080804a;
  border-radius: 3px;
  gap: 10px;
  align-items: center;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  height: 100%;
}
.cart-item__img img {
  width: 100%;
  object-fit: cover;
}
.cart-item__img {
  height: 100%;
  width: 44%;
  border-radius: 10px;
  overflow: hidden;
}
.cart-item__box {
  width: 80%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.cart-modal__head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #7f8c8d;
  padding: 1rem;
}
.cart-modal__footer {
  border-top: 1px solid #7f8c8d;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.cart-modal__close {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  border-color: #3f8c99;
  padding: 0 8px;
  border-radius: 20%;
  border: 1px solid #3600000f;
  display: flex;
  align-items: center;
}
.cart-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 75%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.08);
  padding: 10px;
  overflow: auto;
  justify-content: center;
}
.cart-item__price {
  color: grey;
  display: flex;
  font-size: 12px;
}
.cart-item__title {
  color: #000;
  font-size: 14px;
}
.cart-controls {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  color: var(--black);
  margin-bottom: 12px;
}
.cart-total span {
  color: #383c3d;
}

.btn-minus,
.btn-plus {
  background: rgba(238, 177, 223, 0.15);
  border: 1px solid rgba(238, 177, 223, 0.4);
  color: var(--text);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-minus:hover,
.btn-plus:hover {
  transform: translateY(-1px);
  background: rgba(238, 177, 223, 0.25);
}
.lang {
  border: none;
  color: var(--green);
  padding: none;
  font-weight: 700;
  background: 0 0;
}
.card__stars {
  color: #f7cbff;
  letter-spacing: 2px;
}
.card__btn {
  background: #00576e;
  padding: 10px 20px;
  color: var(--white);
  border-radius: 10px;
  display: block;
  text-transform: capitalize;
}
.card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.16);
}
.card__rating-num {
  color: #aef4ff;
  font-weight: 600;
}

.btn-del {
  background-color: #bf0000;
  padding: 0 6px;
  border-radius: 4px;
      cursor: pointer;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.03);
}
.qty {
  min-width: 20px;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang-select {
  position: relative;
  display: inline-block;
}
.lang-select__button {
  border: none;
  color: var(--green);
  padding: 10px;
  font-weight: 700;
  background: 0 0;
}
.lang-select__button:hover {
  border-color: #777;
}
.lang-select__icon {
  font-size: 10px;
  opacity: 0.8;
}
.lang-select__dropdown {
  position: absolute;
  top: 80%;
  right: 5px;
  min-width: 100%;
  background-color: var(--green);
  border: 1px solid var(--green);
  padding: 4px 0;
  margin: 4px 0 0;
  list-style: none;
  z-index: 1000;
}
.lang-select__option {
  padding: 6px 12px;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
}
.lang-select__option:hover {
  background-color: #222;
}
.lang-select__option--active {
  background-color: var(--white);
  color: #111;
  font-weight: 600;
}

.message {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: min(92vw, 520px);
  padding: 2rem;
  border-radius: var(--radius);
  background: #162433;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7f9fb;
  box-shadow: 0 30px 80px rgba(4, 10, 20, 0.6);
  animation: message-pop 0.4s ease forwards;
}
.message__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #6ef3c7;
}
.message__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.message__text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}
.message__order {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}
.message__order-label {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.message__order-value {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.message-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: rgba(9, 15, 25, 0.7);
  backdrop-filter: blur(12px);
}
@keyframes message-pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) 0 2rem;
}

.cart-page {
  padding-top: 1rem;
}
.cart-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: rgba(22, 36, 51, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(6, 8, 16, 0.55);
}

.cart-hero__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.cart-hero__summary > div:first-child {
  flex: 1;
}
.cart-hero__accent {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(238, 177, 223, 0.1);
  border: 1px solid rgba(238, 177, 223, 0.4);
  box-shadow: inset 0 0 12px rgba(238, 177, 223, 0.15);
}
.cart-hero__accent p {
  margin: 0.4rem 0 0;
  color: #fbe6ff;
}
.cart-hero__summary-note {
  width: 100%;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-hero__price {
  margin: 0.1rem 0 0;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--text);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.4rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.chip--muted {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.chip--pink {
  border-color: rgba(238, 177, 223, 0.5);
  background: rgba(238, 177, 223, 0.25);
  color: #ffeef7;
  box-shadow: 0 6px 20px rgba(238, 177, 223, 0.12);
}
.chip--accent {
  border-color: rgba(93, 211, 230, 0.5);
  background: rgba(93, 211, 230, 0.1);
  color: #aef4ff;
}
.chip--outline {
  background: 0 0;
  border-color: rgba(255, 255, 255, 0.3);
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.cart-panel {
  background: rgba(22, 38, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-2);
}
.cart-panel--summary {
  position: sticky;
  top: 6.5rem;
  align-self: flex-start;
}
.cart-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
     margin: 1.5rem 0;
}
.cart-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-item-card {
  display: flex;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.1rem;
}
.cart-item-card__media {
  width: 140px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.cart-item-card__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.cart-item-card h3 {
  color: var(--text);
}
.cart-item-card__description {
  margin: 0;
  color: #f5f7fa;
  letter-spacing: 0.2px;
}
.cart-item-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.icon-button {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 1.2rem;
}
.price-tag {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}
.qty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);

}
.qty-pill button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(238, 177, 223, 0.1);
}
.qty-pill span {
  min-width: 20px;
  text-align: center;
  font-weight: 600;
}
.cart-empty {
  margin: 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: var(--muted);
}
.summary-list {
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.summary-total strong {
  font-size: 1.4rem;
}
.summary-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.legal-page {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 3rem;
}
.legal-card {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgb(0 0 0 / 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.legal-card h3 {
  letter-spacing: 0.2px;
  font-size: 1.05rem;
}
.legal-card::after {
  content: none;
}
.legal-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(93, 211, 230, 0.35), rgba(93, 211, 230, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.legal-card h3 + .legal-list,
.legal-card h3 + p {
  margin-top: 0.15rem;
}
.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal-grid .legal-card {
  flex: 1 1 280px;
  /* height: 100%; */
  border-top: 3px solid rgba(93, 211, 230, 0.65);
  box-shadow: var(--shadow-1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.legal-grid .legal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.legal-list {
  margin: 0.25rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.2rem;
  /* list-style: disc; */
  color: var(--muted);
  line-height: 1.55;
}
@media (min-width: 840px) {
}
.btn:disabled,
.btn:disabled:hover {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

@media (max-width: 980px) {
  .cart-hero {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-panel--summary {
    position: static;
  }
}
@media (max-width: 640px) {
  .cart-item-card {
    flex-direction: column;
  }
  .cart-item-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .cart-item-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-hero__summary {
    flex-direction: column;
    align-items: flex-start;
  }
}
