@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;700&family=Bayon&display=swap');

/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #121212;
  --bg-alt: #f3f3f3;
  --dark: #242833;
  --accent: #6bd9c5;
  --accent-alt: #75d6bc;
  --mint: #cdecdd;
  --sold-out: #121212;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Assistant', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bayon', sans-serif;
  font-weight: 400;
  text-transform: lowercase;
}

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

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

ul {
  list-style: none;
}

button, input, textarea {
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
}

/* ── Header ─────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid #e8e8e8;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-icons {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-icons a,
.nav-icons button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
}

.nav-icons svg {
  width: 22px;
  height: 22px;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ── Hero / Section Titles ──────────────────────── */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  padding: 2.5rem 1rem 1.5rem;
  letter-spacing: 1px;
}

/* ── Product Grid ───────────────────────────────── */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg-alt);
  border-radius: 4px;
}

.product-info {
  padding: 0.75rem 0;
}

.product-name {
  font-family: 'Assistant', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 0.9rem;
  color: #666;
}

.sold-out-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.6rem;
  background: var(--sold-out);
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

/* ── Social Banner ──────────────────────────────── */
.social-banner {
  background: var(--mint);
  text-align: center;
  padding: 2.5rem 1rem;
}

.social-banner p {
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* ── Contact Page ───────────────────────────────── */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.65rem 0.75rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-send {
  align-self: flex-start;
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.btn-send:hover {
  opacity: 0.85;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-signup {
  text-align: center;
  margin-bottom: 2.5rem;
}

.footer-signup h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.signup-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
}

.signup-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.signup-form button {
  background: var(--text);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.signup-form button:hover {
  opacity: 0.85;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-payments .pay-icon {
  width: 38px;
  height: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #555;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

/* ── Shop Page ──────────────────────────────────── */
.shop-header {
  text-align: center;
  padding: 2.5rem 1rem 0.5rem;
}

.shop-header p {
  color: #888;
  font-size: 0.9rem;
}

/* ── Page Header (Contact, etc.) ────────────────── */
.page-header {
  text-align: center;
  padding: 2.5rem 1rem 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 990px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title,
  .page-header h1 {
    font-size: 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ── Mobile Nav Drawer ──────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  padding: 2rem 1.5rem;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.15rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.mobile-nav .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 150;
}

.mobile-overlay.open {
  display: block;
}

/* Active nav link */
.nav-links a.active {
  font-weight: 700;
}
