/* GENERAL */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fdf6f0; /* cream background */
  color: #333;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

header h1 {
  margin: 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #000;
}

/* HERO */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: #f3e8df; /* soft cream tone */
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 25px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}

.btn:hover {
  background: #333;
}

/* PRODUCTS SECTION */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 50px;
}


/* PRODUCT CARD */
.card {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGE FIX (IMPORTANT PART) */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* PRODUCT TEXT */
.card h3 {
  margin: 10px 0 5px;
}

.card p {
  margin: 5px 0;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: black;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.card a:hover {
  background: #333;
}

/* WHY SECTION */
.why {
  text-align: center;
  padding: 60px 20px;
}

.why h2 {
  margin-bottom: 20px;
}

.why p {
  margin: 8px 0;
  font-size: 16px;
}
.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  display: none;
}
/* MENU ICON */
.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* MOBILE MENU */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  nav a {
    margin: 10px 0;
  }

  nav.active {
    display: flex;
  }
}

.product-page {
  padding: 50px;
}

.product-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.product-container img {
  width: 300px;
  border-radius: 10px;
}

.product-details {
  max-width: 400px;
}

.product-details button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  margin-top: 15px;
  cursor: pointer;
}

.product-container {
  display: flex;
  gap: 50px;
  padding: 50px;
}

.product-main {
  flex: 2;
}

.product-main img {
  width: 300px;
  border-radius: 10px;
}

.price {
  font-size: 20px;
  margin: 10px 0;
}

.desc {
  margin: 15px 0;
}

.product-main button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.info-box {
  background: #f3e8df;
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
}

.related {
  flex: 1;
}

.small-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.small-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.top-section {
  display: flex;
  gap: 50px;
  align-items: center;
}

.top-section img {
  width: 300px;
  border-radius: 10px;
}

.right-info {
  max-width: 400px;
}

.right-info .desc {
  margin: 15px 0;
  line-height: 1.6;
}

.about-page {
  padding: 50px;
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.6;
}

.about-boxes {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  background: white;
  padding: 20px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}

.box h3 {
  margin-bottom: 10px;
}

.box ul {
  padding-left: 15px;
}

.box h4 {
  margin-top: 15px;
  font-size: 16px;
}

.box p {
  font-size: 14px;
  line-height: 1.5;
}

.contact-page {
  padding: 50px;
  text-align: center;
}

.contact-text {
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 300px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form textarea {
  height: 100px;
}

.contact-form button {
  padding: 10px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

/* INFO BOX */
.contact-info {
  max-width: 300px;
  text-align: left;
}
.cart-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cart-info h3 {
  margin: 0;
}

.cart-info p {
  margin: 5px 0 0;
  color: gray;
}

.remove-btn {
  padding: 8px 15px;
  background: red;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.cart-total {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
/* ===== PREMIUM UPGRADE (ADD BELOW EVERYTHING) ===== */

/* SMOOTH FEEL */
* {
  transition: all 0.2s ease;
}

/* BODY REFINEMENT */
body {
  letter-spacing: 0.3px;
}

/* HEADER PREMIUM */
header {
  border-bottom: 1px solid #eee;
}

/* NAV HOVER LINE EFFECT */
nav a {
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: black;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* PRODUCT CARD PREMIUM */
.card {
  border: 1px solid #f0e7df;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* BUTTON PREMIUM */
button, .card a {
  letter-spacing: 0.5px;
}

button:hover, .card a:hover {
  transform: scale(1.03);
}

/* PRODUCT PAGE IMPROVE */
.right-info h2 {
  font-size: 30px;
  font-weight: 600;
}

.price {
  font-size: 22px;
  font-weight: 500;
}

/* INFO BOX PREMIUM */
.info-box {
  border: 1px solid #e8ded6;
}

/* SMALL CARDS HOVER */
.small-card {
  padding: 5px;
  border-radius: 8px;
}

.small-card:hover {
  background: #f3e8df;
  transform: scale(1.03);
}

/* ABOUT PAGE BOX LIFT */
.box:hover {
  transform: translateY(-5px);
}

/* CONTACT FORM PREMIUM */
.contact-form input,
.contact-form textarea {
  border: 1px solid #e0d6ce;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid black;
}

/* CART PREMIUM */
.cart-card {
  border: 1px solid #eee;
}

.cart-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* REMOVE BUTTON HOVER */
.remove-btn:hover {
  background: #cc0000;
}

/* TOTAL EMPHASIS */
.cart-total {
  border-top: 1px solid #eee;
  padding-top: 15px;
}