/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/

/* ============================================
   LIBAS E KHAS — TWO-COLOUR SYSTEM
   Deep Navy #001D3D + White #FFFFFF
   (whisper grey #F6F7F9 for card/section separation)
   ============================================ */
:root {
  --lk-navy: #001D3D;
  --lk-navy-light: #1a3a5c;
  --lk-white: #FFFFFF;
  --lk-card: #F6F7F9;
  --lk-navy-70: rgba(0, 29, 61, 0.70);
  --lk-navy-50: rgba(0, 29, 61, 0.50);
  --lk-navy-40: rgba(0, 29, 61, 0.40);
  --lk-navy-12: rgba(0, 29, 61, 0.12);
  --lk-navy-06: rgba(0, 29, 61, 0.06);
  --lk-border: rgba(0, 29, 61, 0.12);
  --lk-text-muted: rgba(0, 29, 61, 0.55);
}
 
/* ============================================
   EXPRESS BADGE — navy fill (was blue)
   ============================================ */
@import url(https://db.onlinewebfonts.com/c/9366bd460113d8bf675fd2bdfe1ce764?family=The+Seasons);
.m-express-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #001D3D;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 29, 61, 0.25);
}
.m-express-badge svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .m-express-badge {
    top: 8px;
    left: 8px;
    padding: 5px 10px;
    font-size: 10px;
  }
  .m-express-badge svg {
    width: 10px;
    height: 10px;
  }
}
 
/* ============================================
   READY TO SHIP BADGE — navy fill (was blue)
   ============================================ */
.m-product-media--desktop {
  position: relative;
}
.ready-to-ship-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #001D3D;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 29, 61, 0.25);
}
.ready-to-ship-badge svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .m-product-media--mobile {
    position: relative;
  }
  .ready-to-ship-badge {
    top: 10px;
    left: 10px;
    padding: 6px 10px;
    font-size: 10px;
  }
  .ready-to-ship-badge svg {
    width: 12px;
    height: 12px;
  }
}
 
/* ============================================
   COLLECTION PAGE — white bg (was cream)
   ============================================ */
body.template-collection {
  background-color: #FFFFFF;
}
body.template-collection .m-product-card {
  background-color: #FFFFFF;
}
body.template-collection .m-product-item {
  background-color: #FFFFFF;
}
body.template-collection .m-product-card__background-expand {
  display: none !important;
}
 
/* Filter sidebar — white */
body.template-collection .m-sidebar,
body.template-collection .m-sidebar--content,
body.template-collection .m-collection--wrapper.m-sidebar--leftColumn {
  background-color: #FFFFFF !important;
}
 
/* Product title + price — navy */
body.template-collection .m-product-card__title,
body.template-collection .m-product-card__name {
  color: #001D3D !important;
}
body.template-collection .m-price-item,
body.template-collection .m-price-item--regular {
  color: #001D3D !important;
}
 
/* ============================================
   SLEEK HEADER FIX (Minimog nav fallback) — white bg
   ============================================ */
.m-header__nav-bar,
.m-header__nav-bar.m-gradient,
.m-header__nav-bar.m-color-default,
.m-header .m-gradient.m-color-default {
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--lk-border) !important;
  box-shadow: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
 
/* Force menu items into single row */
ul.m-menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  gap: 0 !important;
  white-space: nowrap !important;
}
 
/* Menu items — navy text */
ul.m-menu > li > a,
ul.m-menu > li > button,
ul.m-menu > li > details > summary {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  color: #001D3D !important;
  padding: 14px 16px !important;
  white-space: nowrap !important;
}
 
/* Hover — navy lighten (was gold) */
ul.m-menu > li > a:hover,
ul.m-menu > li > button:hover,
ul.m-menu > li > details > summary:hover {
  color: var(--lk-navy-70) !important;
}
 
/* Top utility bar slim */
.m-header__top {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  font-size: 11px !important;
}
.m-header__mid {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
 
/* Hide native Minimog header on desktop (custom .lkh takes over) */
@media (min-width: 1081px) {
  .shopify-section-group-header-group { display: none !important; }
}
 
/* ============================================
   LOGO NAVY TINT (keep — works on white)
   ============================================ */
.lkh-logo img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(50%) saturate(3500%) hue-rotate(195deg) brightness(92%) contrast(105%);
}
@media (max-width: 1080px) {
  .m-header__logo img,
  .m-header .m-logo img,
  header .m-logo img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(50%) saturate(3500%) hue-rotate(195deg) brightness(92%) contrast(105%);
  }
}
 
/* ============================================
   DESKTOP HEADER (.lkh) — WHITE BG + NAVY TEXT
   ============================================ */
.lkh {
  background: #FFFFFF !important;
  border-bottom: 1px solid var(--lk-border) !important;
  box-shadow: none !important;
}
.lkh-nav-link {
  color: #001D3D !important;
}
.lkh-nav-link:hover {
  color: var(--lk-navy-70) !important;
}
.lkh-right svg,
.lkh-right a,
.lkh-search svg {
  color: #001D3D !important;
  stroke: #001D3D !important;
}
.lkh-search-input {
  color: #001D3D !important;
}
.lkh-search-input::placeholder {
  color: var(--lk-navy-40) !important;
}
.lkh-dropdown,
.lkh-megamenu {
  background: #FFFFFF !important;
}
.lkh-dropdown a,
.lkh-megamenu a {
  color: #001D3D !important;
}
.lkh-dropdown a:hover,
.lkh-megamenu a:hover {
  color: var(--lk-navy-70) !important;
}
 
/* ============================================
   MOBILE HEADER + MENU — WHITE BG + NAVY TEXT
   ============================================ */
@media (max-width: 1080px) {
 
  /* Header bar — white */
  .m-header,
  .m-header__wrapper,
  header .m-header {
    background: #FFFFFF !important;
  }
 
  /* Header icons — navy */
  .m-header svg,
  .m-header .m-icon,
  .m-header__icons svg,
  .m-header a {
    color: #001D3D !important;
    stroke: #001D3D !important;
  }
 
  /* Drawer — white */
  .m-menu-drawer,
  .m-menu-drawer__wrapper,
  .m-menu-drawer__content {
    background: #FFFFFF !important;
  }
 
  /* Underline every menu item */
  .m-menu-drawer__content a,
  .m-menu-drawer__content button,
  .m-menu-drawer__content .m-menu-drawer__menu-item {
    border-bottom: 1px solid var(--lk-border) !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
 
  /* Menu text — navy */
  .m-menu-drawer__content a,
  .m-menu-drawer__content button,
  .m-menu-drawer__content span {
    color: #001D3D !important;
  }
 
  /* Backdrop */
  .m-menu-drawer__backdrop {
    background: rgba(0, 0, 0, 0.4) !important;
  }
 
  /* Mobile sub-menu — white */
  .m-megamenu-mobile,
  .m-megamenu-mobile--level-1,
  .m-submenu-open,
  .m-menu-mobile,
  .m-menu-mobile__item,
  .open-submenu .m-menu-drawer__content {
    background: #FFFFFF !important;
  }
 
  /* Login / register buttons */
  .m-menu-customer .m-button,
  .m-menu-customer__wrapper .m-button,
  .m-menu-drawer .m-button {
    background: #001D3D !important;
    color: #ffffff !important;
    border-color: #001D3D !important;
  }
  .m-menu-drawer .m-button--secondary,
  .m-logout-button {
    background: transparent !important;
    color: #001D3D !important;
    border: 1px solid #001D3D !important;
  }
  .m-menu-customer__label,
  .m-menu-customer .m-menu-customer__label {
    color: #001D3D !important;
    background: transparent !important;
  }
  .m-menu-customer,
  .m-menu-customer__wrapper {
    background: #FFFFFF !important;
  }
 
  /* Hide search icon from mobile header (search bar is below) */
  .m-header__mobile-right .m-header__search-icon,
  .m-header__mobile-right [href="/search"],
  .m-header-mobile__right .m-header__search-icon {
    display: none !important;
  }
}
 
/* ============================================
   FOOTER (navy — set by Minimog, just text colours)
   ============================================ */
.m-footer--block-title,
.m-footer--block-title h3,
.m-accordion--item-button.m-footer--block-title,
h3.m-accordion--item-button.m-footer--block-title {
  color: #ffffff !important;
}
.m-footer--block-our_store p:first-child {
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  color: #cccccc !important;
  margin-bottom: 0 !important;
}
.m-footer--block-our_store span {
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}
.m-footer--block-our_store p:last-child {
  color: #999999 !important;
  font-size: 12.5px !important;
}
 
/* ============================================
   PRODUCT TITLE — The Seasons serif, navy
   ============================================ */
body.template-product .m-product-title,
body.template-product h1.m\:text-heading,
body.template-product .m-product-info h1,
body.template-product h1 {
  font-family: 'The Seasons', Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 400 !important;
  color: #001D3D !important;
  letter-spacing: 0.2px !important;
  line-height: 1.25 !important;
  margin-bottom: 10px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  text-transform: capitalize !important;
}
@media (max-width: 768px) {
  body.template-product .m-product-title,
  body.template-product h1.m\:text-heading,
  body.template-product .m-product-info h1,
  body.template-product h1 {
    font-size: 26px !important;
  }
}
.product-block-group--title {
  flex-wrap: wrap !important;
}
.product-block-group--title .lk-tp-wrap {
  width: 100% !important;
  flex-basis: 100% !important;
  order: 2 !important;
  margin-top: 4px !important;
}
.product-block-group--title .m-product-wishlist {
  order: 1 !important;
}
.product-block-group--title h1 {
  order: 0 !important;
}
 
/* ============================================
   RETURN POLICY LABEL + POPUP (navy already)
   ============================================ */
.lek-return-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.lek-return-label:hover {
  border-color: #001D3D;
  box-shadow: 0 0 0 1px #001D3D;
}
.lek-return-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lek-return-icon svg { width: 18px; height: 18px; color: #001D3D; }
.lek-return-text { flex: 1; min-width: 0; }
.lek-return-title { font-size: 14px; font-weight: 600; color: #1a1a1a; line-height: 1.3; }
.lek-return-sub { font-size: 12.5px; color: #777; margin-top: 2px; }
.lek-return-arrow { flex-shrink: 0; width: 20px; height: 20px; color: #999; transition: color .2s, transform .2s; }
.lek-return-label:hover .lek-return-arrow { color: #001D3D; transform: translateX(2px); }
 
.lek-return-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  padding: 20px;
}
.lek-return-overlay.active { opacity: 1; visibility: visible; }
.lek-return-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  transform: translateY(16px) scale(.97);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.lek-return-overlay.active .lek-return-modal { transform: translateY(0) scale(1); }
.lek-return-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.lek-return-modal-header h2 { font-size: 17px; font-weight: 700; color: #001D3D; display: flex; align-items: center; gap: 8px; }
.lek-return-modal-header h2 svg { width: 20px; height: 20px; color: #001D3D; }
.lek-return-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: #f5f5f5; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lek-return-close:hover { background: #e8e8e8; }
.lek-return-close svg { width: 16px; height: 16px; color: #555; }
.lek-return-modal-body { padding: 20px 24px 24px; }
.lek-return-highlight {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: #f0f7f0; border-radius: 8px; margin-bottom: 20px;
}
.lek-return-highlight svg { flex-shrink: 0; width: 20px; height: 20px; color: #2d8a4e; }
.lek-return-highlight span { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.lek-return-req-heading { font-size: 13px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 14px; }
.lek-return-req-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; }
.lek-return-req-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #333; line-height: 1.45; }
.lek-return-num {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: #001D3D; color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.lek-return-footer-note { margin-top: 20px; padding-top: 16px; border-top: 1px solid #f0f0f0; font-size: 12.5px; color: #888; line-height: 1.5; }
.lek-return-footer-note a { color: #001D3D; text-decoration: underline; text-underline-offset: 2px; }
 
/* ============================================
   LOGO TAGLINE
   ============================================ */
.lkh-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lkh-logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.lkh-logo img {
  max-height: 50px;
  width: auto;
  display: block;
}
.lkh-logo::after {
  content: "UK's No.1 Designer Multi-Brand Store";
  display: block;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #001D3D;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
  line-height: 1;
  white-space: nowrap;
  font-family: inherit;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .lkh-logo img {
    max-height: 38px;
  }
  .lkh-logo::after {
    font-size: 6px;
    letter-spacing: 0.8px;
    margin-top: 2px;
  }
}
 
/* ============================================
   TAILORING SERVICE
   (gold accent swapped to navy)
   ============================================ */
.lk-tailoring {
  --lk-navy: #001D3D;
  --lk-navy-light: #1a3a5c;
  --lk-gold: #001D3D;            /* was #b8945c — now navy */
  --lk-bg-soft: #F6F7F9;          /* was cream — now whisper grey */
  --lk-border: #e5e0d8;
  --lk-text: #1a1a1a;
  --lk-text-muted: #6b6b6b;
  --lk-error: #c0392b;
  font-family: inherit;
  color: var(--lk-text);
  margin: 24px 0;
}
.lk-tailoring .lk-section {
  border-top: 1px solid var(--lk-border);
  padding-top: 22px;
  margin-bottom: 24px;
}
.lk-tailoring .lk-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--lk-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lk-tailoring .lk-section-tag {
  font-size: 10px;
  font-weight: 400;
  color: var(--lk-text-muted);
  letter-spacing: 1.5px;
  font-family: inherit;
}
.lk-tailoring .lk-info-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lk-navy);
  color: #fff;
  font-size: 10px;
  font-style: italic;
  font-family: Georgia, serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: help;
}
.lk-tailoring .lk-options {
  margin-bottom: 20px;
}
.lk-tailoring .lk-option {
  padding: 4px 0 14px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  margin: 0;
}
.lk-tailoring .lk-option:hover .lk-option-label { opacity: 0.75; }
.lk-tailoring .lk-option + .lk-reveal {
  padding-left: 28px;
  margin-bottom: 18px;
}
.lk-tailoring .lk-option-desc {
  font-size: 12px;
  color: var(--lk-text-muted);
  padding-left: 28px;
  margin-top: -10px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.lk-tailoring .lk-radio {
  width: 18px; height: 18px;
  border: 1.5px solid #b8b8b8;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
}
.lk-tailoring .lk-option--active .lk-radio {
  border-color: var(--lk-navy);
  border-width: 2px;
}
.lk-tailoring .lk-option--active .lk-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lk-navy);
}
.lk-tailoring .lk-option-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--lk-navy);
  letter-spacing: 0.2px;
}
.lk-tailoring .lk-field { margin-bottom: 14px; }
.lk-tailoring .lk-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--lk-navy);
  margin-bottom: 6px;
  display: block;
}
.lk-tailoring .lk-label-sub {
  font-weight: 400;
  color: var(--lk-text-muted);
  font-size: 12px;
}
.lk-tailoring .lk-req { color: var(--lk-error); }
.lk-tailoring .lk-hint {
  font-size: 11px;
  color: var(--lk-text-muted);
  margin-bottom: 6px;
}
.lk-tailoring select,
.lk-tailoring textarea,
.lk-tailoring input[type="text"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--lk-border);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--lk-text);
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.lk-tailoring select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23001D3D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 38px;
}
.lk-tailoring select:focus,
.lk-tailoring textarea:focus,
.lk-tailoring input[type="text"]:focus {
  outline: none;
  border-color: var(--lk-navy);
}
.lk-tailoring textarea { resize: vertical; min-height: 70px; }
.lk-tailoring .lk-custom-trigger {
  width: 100%;
  padding: 14px;
  border: 1.5px dashed var(--lk-navy);
  background: #F6F7F9;
  color: var(--lk-navy);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
  font-family: inherit;
  transition: all 0.2s;
}
.lk-tailoring .lk-custom-trigger:hover {
  background: var(--lk-navy);
  color: #fff;
}
.lk-tailoring .lk-custom-trigger.lk-filled {
  background: #f0f7f0;
  border: 1.5px solid #2d7a3e;
  color: #2d7a3e;
}
.lk-tailoring .lk-custom-trigger.lk-filled::before { content: '✓ '; }
.lk-tailoring .lk-reveal { display: none; }
.lk-tailoring .lk-reveal--show {
  display: block;
  animation: lkFade 0.25s ease;
}
@keyframes lkFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.lk-tailoring .lk-addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lk-tailoring .lk-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--lk-border);
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  margin: 0;
}
.lk-tailoring .lk-addon:hover { border-color: var(--lk-navy-light); }
.lk-tailoring .lk-addon--checked {
  border-color: var(--lk-navy);
  background: #F6F7F9;
}
.lk-tailoring .lk-addon-left {
  display: flex; align-items: center; gap: 12px;
}
.lk-tailoring .lk-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid var(--lk-text-muted);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}
.lk-tailoring .lk-addon--checked .lk-checkbox {
  background: var(--lk-navy);
  border-color: var(--lk-navy);
}
.lk-tailoring .lk-addon--checked .lk-checkbox::after {
  content: '';
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.lk-tailoring .lk-addon-name {
  font-size: 14px;
  color: var(--lk-navy);
  font-weight: 500;
}
.lk-tailoring .lk-addon-price {
  font-size: 13px;
  color: var(--lk-navy);          /* was gold — now navy */
  font-weight: 600;
}
 
/* ============================================
   MEASUREMENT MODAL (gold accents → navy)
   ============================================ */
.lk-modal-backdrop {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 29, 61, 0.55) !important;
  z-index: 99999 !important;
  padding: 20px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  align-items: flex-start !important;
  justify-content: center !important;
}
.lk-modal-backdrop.lk-show {
  display: flex !important;
}
.lk-modal {
  --lk-navy: #001D3D;
  --lk-gold: #001D3D;             /* was gold — now navy */
  --lk-bg-soft: #F6F7F9;
  --lk-border: #e5e0d8;
  --lk-text-muted: #6b6b6b;
  position: relative !important;
  background: #fff !important;
  width: 100% !important;
  max-width: 640px !important;
  max-height: calc(100vh - 40px) !important;
  margin: auto !important;
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid var(--lk-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  font-family: inherit !important;
  box-shadow: 0 20px 60px rgba(0, 29, 61, 0.25) !important;
}
.lk-modal-header {
  padding: 22px 26px !important;
  background: var(--lk-bg-soft) !important;
  border-bottom: 1px solid var(--lk-border) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  flex-shrink: 0 !important;
  gap: 16px !important;
}
.lk-modal-header h2 {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 20px !important;
  color: var(--lk-navy) !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}
.lk-modal-header p {
  font-size: 12px !important;
  color: var(--lk-text-muted) !important;
  margin: 4px 0 0 0 !important;
}
.lk-modal-close {
  width: 32px !important;
  height: 32px !important;
  border: 1px solid var(--lk-border) !important;
  background: #fff !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 16px !important;
  color: var(--lk-navy) !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.lk-modal-body {
  padding: 22px 26px !important;
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  min-height: 0 !important;
}
.lk-measure-group {
  margin-bottom: 20px !important;
}
.lk-measure-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 13px !important;
  color: var(--lk-navy) !important;   /* was gold — now navy */
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: center !important;
  margin-bottom: 12px !important;
  position: relative !important;
}
.lk-measure-title::before,
.lk-measure-title::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  width: 28% !important;
  height: 1px !important;
  background: var(--lk-border) !important;
}
.lk-measure-title::before { left: 0 !important; }
.lk-measure-title::after { right: 0 !important; }
.lk-measure-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}
.lk-measure-grid > div {
  display: flex !important;
  flex-direction: column !important;
}
.lk-measure-grid label {
  font-size: 12px !important;
  color: var(--lk-navy) !important;
  margin-bottom: 4px !important;
  font-weight: 500 !important;
}
.lk-measure-grid input {
  padding: 9px 12px !important;
  border: 1px solid var(--lk-border) !important;
  background: #fff !important;
  font-size: 13px !important;
  font-family: inherit !important;
  border-radius: 0 !important;
  width: 100% !important;
}
.lk-measure-grid input:focus {
  outline: none !important;
  border-color: var(--lk-navy) !important;
}
.lk-lining {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
}
.lk-lining label {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  color: var(--lk-navy) !important;
}
.lk-modal-notes {
  background: var(--lk-bg-soft) !important;
  padding: 13px 16px !important;
  border-left: 3px solid var(--lk-navy) !important;   /* was gold — now navy */
  margin-top: 18px !important;
  font-size: 12px !important;
  color: var(--lk-text-muted) !important;
  line-height: 1.7 !important;
}
.lk-modal-notes b {
  color: var(--lk-navy) !important;
  display: block !important;
  margin-bottom: 4px !important;
  font-size: 13px !important;
}
.lk-modal-footer {
  padding: 16px 26px !important;
  border-top: 1px solid var(--lk-border) !important;
  background: var(--lk-bg-soft) !important;
  display: flex !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}
.lk-btn-secondary {
  flex: 1 !important;
  padding: 13px !important;
  background: #fff !important;
  border: 1px solid var(--lk-navy) !important;
  color: var(--lk-navy) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  font-family: inherit !important;
  border-radius: 0 !important;
}
.lk-btn-primary {
  flex: 1.5 !important;
  padding: 13px !important;
  background: var(--lk-navy) !important;
  border: 1px solid var(--lk-navy) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  font-family: inherit !important;
  border-radius: 0 !important;
}
.lk-btn-primary:hover {
  background: #1a3a5c !important;
}
body:has(.lk-modal-backdrop.lk-show) {
  overflow: hidden !important;
}
@media (max-width: 640px) {
  .lk-modal-backdrop {
    padding: 0 !important;
    align-items: stretch !important;
  }
  .lk-modal {
    max-width: 100% !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
  }
  .lk-modal-header { padding: 16px 18px !important; }
  .lk-modal-body { padding: 16px 18px !important; }
  .lk-modal-footer { padding: 12px 18px !important; }
  .lk-measure-grid { gap: 8px !important; }
  .lk-modal-header h2 { font-size: 17px !important; }
}
@media (max-width: 768px) {
  .lk-tailoring select,
  .lk-tailoring input[type="text"],
  .lk-tailoring input[type="number"],
  .lk-tailoring input[type="email"],
  .lk-tailoring input[type="tel"],
  .lk-tailoring textarea,
  .lk-modal input[type="text"],
  .lk-modal input[type="number"],
  .lk-modal textarea,
  .lk-measure-grid input,
  #lk-size,
  #lk-height,
  #lk-notes {
    font-size: 16px !important;
  }
}
.lk-instructions-label {
  font-size: 12px !important;
  color: var(--lk-navy, #001D3D) !important;
  display: block !important;
  margin-bottom: 6px !important;
  font-weight: 500 !important;
}
.lk-modal #lk-special-instructions {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid var(--lk-border, #e5e0d8) !important;
  background: #fff !important;
  font-size: 13px !important;
  font-family: inherit !important;
  color: #1a1a1a !important;
  resize: vertical !important;
  min-height: 70px !important;
  max-height: 160px !important;
  border-radius: 0 !important;
  line-height: 1.5 !important;
}
.lk-modal #lk-special-instructions:focus {
  outline: none !important;
  border-color: var(--lk-navy, #001D3D) !important;
}
.lk-instructions-counter {
  font-size: 11px !important;
  color: var(--lk-text-muted, #6b6b6b) !important;
  text-align: right !important;
  margin-top: 4px !important;
}
@media (max-width: 768px) {
  .lk-modal #lk-special-instructions {
    font-size: 16px !important;
  }
}
 
/* ============================================
   PDP BRAND IDENTITY BLOCK — white + navy
   (was cream/gold)
   ============================================ */
.lk-brand-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  margin: 0 0 16px;
  background: #FFFFFF;
  border: 1px solid var(--lk-border);
  text-decoration: none !important;
  color: inherit;
  transition: all .2s;
}
.lk-brand-identity:hover {
  border-color: #001D3D;
  background: #F6F7F9;
}
.lk-brand-info { flex: 1; min-width: 0; }
.lk-brand-name {
  font-family: 'Cormorant', 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: #001D3D;
  line-height: 1.1;
}
.lk-brand-meta {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lk-navy-40);
  margin-top: 4px;
  font-weight: 500;
}
.lk-brand-meta strong { color: #001D3D; font-weight: 500; }
.lk-brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #F6F7F9;
  border: 1px solid var(--lk-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.lk-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}
.lk-brand-logo-monogram {
  font-family: 'Cormorant', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #001D3D;
}

/* ============================================
   MOBILE HOMEPAGE NAV (Laam-style search + tabs)
   Cream -> White, search border -> navy
   ============================================ */
.lkm-home-nav {
  background: #FFFFFF !important;
}

/* ============================================
   MOBILE HOMEPAGE SEARCH — Laam-style sleek
   ============================================ */
.lkm-home-nav,
.lkm-home-nav form,
.lkm-home-nav .lkm-search-wrap,
.lkm-home-nav .lkm-search-container {
  border: none !important;
  background: #FFFFFF !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.lkm-home-nav .lkm-search,
.lkm-home-nav input[type="search"],
.lkm-home-nav .lkm-search-input {
  background: #f3f3f3 !important;
  border: 1px solid transparent !important;
  border-radius: 10px !important;
  color: #111 !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  height: auto !important;
  line-height: 1.3 !important;
}

.lkm-home-nav .lkm-search-input::placeholder {
  color: #8a8a8a !important;
  font-weight: 400 !important;
}

.lkm-home-nav .lkm-search-input:focus {
  background: #ffffff !important;
  border-color: #d8d8d8 !important;
  outline: none !important;
}

/* Search icon — soft grey, not navy */
.lkm-home-nav .lkm-search-icon,
.lkm-home-nav .lkm-search svg {
  color: #8a8a8a !important;
  stroke: #8a8a8a !important;
}


/* Search placeholder + text — navy */
.lkm-home-nav input::placeholder {
  color: rgba(0, 29, 61, 0.45) !important;
}
.lkm-home-nav input {
  color: #001D3D !important;
}

/* Search icon — navy */
.lkm-home-nav .lkm-search svg,
.lkm-home-nav svg {
  color: #001D3D !important;
  stroke: #001D3D !important;
}

/* Quick-nav tabs (Designers / Ready To Ship / Kids / Eid) — navy text */
/* Quick-nav tabs — black for B&W theme */
.lkm-home-nav .lkm-tab {
  color: #6b6b6b !important;
}

.lkm-home-nav .lkm-tab:first-child {
  color: #000000 !important;
}

.lkm-home-nav .lkm-tab:first-child::after {
  background: #000000 !important;
}

.lkm-home-nav .lkm-tab--active,
.lkm-home-nav a.active {
  border-bottom-color: #000000 !important;
  color: #000000 !important;
}

/* ============================================
   MOBILE HOMEPAGE SEARCH — remove duplicate square border
   ============================================ */

/* Remove border from any outer wrapper / form / container */
.lkm-home-nav,
.lkm-home-nav form,
.lkm-home-nav .lkm-search-wrap,
.lkm-home-nav .lkm-search-container {
  border: none !important;
  background: #FFFFFF !important;
}



/* ============================================
   MOBILE DESIGNER STRIP — cream -> white
   ============================================ */
.lkm-designer-strip,
#lkmDesignerStrip,
.lkm-tabs {
  background: #FFFFFF !important;
}

/* Designer chips — white fill, navy border + text */
.lkm-designer-strip a,
.lkm-designer-strip .lkm-chip,
#lkmDesignerStrip a {
  background: #FFFFFF !important;
  border: 1px solid #001D3D !important;
  color: #001D3D !important;
}
.lkh-logo::after { display: none !important; }

/* Suffuse + collection intro text - darken to black */
.collection .rte,
.collection__description,
.m-collection-banner .rte,
.collection-banner__text,
[class*="collection"] [class*="description"] {
  color: #1a1a1a !important;
}
/* Force Laam-width search bar */
.lkm-home-nav {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.lkm-home-nav .lkm-search-form,
.lkm-home-nav form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.lkm-home-nav .lkm-search-input,
.lkm-home-nav input[type="search"] {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}