 :root {
      --cream:#fbf6f2;
      --soft:#fff8f4;
      --brown:#6b4f3a;
      --brown-light:#a07b60;
    }

    body {
      background: var(--cream);
      color: var(--brown);
      font-family: "Prompt", sans-serif;
    }

    /* NAVBAR */
    .navbar-brand {
      font-weight: 600;
      color: var(--brown);
      font-size: 20px;
    }
    .nav-link { color: var(--brown); }
    .btn-brown {
      background: var(--brown);
      color: #fff;
      border-radius: 10px;
      padding: 6px 16px;
    }
    .btn-outline-brown {
      border: 1px solid var(--brown);
      color: var(--brown);
      border-radius: 10px;
      padding: 6px 16px;
    }
    .navbar-light .navbar-toggler {
      border-color: rgba(0,0,0,.1);
    }
    .navbar-light .navbar-toggler-icon {
      background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(107,79,58,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .nav-profile {
    position: relative;
}
.profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}
.nav-profile:hover .profile-dropdown {
    display: block;
}

    /* HERO */
    .hero-title {
      font-size: 46px;
      font-weight: 700;
      line-height: 1.2;
    }
    .hero-img {
      max-width: 390px;
      border-radius: 8px;
    }

    /* PRODUCT CARD */
    .product-card {
      background: var(--soft);
      border-radius: 14px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    }
    .product-icon {
      font-size: 40px;
    }

    /* GUIDE */
    .guide-card {
      background: var(--soft);
      border-radius: 14px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 5px 18px rgba(0,0,0,0.05);
      font-size: 18px;
    }

    /* REVIEW */
    .review-card {
      background: var(--soft);
      padding: 24px;
      border-radius: 16px;
    }

    /* MOBILE FIXES */
    @media (max-width: 767px) {
      .hero-title { font-size: 34px; text-align: center; }
      .hero-img { margin-top: 20px; max-width: 270px; }
      .hero-button { display: flex; justify-content: center; }
      .hero-sub { text-align: center; }
    }

  .guide-card:hover {
    transform: translateY(-3px);
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
.auth-card {
max-width: 420px;
margin: 50px auto;
background: #fff;
padding: 35px;
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
h2 {
font-weight: 600;
color: #4a3728;
}
label {
color: #5a4636;
font-weight: 500;
}
.btn-main {
background: #c7a27c;
color: #fff;
width: 100%;
font-size: 18px;
border-radius: 12px;
}
.btn-main:hover {
background: #b38b65;
color: #fff;
}
a {
color: #8a6b52;
text-decoration: none;
}
a:hover {
color: #5a4636;
}

.product-card {
  background: var(--soft);
  border: 1px solid var(--brown-light);
  border-radius: 10px;
  padding: 10px;
  transition: 0.2s;
}

.product-card:hover {
  transform: scale(1.03);
}

.price {
  color: var(--brown);
  font-weight: bold;
}

.type-badge {
  background: var(--brown-light);
  color: white;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.product-card {
  background: #fffaf5;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-img {
  height: 180px;
  object-fit: cover;
}

.text-brown {
  color: #6f4e37;
}

.bg-brown-soft {
  background-color: #e9d7c3;
  color: #6f4e37;
}

.btn-outline-brown {
  border: 1px solid #6f4e37;
  color: #6f4e37;
}

.btn-outline-brown:hover {
  background: #6f4e37;
  color: #fff;
}

.product-card{
  background:#fffaf6;
  border-radius:18px;
  padding:15px;
  transition:.3s;
  cursor:pointer;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,.08);
}

.product-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:14px;
  background:#fff;
}

.price{
  color:#6b4f3f;
  font-weight:600;
}
.guide-card{
  background:#fffaf6;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  transition:.35s ease;
}

.guide-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.guide-img{
  width:100%;
  max-width:260px;
  margin:auto;
  transition:.35s ease;
}

.guide-card:hover .guide-img{
  transform:scale(1.05);
}
.category-filter{
  display:inline-flex;
  background:#fffaf6;
  border-radius:50px;
  padding:6px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  gap:6px;
}

.category-btn{
  padding:8px 22px;
  border-radius:40px;
  font-size:14px;
  font-weight:500;
  color:#6b4f3f;
  text-decoration:none;
  transition:.3s;
  white-space:nowrap;
}

.category-btn:hover{
  background:#e9ded4;
  color:#5a4033;
}

.category-btn.active{
  background:#6b4f3f;
  color:#fff;
  box-shadow:0 4px 12px rgba(107,79,63,.4);
}
