@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --vimla-ink: #1d1a17;
  --vimla-muted: #756e66;
  --vimla-line: #dfd9d1;
  --vimla-soft: #f7f3ee;
  --vimla-paper: #fffdf9;
  --vimla-white: #fffdf9;
  --vimla-accent: #2180b7;
  --vimla-accent-dark: #176a99;
  --vimla-accent-soft: #e9f4fa;
  --vimla-accent-line: #b9d8e9;
}

body.elementor-page-6 {
  margin: 0;
  background: var(--vimla-white);
  color: var(--vimla-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

body.vimla-modal-open {
  overflow: hidden;
}

.elementor-element.elementor-element-vimla01.e-con,
.elementor-element.elementor-element-vimla01.e-con-full.e-flex.wpr-particle-no.wpr-jarallax-no.wpr-parallax-no.wpr-sticky-section-no.wpr-column-slider-no.wpr-equal-height-no.e-con.e-parent.e-lazyloaded {
  padding: 0;
}

.vimla-site * {
  box-sizing: border-box;
}

.vimla-site {
  background: var(--vimla-white);
  color: var(--vimla-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.vimla-site a {
  color: inherit;
  text-decoration: none;
}

.vimla-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 0 42px;
  border-bottom: 1px solid var(--vimla-line);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(16px);
}

.vimla-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vimla-brand img {
  width: auto;
  height: 58px;
  object-fit: contain;
}

.vimla-nav,
.vimla-header-actions,
.vimla-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vimla-header-actions {
  justify-content: flex-end;
}

.vimla-nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #3b352f;
  transition: color .2s ease;
}

.vimla-nav a:hover,
.vimla-footer a:hover {
  color: var(--vimla-accent);
}

.vimla-icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
}

button.vimla-icon-btn {
  height: 50px !important;
  width: 50px !important;
}

.vimla-icon-btn:hover,
.vimla-icon-btn:focus {
  background: transparent;
  color: var(--vimla-ink);
}

.vimla-icon-btn svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.vimla-menu-label {
  margin-left: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.vimla-menu-lines {
  display: inline-grid;
  gap: 6px;
}

.vimla-menu-lines span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.vimla-header-left > .vimla-icon-btn {
  display: none;
}

.vimla-search-panel {
  position: absolute;
  right: 32px;
  top: 68px;
  width: min(420px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--vimla-line);
  background: var(--vimla-white);
  box-shadow: 0 18px 50px rgba(29,26,23,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: .2s ease;
}

.vimla-search-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vimla-search-panel input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--vimla-line);
  padding: 10px 2px;
  outline: 0;
  font-size: 15px;
}

.vimla-search-results {
  display: grid;
  gap: 8px;
  max-height: 430px;
  margin-top: 12px;
  overflow: auto;
}

.vimla-search-result {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px;
  color: var(--vimla-ink);
  text-decoration: none;
  transition: background .18s ease;
}

.vimla-search-result:hover {
  background: #f8f3ed;
  color: var(--vimla-ink);
}

.vimla-search-result-image {
  display: block;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vimla-soft);
}

.vimla-search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vimla-search-result-content {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.vimla-search-result-title {
  overflow: hidden;
  color: var(--vimla-ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vimla-search-result-type,
.vimla-search-empty {
  color: var(--vimla-muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vimla-search-empty {
  padding: 12px 4px 4px;
}

.vimla-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 54px;
  padding: 10px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 36px rgba(20, 92, 48, .22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.vimla-whatsapp-float:hover,
.vimla-whatsapp-float:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(20, 92, 48, .28);
}

.vimla-whatsapp-float svg {
  width: 34px;
  height: 34px;
  color: #18b957;
  flex: 0 0 auto;
}

.vimla-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(29, 26, 23, .28);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.vimla-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.vimla-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  width: min(390px, 88vw);
  height: 100vh;
  height: 100dvh;
  padding: 26px;
  background: var(--vimla-white);
  transform: translateX(-100%);
  transition: .28s ease;
  box-shadow: 24px 0 70px rgba(29, 26, 23, .14);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.vimla-drawer.open {
  transform: translateX(0);
}

.vimla-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
}

.vimla-drawer-head img {
  width: auto;
  height: 64px;
  object-fit: contain;
}

.vimla-drawer-head [data-vimla-menu-close] {
  width: 52px;
  height: 52px;
  font-size: 44px;
  line-height: 1;
}

.vimla-drawer-nav {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.vimla-drawer-nav a {
  font-size: 17px;
}

.vimla-drawer-contact {
  display: grid;
  gap: 10px;
  color: var(--vimla-muted);
  font-size: 14px;
  line-height: 1.6;
}

.vimla-hero {
  position: relative;
  width: min(var(--vimla-hero-width, 100%), 100%);
  height: var(--vimla-hero-height, calc(100vh - 78px));
  min-height: 620px;
  max-height: 920px;
  margin: 0 auto;
  color: #fff;
  overflow: hidden;
}

.vimla-hero-track {
  height: 100%;
}

.vimla-hero-slide {
  height: 100%;
  display: none;
  align-items: flex-end;
  padding: 9vw 8vw;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.vimla-hero-slide.active {
  display: flex;
}

.vimla-hero-content {
  max-width: 680px;
}

.vimla-hero-controls {
  position: absolute;
  right: clamp(22px, 5vw, 76px);
  bottom: clamp(22px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.vimla-hero-controls button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(20, 16, 12, .16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.vimla-hero-dots {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 4px;
}

.vimla-hero-dots button {
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  padding: 0;
  display: block;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .32);
  font-size: 0;
  line-height: 0;
  transition: width .2s ease, background .2s ease, box-shadow .2s ease;
}

.vimla-hero-dots button.active {
  width: 24px;
  background: #fff;
  box-shadow: 0 0 0 1px #fff;
}

.vimla-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.vimla-hero h1,
.vimla-section-head h2,
.vimla-story-copy h2,
.vimla-journal-copy h2,
.vimla-newsletter h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: .98;
}

.vimla-hero h1 {
  font-size: clamp(52px, 8vw, 112px);
  max-width: 780px;
}

.vimla-hero p:not(.vimla-eyebrow) {
  max-width: 560px;
  margin: 24px 0 32px;
  font-size: 18px;
  line-height: 1.65;
}

.vimla-btn {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--vimla-accent);
  background: var(--vimla-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.vimla-btn:hover {
  background: var(--vimla-accent-dark);
  border-color: var(--vimla-accent-dark);
  color: #fff;
}

.vimla-section {
  padding: 60px 40px;
}

.vimla-page-shell {
  background: var(--vimla-white);
}

.vimla-page-hero {
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(80px, 10vw, 140px) 40px;
  background: linear-gradient(90deg, rgba(255, 253, 249, .96), rgba(255, 253, 249, .78)), url('../../../../uploads/2026/05/IMG_5232-768x1152-1.webp') center/cover;
}

.vimla-page-hero > * {
  max-width: 820px;
}

.vimla-page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 500;
  line-height: .98;
}

.vimla-page-hero > p:not(.vimla-eyebrow) {
  margin: 0;
  color: var(--vimla-muted);
  font-size: 18px;
  line-height: 1.75;
}

.vimla-page-hero .vimla-btn {
  justify-self: start;
}

.vimla-page-band {
  padding: 80px 40px;
  background: var(--vimla-soft);
}

.vimla-page-grid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  border: 1px solid var(--vimla-line);
  background: var(--vimla-line);
}

.vimla-page-card {
  min-height: 250px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--vimla-white);
}

.vimla-page-card h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
}

.vimla-page-card p {
  margin: 0;
  color: var(--vimla-muted);
  line-height: 1.75;
}

.vimla-elementor-page {
  background: var(--vimla-white);
  color: var(--vimla-ink);
}

.vimla-elementor-page .elementor-widget-container {
  font-family: "Montserrat", sans-serif;
}

.vimla-elementor-hero {
  min-height: 560px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(110px, 12vw, 170px) 40px 74px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, .94), rgba(255, 253, 249, .7) 58%, rgba(255, 253, 249, .25)),
    url('../../../../uploads/2026/05/IMG_5232-768x1152-1.webp') center/cover;
}

.vimla-about-hero {
  background-position: center 42%;
}

.vimla-contact-hero {
  min-height: 470px;
  background-position: center 56%;
}

.vimla-elementor-hero > * {
  max-width: 820px;
}

.vimla-elementor-hero h1,
.vimla-elementor-page h2,
.vimla-elementor-page h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.vimla-elementor-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: .95;
}

.vimla-elementor-hero p,
.vimla-elementor-split p,
.vimla-elementor-story p,
.vimla-contact-details p,
.vimla-contact-form p {
  margin: 0;
  color: var(--vimla-muted);
  font-size: 16px;
  line-height: 1.8;
}

.vimla-elementor-split {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  gap: clamp(34px, 8vw, 116px);
  align-items: center;
  padding: 86px 40px;
  background: var(--vimla-white);
}

.vimla-elementor-split > *,
.vimla-elementor-grid-section > *,
.vimla-elementor-story > *,
.vimla-contact-panel > * {
  min-width: 0;
}

.vimla-elementor-split h2,
.vimla-elementor-story h2,
.vimla-contact-details h2,
.vimla-contact-form h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;
}

.vimla-elementor-split img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.vimla-elementor-grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 40px 88px;
  background: var(--vimla-line);
}

.vimla-elementor-grid-section article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--vimla-soft);
}

.vimla-elementor-grid-section h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 1.05;
}

.vimla-elementor-grid-section p {
  margin: 0;
  color: var(--vimla-muted);
  line-height: 1.75;
}

.vimla-elementor-story {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 96px);
  padding: 86px 40px;
  background: var(--vimla-soft);
}

.vimla-elementor-story ul,
.vimla-contact-details ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.vimla-elementor-story li,
.vimla-contact-details li {
  padding-top: 16px;
  border-top: 1px solid var(--vimla-line);
  color: var(--vimla-muted);
  line-height: 1.7;
}

.vimla-about-page {
  background: var(--vimla-white);
}

.vimla-about-hero,
.vimla-about-intro,
.vimla-about-mission,
.vimla-about-values,
.vimla-about-story,
.vimla-about-banner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.vimla-about-hero {
  padding: 72px 0 42px;
}

.vimla-about-hero img,
.vimla-about-banner img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.vimla-about-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
  padding: 28px 0 78px;
}

.vimla-about-intro-content {
  max-width: 620px;
}

.vimla-about-intro h1,
.vimla-about-mission h2,
.vimla-about-values h2,
.vimla-about-story h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.vimla-about-intro p,
.vimla-about-mission p,
.vimla-about-story p,
.vimla-about-values li {
  color: #24201c;
  font-size: clamp(18px, 1.1vw, 24px);
  line-height: 1.48;
}

.vimla-about-intro .vimla-btn {
  margin-top: 14px;
}

.vimla-about-image-carousel {
  min-width: 0;
}

.vimla-about-carousel-window {
  overflow: hidden;
}

.vimla-about-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.vimla-about-carousel-track::-webkit-scrollbar {
  display: none;
}

.vimla-about-carousel-item {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
}

.vimla-about-carousel-track img,
.vimla-about-story img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.vimla-about-carousel-track img {
  height: clamp(360px, 42vw, 560px);
}

.vimla-about-image-carousel .vimla-collection-controls {
  justify-content: flex-end;
  margin-top: 18px;
}

.vimla-about-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0 0 70px;
  background: var(--vimla-line);
}

.vimla-about-mission article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 52px);
  background: #fbf8f2;
}

.vimla-about-values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 48px;
  align-items: center;
  padding: 20px 0 86px;
}

.vimla-about-values ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vimla-about-values li {
  position: relative;
  padding-left: 24px;
}

.vimla-about-values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  background: var(--vimla-accent);
  border-radius: 50%;
}

.vimla-about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #f8f1e7;
  border: 1px solid rgba(37, 31, 26, .12);
}

.vimla-about-stats strong {
  min-height: 132px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--vimla-white);
  color: var(--vimla-ink);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(37, 31, 26, .08);
}

.vimla-about-stats strong::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--vimla-accent);
}

.vimla-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 44px;
  align-items: center;
  padding: 24px 0 76px;
}


.vimla-about-banner {
  padding: 0 0 96px;
}

.vimla-contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(320px, 1fr);
  gap: 1px;
  padding: 0 40px 88px;
  background: var(--vimla-line);
}

.vimla-contact-details,
.vimla-contact-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--vimla-white);
}

.vimla-contact-details a {
  color: var(--vimla-ink);
  text-decoration: none;
}

.vimla-contact-details a:hover {
  color: var(--vimla-accent);
}

.vimla-contact-form form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.vimla-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--vimla-ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vimla-contact-form input,
.vimla-contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--vimla-line);
  border-radius: 0;
  background: var(--vimla-soft);
  color: var(--vimla-ink);
  font: inherit;
  padding: 12px 14px;
  outline: 0;
}

.vimla-contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.vimla-contact-form input:focus,
.vimla-contact-form textarea:focus {
  border-color: var(--vimla-accent);
  background: #fff;
}

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

.vimla-section-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.vimla-section-head h2 {
  font-size: clamp(42px, 4.6vw, 76px);
}

.vimla-section-head p {
  margin: 18px 0 0;
  color: var(--vimla-muted);
  line-height: 1.7;
}

.vimla-section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(280px, .7fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: end;
  margin: 0 0 36px;
  text-align: left;
}

.vimla-section-head-split p {
  max-width: 520px;
  margin: 0;
  justify-self: end;
}

.vimla-card-row,
.vimla-product-row,
.vimla-carousel-row,
.vimla-icon-row {
  display: grid;
  gap: 28px;
}

.vimla-carousel-row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 25%);
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.vimla-category-carousel {
  grid-auto-columns: minmax(260px, calc((100% - 84px) / 4));
}

.vimla-product-carousel {
  grid-auto-columns: minmax(270px, calc((100% - 84px) / 4));
}

.vimla-carousel-row > * {
  scroll-snap-align: start;
}

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

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

.vimla-best-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.vimla-collection-card,
.vimla-product-card,
.vimla-icon-card {
  background: var(--vimla-white);
}

.vimla-collection-card img,
.vimla-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.vimla-collection-card .label,
.vimla-product-card .label {
  padding: 22px;
}

.vimla-collection-card span,
.vimla-icon-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--vimla-muted);
  font-size: 14px;
}

.vimla-collection-card h3,
.vimla-icon-card h3,
.vimla-service h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
}

.vimla-collection-card h3 {
  overflow: hidden;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vimla-product-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--vimla-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vimla-product-card p,
.vimla-service p {
  color: var(--vimla-muted);
  line-height: 1.6;
}

.vimla-enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 16px;
  padding: 0 18px;
  border: 1px solid var(--vimla-accent);
  background: transparent;
  color: var(--vimla-accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: background .2s ease, color .2s ease;
}

.vimla-enquiry-btn:hover {
  background: var(--vimla-accent);
  color: #fff;
}

.vimla-story,
.vimla-journal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.vimla-story img,
.vimla-journal img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.vimla-story-copy h2,
.vimla-journal-copy h2,
.vimla-newsletter h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.vimla-story-copy p,
.vimla-journal-copy p {
  color: var(--vimla-muted);
  font-size: 17px;
  line-height: 1.75;
}

.vimla-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--vimla-line);
  border: 1px solid var(--vimla-line);
}

.vimla-service {
  min-height: 220px;
  padding: 34px;
  background: var(--vimla-white);
}

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

.vimla-section-carousel {
  display: grid;
  gap: 24px;
}

.vimla-carousel-window {
  overflow: hidden;
}

.vimla-icon-collections .vimla-icon-row {
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, calc((100% - 112px) / 5));
  grid-template-columns: none;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1px 1px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.vimla-icon-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 28px 18px;
  border: 1px solid var(--vimla-line);
  text-align: center;
  scroll-snap-align: start;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.vimla-icon-card svg {
  width: 82px;
  height: 82px;
  fill: none;
  stroke: #55504a;
  stroke-width: 2;
  transition: stroke .25s ease, transform .25s ease;
}

.vimla-icon-card span {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, color .25s ease;
}

.vimla-icon-card:hover {
  background: var(--vimla-accent-soft);
  border-color: var(--vimla-accent-line);
  box-shadow: 0 18px 42px rgba(33, 128, 183, .12);
  transform: translateY(-4px);
}

.vimla-icon-card:hover svg {
  stroke: var(--vimla-accent);
  transform: translateY(-3px);
}

.vimla-icon-card:hover span {
  color: var(--vimla-accent);
  border-color: currentColor;
}

.vimla-icon-card h3 {
  font-size: 28px;
  white-space: nowrap;
}

.vimla-collection-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.vimla-carousel-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vimla-line);
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.vimla-carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.vimla-carousel-btn:hover {
  background: var(--vimla-accent);
  border-color: var(--vimla-accent);
  color: #fff;
}

.vimla-footer {
  border-top: 1px solid var(--vimla-line);
  background: #f5f1eb;
  color: var(--vimla-ink);
}

.vimla-newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  padding: clamp(58px, 7vw, 96px) 6vw;
  border-bottom: 1px solid var(--vimla-line);
}

.vimla-newsletter p,
.vimla-footer a,
.vimla-footer p {
  color: var(--vimla-muted);
}

.vimla-signup {
  display: flex;
  gap: 10px;
}

.vimla-signup input {
  flex: 1;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--vimla-line);
  background: transparent;
  color: var(--vimla-ink);
}

.vimla-signup button {
  min-height: 50px;
  border: 1px solid var(--vimla-accent);
  background: transparent;
  color: var(--vimla-accent);
  padding: 0 22px;
  font-weight: 600;
}

.vimla-signup button:hover {
  background: var(--vimla-accent);
  color: #fff;
}

.vimla-signup button:disabled {
  cursor: wait;
  opacity: .65;
}

.vimla-toast {
  position: fixed;
  top: 96px;
  right: 24px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  border: 1px solid #b9d8e9;
  background: #e9f4fa;
  color: #176a99;
  box-shadow: 0 18px 46px rgba(29, 26, 23, .14);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.vimla-toast.error {
  border-color: #f0b8b8;
  background: #fff0f0;
  color: #9b1c1c;
}

.vimla-footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
  padding: 56px 6vw;
}

.vimla-footer-logo {
  display: flex;
  align-items: flex-start;
}

.vimla-footer-logo img {
  width: auto;
  height: 92px;
  object-fit: contain;
}

.vimla-footer-col h3 {
  margin: 0 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.vimla-footer-links {
  display: grid;
  gap: 11px;
  font-size: 14px;
}

.vimla-footer-strip,
.vimla-copyright {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw;
  border-top: 1px solid var(--vimla-line);
  color: var(--vimla-muted);
  font-size: 13px;
}

.vimla-socials {
  display: flex;
  gap: 12px;
}

.vimla-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vimla-line);
  color: var(--vimla-muted);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.vimla-socials a:hover {
  background: var(--vimla-accent);
  border-color: var(--vimla-accent);
  color: #fff;
}

.vimla-socials svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.vimla-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.vimla-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.vimla-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 26, 23, .42);
}

.vimla-modal-panel {
  position: relative;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 4vw, 52px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 44px);
  background: var(--vimla-white);
  box-shadow: 0 28px 80px rgba(29, 26, 23, .18);
  transform: translateY(14px);
  transition: transform .22s ease;
}

.vimla-modal.open .vimla-modal-panel {
  transform: translateY(0);
}

.vimla-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.vimla-modal-close:hover,
.vimla-modal-close:focus {
  background: transparent;
  color: var(--vimla-ink);
}

.vimla-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding-right: clamp(0px, 3vw, 28px);
  border-right: 1px solid var(--vimla-line);
}

.vimla-modal-copy h2 {
  max-width: 420px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.05;
}

.vimla-modal-copy > p:not(.vimla-eyebrow) {
  margin: 28px 0 0;
  color: var(--vimla-muted);
  line-height: 1.75;
}

.vimla-modal-form-wrap {
  padding: clamp(20px, 3vw, 30px);
  background: #f5fbfe;
}

.vimla-modal-form-wrap form,
.vimla-modal-panel label {
  display: grid;
  gap: 10px;
}

.vimla-modal-form-wrap form {
  gap: 16px;
}

.vimla-modal-panel label {
  color: var(--vimla-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vimla-modal-panel input,
.vimla-modal-panel textarea {
  width: 100%;
  border: 1px solid var(--vimla-line);
  background: #fff;
  padding: 13px 14px;
  color: var(--vimla-ink);
  font: inherit;
  outline: 0;
  text-transform: none;
  letter-spacing: 0;
}

.vimla-product-page main {
  padding-top: 0;
}

.vimla-product-breadcrumb {
  max-width: 1320px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 40px 0;
  color: var(--vimla-muted);
  font-size: 13px;
}

.vimla-product-breadcrumb a {
  color: var(--vimla-muted);
  text-decoration: none;
}

.vimla-product-breadcrumb strong {
  color: var(--vimla-ink);
  font-weight: 500;
}

.vimla-product-detail {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(36px, 6vw, 88px);
  margin: 0 auto;
  padding: 34px 40px 76px;
}

.vimla-product-media {
  --vimla-product-gallery-height: clamp(520px, 64vw, 760px);
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.vimla-product-thumbs {
  max-height: var(--vimla-product-gallery-height);
  display: grid;
  grid-auto-rows: 86px;
  gap: 14px;
  overflow-y: auto;
}

.vimla-product-thumb {
  width: 86px;
  height: 86px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.vimla-product-thumb.active {
  border-color: var(--vimla-ink);
}

.vimla-product-thumb img,
.vimla-product-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vimla-product-main-image {
  display: block;
  height: var(--vimla-product-gallery-height);
  background: #f5f2ee;
  overflow: hidden;
}

.vimla-product-summary {
  align-self: start;
  position: sticky;
  top: 108px;
}

.vimla-product-summary h1 {
  margin: 10px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(35px, 3vw, 28px);
  font-weight: 500;
  line-height: .96;
}

.vimla-product-summary > p:not(.vimla-eyebrow) {
  color: var(--vimla-muted);
  line-height: 1.75;
}

.vimla-product-short-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.vimla-product-rating {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  color: #b99c7b;
}

.vimla-product-rating small {
  color: var(--vimla-muted);
  font-size: 13px;
}

.vimla-product-price {
  margin-bottom: 18px;
  color: var(--vimla-ink);
  font-size: 22px;
  font-weight: 600;
}

.vimla-product-options {
  display: grid;
  gap: 24px;
  margin: 30px 0;
}

.vimla-product-options label,
.vimla-product-quantity label {
  display: block;
  margin-bottom: 12px;
  color: var(--vimla-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vimla-swatches,
.vimla-size-options,
.vimla-attribute-options,
.vimla-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vimla-swatch {
  width: 34px;
  height: 34px;
  border: 1px solid var(--vimla-line);
  border-radius: 50%;
  background: var(--swatch);
  cursor: pointer;
}

.vimla-swatch.active {
  outline: 2px solid var(--vimla-ink);
  outline-offset: 3px;
}

.vimla-size-options button,
.vimla-attribute-options button {
  min-width: 52px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--vimla-line);
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
}

.vimla-size-options button.active,
.vimla-size-options button:hover,
.vimla-attribute-options button.active,
.vimla-attribute-options button:hover {
  border-color: var(--vimla-ink);
  background: var(--vimla-ink);
  color: #fff;
}

.vimla-product-quantity {
  margin-bottom: 28px;
}

.vimla-quantity-control {
  width: 148px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  border: 1px solid var(--vimla-line);
}

.vimla-quantity-control button,
.vimla-quantity-control input {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--vimla-ink);
  text-align: center;
  font: inherit;
}

.vimla-quantity-control button {
  cursor: pointer;
}

.vimla-btn-outline {
  background: transparent;
  color: var(--vimla-ink);
  box-shadow: inset 0 0 0 1px var(--vimla-line);
}

.vimla-product-help {
  display: grid;
  gap: 14px;
  margin: 34px 0;
  padding: 24px 0;
  border-top: 1px solid var(--vimla-line);
  border-bottom: 1px solid var(--vimla-line);
}

.vimla-product-help div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}

.vimla-product-help strong {
  font-weight: 600;
}

.vimla-product-help span,
.vimla-product-meta {
  color: var(--vimla-muted);
  line-height: 1.65;
}

.vimla-product-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.vimla-product-meta span {
  color: var(--vimla-ink);
  font-weight: 600;
}

.vimla-product-meta a {
  color: inherit;
}

.vimla-product-accordion {
  max-width: 1320px;
  margin: 0 auto 88px;
  padding: 0 40px;
}

.vimla-product-accordion-item {
  border-top: 1px solid var(--vimla-line);
}

.vimla-product-accordion-item:last-child {
  border-bottom: 1px solid var(--vimla-line);
}

.vimla-product-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  text-align: left;
}

.vimla-product-accordion-trigger:hover,
.vimla-product-accordion-trigger:focus {
  background: transparent;
  color: var(--vimla-ink);
}

.vimla-product-accordion-trigger span:last-child {
  width: 32px;
  flex: 0 0 32px;
  font-family: Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.vimla-product-accordion-trigger[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.vimla-product-accordion-panel {
  display: none;
  max-width: 820px;
  padding: 0 0 30px;
  color: var(--vimla-muted);
  line-height: 1.8;
}

.vimla-product-accordion-panel.open {
  display: block;
}

.vimla-product-accordion-panel h2,
.vimla-product-accordion-panel h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--vimla-ink);
}

.vimla-product-accordion-panel table {
  width: 100%;
  border-collapse: collapse;
}

.vimla-product-accordion-panel th,
.vimla-product-accordion-panel td {
  padding: 12px 0;
  border-bottom: 1px solid var(--vimla-line);
  text-align: left;
  vertical-align: top;
}

.vimla-product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.vimla-collection-title {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 130px 40px 54px;
  background: linear-gradient(180deg, rgba(29, 26, 23, .16), rgba(29, 26, 23, .5)), var(--collection-hero) center/cover;
  color: #fff;
}

.vimla-collection-title-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.vimla-collection-title h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: .95;
}

.vimla-collection-title nav,
.vimla-collection-title nav a {
  color: rgba(255, 255, 255, .86);
}

.vimla-collection-title nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.vimla-collection-categories,
.vimla-collection-shop {
  padding: 52px 40px;
}

.vimla-collection-mini-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}

.vimla-collection-mini-card {
  display: grid;
  gap: 12px;
  scroll-snap-align: start;
}

.vimla-collection-mini-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border: 1px solid transparent;
}

.vimla-collection-mini-card span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vimla-collection-mini-card.active img,
.vimla-collection-mini-card:hover img {
  border-color: var(--vimla-ink);
}

.vimla-collection-shop {
  max-width: 1440px;
  margin: 0 auto;
}

.vimla-collection-shop-control,
.vimla-collection-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vimla-collection-shop-control {
  margin-bottom: 32px;
}

.vimla-collection-shop-control h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
}

.vimla-collection-description {
  max-width: 680px;
  margin-top: 14px;
  color: var(--vimla-muted);
  line-height: 1.7;
}

.vimla-collection-shop-meta,
.vimla-collection-filter-left,
.vimla-collection-layout-switcher,
.vimla-collection-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vimla-collection-shop-meta span {
  padding: 8px 12px;
  border: 1px solid var(--vimla-line);
  color: var(--vimla-muted);
  font-size: 13px;
}

.vimla-collection-filter-bar {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  padding: 16px 0;
  border-top: 1px solid var(--vimla-line);
  border-bottom: 1px solid var(--vimla-line);
}

.vimla-collection-filter-btn,
.vimla-collection-sale-note,
.vimla-collection-layout-switcher button,
.vimla-collection-sort > button {
  min-height: 42px;
  border: 1px solid var(--vimla-line);
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
}

.vimla-collection-filter-btn,
.vimla-collection-sale-note,
.vimla-collection-sort > button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.vimla-collection-filter-btn svg,
.vimla-collection-sort svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.vimla-collection-sale-note p {
  margin: 0;
}

.vimla-collection-sale-note.active,
.vimla-collection-layout-switcher button.active {
  border-color: var(--vimla-ink);
  background: var(--vimla-ink);
  color: #fff;
}

.vimla-collection-layout-switcher button {
  width: 42px;
  display: grid;
  grid-template-columns: repeat(2, 5px);
  justify-content: center;
  align-content: center;
  gap: 4px;
}

.vimla-collection-layout-switcher button span {
  width: 5px;
  height: 5px;
  background: currentColor;
}

.vimla-collection-sort {
  position: relative;
}

.vimla-collection-sort > span {
  color: var(--vimla-muted);
  font-size: 13px;
}

.vimla-collection-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  display: none;
  padding: 8px;
  border: 1px solid var(--vimla-line);
  background: var(--vimla-white);
  box-shadow: 0 20px 45px rgba(29, 26, 23, .12);
}

.vimla-collection-sort.open .vimla-collection-sort-menu {
  display: grid;
}

.vimla-collection-sort-menu button {
  padding: 11px 12px;
  border: 0;
  background: transparent;
  color: var(--vimla-ink);
  cursor: pointer;
  text-align: left;
}

.vimla-collection-sort-menu button:hover {
  background: var(--vimla-soft);
}

.vimla-collection-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.vimla-collection-product-grid[data-layout="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vimla-collection-product-grid[data-layout="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vimla-collection-product-grid[data-layout="5"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vimla-collection-product-card {
  background: var(--vimla-white);
}

.vimla-collection-product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
}

.vimla-collection-product-info {
  padding: 18px 0 0;
}

.vimla-collection-product-info p {
  margin: 0 0 6px;
  color: var(--vimla-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vimla-collection-product-info h3 {
  margin: 0 0 8px;
  overflow: hidden;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vimla-collection-product-info > span {
  display: block;
  margin-bottom: 14px;
  color: var(--vimla-ink);
  font-weight: 600;
}

.vimla-collection-no-results {
  padding: 42px;
  background: var(--vimla-soft);
  text-align: center;
}

.vimla-collection-pagination {
  margin-top: 34px;
}

.vimla-filter-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(29, 26, 23, .42);
}

.vimla-filter-drawer-overlay.open {
  display: block;
}

.vimla-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 81;
  width: min(380px, 88vw);
  height: 100vh;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 28px;
  overflow-y: auto;
  background: var(--vimla-white);
  transform: translateX(-100%);
  transition: transform .24s ease;
}

.vimla-filter-drawer.open {
  transform: translateX(0);
}

.vimla-filter-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vimla-filter-drawer-head h2,
.vimla-filter-group h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.vimla-filter-drawer-head button {
  border: 0;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
}

.vimla-filter-group {
  display: grid;
  gap: 12px;
}

.vimla-filter-group a,
.vimla-filter-group label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--vimla-muted);
}

.vimla-filter-group a.active {
  color: var(--vimla-ink);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .vimla-desktop-nav {
    display: none;
  }

  .vimla-header-left > .vimla-icon-btn {
    display: inline-flex;
  }

  .vimla-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 18px;
  }

  .vimla-brand {
    justify-self: center;
  }

  .vimla-brand img {
    height: 50px;
  }

  .vimla-card-row,
  .vimla-product-row,
  .vimla-product-related-grid,
  .vimla-page-grid,
  .vimla-collection-product-grid,
  .vimla-collection-product-grid[data-layout],
  .vimla-best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vimla-collection-shop-control,
  .vimla-collection-filter-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .vimla-category-carousel,
  .vimla-product-carousel {
    grid-auto-columns: minmax(230px, 44vw);
  }

  .vimla-icon-row {
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 42vw);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .vimla-section-head-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vimla-section-head-split p {
    justify-self: start;
  }

  .vimla-icon-collections .vimla-icon-row {
    grid-auto-columns: minmax(190px, 42vw);
  }

  .vimla-icon-card {
    scroll-snap-align: start;
  }

  .vimla-story,
  .vimla-journal,
  .vimla-elementor-split,
  .vimla-elementor-story,
  .vimla-contact-panel,
  .vimla-newsletter,
  .vimla-product-detail,
  .vimla-modal-panel,
  .vimla-footer-main {
    grid-template-columns: 1fr;
  }

  .vimla-product-summary {
    position: static;
  }

  .vimla-modal-copy {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--vimla-line);
  }

  .vimla-services {
    grid-template-columns: 1fr;
  }

  .vimla-footer-main {
    gap: 0;
  }

  .vimla-footer-col {
    border-top: 1px solid var(--vimla-line);
  }

  .vimla-footer-col h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 54px;
    margin: 0;
    cursor: pointer;
  }

  .vimla-footer-col h3::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
  }

  .vimla-footer-col.open h3::after {
    content: "-";
  }

  .vimla-footer-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height .24s ease, padding-bottom .24s ease;
  }

  .vimla-footer-col.open .vimla-footer-links {
    max-height: 260px;
    padding-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .vimla-header {
    min-height: 66px;
  }

  .vimla-menu-label {
    display: none;
  }

  .vimla-hero {
    height: 76vh;
    min-height: 520px;
    max-height: 720px;
  }

  .vimla-hero-slide {
    padding: 96px 22px 44px;
  }

  .vimla-hero-controls {
    right: 22px;
    bottom: 20px;
  }

  .vimla-section {
    padding: 54px 18px;
  }

  .vimla-search-panel {
    right: 16px;
    top: 62px;
    width: calc(100vw - 32px);
  }

  .vimla-search-result {
    grid-template-columns: 58px 1fr;
    gap: 10px;
  }

  .vimla-search-result-image {
    width: 58px;
  }

  .vimla-search-result-title {
    font-size: 17px;
  }

  .vimla-toast {
    top: 82px;
    right: 16px;
  }

  .vimla-whatsapp-float {
    right: 16px;
    bottom: 18px;
    width: 54px;
    min-height: 54px;
  }

  .vimla-page-hero {
    min-height: auto;
    padding: 76px 22px 54px;
  }

  .vimla-page-band {
    padding: 54px 22px;
  }

  .vimla-product-breadcrumb,
  .vimla-product-detail,
  .vimla-product-accordion {
    padding-left: 22px;
    padding-right: 22px;
  }

  .vimla-product-media {
    --vimla-product-gallery-height: 420px;
    grid-template-columns: 1fr;
  }

  .vimla-product-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 76px;
    grid-template-columns: none;
    grid-auto-rows: 76px;
    gap: 10px;
    max-height: none;
    width: 100%;
    padding: 2px 2px 8px;
    order: 2;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .vimla-product-thumbs::-webkit-scrollbar {
    display: none;
  }

  .vimla-product-thumb {
    width: 76px;
    height: 76px;
    scroll-snap-align: start;
  }

  .vimla-product-main-image {
    height: var(--vimla-product-gallery-height);
  }

  .vimla-product-help div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .vimla-card-row,
  .vimla-product-row,
  .vimla-product-related-grid,
  .vimla-collection-product-grid,
  .vimla-collection-product-grid[data-layout],
  .vimla-best-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vimla-page-grid,
  .vimla-elementor-grid-section {
    grid-template-columns: 1fr;
  }

  .vimla-about-hero,
  .vimla-about-intro,
  .vimla-about-mission,
  .vimla-about-values,
  .vimla-about-story,
  .vimla-about-banner {
    width: calc(100% - 36px);
  }

  .vimla-about-hero {
    padding: 48px 0 20px;
  }


  .vimla-about-intro,
  .vimla-about-mission,
  .vimla-about-values,
  .vimla-about-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .vimla-about-intro,
  .vimla-about-values {
    padding: 38px 0;
  }

  .vimla-about-mission {
    padding-bottom: 46px;
  }

  .vimla-about-carousel-track img {
    height: 300px;
  }

  .vimla-about-intro p,
  .vimla-about-mission p,
  .vimla-about-story p,
  .vimla-about-values li {
    font-size: 18px;
  }

  .vimla-about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }

  .vimla-about-stats strong {
    min-height: 104px;
    padding: 16px;
    font-size: 24px;
  }

  .vimla-about-story {
    padding-bottom: 52px;
  }

  .vimla-about-banner {
    padding-bottom: 64px;
  }

  .vimla-product-card .label,
  .vimla-collection-card .label {
    padding: 14px 12px;
  }

  .vimla-product-card h3,
  .vimla-collection-card h3 {
    font-size: 16px;
    line-height: 1.2;
  }

  .vimla-elementor-hero {
    min-height: auto;
    padding: 96px 22px 58px;
  }

  .vimla-elementor-split,
  .vimla-elementor-story {
    padding: 58px 22px;
  }

  .vimla-elementor-grid-section,
  .vimla-contact-panel {
    padding: 0 22px 58px;
  }

  .vimla-elementor-split img {
    min-height: 360px;
  }

  .vimla-collection-title,
  .vimla-collection-categories,
  .vimla-collection-shop {
    padding-left: 22px;
    padding-right: 22px;
  }

  .vimla-collection-layout-switcher {
    display: none;
  }

  .vimla-category-carousel,
  .vimla-product-carousel {
    gap: 14px;
  }

  .vimla-category-carousel {
    grid-auto-columns: minmax(170px, 56vw);
  }

  .vimla-product-carousel {
    grid-auto-columns: minmax(150px, calc((100% - 14px) / 2));
  }

  .vimla-story img,
  .vimla-journal img {
    min-height: 360px;
  }

  .vimla-signup {
    flex-direction: column;
  }

  .vimla-footer-strip,
  .vimla-copyright {
    flex-direction: column;
  }
}
