:root {
  --primary: #fd5526;
  --primary-light: #ff7a52;
  --primary-ultra-light: #fff1ed;
  --bg: #faf8f6;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #5a5a5a;
  --border: #f0ddd6;
  --gold-light: #fff8f0;
  --error: #e53935;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.hs-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hs-container {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* HERO */
.hs-hero {
  background: linear-gradient(150deg, #1a1a1a 0%, #2d1810 55%, #fd5526 100%);
  padding: 34px 24px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hs-hero::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(253,85,38,0.22), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffcfbe;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hs-hero-title {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.hs-hero-title span { color: #ffb89e; }
.hs-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}

/* IMAGE GRID */
.hs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #ddd0cc;
}
.hs-grid-item {
  position: relative;
  overflow: hidden;
  background: #f2ebe7;
  aspect-ratio: 1/1;
}
.hs-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hs-grid-item.big {
  grid-column: 1 / 3;
  aspect-ratio: 16/9;
}
.hs-img-badge {
  position: absolute;
  bottom: 9px; left: 9px;
  background: rgba(253,85,38,0.9);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* PRICING */
.hs-price-block {
  background: linear-gradient(135deg, #fff4f0, #fff8f0);
  border: 2px solid #ffd4c7;
  border-radius: 16px;
  padding: 18px 20px 14px;
  text-align: center;
  margin: 20px;
}
.hs-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}
.hs-price-original {
  font-size: 18px;
  color: #999;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
}
.hs-price-badge {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.hs-price-main {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hs-price-note {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hs-price-note i { color: var(--primary); }

/* CTA BUTTON */
.hs-cta-wrap {
  padding: 20px;
  text-align: center;
}
.hs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fd5526 0%, #ff6b3d 100%);
  color: white;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  padding: 17px 24px;
  border-radius: 16px;
  border: none;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(253,85,38,0.38);
  transition: all 0.2s;
  font-family: 'Hind Siliguri', sans-serif;
}
.hs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(253,85,38,0.48);
}
.hs-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* PILLS */
.hs-pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.hs-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}

/* FORM STYLES */
.hs-form-group {
  margin-bottom: 16px;
  text-align: left;
}
.hs-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.hs-input {
  width: 100%;
  padding: 15px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: var(--bg);
}
.hs-input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
textarea.hs-input {
  min-height: 80px;
  resize: vertical;
}
.hs-error-msg {
  color: var(--error);
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.hs-quantity-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: 120px;
}
.hs-qty-btn {
  background: var(--bg);
  border: none;
  width: 40px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: bold;
}
.hs-qty-input {
  width: 40px;
  height: 48px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  -moz-appearance: textfield;
}
.hs-qty-input::-webkit-outer-spin-button,
.hs-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ORDER SUMMARY */
.hs-summary {
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 24px;
}
.hs-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text-mid);
}
.hs-summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ALERTS */
.hs-alert {
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.hs-alert-danger {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}
.hs-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
