:root {
  --primary-purple: #8f78a8;
  --secondary-teal: #2aa99d;
  --dark-bg: #121212;
  --darker-bg: #0a0a0a;
  --light-text: #f5f5f5;
}

body.shop-body {
  font-family: 'Montserrat', sans-serif;
  background: url('../organika_backgroundv2.png') no-repeat center center fixed;
  background-size: cover;
  color: var(--light-text);
  line-height: 1.6;
}

.bg-custom-dark { background-color: var(--darker-bg); }
.bg-custom-purple { background-color: var(--primary-purple); }
.bg-custom-teal { background-color: var(--secondary-teal); }
.text-custom-purple { color: var(--primary-purple); }
.text-custom-teal { color: var(--secondary-teal); }
.border-custom-purple { border-color: var(--primary-purple); }
.border-custom-teal { border-color: var(--secondary-teal); }

.nav-link { position: relative; padding-bottom: 5px; }
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-purple), var(--secondary-teal));
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.btn-custom {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-teal));
  color: white;
  transition: all 0.3s ease;
}
.btn-custom:hover {
  background: linear-gradient(135deg, var(--secondary-teal), var(--primary-purple));
  transform: translateY(-2px);
}

.btn-ml {
  background: #ffe600;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.btn-ml:hover {
  background: #ffd400;
  transform: translateY(-2px);
}

.shop-ml-box {
  background: rgba(255, 230, 0, 0.08);
  border: 1px solid rgba(255, 230, 0, 0.35);
}

.footer {
  background: var(--darker-bg);
  border-top: 1px solid rgba(143, 120, 168, 0.3);
}

.shop-card {
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(143, 120, 168, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 169, 157, 0.5);
}

.shop-new-badge {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-teal);
  color: #071614;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  line-height: 1.2;
}

.shop-product-img {
  width: 500px;
  height: 500px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}

.shop-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #111;
}

.shop-modal {
  display: none;
}
.shop-modal.is-open {
  display: flex;
}

#shopMobileNav:not(.hidden) {
  display: flex;
}

.shop-input,
.shop-select,
.shop-textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
}
.shop-input:focus,
.shop-select:focus,
.shop-textarea:focus {
  outline: none;
  border-color: var(--secondary-teal);
}

.shop-chip {
  border: 1px solid rgba(143, 120, 168, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: #ddd;
}
.shop-input-price {
  width: 7.5rem;
  padding: 0.45rem 0.6rem;
}

@media (max-width: 768px) {
  .shop-product-img {
    width: 100%;
    height: auto;
  }
}
