body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f6efe6;
  color: #5a3e2b;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HEADER */

.site-header {
  background: #efe3d6;
  border-bottom: 1px solid #e6d8c8;
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo:hover {
    opacity: 0.85;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
}


/* NAVIGATION */

.nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  color: #5a3e2b;
  font-size: 15px;
  transition: 0.2s ease;
  position: relative;
}

.nav a:hover {
  color: #7a5c47;
}



/* HERO */

.hero {
  background: radial-gradient(circle at 20% 30%, #e8f2f8 0%, #d6e7f0 40%, #f6efe6 100%);
  padding-bottom: 120px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero img {
  width: 400px;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
      font-size: 1.25rem;
    color: #7a5c47;
    margin: 0 auto 2rem;
}


.btn {
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #7a5c47;
  color: white;
  box-shadow: 0 10px 25px rgba(122, 92, 71, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #7a5c47;
  color: #7a5c47;
}

.btn-outline:hover {
  background: #7a5c47;
  color: white;
}
/* TRUST BAR */

.trust {
  width: fit-content;
  padding: 18px 50px;
  background: white;
  border: 1px solid #e8dccf;
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.trust-items {
  display: flex;
  gap: 45px;
  font-weight: 600;
  font-size: 15px;
  color: #5a3e2b;
}
.trust-items div {
  display: flex;
  align-items: center;
  gap: 8px;
}


/* SECTION */

.section {
  padding: 60px 0;
  background: #efe3d6;
  box-shadow: inset 0 15px 30px rgba(0,0,0,0.02);
}

.section h2 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-light {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fbf7f2 100%
  );
  box-shadow: none;
}

/* FEATURE */

.feature {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.feature img {
  width: 360px;
  border-radius: 28px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.12);
}

.feature > div {
  max-width: 500px;
}

/* PRODUCTS */

.title-divider {
  width: 60px;
  height: 4px;
  background: #7a5c47;
  margin: 15px auto 25px;
  border-radius: 4px;
}


.products-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.products-subtitle {
  text-align: center;
  color: #7a5c47;
  margin-bottom: 40px;
}


.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}


.product-card {
  background: white;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  z-index: 1;
}

.product-card .btn {
  margin-top: 18px;
  padding: 10px 20px;
  font-size: 14px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.product-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 18px;
  letter-spacing: 0.2px;
}


.product-card .price {
  font-size: 16px;
  color: #7a5c47;
}

.product-card .btn-small {
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 14px;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
  z-index: 1;
}

.product-card:hover img {
  transform: scale(1.05);
}

.price {
  font-weight: 700;
  font-size: 18px;
  margin-top: 6px;
  color: #7a5c47;
  display: none;
}


/* FOOTER */

.footer {
  background: #5a3e2b;
  color: #f6efe6;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: #f6efe6;
  opacity: 0.85;
  font-size: 14px;
  transition: 0.2s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

/* SHOP PAGE */

.shop-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.shop-hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.shop-hero p {
    color: #7a5c47;
}

.products-section {
    padding: 40px 0 100px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}
/* CONTACT PAGE */
.contact-section {
  padding: 100px 0;
  background: #f7f3ef;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a5c47;
}

.contact-info {
  padding: 20px;
}

.contact-info h3 {
  margin-top: 20px;
  font-size: 18px;
}

button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.form-success {
  background: #e6f7ec;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-error {
  background: #fdecea;
  color: #c62828;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-weight: 500;
}

/* privacy policy */

.policy-section {
  padding: 100px 0;
}

.policy-container {
  max-width: 900px;
}

.policy-section h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.policy-date {
  color: #7a6a60;
  margin-bottom: 30px;
}

.policy-section h2 {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 22px;
}

.policy-section p,
.policy-section li {
  line-height: 1.8;
  color: #5a4c43;
}

.policy-section ul {
  margin-left: 20px;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}