/* ==========================================================================
   Utsaw Surya — Luxury Design System & Styles
   Premium Indian Kitchenware
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --cacao: #2A170E;
  --cacao-light: #3D2314;
  --deep-burgundy: #6B0F1A;
  --crimson: #8B1527;
  --gold: #CBA135;
  --gold-glow: #E5C158;
  --cream: #FBF7F0;
  --warm-white: #FFFFFF;
  --muted: #6B5B4F;
  --muted-light: #948375;
  --border: rgba(42, 23, 14, 0.09);
  --border-gold: rgba(203, 161, 53, 0.3);
  --shadow-sm: 0 4px 14px rgba(42, 23, 14, 0.05);
  --shadow-md: 0 10px 30px rgba(42, 23, 14, 0.09);
  --shadow-lg: 0 20px 45px rgba(42, 23, 14, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--cacao);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--cacao);
  margin-top: 0;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(42, 23, 14, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 12px rgba(203, 161, 53, 0.15);
}

.brand-text h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--cacao);
}

.brand-text .tag {
  margin: 0;
  font-size: 12px;
  color: var(--deep-burgundy);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--cacao);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--deep-burgundy);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--cacao);
  cursor: pointer;
}

/* ----------------------------------------------------
   BUTTONS & BADGES
---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--deep-burgundy), var(--crimson));
  color: var(--warm-white);
  box-shadow: 0 4px 15px rgba(107, 15, 26, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 15, 26, 0.35);
  background: linear-gradient(135deg, #7c121e, #9e1a2e);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.6);
  color: var(--cacao);
  border: 1px solid var(--border);
}

.btn.ghost:hover {
  background: var(--warm-white);
  border-color: var(--gold);
  color: var(--deep-burgundy);
}

.btn.outline {
  background: transparent;
  color: var(--cacao);
  border: 1px solid var(--border);
}

.btn.outline:hover {
  border-color: var(--cacao);
  background: rgba(42, 23, 14, 0.04);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 10px;
}

.badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), #b38b25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2;
}

.category-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--deep-burgundy);
  background: rgba(107, 15, 26, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero {
  padding: 70px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(203, 161, 53, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(107, 15, 26, 0.06) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--deep-burgundy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 46px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--cacao);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.hero-features li {
  font-size: 14px;
  font-weight: 600;
  color: var(--cacao);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.product-large {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  border: 4px solid var(--warm-white);
  transition: transform 0.4s ease;
}

.hero-media:hover .product-large {
  transform: scale(1.02);
}

/* ----------------------------------------------------
   SECTION STYLES
---------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 46px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

/* ----------------------------------------------------
   PRODUCTS GRID & FILTERING
---------------------------------------------------- */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  background: var(--warm-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.tab-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--cacao);
  background: rgba(42, 23, 14, 0.04);
}

.tab-btn.active {
  background: var(--cacao);
  color: var(--warm-white);
}

.search-box {
  position: relative;
  min-width: 260px;
}

.search-box input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: var(--cream);
  outline: none;
  transition: border 0.2s ease;
}

.search-box input:focus {
  border-color: var(--gold);
  background: var(--warm-white);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-light);
  pointer-events: none;
}

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

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.card-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #f7f3ec;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 10px;
  color: var(--cacao);
  line-height: 1.3;
}

.product-body .desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.price-current {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-burgundy);
}

.price-mrp {
  font-size: 14px;
  color: var(--muted-light);
  text-decoration: line-through;
}

.price-save {
  font-size: 12px;
  font-weight: 700;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  color: var(--muted);
}

/* ----------------------------------------------------
   ABOUT & STATS SECTION
---------------------------------------------------- */
.about {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.about-content p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.about-box {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
}

.about-box h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.about-box p {
  margin: 0;
  font-size: 13px;
}

/* ----------------------------------------------------
   DEALER PROFITABILITY CALCULATOR
---------------------------------------------------- */
.calculator-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f6efe2 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
  margin-top: 40px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 30px;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.input-group label span {
  color: var(--deep-burgundy);
  font-weight: 700;
}

.input-group input[type="range"] {
  width: 100%;
  accent-color: var(--deep-burgundy);
  cursor: pointer;
}

.input-group input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 15px;
}

.calc-results {
  background: var(--cacao);
  color: var(--warm-white);
  padding: 30px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.calc-results h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
}

.res-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.res-row.highlight {
  background: rgba(203, 161, 53, 0.15);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--gold-glow);
  font-size: 18px;
}

/* ----------------------------------------------------
   WHY CHOOSE US / QUALITY
---------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--warm-white);
  padding: 28px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ----------------------------------------------------
   DEALER FORM & CONTACT
---------------------------------------------------- */
.dealer-section {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

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

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-grid input, .form-grid textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.form-grid input:focus, .form-grid textarea:focus {
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(203, 161, 53, 0.15);
}

/* ----------------------------------------------------
   TESTIMONIALS & FAQ
---------------------------------------------------- */
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.test-card {
  background: var(--warm-white);
  padding: 30px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.test-card p {
  font-style: italic;
  color: var(--cacao);
  font-size: 16px;
  margin-bottom: 16px;
}

.test-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--deep-burgundy);
  font-size: 14px;
}

.faq details {
  background: var(--warm-white);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq details[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  font-weight: 700;
  font-size: 16px;
  color: var(--cacao);
  outline: none;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ----------------------------------------------------
   CONTACT & MAP
---------------------------------------------------- */
.contact-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-info-box {
  background: var(--warm-white);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item .icon {
  font-size: 20px;
  color: var(--deep-burgundy);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ----------------------------------------------------
   QUICK VIEW MODAL
---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 23, 14, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--warm-white);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 36px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--cream);
  border: none;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.modal-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.modal-specs ul, .modal-features ul {
  padding-left: 20px;
  font-size: 13px;
  color: var(--muted);
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ----------------------------------------------------
   FLOATING WHATSAPP & TOAST
---------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-item {
  background: var(--cacao);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-item.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-item span {
  color: var(--gold);
  font-weight: bold;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.site-footer {
  background: var(--cacao);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--warm-white);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
}

/* ----------------------------------------------------
   RESPONSIVE LAYOUTS
---------------------------------------------------- */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .modal-grid {
    grid-template-columns: 1fr;
  }
  .dealer-section {
    padding: 30px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--warm-white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 34px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .test-grid, .contact-card-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .calculator-section {
    padding: 24px;
  }
}
