:root {
  --bg-1: #f6f4f2;
  --bg-2: #efe9e4;
  --card: #ffffff;
  --muted: #6b6b6b;
  --accent: #c7a27b; /* soft gold */
  --glass: rgba(255, 255, 255, 0.14);
  --glass-2: rgba(255, 255, 255, 0.06);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: #111;
}

/* NAVBAR */
nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 18px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 60;
}
.nav-wrap {
  width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 18px 26px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: #1b1b1b;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.6px;
}
.nav-links a:hover {
  color: var(--accent);
}
.cta {
  margin-left: 18px;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--accent);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}
.cta:hover {
  background: var(--accent);
  color: white;
}

/* HERO */
.hero {
  width: 100%;
  padding: 160px 20px 60px;
  display: flex;
  justify-content: center;
}
.hero-inner {
  width: 1100px;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 44px;
  align-items: center;
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin: 0 0 12px;
  line-height: 1.05;
}
.hero-left p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent), #b98f61);
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  box-shadow: 0 8px 20px rgba(199, 162, 123, 0.18);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* FEATURE BOX */
.features {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.feature {
  background: var(--card);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.03);
  font-size: 14px;
  color: var(--muted);
}

/* RIGHT HERO CARD */
.hero-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.5)
  );
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-card img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.hero-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.price {
  font-weight: 700;
  color: #111;
}

/* PRODUCTS */
.section {
  width: 1100px;
  margin: 46px auto;
}
.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0 0 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
.card .thumb {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.card h3 {
  font-family: "Playfair Display", serif;
  margin: 12px 0 6px;
  font-size: 18px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card .card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.price-sm {
  font-weight: 700;
}
.add {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
}
.add:hover {
  background: var(--accent);
  color: white;
}

/* CART SIDEBAR */
.cart-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: linear-gradient(90deg, var(--accent), #b98f61);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(199, 162, 123, 0.2);
  z-index: 70;
}
.cart-side {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 380px;
  background: linear-gradient(180deg, #fff, #fbf9f7);
  box-shadow: -24px 0 40px rgba(0, 0, 0, 0.08);
  transform: translateX(110%);
  transition: transform 0.35s ease;
  padding: 28px;
  z-index: 80;
}
.cart-side.open {
  transform: translateX(0);
}
.cart-side h3 {
  margin: 0 0 10px;
}
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.85));
}

/* FOOTER */
footer {
  margin-top: 60px;
  padding: 60px 20px;
  background: transparent;
}
.footer-inner {
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.small {
  color: var(--muted);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-wrap {
    width: 92%;
  }
  .section,
  .hero-inner {
    width: 92%;
  }
}
@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-wrap {
    justify-content: space-between;
  }
  .cta {
    display: none;
  }
}
