:root {
  --ink: #211016;
  --muted: #705b61;
  --paper: #fff7ea;
  --surface: #ffffff;
  --line: #f0d2d3;
  --saffron: #f0a018;
  --saffron-dark: #b56400;
  --teal: #008b8b;
  --rose: #c01870;
  --magenta: #ef3f96;
  --turquoise: #00a6b4;
  --accent: #0b7773;
  --shadow: 0 18px 48px rgba(80, 22, 51, 0.16);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 63, 150, 0.14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0, 166, 180, 0.14), transparent 30%),
    var(--paper);
  margin: 0;
}

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

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  align-items: center;
  background: rgba(255, 247, 234, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 230px;
}

.brand-logo {
  align-items: center;
  border-radius: 8px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  padding: 9px 12px;
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(135deg, rgba(239, 63, 150, 0.16), rgba(240, 160, 24, 0.2));
  color: var(--rose);
}

main {
  overflow: hidden;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.96) 0%, rgba(255, 247, 234, 0.78) 40%, rgba(255, 247, 234, 0.06) 68%),
    url("./assets/home-hero-final-2026.png");
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 7vw, 90px) clamp(18px, 5vw, 72px) 46px;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  color: #5c1036;
  font-size: clamp(2.2rem, 4.9vw, 4.6rem);
  line-height: 1.02;
}

.eyebrow {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-top: 14px;
  max-width: 980px;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-top: 10px;
  text-transform: uppercase;
}

h3 {
  font-size: 1.15rem;
  margin-top: 16px;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow),
.page-hero p,
.contact-intro p {
  font-size: 1.08rem;
  margin-top: 22px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.button.primary {
  background: linear-gradient(135deg, var(--rose), var(--saffron));
  color: #fff;
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--saffron-dark), var(--rose));
}

.button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.button.secondary:hover {
  background: #ffe8f1;
}

.feature-band,
.values-section,
.product-list,
.contact-form-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
}

.collection-grid,
.value-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.collection-card,
.value-grid article,
.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collection-card,
.value-grid article {
  overflow: hidden;
}

.collection-card:nth-child(1) {
  border-color: rgba(239, 63, 150, 0.32);
}

.collection-card:nth-child(2) {
  border-color: rgba(0, 166, 180, 0.32);
}

.collection-card:nth-child(3) {
  border-color: rgba(240, 160, 24, 0.38);
}

.collection-card {
  padding: 12px;
}

.collection-card img {
  aspect-ratio: 16 / 10;
  background: #fffaf7;
  border-radius: 6px;
  object-fit: contain;
  width: 100%;
}

.collection-card p,
.value-grid p {
  margin-top: 10px;
}

.split-section {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.split-section > div > p:not(.eyebrow) {
  margin-top: 18px;
}

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

.proof-grid div {
  background: linear-gradient(135deg, #5c1036, #008b8b);
  border-radius: 8px;
  color: #fff;
  min-height: 128px;
  padding: 18px;
}

.proof-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffd36b;
  display: inline-flex;
  font-size: 1.05rem;
  height: 34px;
  justify-content: center;
  margin-bottom: 12px;
  width: 34px;
}

.proof-grid strong {
  display: block;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.proof-grid span {
  color: #e7d4bf;
  display: block;
  margin-top: 8px;
}

.page-hero {
  background-position: center top;
  background-size: cover;
  min-height: 470px;
  padding: clamp(60px, 10vw, 120px) clamp(18px, 5vw, 72px);
  position: relative;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(20, 13, 9, 0.82), rgba(20, 13, 9, 0.22));
  content: "";
  inset: 0;
  position: absolute;
}

.page-hero > * {
  color: #fff;
  max-width: 780px;
  position: relative;
}

.page-hero p {
  color: #f1ded0;
}

.textile-hero {
  background-image: url("./assets/about-hero-final-2026.png");
}

.product-hero {
  background-image: url("./assets/products-hero-final-2026.png");
}

.contact-hero {
  background-image: url("./assets/contact-hero-final-2026.png");
}

.rounded-image {
  aspect-ratio: 4 / 3;
  background: #fffaf7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.value-grid article {
  padding: 24px;
}

.product-list {
  display: grid;
  gap: 26px;
}

.product-row {
  align-items: center;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
}

.product-row.reverse img {
  order: 2;
}

.product-row img {
  aspect-ratio: 1 / 1;
  background: #fffaf7;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-row p:not(.eyebrow),
.cta-band p {
  margin-top: 16px;
}

.row-link {
  margin-top: 20px;
}

.clean-list {
  color: var(--muted);
  display: grid;
  gap: 9px;
  line-height: 1.5;
  margin: 18px 0 0;
  padding-left: 20px;
}

.cta-band {
  align-items: center;
  background: linear-gradient(135deg, #5c1036, #008b8b);
  color: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 86px);
  padding: 28px;
}

.cta-band h2 {
  margin: 0;
}

.cta-band p {
  color: #e7d4bf;
}

.cta-band .button.primary {
  background: var(--saffron);
}

.contact-layout {
  display: grid;
  gap: clamp(24px, 5vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  padding: clamp(52px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.outlets-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.outlet-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.outlet-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.outlet-card img {
  aspect-ratio: 16 / 10;
  background: #fffaf7;
  object-fit: contain;
  width: 100%;
}

.outlet-card > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.outlet-details {
  color: var(--muted);
  display: grid;
  gap: 7px;
  line-height: 1.45;
  margin: 0;
  padding-left: 18px;
}

.outlet-details a {
  color: var(--rose);
  font-weight: 850;
}

.location-badge {
  background: linear-gradient(135deg, rgba(239, 63, 150, 0.18), rgba(0, 166, 180, 0.18));
  border-radius: 999px;
  color: var(--rose);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 6px 10px;
  width: max-content;
}

.contact-card {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-list dt {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}

.contact-list a {
  color: var(--ink);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1040px;
  padding: 24px;
}

.full-field,
.contact-form button {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  display: block;
  font-weight: 850;
  margin-bottom: 8px;
}

input,
select,
textarea {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(28, 112, 105, 0.18);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer p {
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

.chatbot {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 30;
}

.chat-toggle {
  background: linear-gradient(135deg, var(--rose), var(--turquoise));
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 54px;
  padding: 0 22px;
}

.chat-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 70px;
  box-shadow: 0 24px 70px rgba(80, 22, 51, 0.22);
  display: none;
  max-height: min(620px, calc(100vh - 112px));
  overflow: hidden;
  position: absolute;
  right: 0;
  width: min(360px, calc(100vw - 32px));
}

.chatbot.is-open .chat-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.chat-header {
  align-items: center;
  background: linear-gradient(135deg, #5c1036, #008b8b);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 14px;
}

.chat-header span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.8;
}

.chat-close {
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  height: 34px;
  width: 34px;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow: auto;
  padding: 14px;
}

.chat-message {
  border-radius: 8px;
  line-height: 1.45;
  padding: 10px 12px;
}

.chat-message.bot {
  background: #fff2db;
  color: var(--ink);
}

.chat-message.user {
  background: #e6f7f7;
  justify-self: end;
}

.chat-message a {
  color: var(--rose);
  font-weight: 900;
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 12px;
}

.chat-prompts button,
.chat-form button {
  background: #ffe8f1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--rose);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  min-height: 34px;
  padding: 0 10px;
}

.chat-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.chat-form input {
  min-height: 40px;
}

.catalog-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.96), rgba(255, 247, 234, 0.78)),
    url("./assets/modern-traditional-final-2026.png");
  background-position: center;
  background-size: cover;
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.fabrics-catalog-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.95), rgba(255, 247, 234, 0.65)),
    url("./assets/fabric-cover-final-2026.png");
  background-position: center;
  background-size: cover;
}

.catalog-hero > * {
  max-width: 760px;
}

.catalog-hero p:not(.eyebrow) {
  font-size: 1.08rem;
  margin-top: 18px;
}

.gallery-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.catalog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.catalog-grid article {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.catalog-grid img {
  background: #fffaf7;
  border-radius: 0;
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.apparel-grid img {
  object-fit: contain;
}

.catalog-grid h3 {
  font-size: 0.95rem;
  margin: 10px 4px 2px;
}

@media (max-width: 940px) {
  .site-header,
  .split-section,
  .product-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(255, 247, 234, 0.96) 0%, rgba(255, 247, 234, 0.82) 52%, rgba(255, 247, 234, 0.22) 100%),
      url("./assets/home-hero-final-2026.png");
    background-position: 64% top;
    min-height: auto;
  }

  .collection-grid,
  .value-grid,
  .outlet-grid {
    grid-template-columns: 1fr;
  }

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

  .product-row.reverse img {
    order: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 247, 234, 0.98) 0%, rgba(255, 247, 234, 0.88) 50%, rgba(255, 247, 234, 0.36) 100%),
      url("./assets/home-hero-final-2026.png");
    background-position: 61% top;
    min-height: 720px;
  }

  .proof-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .chatbot {
    bottom: 14px;
    right: 14px;
  }
}

.language-switch {
  align-items: center;
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
}

.language-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  min-height: 32px;
  padding: 0 10px;
}

.language-switch button.active {
  background: linear-gradient(135deg, var(--rose), var(--saffron));
  color: #fff;
}

.content-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.text-columns {
  column-gap: 34px;
  columns: 2 320px;
  margin-top: 24px;
  max-width: 1120px;
}

.text-columns p {
  break-inside: avoid;
  margin-bottom: 16px;
}

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

.no-captions article {
  padding: 0;
}

.no-captions h3 {
  display: none;
}

.no-captions img {
  border-radius: 8px;
  height: 100%;
}

.hijab-catalog-hero {
  background:
    linear-gradient(90deg, rgba(255, 247, 234, 0.95), rgba(255, 247, 234, 0.62)),
    url("./assets/hijab-accessories-final-2026.png");
  background-position: center;
  background-size: cover;
}

.hijab-grid img {
  aspect-ratio: 1 / 1;
}

.website-field {
  display: none;
}

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

@media (max-width: 940px) {
  .language-switch {
    width: max-content;
  }

  .five-grid {
    grid-template-columns: 1fr;
  }
}

/* Revision 2026-08-06: align About content and standardize product buttons. */
.about-content .section-heading,
.about-content .text-columns {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.text-columns {
  align-items: start;
  column-gap: 0;
  columns: initial;
  display: grid;
  gap: 18px 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.text-columns p {
  margin: 0;
  text-align: left;
}

.product-row .row-link {
  min-width: 230px;
  width: 230px;
}

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

@media (max-width: 640px) {
  .product-row .row-link {
    width: 100%;
  }
}

/* Revision 2026-08-06: replace broken stat symbols with clean badges. */
.proof-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 107, 0.2);
  color: #ffd36b;
  font-size: 0.72rem;
  font-weight: 900;
  height: 34px;
  letter-spacing: 0;
  width: 44px;
}
/* Revision 2026-08-21: mobile-safe galleries and borderless product imagery. */
.collection-card {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.collection-card img,
.product-row img,
.catalog-grid img {
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  width: 100%;
}

.collection-card img,
.catalog-grid img {
  height: 100%;
}

.collection-card:nth-child(1),
.collection-card:nth-child(2),
.collection-card:nth-child(3) {
  border-color: transparent;
}

.catalog-grid article {
  background: transparent;
}

/* Interactive polish revision */
html {
  scroll-behavior: smooth;
}

.site-header {
  transition: box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

body.header-raised .site-header {
  background: rgba(255, 250, 241, 0.95);
  border-color: rgba(123, 49, 23, 0.16);
  box-shadow: 0 16px 34px rgba(31, 35, 41, 0.1);
  backdrop-filter: blur(14px);
}

.nav-link,
.logo,
.button,
.secondary-button,
.language-button,
.collection-card,
.feature-card,
.product-row,
.value-card,
.outlet-card,
.stat-card,
.map-card,
.category-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.button:hover,
.secondary-button:hover,
.language-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(59, 40, 25, 0.14);
}

.collection-card:hover,
.feature-card:hover,
.product-row:hover,
.value-card:hover,
.outlet-card:hover,
.stat-card:hover,
.map-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(35, 24, 16, 0.12);
}

.collection-card img,
.product-row img,
.catalog-grid img,
.map-card img,
.category-card img,
.hero-media img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

.collection-card:hover img,
.product-row:hover img,
.catalog-grid a:hover img,
.map-card:hover img,
.category-card:hover img,
.hero-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow: 0 16px 30px rgba(31, 35, 41, 0.18);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.chat-toggle {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent), var(--ink));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(31, 35, 41, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chat-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(31, 35, 41, 0.24);
}

.chat-panel {
  width: min(360px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 108px));
  display: none;
  overflow: hidden;
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 24px 70px rgba(31, 35, 41, 0.22);
  border: 1px solid rgba(123, 49, 23, 0.14);
}

.chatbot.is-open .chat-panel {
  display: flex;
  flex-direction: column;
  animation: chatPanelIn 0.24s ease both;
}

.chat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #7b3117, #0b7773);
}

.chat-avatar {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-weight: 800;
}

.chat-title {
  display: grid;
  gap: 3px;
}

.chat-title strong {
  font-size: 1rem;
}

.chat-title span,
.chat-status {
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.chat-status {
  grid-column: 2;
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
  max-height: 320px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-message.bot {
  align-self: flex-start;
  background: #f2e5d4;
  color: var(--ink);
}

.chat-message.user {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.chat-action {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fffaf2;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.chat-prompts {
  display: flex;
  gap: 8px;
  padding: 0 16px 14px;
  overflow-x: auto;
}

.chat-prompt {
  flex: 0 0 auto;
  border: 1px solid rgba(123, 49, 23, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.chat-prompt:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(123, 49, 23, 0.12);
}

.chat-input {
  min-width: 0;
  border: 1px solid rgba(123, 49, 23, 0.18);
  border-radius: 999px;
  padding: 11px 13px;
  background: #fff;
  color: var(--ink);
}

.chat-input:focus {
  outline: 2px solid rgba(11, 119, 115, 0.18);
  border-color: #0b7773;
}

.chat-submit {
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: typingPulse 0.9s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingPulse {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

@keyframes chatPanelIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
  .chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    padding: 12px 16px;
  }

  .back-to-top {
    left: 14px;
    bottom: 14px;
  }

  .chat-messages {
    max-height: 280px;
  }
}


/* Revision 2026-08-22: borderless equal homepage and about imagery. */
.collection-grid {
  align-items: stretch;
}

.collection-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}

.collection-card:hover {
  box-shadow: none;
}

.collection-card img {
  aspect-ratio: 4 / 3;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: clamp(250px, 26vw, 360px);
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.rounded-image,
.split-section .rounded-image {
  aspect-ratio: 4 / 3;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  height: clamp(280px, 34vw, 430px);
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 700px) {
  .collection-card img,
  .rounded-image,
  .split-section .rounded-image {
    height: auto;
  }
}

/* Revision 2026-08-23: premium stat boxes, consistent galleries, and mobile-safe chat. */
.proof-grid {
  gap: 16px;
}

.proof-grid div {
  background: linear-gradient(145deg, #ffffff 0%, #fff8ed 58%, #f8ead7 100%);
  border: 1px solid rgba(181, 100, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(80, 22, 51, 0.13);
  color: var(--ink);
  min-height: 124px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.proof-grid div::before {
  content: "";
  display: block;
  height: 3px;
  width: 58px;
  background: linear-gradient(90deg, var(--saffron), var(--rose));
  border-radius: 999px;
  margin-bottom: 18px;
}

.proof-grid div::after {
  background: radial-gradient(circle, rgba(0, 139, 139, 0.14), transparent 62%);
  content: "";
  height: 118px;
  position: absolute;
  right: -48px;
  top: -46px;
  width: 118px;
}

.proof-grid strong {
  color: #5c1036;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0;
}

.proof-grid span {
  color: var(--muted);
  font-weight: 650;
  margin-top: 8px;
}

.proof-icon {
  display: none;
}

.catalog-grid article {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #fffaf7;
}

.catalog-grid img,
.apparel-grid img,
.hijab-grid img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.chatbot {
  max-width: calc(100vw - 28px);
}

.chat-panel {
  border-radius: 8px;
}

.chat-toggle::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: #2ff2bd;
  box-shadow: 0 0 0 4px rgba(47, 242, 189, 0.18);
}

@media (max-width: 640px) {
  .catalog-grid article {
    aspect-ratio: 1 / 1;
  }

  .chatbot.is-open {
    left: 12px;
    right: 12px;
  }

  .chatbot.is-open .chat-panel {
    width: 100%;
  }
}
/* iPhone Safari product gallery visibility fix - 2026-08-23 */
.gallery-section,
.gallery-section.reveal-on-scroll,
.catalog-grid,
.catalog-grid article,
.catalog-grid img {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.product-page .gallery-section {
  display: block !important;
  min-height: 0 !important;
}

.product-page .catalog-grid {
  display: grid !important;
}

@media (max-width: 640px) {
  .gallery-section {
    padding: 24px 18px 56px !important;
  }

  .catalog-grid {
    gap: 14px !important;
    grid-template-columns: 1fr !important;
    margin-top: 18px !important;
  }

  .catalog-grid article {
    min-height: 260px !important;
  }

  .catalog-grid img {
    display: block !important;
    min-height: 1px !important;
  }
}