/** Shopify CDN: Minification failed

Line 483:10 Unexpected "{"
Line 483:19 Expected ":"
Line 488:12 Unexpected "{"
Line 488:21 Expected ":"

**/
/* ==========================================================================
   Dawn-compatible base.css — Essalam Elegance
   Defines all CSS custom properties and foundational styles
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  /* Dawn color API (RGB triplets for rgba() usage) */
  --color-foreground: 10, 10, 10;
  --color-background: 255, 255, 255;
  --color-shadow: 10, 10, 10;
  --color-icon: 10, 10, 10;
  --color-border: 10, 10, 10;
  --color-button: 10, 10, 10;
  --color-button-text: 255, 255, 255;
  --color-secondary-button: 255, 255, 255;
  --color-secondary-button-text: 10, 10, 10;

  /* Shadow */
  --shadow-horizontal-offset: 0px;
  --shadow-vertical-offset: 4px;
  --shadow-blur-radius: 5px;
  --shadow-opacity: 0.05;

  /* Border */
  --border-radius: 0px;
  --border-width: 1px;
  --border-opacity: 0.1;

  /* Animation durations */
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style, normal);
  font-weight: var(--font-body-weight, 400);
  font-size: calc(var(--font-body-scale) * 1.4rem);
  line-height: 1.7;
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style, normal);
  font-weight: var(--font-heading-weight, 400);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem;
}

.h0 {
  font-family: var(--font-heading-family);
  font-size: calc(var(--font-heading-scale) * 4rem);
  line-height: 1.05;
}
@media screen and (min-width: 750px) { .h0 { font-size: calc(var(--font-heading-scale) * 6.4rem); } }

.h1 { font-size: calc(var(--font-heading-scale) * 3rem); }
@media screen and (min-width: 750px) { .h1 { font-size: calc(var(--font-heading-scale) * 4rem); } }

.h2 { font-size: calc(var(--font-heading-scale) * 2rem); }
@media screen and (min-width: 750px) { .h2 { font-size: calc(var(--font-heading-scale) * 2.4rem); } }

.h3 { font-size: calc(var(--font-heading-scale) * 1.7rem); }
@media screen and (min-width: 750px) { .h3 { font-size: calc(var(--font-heading-scale) * 1.8rem); } }

.h4 { font-size: calc(var(--font-heading-scale) * 1.5rem); }
.h5 { font-size: calc(var(--font-heading-scale) * 1.2rem); }

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
}
a:hover { text-decoration-thickness: 0.2rem; }

p { margin: 0 0 1.5rem; }

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

ul, ol { padding: 0; margin: 0; list-style: none; }

/* ---- Page width ---- */
.page-width {
  max-width: var(--page-width, 1400px);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 750px) { .page-width { padding: 0 5rem; } }
@media screen and (min-width: 990px) { .page-width { padding: 0 5rem; } }

.page-width--narrow { max-width: 72rem; }

/* ---- Grid ---- */
.grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-desktop-horizontal-spacing, 2), 1fr);
  gap: 1.5rem;
}
.grid--gapless { gap: 0; }

.grid--1-col { grid-template-columns: repeat(1, 1fr); }
.grid--3-col { grid-template-columns: repeat(3, 1fr); }
.grid--4-col { grid-template-columns: repeat(4, 1fr); }
.grid--5-col { grid-template-columns: repeat(5, 1fr); }
.grid--6-col { grid-template-columns: repeat(6, 1fr); }

.grid--1-col-tablet-down { grid-template-columns: 1fr; }
.grid--2-col-tablet-down { grid-template-columns: repeat(2, 1fr); }

@media screen and (max-width: 989px) {
  .grid--3-col, .grid--4-col, .grid--5-col, .grid--6-col { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 749px) {
  .grid--2-col-tablet-down, .grid--3-col, .grid--4-col { grid-template-columns: repeat(2, 1fr); }
  .grid--1-col-tablet-down { grid-template-columns: 1fr; }
}
@media screen and (max-width: 479px) {
  .grid--2-col-tablet-down, .grid--3-col, .grid--4-col { grid-template-columns: 1fr; }
}

/* ---- Media ---- */
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.04);
  position: relative;
  overflow: hidden;
}
.media > * { display: block; max-width: 100%; position: absolute; top: 0; left: 0; }
.media > img { width: 100%; height: 100%; object-fit: cover; }

.media--square { padding-bottom: 100%; }
.media--portrait { padding-bottom: 125%; }
.media--landscape { padding-bottom: 66.6%; }
.media--cropped { padding-bottom: 56%; }
.media--16-9 { padding-bottom: 56.25%; }
.media--circle { padding-bottom: 100%; border-radius: 50%; }

.media--hover-effect > img:only-child { transition: transform var(--duration-long) ease; }
.media--hover-effect > img + img { position: absolute; top: 0; opacity: 0; }

/* ---- Ratio ---- */
.ratio {
  display: flex;
  position: relative;
}
.ratio::before {
  content: '';
  display: block;
  padding-bottom: calc(1 / var(--ratio) * 100%);
}
.ratio > * { position: absolute; inset: 0; width: 100%; }

/* ---- Buttons ---- */
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: var(--border-width, 1px) solid transparent;
  padding: 1.4rem 3rem;
  font-family: var(--font-body-family);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration-default) ease, color var(--duration-default) ease, border-color var(--duration-default) ease;
  border-radius: var(--buttons-radius, 0);
  white-space: nowrap;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.button:disabled, .button[aria-disabled='true'] {
  cursor: not-allowed;
  opacity: 0.4;
}

.button--primary {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  border-color: rgb(var(--color-button));
}
.button--primary:not(:disabled):hover {
  background-color: rgba(var(--color-button), 0.85);
}

.button--secondary {
  border-color: rgb(var(--color-button));
  color: rgb(var(--color-button));
  background-color: transparent;
}
.button--secondary:not(:disabled):hover {
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
}

.button--tertiary {
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}

.button--full-width { width: 100%; }

/* ---- Forms ---- */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

label {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.field {
  position: relative;
  width: 100%;
}

.field__input,
.select__select,
textarea,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='tel'],
input[type='search'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(var(--color-foreground), 0.4);
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  border-radius: var(--border-radius, 0);
  line-height: 1.5;
  transition: border-color var(--duration-short) ease;
}

.field__input:focus,
.select__select:focus,
textarea:focus,
input:focus {
  outline: none;
  border-color: rgb(var(--color-foreground));
}

.select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.select__select {
  padding-right: 4rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.6rem;
}

/* ---- Quantity ---- */
.quantity {
  display: flex;
  border: 1px solid rgba(var(--color-foreground), 0.4);
  min-height: 4.5rem;
}
.quantity__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 2rem;
  color: rgb(var(--color-foreground));
  transition: background-color var(--duration-short) ease;
}
.quantity__button:hover { background-color: rgba(var(--color-foreground), 0.04); }
.quantity__input {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  text-align: center;
  width: 4rem;
  font-family: var(--font-body-family);
  font-size: 1.4rem;
  color: rgb(var(--color-foreground));
  padding: 0;
}
.quantity__input:focus { outline: none; }

/* ---- Focus states ---- */
:focus-visible {
  outline: 2px solid rgba(var(--color-foreground), 0.5);
  outline-offset: 3px;
}
.focus-none:focus, .focus-none:focus-visible { outline: none; }

/* ---- Animations ---- */
@keyframes fadein {
  0% { opacity: 0; transform: translateY(1rem); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.motion-reduce * { animation: none !important; transition: none !important; }

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

.hidden { display: none !important; }
.invisible { visibility: hidden; }

.small-hide { display: initial; }
.medium-hide { display: initial; }
.large-up-hide { display: none; }

@media screen and (max-width: 749px) {
  .small-hide { display: none !important; }
  .large-up-hide { display: initial; }
}
@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide { display: none !important; }
}

.overflow-hidden { overflow: hidden; }
.full-unstyled-link { text-decoration: none; color: inherit; }
.inline-richtext em { font-style: italic; }
.rte > * + * { margin-top: 1rem; }
.rte ul, .rte ol { padding-left: 2rem; list-style: initial; }
.rte a { color: rgb(var(--color-foreground)); }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ---- Badges ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--badge-border-radius, 0);
}
.badge--sale { background: #C9A84C; color: #fff; }
.badge--sold-out { background: rgba(var(--color-foreground), 0.6); color: #fff; }
.badge--new { background: rgb(var(--color-foreground)); color: rgb(var(--color-background)); }

/* ---- Loading spinner ---- */
.loading-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(var(--color-background), 0.7);
  z-index: 10;
  align-items: center;
  justify-content: center;
}
.loading-overlay.loading { display: flex; }
.loading-overlay__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgba(var(--color-foreground), 0.15);
  border-top-color: rgb(var(--color-foreground));
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ---- Drawer / Modal overlay ---- */
.menu-drawer,
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}
.menu-drawer.active,
.modal-overlay.active {
  pointer-events: all;
  visibility: visible;
}

/* ---- Placeholder SVG ---- */
.placeholder-svg {
  fill: rgba(var(--color-foreground), 0.06);
  background: rgba(var(--color-foreground), 0.04);
  width: 100%;
  height: 100%;
}

/* ---- Color scheme utility classes ---- */
.color-background-1 {
  --color-foreground: 10, 10, 10;
  --color-background: 255, 255, 255;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}
.color-background-2 {
  --color-background: 247, 245, 240;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
}
.color-accent-1 {
  --color-background: 201, 168, 76;
  background-color: rgb(var(--color-background));
  color: #fff;
}
.color-accent-2 {
  --color-background: 10, 10, 10;
  background-color: rgb(var(--color-background));
  color: #fff;
}

/* ---- Gradient (Dawn compat) ---- */
.gradient {
  background: rgb(var(--color-background));
}

/* ---- Section padding helper ---- */
.section-{{ section.id }}-padding {
  padding-top: var(--section-padding-top, 4rem);
  padding-bottom: var(--section-padding-bottom, 4rem);
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: calc(var(--section-padding-top, 4rem) * 1.25);
    padding-bottom: calc(var(--section-padding-bottom, 4rem) * 1.25);
  }
}

/* ---- Skip link ---- */
.skip-to-content-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 1rem 2rem;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  transform: translateY(-100%);
  transition: transform var(--duration-short) ease;
}
.skip-to-content-link:focus { transform: translateY(0); }
