:root {
  --primary: #f68b1e;
  --primary-2: #ff9f2f;
  --primary-3: #ffd29a;
  --primary-dark: #e61601;
  --secondary: #fff3e8;
  --dark: #1e1e1e;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --border: rgba(246, 139, 30, 0.20);
  --shadow: 0 12px 34px rgba(246, 139, 30, 0.10);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.06);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--secondary);
  color: var(--dark);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.topbar a {
  color: #ffe7c8;
  font-weight: 600;
}

.header {
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(246, 139, 30, 0.16);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 70%, var(--primary-3) 115%);
  color: white;
  font-weight: 800;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.brand h1 {
  font-size: 20px;
  line-height: 1.1;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.65);
}

.btn-dark {
  background: var(--primary-dark);
  color: white;
}

.btn-light {
  background: white;
  color: var(--primary-dark);
}

.btn.full {
  width: 100%;
}

.hero {
  padding: 60px 0 40px;
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(246,139,30,.40), transparent 62%),
    radial-gradient(780px 520px at 92% 8%, rgba(255,159,47,.34), transparent 58%),
    radial-gradient(640px 420px at 75% 92%, rgba(246,139,30,.18), transparent 60%),
    linear-gradient(#fff1e6, #fff7f2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
  align-items: center;
}

.hero-badge,
.section-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff1e2;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-tag.light {
  background: rgba(255,255,255,0.18);
  color: white;
}

.hero-text h2,
.page-hero h2,
.section-head h2,
.about-text h2,
.cta-box h2,
.contact-card h3,
.contact-form-card h3 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p,
.page-hero p,
.about-text p,
.cta-box p,
.contact-card p,
.contact-form-card p {
  color: var(--text);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.meta-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.meta-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.meta-card span {
  font-size: 14px;
  color: var(--muted);
}

.hero-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(246,139,30,.22);
}

.hero-card img {
  height: 520px;
  object-fit: cover;
}

.features {
  padding: 24px 0 10px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text);
}

.shop-section,
.about-section,
.contact-section,
.contact-form-section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(246,139,30,.45);
}

.product-image {
  height: 280px;
  overflow: hidden;
  background: #fff6ee;
}

.product-image img {
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 18px;
}

.product-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff2e2;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions a {
  flex: 1;
  text-align: center;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.about-image,
.contact-card,
.contact-form-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-image img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-contact {
  margin: 20px 0 26px;
  padding: 20px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.cta-section {
  padding: 20px 0 80px;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 55%, var(--primary-dark) 115%);
  color: white;
  padding: 40px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-box p {
  color: rgba(255,255,255,0.92);
}

.footer {
  background: var(--primary-dark);
  color: white;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer a,
.footer p {
  display: block;
  color: #ffe6cf;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
  color: #ffe6cf;
  font-size: 14px;
}

.page-hero {
  padding: 60px 0 30px;
  background:
    radial-gradient(circle at top right, rgba(255,159,47,.35), transparent 30%),
    #fff7f2;
}

.page-hero.small h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.contact-card,
.contact-form-card {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 20px 0 26px;
}

.contact-item {
  padding: 18px;
  background: #fff8f2;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.contact-item h4 {
  margin-bottom: 6px;
}

.map-wrap {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 18px;
}

.contact-form {
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(246,139,30,.28);
  background: #fffefc;
  padding: 14px 16px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 420px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .brand h1 {
    font-size: 16px;
  }

  .hero-text h2,
  .page-hero h2,
  .section-head h2,
  .about-text h2,
  .cta-box h2,
  .contact-card h3,
  .contact-form-card h3 {
    font-size: 30px;
  }

  .hero-card img {
    height: 320px;
  }
}