:root {
  --bg-main: #f7f4f0;
  --bg-soft: #fbf9f7;
  --bg-card: #ffffff;
  --border-subtle: rgba(12, 10, 8, 0.06);
  --border-strong: rgba(12, 10, 8, 0.16);
  --text-main: #18130f;
  --text-muted: #777069;
  --accent: #c19b6b;
  --accent-soft: rgba(193, 155, 107, 0.18);
  --accent-strong: #ae8650;
  --danger: #d16060;
  --shadow-soft: 0 18px 60px rgba(28, 25, 23, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container-width: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
}

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

.section {
  padding: 96px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #d8b88b, #c19b6b);
  color: #221711;
  box-shadow: 0 18px 50px rgba(159, 127, 90, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(159, 127, 90, 0.45);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(161, 132, 97, 0.5);
  color: var(--accent-strong);
}

.btn.ghost:hover {
  background: rgba(193, 155, 107, 0.08);
}

.btn-full {
  width: 100%;
}

.text-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent-strong);
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.text-link:hover {
  text-decoration: underline;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card-body {
  padding: 18px 20px 20px;
}

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

.page-grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -2;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(247, 244, 240, 0.96),
    rgba(247, 244, 240, 0.94),
    transparent
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0, #f8e7cf, #d8b88b);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  font-size: 18px;
  color: #3c2817;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text span:first-child {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.main-nav {
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 18px;
  justify-content: space-between;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #3b3027;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.nav-links a {
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8b88b, #c19b6b);
  transition: width 0.22s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text-main);
}

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

/* Hero */

.hero {
  padding-top: 96px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent-strong);
  margin-bottom: 8px;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.hero-subtitle {
  color: var(--text-muted);
  margin: 0 0 22px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.hero-meta .meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.hero-meta .meta-value {
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-image {
  height: 340px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  background-image: url("https://images.pexels.com/photos/6311576/pexels-photo-6311576.jpeg?auto=compress&cs=tinysrgb&w=1200");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.7),
    transparent 55%
  );
}

.hero-tag {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-pill {
  position: absolute;
  right: -6px;
  bottom: 28px;
  max-width: 260px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.motion-dots {
  position: absolute;
  inset: auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-image: radial-gradient(#c19b6b 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.35;
  animation: floatDots 14s linear infinite;
}

.motion-dots--hero {
  bottom: -40px;
  left: -24px;
}

.motion-dots--enquiry {
  right: 40px;
  bottom: 28px;
}

@keyframes floatDots {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -10px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Collections Overview */

.collections-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-image {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.card-image--maternity {
  background-image: url("images/Feeding\ dress.webp");
}

.card-image--regular {
  background-image: url("images/kurti.webp");
}

.card-image--casual {
  background-image: url("");
}

.card-image--ethnic {
  background-image: url("");
}

.card-image--party {
  background-image: url("");
}

.card-image--seasonal {
  background-image: url("");
}

.collection-card {
  position: relative;
  overflow: hidden;
}

.collection-card .card-image {
  transition: transform 0.6s ease;
}

.collection-card:hover .card-image {
  transform: scale(1.04);
}

.collection-card .card-body {
  position: relative;
}

/* Featured Products */

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e9e3db;
}

.product-image {
  height: 260px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

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

.product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 16px 18px;
  background: linear-gradient(
    to top,
    rgba(11, 9, 7, 0.88),
    rgba(11, 9, 7, 0.1),
    transparent
  );
  color: #f8f4f0;
}

.product-overlay h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.product-overlay p {
  margin: 0 0 6px;
  font-size: 13px;
}

.product-overlay .text-link {
  color: #f4e2ce;
}

.product-image--luna {
  background-image: url("");
}

.product-image--noor {
  background-image: url("");
}

.product-image--halo {
  background-image: url("");
}

/* Collections Listing / Products */

.listing-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
}

.filters {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.filter-group label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

select {
  width: 180px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background-color: #fdfaf6;
  font-size: 12px;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6a5a4b 50%),
    linear-gradient(135deg, #6a5a4b 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

select:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(193, 155, 107, 0.4);
}

.products-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-list-grid .product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.products-list-grid .product-overlay {
  position: static;
  color: var(--text-main);
  background: transparent;
  padding: 12px 12px 14px;
}

.products-list-grid .product-overlay p {
  color: var(--text-muted);
}

.products-list-grid .text-link {
  color: var(--accent-strong);
}

/* Dynamic collection → category → products */

.collection-categories {
  margin-bottom: 24px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  background: #fdfaf6;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease,
    transform 0.18s ease, border-color 0.18s ease;
}

.category-chip:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  border-color: var(--accent-soft);
}

.active-collection {
  font-size: 14px;
  font-weight: 500;
}

.active-collection-description {
  font-size: 12px;
  color: var(--text-muted);
}

.empty-state {
  font-size: 14px;
  color: var(--text-muted);
}

.product-image-wrap {
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: #f3ece4;
}

.product-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-overlay--light {
  position: static;
  background: transparent;
  color: var(--text-main);
  padding: 14px 14px 16px;
}

.product-overlay--light p {
  color: var(--text-muted);
}

.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Collections page specific */

.collections-page main {
  background: var(--bg-main);
}

.collections-hero {
  padding-top: 88px;
  padding-bottom: 32px;
}

.collections-hero-inner {
  max-width: 860px;
}

.collections-hero-copy h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 12px;
}

.collections-hero-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0;
}

.collections-grid--page .card-body {
  padding: 20px 22px 22px;
}

.collection-card-title {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.collections-detail {
  background: var(--bg-main);
}

.collections-detail-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.collections-detail-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 6px 0 10px;
}

.collections-detail-subtitle {
  color: var(--text-muted);
  margin: 0;
}

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

.category-card--detail {
  border-radius: var(--radius-md);
}

.category-card--detail h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.category-lead {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.nested-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(-4px);
}

.nested-list--open {
  max-height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.nested-list ul {
  list-style: none;
  padding-left: 0;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.nested-list li + li {
  margin-top: 3px;
}

@media (max-width: 920px) {
  .collections-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .collections-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Product Detail */

.product-detail {
  position: relative;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 32px;
  padding: 24px;
}

.product-detail-media {
  border-radius: 20px;
  overflow: hidden;
  background: #efe5da;
}

.product-detail-image {
  height: 340px;
  background-size: cover;
  background-position: center;
}

.product-detail-content h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}

.detail-collection {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.detail-description {
  color: var(--text-muted);
  margin-top: 0;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 12px 0 14px;
}

.detail-meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.detail-meta dd {
  margin: 2px 0 0;
}

.detail-notes {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.detail-cta {
  margin-top: 4px;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.about-layout h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}

.about-layout p {
  color: var(--text-muted);
}

.about-panel {
  padding: 20px 22px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: #fcfaf7;
}

.about-panel h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.checklist li {
  position: relative;
  padding-left: 18px;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 2px;
  top: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--accent-strong);
}

.checklist li + li {
  margin-top: 6px;
}

/* Why Choose Us */

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-item {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.why-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  margin-bottom: 10px;
  position: relative;
}

.why-icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background-image: radial-gradient(#c19b6b 2px, transparent 2px);
  background-size: 6px 6px;
  opacity: 0.6;
}

.why-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.why-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* Clients */

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.clients-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 24px;
}

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

.logo-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  padding: 10px 16px;
  font-size: 13px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.testimonials {
  display: grid;
  gap: 14px;
}

.testimonial {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background: #fcfaf7;
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-meta {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #4f4943;
}

/* Enquiry */

.enquiry-section {
  position: relative;
  background: var(--bg-soft);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.enquiry-layout h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 8px 0 12px;
}

.enquiry-layout p {
  color: var(--text-muted);
}

.enquiry-form {
  padding: 20px 20px 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.form-group label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #4f4943;
}

input,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 11px;
  border: 1px solid var(--border-strong);
  background: #fdfaf6;
  color: var(--text-main);
  font-size: 13px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(119, 112, 105, 0.7);
}

textarea {
  resize: vertical;
  min-height: 72px;
}

input:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(193, 155, 107, 0.4);
  background: #fffdf9;
}

.form-footnote {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.form-success {
  margin-top: 8px;
  font-size: 12px;
  color: #3c7a4e;
  min-height: 1em;
}

.form-error {
  border-color: var(--danger);
}

/* Footer */

.site-footer {
  padding: 28px 0 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #f7f2ec;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  max-width: 360px;
}

.footer-columns {
  display: flex;
  gap: 46px;
}

.footer-columns h4 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.footer-columns li + li {
  margin-top: 4px;
}

.footer-columns a:hover {
  color: var(--text-main);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Scroll Animations */

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1040px) {
  .hero-inner,
  .about-layout,
  .clients-layout,
  .enquiry-layout,
  .product-detail-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 80px;
  }
}

@media (max-width: 920px) {
  .collections-grid,
  .product-grid,
  .products-list-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding-block: 10px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 42px;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(252, 249, 245, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-soft);
    min-width: 190px;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .section {
    padding: 72px 0;
  }

  .hero-inner {
    gap: 32px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .collections-grid,
  .product-grid,
  .products-list-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .logo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }

  .filter-group select {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-detail-inner {
    padding-inline: 18px;
  }
}

/* Products page */

.products-hero {
  padding-top: 88px;
  padding-bottom: 32px;
}

.products-hero-subtitle {
  max-width: 620px;
  color: var(--text-muted);
}

.products-page-card {
  background: var(--bg-card);
}

/* Product detail standalone page */

.product-detail-hero {
  padding-top: 88px;
  padding-bottom: 24px;
}

.product-detail-page-section {
  padding-top: 32px;
}

.product-detail-page-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 32px;
  padding: 24px 24px 26px;
}

.product-detail-page-media {
  border-radius: 20px;
  overflow: hidden;
  background: #efe5da;
}

.product-detail-page-image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.product-detail-page-content {
  display: flex;
  flex-direction: column;
}

.product-detail-page-description {
  color: var(--text-muted);
  margin-top: 0;
}

.product-detail-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 1040px) {
  .product-detail-page-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .product-detail-page-inner {
    padding-inline: 18px;
  }
}

/* Simple previous / next pager */

.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.pager-link {
  font-size: 13px;
  color: var(--text-muted);
}

.pager-link:hover,
.pager-link:focus {
  color: var(--text-main);
  text-decoration: underline;
}

.pager-link--prev::before {
  content: "← ";
}

.pager-link--next::after {
  content: " →";
}

.pager-link--disabled {
  visibility: hidden;
}


