@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6%;
}

.navbar .logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar .logo:hover {
  color: #06402B;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #06402B;
  transition: width 0.3s ease;
}

.navbar ul li a:hover::after {
  width: 100%;
}

#cart-btn {
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #06402B;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1600x700') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease forwards;
}

.hero .btn {
  background: #06402B;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(6,64,43,0.4);
  transition: all 0.4s ease;
}

.hero .btn:hover {
  background: #fff;
  color: #06402B;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.products {
  padding: 6rem 8%;
  background: #fafafa;
}

.products h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.products h2::after {
  content: "";
  display: block;
  margin: 0.6rem auto 0;
  width: 60px;
  height: 3px;
  background: #06402B;
}

.product-grid {
  display: flex;
  flex-direction: column; 
  gap: 3rem; 
  width: 100%;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%; 
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.product-card img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.product-card .price {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  color: #06402B;
  font-weight: 600;
}

.add-to-cart {
  background: #06402B;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.add-to-cart:hover {
  background: #333;
  transform: translateY(-3px);
}

.add-to-cart {
  background: #06402B;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background: #333;
  transform: translateY(-3px);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -3px 0 12px rgba(0,0,0,0.1);
  transition: right 0.4s ease;
  padding: 2rem;
  z-index: 2000;
}

.cart-drawer.open { right: 0; }

.cart-drawer h3 {
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
}

.cart-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-items li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

footer {
  background: #111;
  color: #ddd;
  padding: 3rem 6%;
  text-align: center;
  position: relative;
}

footer a {
  color: #06402B;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover { color: #fff; }


@media (max-width: 768px) {
  .navbar ul { display: none; }
  .mobile-nav {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 250px;
    padding: 2rem;
    transition: left 0.3s ease;
  }
  .mobile-nav.open { left: 0; }
  .hero h1 { font-size: 2.2rem; }
  .products h2 { font-size: 1.8rem; }
}

.hero {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.page {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

.hours {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

.hours li { margin-bottom: 10px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label { font-weight: bold; }

.contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background: #06402B;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button:hover { background: #06402B; }

@media (max-width: 480px) {
  .navbar { padding: 1rem 1.2rem; }
  .hero { padding: 6rem 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .products { padding: 3rem 1rem; }
  .product-card img { height: 200px; }
  footer { padding: 2rem 1rem; font-size: 0.9rem; }
}

@media (max-width: 1024px) {
  .navbar ul { gap: 1rem; }
  .hero h1 { font-size: 2.5rem; }
  .products h2 { font-size: 2rem; }
  .cart-drawer { width: 100%; max-width: 320px; }
}

@media (min-width: 1440px) {
  .hero { padding: 12rem 2rem; }
  .hero h1 { font-size: 4rem; }
  .products { max-width: 1400px; margin: auto; }
}
