* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, "Noto Sans Bengali", sans-serif;
  background: #fffdf9;
  color: #1f1f1f;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(215, 76, 0, 0.25);
}

.brand h1 {
  font-size: 24px;
  line-height: 1.1;
  color: #7a1f1f;
}

.brand p {
  font-size: 14px;
  color: #6b6b6b;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #d62828, #f77f00);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: #d62828;
  border: 1px solid #f3c7c7;
}

.btn-secondary:hover {
  background: #fff5f5;
}

/* Hero */
.hero {
  padding: 70px 0;
  background:
    radial-gradient(circle at top right, rgba(247, 127, 0, 0.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(214, 40, 40, 0.10), transparent 30%),
    #fffdf9;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.badge {
  display: inline-block;
  background: #fff1e6;
  color: #c75b12;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text h2 {
  font-size: 46px;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #231f20;
}

.hero-text h2 span {
  color: #d62828;
}

.hero-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 26px;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Placeholder */
.placeholder-box {
  min-height: 360px;
  border: 2px dashed #f2c8a5;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ef, #fffdf9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.placeholder-box.small {
  min-height: 220px;
  border-radius: 18px 18px 0 0;
}

.placeholder-content h3,
.placeholder-content p {
  color: #9c6a46;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #231f20;
}

.section-title p {
  color: #666;
  font-size: 17px;
}

/* Why */
.why {
  background: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff8f2;
  border: 1px solid #f7dfcc;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.why-card h3 {
  color: #a83a18;
  margin-bottom: 12px;
  font-size: 22px;
}

.why-card p {
  color: #555;
}

/* Products */
.products {
  background: linear-gradient(180deg, #fffdf9 0%, #fff7f0 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3e7dd;
}

.product-content {
  padding: 22px;
}

.product-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2b2220;
}

.product-desc {
  color: #666;
  margin-bottom: 18px;
  min-height: 48px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #d62828;
}

.order-link {
  color: #a83a18;
  font-weight: 700;
}

/* CTA */
.cta {
  background: #fff;
}

.cta-box {
  background: linear-gradient(135deg, #7a1f1f, #d62828);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 18px 40px rgba(122, 31, 31, 0.22);
}

.cta-box h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.cta-box p {
  color: #ffe9d7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  background: #fff;
  color: #7a1f1f;
  border: none;
}

/* Contact */
.contact {
  background: #fffdf9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #f3e7dd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
  color: #a83a18;
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-card p,
.contact-card span {
  color: #555;
}

.contact-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: #d62828;
}

/* Footer */
.footer {
  background: #2b1d18;
  color: #fff;
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  color: #f6ddd0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-grid,
  .why-grid,
  .product-grid,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-box {
    text-align: center;
  }

  .hero-text h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-text h2 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .product-content h3,
  .contact-card h3,
  .why-card h3 {
    font-size: 20px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }
}
/* ===== Hero Section Layout ===== */
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.hero-image-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image{
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* ===== Logo size ===== */
.logo{
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* ===== Mobile view ===== */
@media (max-width: 768px){
  .hero-grid{
    grid-template-columns: 1fr;
  }

  .hero-image{
    max-width: 100%;
  }
}
/* ===== Logo fix ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  display: block;
  flex-shrink: 0;
}