:root {
  --purple: #6b238e;
  --purple-dark: #4e166b;
  --gold: #d6a23a;
  --teal: #00796b;
  --rose: #bf3f61;
  --ink: #24212a;
  --muted: #68606f;
  --surface: #ffffff;
  --soft: #f6f1f8;
  --line: #e7ddea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #fbf8fc;
}

.top-margin {
  margin: 16px;
  padding: 22px 24px;
  background: var(--purple);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(78, 22, 107, 0.18);
}

.top-margin h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0;
}

.top-margin h1::after {
  content: "Exclusive Sarees";
  display: block;
  margin-top: 8px;
  color: #ffb3d1;
  font-size: 20px;
  font-weight: 700;
}

.site-shell {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 22px;
  max-width: 1180px;
  min-height: calc(100vh - 190px);
  margin: 0 auto;
  padding: 0 16px;
}

.left-menu {
  align-self: start;
  position: sticky;
  top: 16px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(45, 32, 52, 0.08);
}

.left-menu a {
  display: block;
  width: 100%;
  padding: 12px 14px;
  color: var(--purple-dark);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}

.left-menu a:hover,
.left-menu a.active {
  background: var(--purple);
  color: #ffffff;
}

.menu-group {
  margin: 2px 0;
}

.submenu {
  margin: 4px 0 8px 16px;
  border-left: 3px solid var(--line);
}

.submenu a {
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 600;
}

.nested-submenu {
  margin: 2px 0 8px 18px;
  border-left: 2px solid #d6a23a;
}

.nested-submenu a {
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
}

.content {
  min-width: 0;
  padding-bottom: 22px;
}

.hero,
.page-panel,
.product-section,
.contact-layout,
.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(45, 32, 52, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.hero h2,
.page-panel h2,
.product-section h2,
.form-panel h2 {
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: 30px;
  line-height: 1.2;
}

.hero p,
.page-panel p,
.product-section p,
.contact-layout p,
.form-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.hero img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.button,
button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: var(--teal);
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #005f54;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.category-card,
.product-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(45, 32, 52, 0.07);
}

.category-card img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.category-card h3,
.product-card h3 {
  margin: 14px 14px 4px;
  color: var(--purple-dark);
}

.category-card p,
.product-card p {
  margin: 0 14px 16px;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  display: block;
  margin: 0 14px 16px;
  color: var(--rose);
  font-weight: 800;
}

.page-panel,
.product-section,
.form-panel,
.contact-layout {
  padding: 28px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
}

.page-intro img,
.page-image {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.page-image {
  margin-top: 18px;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.list-grid div,
.contact-box {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.map-box {
  grid-column: 1 / -1;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  margin-top: 12px;
  border: 0;
  border-radius: 8px;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.enquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--purple-dark);
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #cfc0d7;
  border-radius: 6px;
  font: inherit;
}

.bottom-margin {
  margin: 16px;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  background: var(--purple-dark);
  border-radius: 8px;
}

.bottom-margin p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-shell,
  .hero,
  .contact-layout,
  .page-intro {
    grid-template-columns: 1fr;
  }

  .left-menu {
    position: static;
  }

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

@media (max-width: 560px) {
  .top-margin h1 {
    font-size: 26px;
  }

  .hero,
  .page-panel,
  .product-section,
  .form-panel,
  .contact-layout {
    padding: 20px;
  }

  .category-grid,
  .product-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }
}
