/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   LOYWIS THEME — Shared Design Tokens & Utilities
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --lw-gold:    #C4952A;
  --lw-gold-d:  #B8891F;
  --lw-gold-l:  #D4A845;
  --lw-gold-bg: #FAF7F2;
  --lw-cream:   #FFFFFF;
  --lw-warm:    #FAF7F2;
  --lw-green:   #1B7F4F;
  --lw-green-l: #25D366;
  --lw-text:    #1A1A1A;
  --lw-muted:   #666666;
  --lw-border:  rgba(196,149,42,0.2);
  --lw-shadow:  0 2px 20px rgba(0,0,0,0.08);
  --lw-max:     1320px;
}

/* ── Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Brand Font Pairing — propagate to Dawn-inherited components ── */
:root {
  --lw-font-heading: 'DM Serif Display', serif;
  --lw-font-body:    'DM Sans', sans-serif;
  /* Override Dawn theme variables so all inherited components use our brand fonts */
  --font-body-family:    'DM Sans', sans-serif;
  --font-body-style:     normal;
  --font-body-weight:    400;
  --font-body-weight-bold: 700;
  --font-heading-family: 'DM Serif Display', serif;
  --font-heading-style:  normal;
  --font-heading-weight: 400;
}

/* Global body default — ensures any unstyled element uses DM Sans */
html, body, input, select, textarea, button {
  font-family: 'DM Sans', sans-serif;
}

/* Global LOYWIS page overrides */
html, body {
  background-color: #FFFFFF;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Mobile overflow guard — prevent any element from exceeding viewport ── */
@media (max-width: 768px) {
  .shopify-section { max-width: 100vw; overflow-x: clip; }
  .shopify-section > * { max-width: 100%; box-sizing: border-box; }
}

/* ── Hero title gold emphasis ── */
.lw-hero-title span,
.lw-hero-title strong { color: var(--lw-gold); }

/* ── Base Reset for LOYWIS sections ── */
.lw-section *,
.lw-section *::before,
.lw-section *::after {
  box-sizing: border-box;
}

/* ── Full-bleed with capped content ── */
.lw-section {
  padding-left:  max(16px, calc((100vw - var(--lw-max)) / 2));
  padding-right: max(16px, calc((100vw - var(--lw-max)) / 2));
  padding-top:   48px;
  padding-bottom:48px;
}

.lw-section--white  { background: #fff; }
.lw-section--cream  { background: var(--lw-cream); }
.lw-section--warm   { background: var(--lw-warm); }
.lw-section--blush  { background: var(--lw-gold-bg); }

/* Full-bleed sections — no inline padding on the outer div */
.lw-full-bleed {
  padding-left: 0;
  padding-right: 0;
}
.lw-full-bleed__inner {
  max-width: var(--lw-max);
  margin: 0 auto;
  padding-left:  max(16px, calc((100vw - var(--lw-max)) / 2));
  padding-right: max(16px, calc((100vw - var(--lw-max)) / 2));
}

/* ── Section header ── */
.lw-sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.lw-sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--lw-text);
  line-height: 1.2;
}

.lw-sec-title span,
.lw-sec-title strong { color: var(--lw-gold); font-style: italic; }

.lw-sec-subtitle {
  font-size: 15px;
  color: var(--lw-muted);
  margin-top: 4px;
}

.lw-view-all {
  font-size: 14px;
  font-weight: 700;
  color: var(--lw-gold);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap 0.2s;
  white-space: nowrap;
}
.lw-view-all:hover { gap: 8px; }

/* ── Buttons ── */
.lw-btn-rose {
  background: var(--lw-gold);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(196,149,42,0.3);
  text-decoration: none;
}
.lw-btn-rose:hover {
  background: var(--lw-gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,149,42,0.35);
  color: #fff;
}

.lw-btn-outline {
  background: #fff;
  color: var(--lw-gold);
  border: 2px solid var(--lw-gold);
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s;
  text-decoration: none;
}
.lw-btn-outline:hover { background: var(--lw-gold-bg); color: var(--lw-gold-d); }

.lw-btn-wa {
  background: var(--lw-green-l);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  text-decoration: none;
}
.lw-btn-wa:hover {
  background: #20c05a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: #fff;
}

/* ── Scrollbar hide utility ── */
.lw-scroll-x {
  overflow-x: auto;
  scrollbar-width: none;
}
.lw-scroll-x::-webkit-scrollbar { display: none; }

/* ── Floating WhatsApp Button ── */
.lw-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.lw-wa-float__popup {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(37,211,102,0.2);
  max-width: 210px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lw-text);
  position: relative;
}

.lw-wa-float__popup::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid rgba(37,211,102,0.2);
  border-bottom: 1px solid rgba(37,211,102,0.2);
  transform: rotate(45deg);
}

.lw-wa-float__btn {
  width: 56px;
  height: 56px;
  background: var(--lw-green-l);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: lwWaPulse 2.5s ease infinite;
  transition: transform 0.2s;
}
.lw-wa-float__btn:hover { transform: scale(1.1); }

@keyframes lwWaPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── Animations ── */
@keyframes lwFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lwPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.4); }
}
@keyframes lwTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Product Card ── */
.lw-product-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--lw-border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.lw-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196,149,42,0.2);
  border-color: rgba(196,149,42,0.25);
}

.lw-product-card__img-wrap {
  position: relative;
  background: var(--lw-warm);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lw-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.lw-product-card:hover .lw-product-card__img { transform: scale(1.05); }

.lw-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
}
.lw-badge--new  { background: var(--lw-text);   color: #fff; }
.lw-badge--sale { background: #D4400E;           color: #fff; }
.lw-badge--hot  { background: var(--lw-gold);   color: #fff; }
.lw-badge--b2g1 { background: var(--lw-green);  color: #fff; }

.lw-product-card__wish {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 2;
}
.lw-product-card:hover .lw-product-card__wish { opacity: 1; }
.lw-product-card__wish:hover { background: var(--lw-gold-bg); }

.lw-product-card__atc {
  display: block;
  width: 100%;
  background: var(--lw-gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.18s, transform 0.12s;
}
.lw-product-card__atc:hover { background: #b3841f; }
.lw-product-card__atc:active { transform: scale(0.98); }

.lw-product-card__info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lw-prod-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--lw-gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lw-prod-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lw-text);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lw-prod-stars {
  color: var(--lw-gold);
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lw-prod-stars span { color: var(--lw-muted); font-size: 13px; }

.lw-prod-price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Push price to bottom on desktop so same-row cards align */
@media (min-width: 769px) {
  .lw-prod-price-row { margin-top: auto; }
}

.lw-prod-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--lw-text);
}

.lw-prod-old {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--lw-muted);
  text-decoration: line-through;
}

.lw-prod-off {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  background: #C4952A;
  padding: 1px 5px;
  border-radius: 3px;
}

.lw-prod-wa-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(37,211,102,0.4);
  color: var(--lw-green);
  border-radius: 5px;
  padding: 6px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.lw-prod-wa-btn:hover {
  background: var(--lw-green-l);
  color: #fff;
  border-color: var(--lw-green-l);
}

/* ── Product Grid ── */
.lw-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .lw-products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .lw-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .lw-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .lw-sec-header { flex-direction: column; align-items: flex-start; }
  .lw-sec-title  { font-size: 24px; }
  .lw-section    { padding-top: 32px; padding-bottom: 32px; }
}
@media (max-width: 480px) {
  .lw-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── Product Card — Mobile Optimisation ── */
@media (max-width: 768px) {
  /* Remove auto-push so price sits right below name — no empty gap */
  .lw-prod-price-row { margin-top: 6px; }

  /* Tighter info padding */
  .lw-product-card__info { padding: 9px; }

  /* Category label */
  .lw-prod-cat { font-size: 10px; letter-spacing: 1px; margin-bottom: 2px; }

  /* Product name */
  .lw-prod-name { font-size: 13px; margin-bottom: 4px; -webkit-line-clamp: 2; }

  /* Stars */
  .lw-prod-stars { font-size: 11px; margin-bottom: 4px; }
  .lw-prod-stars span { font-size: 11px; }

  /* Price row */
  .lw-prod-price-row { gap: 4px; flex-wrap: wrap; }
  .lw-prod-price { font-size: 14px; }
  .lw-prod-old   { font-size: 12px; }
  .lw-prod-off   { font-size: 11px; padding: 1px 4px; }

  /* Add to cart button */
  .lw-product-card__atc {
    padding: 8px 8px;
    font-size: 12px;
    margin-top: 8px;
    border-radius: 5px;
  }

  /* WhatsApp enquire button */
  .lw-prod-wa-btn {
    padding: 5px 8px;
    font-size: 11px;
    gap: 4px;
    margin-top: 5px;
  }
  .lw-prod-wa-btn svg { width: 14px; height: 14px; }

  /* Wishlist heart — always visible on touch, no hover needed */
  .lw-product-card__wish { opacity: 1; width: 26px; height: 26px; font-size: 13px; }

  /* Disable card lift on touch — prevents layout jump on tap */
  .lw-product-card:hover { transform: none; }
}

@media (max-width: 480px) {
  .lw-product-card__info { padding: 8px; }
  .lw-prod-cat { font-size: 9px; letter-spacing: 0.8px; }
  .lw-prod-name { font-size: 12px; }
  .lw-prod-price { font-size: 13px; }
  .lw-prod-old   { font-size: 11px; }
  .lw-product-card__atc { font-size: 11px; padding: 7px 6px; }
  .lw-prod-wa-btn { font-size: 10px; padding: 5px 6px; }
  .lw-product-card__badge { font-size: 10px; padding: 2px 6px; }
}
