/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f6f2;
}

/* ================= NAVBAR ================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  border-bottom: 1px solid #eee;
  position: relative;
}

.logo {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #b8973a;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= PRODUCT PAGE ================= */

.product-container {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
}

/* IMAGE */
.product-left {
  display: flex;
  justify-content: center;
}

.product-left img {
  width: 100%;
  max-width: 420px;
}

/* RIGHT */
.product-right h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.price {
  font-size: 22px;
  color: #b8973a;
  margin-bottom: 15px;
}

/* NOTES */
.notes {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* SIZE BUTTONS */
.sizes {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.size-btn {
  padding: 6px 12px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  font-size: 12px;
}

.size-btn.active {
  background: #111;
  color: white;
  border-color: #111;
}

/* ORDER BUTTON */
.order-btn {
  padding: 10px;
  background: #111;
  color: white;
  border: none;
  cursor: pointer;
  width: 220px;
  border-radius: 5px;
}

/* ================= DESCRIPTION ================= */

.product-extra {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.desc-title {
  text-align: center;
  font-size: 14px;
  border: 1px solid #ddd;
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 6px 14px;
}

.desc-text {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ================= RELATED ================= */

.related-title {
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-card {
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  background: white;
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}
.notes {
  padding-left: 18px;   /* 🔥 brings bullets closer */
  margin: 10px 0;
}

.notes li {
  margin-bottom: 6px;
  line-height: 1.5;
}
/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .notes {
    padding-left: 14px;  /* tighter for mobile */
    text-align: left;
  }

  /* NAVBAR */
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 60px;
    background: white;
    width: 200px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  /* PRODUCT */
  .product-container {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .product-left img {
    max-width: 260px;
  }

  .product-right h1 {
    font-size: 20px;
  }

  .sizes {
    justify-content: center;
  }

  .order-btn {
    width: 100%;
  }

  /* RELATED */
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================= FOOTER ================= */

.footer {
  background: #f8f6f2;
  padding: 50px 20px 20px;
  border-top: 1px solid #eee;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-col .logo {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-col .logo span {
  color: #b8973a;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* LINKS */
.footer-col a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  margin-bottom: 6px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #b8973a;
}

/* SOCIAL */
.socials {
  margin-top: 10px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}

.socials a:hover {
  color: #b8973a;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #777;
}

.footer-bottom a {
  color: #b8973a;
  text-decoration: none;
}
.footer {
  background: linear-gradient(to right, #f8f6f2, #f3efe7);
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  background: #b8973a;   /* 🔥 yellow circle */
  color: #fff;

  border-radius: 50%;
  margin-right: 10px;

  font-size: 14px;
  text-decoration: none;

  transition: 0.3s;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  background: #b8973a;   /* 🔥 yellow circle */
  color: #fff;

  border-radius: 50%;
  margin-right: 10px;

  font-size: 14px;
  text-decoration: none;

  transition: 0.3s;
}

a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}