* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
.shop-wrapper {
  --accent: #1a1a1a;
  --border: #e5e5e5;
  --muted: #666;
  padding: 4rem 6%;
  background: #fff;
}

.shop-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.shop-controls input,
.shop-controls select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  width: 100%;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.product-card .info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card button {
  margin-top: auto;
  padding: 0.75rem;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Cart Button */
.cart-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.1rem;
  border-radius: 50px;
  z-index: 1000;
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  width: 360px;
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--border);
  transition: right 0.4s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header,
.cart-footer {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-items {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-item button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Enquiry Modal */
.enquiry-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1002;
}
.enquiry-modal.active {
  display: flex;
}

.enquiry-modal form {
  background: #fff;
  padding: 2rem;
  width: min(420px, 90%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shop-controls {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

#currencyToggle {
  background: #111;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.product-card select {
  margin: 0.5rem 0;
  padding: 0.4rem;
}

#whatsappBtn {
  display: block;
  margin-top: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.6rem;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}
#currencyToggle {
  background: #0b2c3d;
  color: #fff;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
}

.product-card select {
  margin: 0.6rem 0;
  padding: 0.4rem;
}

.whatsapp-btn {
  display: block;
  margin-top: 0.6rem;
  background: #25d366;
  color: #fff;
  text-align: center;
  padding: 0.65rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0b2c3d;
  color: #ffffff;
  padding: 4.5rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

/* Columns */
.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #d3e1ea;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #d3e1ea;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Social */
.footer-social {
  margin-top: 0.8rem;
  display: flex;
  gap: 12px;
}

.footer-social a {
  font-size: 0.85rem;
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #c6d7e1;
}

.footer-note {
  opacity: 0.8;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
