:root {
  --pink: #ff5bc8;
  --dark: #181018;
  --gold: #f6c453;
  --cream: #fff7ed;
  --muted: #766b76;
  --card: rgba(255,255,255,.92);
  --shadow: 0 18px 45px rgba(33, 10, 36, .18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);

  background:
    radial-gradient(circle at top left,
      rgba(255,91,200,.22),
      transparent 32%),
    radial-gradient(circle at top right,
      rgba(246,196,83,.25),
      transparent 34%),
    linear-gradient(
      135deg,
      #fff,
      #fff1fa 55%,
      #fff7ed
    );

  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;

  backdrop-filter: blur(14px);

  background: rgba(255,255,255,.78);

  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav {
  max-width: 1180px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
  padding: 14px 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 900;
  font-size: 22px;
  letter-spacing: .4px;
}

.brand img {
  width: 58px;
  height: 58px;

  object-fit: contain;

  border-radius: 14px;

  background: white;

  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn,
.cart-btn {
  background: linear-gradient(
    135deg,
    #0d6efd,
    #3b82f6
  );

  color: white;

  border: none;
  border-radius: 999px;

  padding: 12px 22px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(13,110,253,.35);

  transition: all .25s ease;
}

.lang-btn {
  background: var(--pink);
}

.cart-btn:hover,
.lang-btn:hover {
  transform: translateY(-2px);
}

section {
  max-width: 1180px;
  margin: 0 auto;

  padding: 42px 22px 60px;
}

.hero {
  padding-top: 46px;
  padding-bottom: 18px;
}

.hero span {
  display: inline-block;
  color: #83135d;
  background: #ffe0f5;
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 700;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;

  gap: 16px;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0;
  font-size: 42px;
}

.section-title span {
  color: var(--muted);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 26px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,.16);
}

.product img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7f7f7, #fff);
  padding: 12px;
}

.product h3 {
  margin: 14px 0 8px;
  font-size: 18px;
}

.desc {
  color: var(--muted);
  min-height: 42px;
  font-size: 14px;
  line-height: 1.35;
}

.price {
  font-size: 22px;
  font-weight: 900;
  color: #a20f72;
  margin-top: 14px;
}

.product-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.card-buy,
.cash-buy {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s ease;
}

.card-buy {
  background: linear-gradient(
    135deg,
    #69f653,
    #2dd938
  );

  color: #181018;

  border: none;

  box-shadow:
    0 8px 20px rgba(246,196,83,.35);
}

.cash-buy {
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: white;
  box-shadow: 0 8px 20px rgba(13,110,253,.35);
}

.card-buy:hover,
.cash-buy:hover {
  transform: translateY(-2px);
}

.cash-buy::before {
  content: "🛒 ";
}

.contact {
  background: #ff72cf;
  border-radius: 26px;
  padding: 22px;
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow);
  margin-bottom: 35px;
}

.contact a {
  color: var(--dark);
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  display: none;
  justify-content: end;
  z-index: 50;
}

.drawer.open {
  display: flex;
}

.cart {
  width: min(430px, 100%);
  background: white;
  height: 100%;
  padding: 24px;
  box-shadow: -18px 0 45px rgba(0,0,0,.22);
  overflow-y: auto;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close {
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 22px;
  cursor: pointer;
}

.cart-item {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}

.cart-item img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 12px;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.qty button {
  border: none;
  background: #f0eaf0;
  border-radius: 8px;
  padding: 5px 9px;
  cursor: pointer;
}

.total {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 900;
  margin: 24px 0;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-form label {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}

.checkout-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.checkout-form input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13,110,253,.15);
}

.checkout {
  width: 100%;
  border: none;

  background: linear-gradient(
    135deg,
    #0d6efd,
    #3b82f6
  );

  color: white;

  padding: 18px;

  border-radius: 999px;

  font-size: 18px;
  font-weight: 800;

  cursor: pointer;

  margin-top: 16px;

  transition: all .25s ease;

  box-shadow:
    0 10px 25px rgba(13,110,253,.35);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  line-height: 1.2;
}

.checkout-label {
  min-width: 0;
}

.interac-brand {
  height: 28px;
  width: auto;
  max-width: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 3px 6px;
}

.checkout:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 30px rgba(13,110,253,.45);
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 35px 0;
}

.toast {
  position: fixed;

  left: 50%;
  bottom: 26px;

  transform:
    translateX(-50%)
    translateY(120px);

  background: var(--dark);
  color: white;

  padding: 15px 22px;

  border-radius: 999px;

  font-weight: 800;

  box-shadow:
    0 16px 40px rgba(0,0,0,.28);

  transition: .25s;

  z-index: 80;
}

.toast.show {
  transform:
    translateX(-50%)
    translateY(0);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  width: min(500px, 100%);
  background: white;
  border-radius: 30px;
  padding: 38px 30px;
  text-align: center;
  box-shadow: 0 25px 75px rgba(0,0,0,.35);
  position: relative;
  animation: modalPop .25s ease;
}

@keyframes modalPop {
  from {
    transform: scale(.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-box h2 {
  margin: 0 0 14px;
  font-size: 31px;
  color: var(--dark);
}

.modal-box p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  white-space: pre-line;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: #f2e8f1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffe0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.tag {
  display: inline-block;
  background: #ffe0f5;
  color: #83135d;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  margin-bottom: 16px;
}

.primary,
.secondary {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  display: inline-block;
}

.primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 12px 28px rgba(255,91,200,.35);
}

.secondary {
  background: white;
  color: var(--dark);
  border: 1px solid rgba(0,0,0,.1);
}

.footer-showcase {
  margin-top: 60px;
  background: linear-gradient(135deg, #fff1fa, #fff7ed);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.footer-left h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 20px 0;
  line-height: 1;
  color: var(--dark);
}

.footer-left p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
}

.footer-right {
  text-align: center;
}

.footer-right img {
  width: 100%;
  max-width: 380px;
  border-radius: 25px;
  background: white;
  padding: 20px;
  box-shadow: var(--shadow);
}

.footer-buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact {
  max-width: 1180px;
  margin: 40px auto 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}

.footer-contact a {
  color: #a20f72;
  text-decoration: none;
}

.copyright {
  text-align: center;
  color: var(--muted);
  font-weight: 600;
  margin-top: 20px;
}

@media (max-width: 900px) {

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-buttons {
    justify-content: center;
  }
}

@media (max-width: 560px) {

  .grid {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .cart {
    width: 100%;
  }

  .checkout {
    gap: 9px;
    font-size: 16px;
    padding: 16px 14px;
  }

  .interac-brand {
    height: 24px;
    max-width: 78px;
  }

  .modal-box {
    padding: 28px 20px;
  }
}

.website-credit {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.website-credit a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 800;
}

.website-credit a:hover {
  text-decoration: underline;
}

.checkout.loading {
  opacity: 0.75;
  cursor: not-allowed;
  position: relative;
}

.checkout.loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,.5);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

.checkout:disabled {
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
