/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #faf7f2;
  color: #1a1612;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 5%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
 font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px;
}

.logo span {
  color: #b8973a;
}

.nav-links {
  display: flex;
  gap: 25px;
}


.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.nav-links a.active {
  color: #b8973a;
  border-bottom: 1px solid #b8973a;
}

/* HEADER */
.page-header {
  text-align: center;
  padding: 70px 20px 30px;
}

.page-header h1 {
  font-family: "Cinzel", serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.page-header p {
  color: #6b625a;
}

/* PRODUCTS */
.products {
  padding: 60px 5%;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* TITLE */
.product-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

/* PRICE */
.price {
  color: #b8973a;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BUTTON */
.product-card button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #1a1612;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.product-card button:hover {
  background: #b8973a;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }

  .page-header h1 {
    font-size: 28px;
  }
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 600px) {

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 200px;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    display: none;
    border-left: 1px solid #eee;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
.sizes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.size-btn {
  padding: 5px 10px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.size-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.product-card img {
  border-radius: 10px;
  transition: 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}
.order-btn {
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.order-btn:hover {
  background: #b8973a;
  color: #000;
}
a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}