:root {
  --bg-black: #000;
  --white: #fff;
  --muted: #8a8a8a;
  --accent: #d1c8c1;
  --wrap: 1100px;
  --radius: 12px;
}

/* base */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: var(--white);
  background: var(--bg-black);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px;
}

/* header */

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  padding: 18px 32px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo {
  height: 54px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 12px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-size: 18px;
  padding: 8px;
}

/* hero */
.hero {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  text-align: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1.05;
  margin: 0;
  color: var(--white);
  letter-spacing: 1px;
}

.hero-sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

/* CLEAN MINIMAL HERO */
.hero-clean {
  background-color: #000;
  color: #fff;
  padding: 110px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-clean .hero-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-clean .hero-sub {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #e3e3e3;
  margin-bottom: 36px;
}

.hero-btn-black {
  background: #fff;
  color: #000;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-btn-black:hover {
  opacity: 0.85;
}

.btn-primary {
  background: var(--white);
  color: var(--bg-black);
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* shop section */
.shop-section {
  margin-top: 28px;
  padding: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* PRODUCT GALLERY */
.product-gallery {
  max-width: 1300px;
  margin: 80px auto 60px auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gallery-item img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}

.gallery-item img:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}


.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  color: #111;
  font-weight: 600;
}

.secondary-gallery {
  margin-top: 40px;
}


/* best photo */
.product-main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* order panel */
.product-order {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 20px;
  border-radius: 12px;
}

.product-title {
  font-family: "Playfair Display", serif;
  margin: 0 0 6px 0;
  font-size: 22px;
}

.price {
  font-size: 20px;
  margin: 0;
  color: var(--white);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.product-order label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--white);
}

.product-order select,
.product-order input,
.product-order textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  margin-top: 6px;
}

.form-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.small {
  font-size: 13px;
}

.tiny {
  font-size: 12px;
}

/* how */
.how {
  padding: 36px 0;
}

.section-head {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 26px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.how-item {
  background: transparent;
  padding: 12px;
  border-radius: 10px;
  color: var(--white);
  text-align: center;
}

/* contact/social */
.contact {
  padding: 36px 0;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social {
  color: var(--white);
  opacity: 0.95;
}

/* footer */
.site-footer {
  background-color: #000;
  padding: 40px 20px;
  margin-top: 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  color: var(--muted);
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-text {
  color: #dcdcdc;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 980px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 28px;
  }
  .wrap {
    padding: 18px;
  }
}
