/* Line Sushi theme — main CSS entry.
 * Build: cd themes/linesushi/_dev && npm run build
 * Output: themes/linesushi/assets/css/theme.css
 */

/*  Line Sushi — Design tokens
 *  Imported by src/index.css before Tailwind layers are emitted.
 *  Source of truth: themes/linesushi/_design/colors_and_type.css
 *
 *  Two layers:
 *    1. Base tokens — raw values (colors, type sizes, spacing, etc.)
 *    2. Semantic roles — what each token is FOR (heading, body, surface, etc.)
 */

:root {
  /* ─── Base · Colors ─────────────────────────────────────────── */
  --color-brand:       #A94442;
  --color-brand-dark:  #8B3735;
  --color-ink:         #111111;
  --color-dim:         #6B6B6B;
  --color-hairline:    #EEEEEE;
  --color-panel:       #FAFAFA;
  --color-cream:       #F6F2EC;
  --color-surface:     #FFFFFF;
  --color-overlay-top: rgba(0,0,0,0.7);

  --gradient-hero-vertical:   linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  --gradient-hero-horizontal: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%);

  /* ─── Base · Type families ──────────────────────────────────── */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ─── Base · Type scale (px) — +1px bump site-wide (Trello #22) ─ */
  --text-hero-d:   61px;
  --text-hero-m:   33px;
  --text-h1-d:     45px;
  --text-h1-m:     29px;
  --text-h2-d:     33px;
  --text-h2-m:     23px;
  --text-h3:       19px;
  --text-h4:       17px;
  --text-body:     15px;
  --text-small:    14px;
  --text-tiny:     13px;
  --text-micro:    12px;
  --text-eyebrow:  12px;

  --leading-tight:   1.05;
  --leading-snug:    1.35;
  --leading-relaxed: 1.6;

  --tracking-tight:   -0.01em;
  --tracking-eyebrow: 0.2em;

  /* ─── Base · Spacing (4 px scale) ───────────────────────────── */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* ─── Base · Radii ──────────────────────────────────────────── */
  --radius-pill: 9999px;
  --radius-card: 16px;
  --radius-input: 12px;
  --radius-tile:  8px;

  /* ─── Base · Shadows ────────────────────────────────────────── */
  --shadow-card:       0 1px 2px rgba(0,0,0,.04), 0 4px 14px rgba(0,0,0,.06);
  --shadow-card-hover: 0 2px 4px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.10);

  /* ─── Base · Layout ─────────────────────────────────────────── */
  --layout-mobile:     390px;
  --layout-desktop:    1280px;
  --layout-content:    1200px;
  --layout-gutter-m:   16px;
  --layout-gutter-d:   24px;
}

/* ─── Semantic roles ──────────────────────────────────────────── */

:root {
  --fg:           var(--color-ink);
  --fg-dim:       var(--color-dim);
  --fg-on-brand:  var(--color-surface);

  --bg:           var(--color-surface);
  --bg-panel:     var(--color-panel);
  --bg-warm:      var(--color-cream);
  --bg-inverse:   var(--color-ink);

  --border:        var(--color-hairline);
  --border-strong: var(--color-ink);
  --border-active: var(--color-brand);

  --accent:       var(--color-brand);
  --accent-hover: var(--color-brand-dark);
  --focus-ring:   var(--color-brand);
}

*, ::before, ::after {
  --tw-border-spacing-x:       0;
  --tw-border-spacing-y:       0;
  --tw-translate-x:       0;
  --tw-translate-y:       0;
  --tw-rotate:       0;
  --tw-skew-x:       0;
  --tw-skew-y:       0;
  --tw-scale-x:       1;
  --tw-scale-y:       1;
  --tw-pan-x:        ;
  --tw-pan-y:        ;
  --tw-pinch-zoom:        ;
  --tw-scroll-snap-strictness:       proximity;
  --tw-gradient-from-position:        ;
  --tw-gradient-via-position:        ;
  --tw-gradient-to-position:        ;
  --tw-ordinal:        ;
  --tw-slashed-zero:        ;
  --tw-numeric-figure:        ;
  --tw-numeric-spacing:        ;
  --tw-numeric-fraction:        ;
  --tw-ring-inset:        ;
  --tw-ring-offset-width:       0px;
  --tw-ring-offset-color:       #fff;
  --tw-ring-color:       rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:       0 0 #0000;
  --tw-ring-shadow:       0 0 #0000;
  --tw-shadow:       0 0 #0000;
  --tw-shadow-colored:       0 0 #0000;
  --tw-blur:        ;
  --tw-brightness:        ;
  --tw-contrast:        ;
  --tw-grayscale:        ;
  --tw-hue-rotate:        ;
  --tw-invert:        ;
  --tw-saturate:        ;
  --tw-sepia:        ;
  --tw-drop-shadow:        ;
  --tw-backdrop-blur:        ;
  --tw-backdrop-brightness:        ;
  --tw-backdrop-contrast:        ;
  --tw-backdrop-grayscale:        ;
  --tw-backdrop-hue-rotate:        ;
  --tw-backdrop-invert:        ;
  --tw-backdrop-opacity:        ;
  --tw-backdrop-saturate:        ;
  --tw-backdrop-sepia:        ;
  --tw-contain-size:        ;
  --tw-contain-layout:        ;
  --tw-contain-paint:        ;
  --tw-contain-style:        ;
}

::backdrop {
  --tw-border-spacing-x:       0;
  --tw-border-spacing-y:       0;
  --tw-translate-x:       0;
  --tw-translate-y:       0;
  --tw-rotate:       0;
  --tw-skew-x:       0;
  --tw-skew-y:       0;
  --tw-scale-x:       1;
  --tw-scale-y:       1;
  --tw-pan-x:        ;
  --tw-pan-y:        ;
  --tw-pinch-zoom:        ;
  --tw-scroll-snap-strictness:       proximity;
  --tw-gradient-from-position:        ;
  --tw-gradient-via-position:        ;
  --tw-gradient-to-position:        ;
  --tw-ordinal:        ;
  --tw-slashed-zero:        ;
  --tw-numeric-figure:        ;
  --tw-numeric-spacing:        ;
  --tw-numeric-fraction:        ;
  --tw-ring-inset:        ;
  --tw-ring-offset-width:       0px;
  --tw-ring-offset-color:       #fff;
  --tw-ring-color:       rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow:       0 0 #0000;
  --tw-ring-shadow:       0 0 #0000;
  --tw-shadow:       0 0 #0000;
  --tw-shadow-colored:       0 0 #0000;
  --tw-blur:        ;
  --tw-brightness:        ;
  --tw-contrast:        ;
  --tw-grayscale:        ;
  --tw-hue-rotate:        ;
  --tw-invert:        ;
  --tw-saturate:        ;
  --tw-sepia:        ;
  --tw-drop-shadow:        ;
  --tw-backdrop-blur:        ;
  --tw-backdrop-brightness:        ;
  --tw-backdrop-contrast:        ;
  --tw-backdrop-grayscale:        ;
  --tw-backdrop-hue-rotate:        ;
  --tw-backdrop-invert:        ;
  --tw-backdrop-opacity:        ;
  --tw-backdrop-saturate:        ;
  --tw-backdrop-sepia:        ;
  --tw-contain-size:        ;
  --tw-contain-layout:        ;
  --tw-contain-paint:        ;
  --tw-contain-style:        ;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    font-family: var(--font-body);
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

#header,
  #wrapper,
  #footer,
  .ls-layout {
    width: 100%;
    max-width: 100%;
  }

img, video, svg {
    max-width: 100%;
    height: auto;
  }

/* With Tailwind preflight disabled (to coexist with Bootstrap-Reboot),
     `border-b` etc. don't render — Tailwind's border utilities only set
     `border-width`, relying on preflight to provide the implicit
     `border-style: solid` + `border-width: 0` baseline.
     Mimic that baseline ourselves: width 0 (so nothing draws by default),
     style solid (so when a Tailwind utility adds a width, it draws),
     color hairline (so the default border color matches the design token).
     Earlier this rule set only `border-style: solid` without resetting
     `border-width: 0` — that left browser-default `border-width: medium`
     active, drawing a faint 1.5px currentColor border around every element. */

html {
    scroll-behavior: smooth;
  }

#explorer-le-menu {
    scroll-margin-top: var(--ls-mobile-header-offset, 88px);
  }

@media (min-width: 768px) {
    #explorer-le-menu {
      scroll-margin-top: 1.5rem;
    }
  }

*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: var(--color-hairline);
  }

/* Preflight off also leaves the browser default text-decoration: underline
     on every <a>, which shows up on the wordmark, footer links, nav items, etc.
     The design uses underlines only via the .underline-link utility on hover.
     Strip the default; opt-in via classes (underline-link / Tailwind underline). */

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

/* Preflight off ALSO leaves browser-default bullets on <ul> / numbers on <ol>.
     The design never uses list markers (footer link columns, nav lists, etc.
     all read as plain text). Strip them globally; opt-in via Tailwind
     `list-disc` / `list-decimal` where actually needed. */

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

.container {
  width:       100%;
}

@media (min-width: 640px) {

  .container {
    max-width:       640px;
  }
}

@media (min-width: 768px) {

  .container {
    max-width:       768px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width:       1024px;
  }
}

@media (min-width: 1280px) {

  .container {
    max-width:       1280px;
  }
}

@media (min-width: 1536px) {

  .container {
    max-width:       1536px;
  }
}

/* P2 shop home hero — centered title; sizes follow template md breakpoint */

.ls-hero-title {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-hero-m);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    font-optical-sizing: auto;
  }

/* P2 category tiles — label centered on image with gray scrim */

.ls-category-tile {
    position: relative;
    overflow: hidden;
    background: var(--color-panel);
  }

.ls-category-tile img {
    position: relative;
    z-index: 0;
    display: block;
  }

.ls-category-tile-title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 27px;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    overflow: hidden;
    word-break: break-word;
    hyphens: auto;
  }

@media (min-width: 768px) {
    .ls-category-tile-title {
      padding: 0.75rem;
    }
  }

.ls-category-tile-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(55, 55, 55, 0.45);
    pointer-events: none;
  }

.ls-category-tile-scrim-bottom {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(55, 55, 55, 0.12) 0%, rgba(55, 55, 55, 0.62) 100%);
    pointer-events: none;
  }

@media (min-width: 768px) {
    .ls-hero-title {
      font-size: var(--text-hero-d);
      line-height: 1.02;
    }
  }

/* Hero info card — compact delivery distance tiers (multi-band shops) */

.ls-hero-delivery-tiers {
    align-items: flex-start;
  }

.ls-hero-delivery-tiers__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
  }

.ls-hero-delivery-tiers__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    row-gap: 0.125rem;
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
  }

@media (min-width: 768px) {
    .ls-hero-delivery-tiers__label {
      font-size: 11px;
    }

    .ls-hero-delivery-tiers__grid {
      font-size: 12px;
      -moz-column-gap: 1rem;
           column-gap: 1rem;
    }
  }

/* Animated underline (link microinteraction) */

.underline-link {
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size .3s ease;
  }

.underline-link:hover { background-size: 100% 1px; }

/* Hide scrollbars on horizontal-scroll filter strips (mobile category page, etc.) */

.no-scrollbar { scrollbar-width: none; }

.no-scrollbar::-webkit-scrollbar { display: none; }

/*
   * Mobile category filter strip — sticks flush under the site header.
   * --ls-mobile-header-offset is set from #header height in header.tpl.
   */

.ls-category-filter-bar {
    position: sticky;
    top: var(--ls-mobile-header-offset, 88px);
    z-index: 20;
  }

/* Bootstrap utility shim — Hummingbird/PS JS toggles .d-none */

.d-none { display: none !important; }

/*
   * Bootstrap collapse (PS checkout steps, gift message, etc.).
   * Parent Hummingbird loads Bootstrap; child theme must not override with
   * Tailwind visibility utilities on `.collapse`.
   */

.tab-content > .step.tab-pane.collapse:not(.show) {
    display: none;
  }

.tab-content > .step.tab-pane.collapse.show {
    display: block;
  }

/* Bootstrap 5 account tabs (guest vs login on checkout Compte step) */

.tab-content > .tab-pane:not(.active):not(.show) {
    display: none !important;
  }

.tab-content > .tab-pane.active,
  .tab-content > .tab-pane.show {
    display: block !important;
  }

.tab-content > .tab-pane.\!active {
    display: block !important;
  }

.step__content .collapse:not(.show) {
    display: none;
  }

.step__content .collapse.show {
    display: block;
  }

/* Bootstrap visually-hidden shim (PS form-fields.tpl) */

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

/* Checkout Compte step — guest register / login tabs */

.ls-checkout-account-tabs .ls-checkout-account-tab {
    margin: 0;
    padding: 0 0 12px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-dim);
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease;
  }

.ls-checkout-account-tabs .ls-checkout-account-tab.active,
  .ls-checkout-account-tabs .ls-checkout-account-tab.show {
    color: var(--fg);
    font-weight: 600;
    border-bottom-color: var(--fg);
  }

.ls-checkout-account-tabs .ls-checkout-account-tab.\!active {
    color: var(--fg) !important;
    font-weight: 600 !important;
    border-bottom-color: var(--fg) !important;
  }

.ls-checkout-account-form .js-customer-form,
  .ls-checkout-account-form #login-form,
  .ls-checkout-account-form #customer-form {
    margin-top: 0;
  }

.ls-checkout-account-form section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

.ls-checkout-account-form .mb-3 {
    margin-bottom: 0 !important;
  }

.ls-checkout-account-form .form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--fg-dim);
  }

.ls-checkout-account-form .form-label.required::after {
    content: ' *';
    color: var(--color-brand);
  }

.ls-checkout-account-form .form-control,
  .ls-checkout-account-form .form-select {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid var(--color-hairline);
    border-radius: 0.75rem;
    background: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--fg);
    line-height: 1.4;
    box-shadow: none;
    transition: border-color 0.15s ease;
  }

.ls-checkout-account-form .form-control:focus,
  .ls-checkout-account-form .form-select:focus {
    outline: none;
    border-color: var(--fg);
  }

.ls-checkout-account-form textarea.form-control {
    height: auto;
    min-height: 96px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

.ls-checkout-account-form .form-check,
  .ls-checkout-account-form .form-check-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-right: 1rem;
    min-height: auto;
    padding-left: 0;
  }

.ls-checkout-account-form .form-check-input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: var(--color-brand);
    flex-shrink: 0;
  }

.ls-checkout-account-form .form-check-label {
    font-size: 15px;
    color: var(--fg);
    cursor: pointer;
  }

.ls-checkout-account-form [aria-labelledby$="-label"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

.ls-checkout-account-form .form-text,
  .ls-checkout-account-form .help-block {
    display: block;
    margin-top: 0.375rem;
    font-size: 13px;
    line-height: 1.4;
    color: var(--fg-dim);
  }

.ls-checkout-account-form .mb-3:has(input[name="firstname"]) .form-text,
  .ls-checkout-account-form .mb-3:has(input[name="lastname"]) .form-text,
  .ls-checkout-account-form .form-field-comment {
    display: none;
  }

.ls-checkout-account-form .has-error .form-control,
  .ls-checkout-account-form .has-error .form-select {
    border-color: var(--color-brand);
  }

.ls-checkout-account-form .alert-danger,
  .ls-checkout-account-form .help-block.text-danger {
    margin-top: 0.375rem;
    font-size: 13px;
    color: var(--color-brand);
  }

.ls-checkout-account-form .input-group.password-field {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--color-hairline);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
  }

.ls-checkout-account-form .input-group.password-field:focus-within {
    border-color: var(--fg);
  }

.ls-checkout-account-form .input-group.password-field .form-control {
    flex: 1;
    height: 48px;
    border: 0;
    border-radius: 0;
  }

.ls-checkout-account-form .input-group.password-field .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--color-hairline);
    border-radius: 0;
    background: transparent;
    color: var(--fg-dim);
  }

.ls-checkout-account-form .input-group.password-field .\!btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 1px solid var(--color-hairline) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--fg-dim) !important;
  }

.ls-checkout-account-form .input-group.password-field .btn:hover {
    background: var(--color-panel);
    color: var(--fg);
  }

.ls-checkout-account-form .input-group.password-field .\!btn:hover {
    background: var(--color-panel) !important;
    color: var(--fg) !important;
  }

.ls-checkout-account-form .buttons-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.25rem;
  }

.ls-checkout-account-form .buttons-wrapper .btn-basic {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brand);
    text-decoration: underline;
  }

.ls-checkout-account-form .buttons-wrapper .btn-basic:hover {
    color: var(--color-brand-dark);
  }

@media (min-width: 768px) {
    .ls-checkout-account-form .mb-3:has(input[name="firstname"]) {
      display: inline-block;
      width: calc(50% - 0.375rem);
      vertical-align: top;
      margin-right: 0.75rem;
    }

    .ls-checkout-account-form .mb-3:has(input[name="lastname"]) {
      display: inline-block;
      width: calc(50% - 0.375rem);
      vertical-align: top;
    }
  }

.ls-account-address-form .mb-3:has(input[name="postcode"]) {
    display: inline-block;
    width: calc(40% - 0.375rem);
    vertical-align: top;
    margin-right: 0.75rem;
  }

.ls-account-address-form .mb-3:has(input[name="city"]) {
    display: inline-block;
    width: calc(60% - 0.375rem);
    vertical-align: top;
  }

.ls-account-address-form .buttons-wrapper .form-control-submit {
    border: 0;
    cursor: pointer;
  }

.ls-account-address-form .buttons-wrapper .form-control-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
  }

.sr-only {
  position:       absolute;
  width:       1px;
  height:       1px;
  padding:       0;
  margin:       -1px;
  overflow:       hidden;
  clip:       rect(0, 0, 0, 0);
  white-space:       nowrap;
  border-width:       0;
}

.pointer-events-none {
  pointer-events:       none;
}

.pointer-events-auto {
  pointer-events:       auto;
}

.static {
  position:       static;
}

.fixed {
  position:       fixed;
}

.absolute {
  position:       absolute;
}

.relative {
  position:       relative;
}

.sticky {
  position:       sticky;
}

.inset-0 {
  inset:       0px;
}

.inset-x-0 {
  left:       0px;
  right:       0px;
}

.-bottom-\[18px\] {
  bottom:       -18px;
}

.-right-0\.5 {
  right:       -0.125rem;
}

.-right-2 {
  right:       -0.5rem;
}

.-top-0\.5 {
  top:       -0.125rem;
}

.-top-1 {
  top:       -0.25rem;
}

.bottom-0 {
  bottom:       0px;
}

.bottom-16 {
  bottom:       4rem;
}

.bottom-3 {
  bottom:       0.75rem;
}

.bottom-3\.5 {
  bottom:       0.875rem;
}

.left-0 {
  left:       0px;
}

.left-1\/2 {
  left:       50%;
}

.left-3 {
  left:       0.75rem;
}

.left-4 {
  left:       1rem;
}

.right-0 {
  right:       0px;
}

.right-3 {
  right:       0.75rem;
}

.top-0 {
  top:       0px;
}

.top-1\/2 {
  top:       50%;
}

.top-3 {
  top:       0.75rem;
}

.top-\[100px\] {
  top:       100px;
}

.top-\[10px\] {
  top:       10px;
}

.top-\[88px\] {
  top:       88px;
}

.z-10 {
  z-index:       10;
}

.z-20 {
  z-index:       20;
}

.z-30 {
  z-index:       30;
}

.z-40 {
  z-index:       40;
}

.z-50 {
  z-index:       50;
}

.order-1 {
  order:       1;
}

.order-2 {
  order:       2;
}

.col-span-2 {
  grid-column:       span 2 / span 2;
}

.col-span-3 {
  grid-column:       span 3 / span 3;
}

.col-span-4 {
  grid-column:       span 4 / span 4;
}

.col-span-5 {
  grid-column:       span 5 / span 5;
}

.col-span-7 {
  grid-column:       span 7 / span 7;
}

.col-span-8 {
  grid-column:       span 8 / span 8;
}

.col-span-9 {
  grid-column:       span 9 / span 9;
}

.m-0 {
  margin:       0px;
}

.mx-1 {
  margin-left:       0.25rem;
  margin-right:       0.25rem;
}

.mx-4 {
  margin-left:       1rem;
  margin-right:       1rem;
}

.mx-auto {
  margin-left:       auto;
  margin-right:       auto;
}

.my-2 {
  margin-top:       0.5rem;
  margin-bottom:       0.5rem;
}

.-ml-1 {
  margin-left:       -0.25rem;
}

.-mt-4 {
  margin-top:       -1rem;
}

.mb-0 {
  margin-bottom:       0px;
}

.mb-1 {
  margin-bottom:       0.25rem;
}

.mb-1\.5 {
  margin-bottom:       0.375rem;
}

.mb-2 {
  margin-bottom:       0.5rem;
}

.mb-3 {
  margin-bottom:       0.75rem;
}

.mb-4 {
  margin-bottom:       1rem;
}

.mb-5 {
  margin-bottom:       1.25rem;
}

.mb-6 {
  margin-bottom:       1.5rem;
}

.mb-8 {
  margin-bottom:       2rem;
}

.ml-1 {
  margin-left:       0.25rem;
}

.ml-2 {
  margin-left:       0.5rem;
}

.ml-3 {
  margin-left:       0.75rem;
}

.ml-auto {
  margin-left:       auto;
}

.mr-1 {
  margin-right:       0.25rem;
}

.mr-2 {
  margin-right:       0.5rem;
}

.mt-0 {
  margin-top:       0px;
}

.mt-0\.5 {
  margin-top:       0.125rem;
}

.mt-1 {
  margin-top:       0.25rem;
}

.mt-1\.5 {
  margin-top:       0.375rem;
}

.mt-10 {
  margin-top:       2.5rem;
}

.mt-12 {
  margin-top:       3rem;
}

.mt-2 {
  margin-top:       0.5rem;
}

.mt-20 {
  margin-top:       5rem;
}

.mt-3 {
  margin-top:       0.75rem;
}

.mt-4 {
  margin-top:       1rem;
}

.mt-5 {
  margin-top:       1.25rem;
}

.mt-6 {
  margin-top:       1.5rem;
}

.mt-7 {
  margin-top:       1.75rem;
}

.mt-8 {
  margin-top:       2rem;
}

.line-clamp-1 {
  overflow:       hidden;
  display:       -webkit-box;
  -webkit-box-orient:       vertical;
  -webkit-line-clamp:       1;
}

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

.block {
  display:       block;
}

.inline-block {
  display:       inline-block;
}

.inline {
  display:       inline;
}

.flex {
  display:       flex;
}

.inline-flex {
  display:       inline-flex;
}

.table {
  display:       table;
}

.grid {
  display:       grid;
}

.hidden {
  display:       none;
}

.aspect-\[4\/3\] {
  aspect-ratio:       4/3;
}

.aspect-square {
  aspect-ratio:       1 / 1;
}

.h-1 {
  height:       0.25rem;
}

.h-1\.5 {
  height:       0.375rem;
}

.h-10 {
  height:       2.5rem;
}

.h-11 {
  height:       2.75rem;
}

.h-12 {
  height:       3rem;
}

.h-14 {
  height:       3.5rem;
}

.h-16 {
  height:       4rem;
}

.h-2 {
  height:       0.5rem;
}

.h-2\.5 {
  height:       0.625rem;
}

.h-20 {
  height:       5rem;
}

.h-24 {
  height:       6rem;
}

.h-3 {
  height:       0.75rem;
}

.h-3\.5 {
  height:       0.875rem;
}

.h-4 {
  height:       1rem;
}

.h-40 {
  height:       10rem;
}

.h-5 {
  height:       1.25rem;
}

.h-6 {
  height:       1.5rem;
}

.h-7 {
  height:       1.75rem;
}

.h-8 {
  height:       2rem;
}

.h-9 {
  height:       2.25rem;
}

.h-\[18px\] {
  height:       18px;
}

.h-\[22px\] {
  height:       22px;
}

.h-\[280px\] {
  height:       280px;
}

.h-\[2px\] {
  height:       2px;
}

.h-\[36px\] {
  height:       36px;
}

.h-\[380px\] {
  height:       380px;
}

.h-\[390px\] {
  height:       390px;
}

.h-\[480px\] {
  height:       480px;
}

.h-\[52px\] {
  height:       52px;
}

.h-\[540px\] {
  height:       540px;
}

.h-\[560px\] {
  height:       560px;
}

.h-\[76px\] {
  height:       76px;
}

.h-\[88px\] {
  height:       88px;
}

.h-full {
  height:       100%;
}

.h-px {
  height:       1px;
}

.max-h-48 {
  max-height:       12rem;
}

.min-h-11 {
  min-height:       2.75rem;
}

.min-h-\[160px\] {
  min-height:       160px;
}

.min-h-\[180px\] {
  min-height:       180px;
}

.min-h-\[480px\] {
  min-height:       480px;
}

.w-10 {
  width:       2.5rem;
}

.w-12 {
  width:       3rem;
}

.w-14 {
  width:       3.5rem;
}

.w-16 {
  width:       4rem;
}

.w-2 {
  width:       0.5rem;
}

.w-2\.5 {
  width:       0.625rem;
}

.w-20 {
  width:       5rem;
}

.w-24 {
  width:       6rem;
}

.w-28 {
  width:       7rem;
}

.w-3 {
  width:       0.75rem;
}

.w-3\.5 {
  width:       0.875rem;
}

.w-4 {
  width:       1rem;
}

.w-4\/5 {
  width:       80%;
}

.w-40 {
  width:       10rem;
}

.w-5 {
  width:       1.25rem;
}

.w-6 {
  width:       1.5rem;
}

.w-7 {
  width:       1.75rem;
}

.w-72 {
  width:       18rem;
}

.w-8 {
  width:       2rem;
}

.w-9 {
  width:       2.25rem;
}

.w-\[120px\] {
  width:       120px;
}

.w-\[18px\] {
  width:       18px;
}

.w-\[22px\] {
  width:       22px;
}

.w-\[390px\] {
  width:       390px;
}

.w-\[80\%\] {
  width:       80%;
}

.w-auto {
  width:       auto;
}

.w-fit {
  width:       -moz-fit-content;
  width:       fit-content;
}

.w-full {
  width:       100%;
}

.min-w-0 {
  min-width:       0px;
}

.min-w-\[14px\] {
  min-width:       14px;
}

.min-w-\[16px\] {
  min-width:       16px;
}

.max-w-2xl {
  max-width:       42rem;
}

.max-w-3xl {
  max-width:       48rem;
}

.max-w-\[180px\] {
  max-width:       180px;
}

.max-w-\[220px\] {
  max-width:       220px;
}

.max-w-\[42vw\] {
  max-width:       42vw;
}

.max-w-\[60px\] {
  max-width:       60px;
}

.max-w-content {
  max-width:       1200px;
}

.max-w-lg {
  max-width:       32rem;
}

.max-w-md {
  max-width:       28rem;
}

.max-w-sm {
  max-width:       24rem;
}

.max-w-xl {
  max-width:       36rem;
}

.max-w-xs {
  max-width:       20rem;
}

.flex-1 {
  flex:       1 1 0%;
}

.flex-shrink-0 {
  flex-shrink:       0;
}

.shrink-0 {
  flex-shrink:       0;
}

.-translate-x-1\/2 {
  --tw-translate-x:       -50%;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2 {
  --tw-translate-y:       -50%;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-full {
  --tw-translate-y:       -100%;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin {

  to {
    transform:       rotate(360deg);
  }
}

.animate-spin {
  animation:       spin 1s linear infinite;
}

.cursor-not-allowed {
  cursor:       not-allowed;
}

.cursor-pointer {
  cursor:       pointer;
}

.select-none {
  -webkit-user-select:       none;
     -moz-user-select:       none;
          user-select:       none;
}

.resize-none {
  resize:       none;
}

.resize {
  resize:       both;
}

.list-inside {
  list-style-position:       inside;
}

.list-disc {
  list-style-type:       disc;
}

.list-none {
  list-style-type:       none;
}

.appearance-none {
  -webkit-appearance:       none;
     -moz-appearance:       none;
          appearance:       none;
}

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

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

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

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

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

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

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

.grid-cols-\[1fr_140px_120px_40px\] {
  grid-template-columns:       1fr 140px 120px 40px;
}

.grid-cols-\[1fr_auto_1fr\] {
  grid-template-columns:       1fr auto 1fr;
}

.flex-row {
  flex-direction:       row;
}

.flex-col {
  flex-direction:       column;
}

.flex-wrap {
  flex-wrap:       wrap;
}

.items-start {
  align-items:       flex-start;
}

.items-end {
  align-items:       flex-end;
}

.items-center {
  align-items:       center;
}

.items-stretch {
  align-items:       stretch;
}

.justify-end {
  justify-content:       flex-end;
}

.justify-center {
  justify-content:       center;
}

.justify-between {
  justify-content:       space-between;
}

.gap-0 {
  gap:       0px;
}

.gap-0\.5 {
  gap:       0.125rem;
}

.gap-1 {
  gap:       0.25rem;
}

.gap-1\.5 {
  gap:       0.375rem;
}

.gap-10 {
  gap:       2.5rem;
}

.gap-12 {
  gap:       3rem;
}

.gap-2 {
  gap:       0.5rem;
}

.gap-2\.5 {
  gap:       0.625rem;
}

.gap-3 {
  gap:       0.75rem;
}

.gap-3\.5 {
  gap:       0.875rem;
}

.gap-4 {
  gap:       1rem;
}

.gap-5 {
  gap:       1.25rem;
}

.gap-6 {
  gap:       1.5rem;
}

.gap-7 {
  gap:       1.75rem;
}

.gap-8 {
  gap:       2rem;
}

.gap-x-6 {
  -moz-column-gap:       1.5rem;
       column-gap:       1.5rem;
}

.gap-y-3 {
  row-gap:       0.75rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(0.625rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse:       0;
  margin-top:       calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:       calc(1.5rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse:       0;
  border-top-width:       calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:       calc(1px * var(--tw-divide-y-reverse));
}

.divide-hairline > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity:       1;
  border-color:       rgb(238 238 238 / var(--tw-divide-opacity, 1));
}

.justify-self-start {
  justify-self:       start;
}

.justify-self-end {
  justify-self:       end;
}

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

.overflow-hidden {
  overflow:       hidden;
}

.overflow-x-auto {
  overflow-x:       auto;
}

.overflow-y-auto {
  overflow-y:       auto;
}

.truncate {
  overflow:       hidden;
  text-overflow:       ellipsis;
  white-space:       nowrap;
}

.whitespace-nowrap {
  white-space:       nowrap;
}

.rounded {
  border-radius:       0.25rem;
}

.rounded-2xl {
  border-radius:       1rem;
}

.rounded-3xl {
  border-radius:       1.5rem;
}

.rounded-full {
  border-radius:       9999px;
}

.rounded-lg {
  border-radius:       0.5rem;
}

.rounded-sm {
  border-radius:       0.125rem;
}

.rounded-xl {
  border-radius:       0.75rem;
}

.rounded-t-2xl {
  border-top-left-radius:       1rem;
  border-top-right-radius:       1rem;
}

.border {
  border-width:       1px;
}

.border-0 {
  border-width:       0px;
}

.border-2 {
  border-width:       2px;
}

.border-4 {
  border-width:       4px;
}

.border-b {
  border-bottom-width:       1px;
}

.border-b-2 {
  border-bottom-width:       2px;
}

.border-r {
  border-right-width:       1px;
}

.border-t {
  border-top-width:       1px;
}

.border-dashed {
  border-style:       dashed;
}

.border-none {
  border-style:       none;
}

.border-amber-200 {
  --tw-border-opacity:       1;
  border-color:       rgb(253 230 138 / var(--tw-border-opacity, 1));
}

.border-brand {
  --tw-border-opacity:       1;
  border-color:       rgb(169 68 66 / var(--tw-border-opacity, 1));
}

.border-brand\/40 {
  border-color:       rgb(169 68 66 / 0.4);
}

.border-emerald-200 {
  --tw-border-opacity:       1;
  border-color:       rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.border-green-300 {
  --tw-border-opacity:       1;
  border-color:       rgb(134 239 172 / var(--tw-border-opacity, 1));
}

.border-hairline {
  --tw-border-opacity:       1;
  border-color:       rgb(238 238 238 / var(--tw-border-opacity, 1));
}

.border-ink {
  --tw-border-opacity:       1;
  border-color:       rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.border-red-200 {
  --tw-border-opacity:       1;
  border-color:       rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-300 {
  --tw-border-opacity:       1;
  border-color:       rgb(252 165 165 / var(--tw-border-opacity, 1));
}

.border-sky-200 {
  --tw-border-opacity:       1;
  border-color:       rgb(186 230 253 / var(--tw-border-opacity, 1));
}

.border-white\/10 {
  border-color:       rgb(255 255 255 / 0.1);
}

.border-white\/20 {
  border-color:       rgb(255 255 255 / 0.2);
}

.border-white\/40 {
  border-color:       rgb(255 255 255 / 0.4);
}

.border-white\/60 {
  border-color:       rgb(255 255 255 / 0.6);
}

.border-t-brand {
  --tw-border-opacity:       1;
  border-top-color:       rgb(169 68 66 / var(--tw-border-opacity, 1));
}

.bg-\[\#1a1f71\] {
  --tw-bg-opacity:       1;
  background-color:       rgb(26 31 113 / var(--tw-bg-opacity, 1));
}

.bg-\[\#eb001b\] {
  --tw-bg-opacity:       1;
  background-color:       rgb(235 0 27 / var(--tw-bg-opacity, 1));
}

.bg-amber-50 {
  --tw-bg-opacity:       1;
  background-color:       rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-black\/45 {
  background-color:       rgb(0 0 0 / 0.45);
}

.bg-brand {
  --tw-bg-opacity:       1;
  background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
}

.bg-brand\/10 {
  background-color:       rgb(169 68 66 / 0.1);
}

.bg-brand\/15 {
  background-color:       rgb(169 68 66 / 0.15);
}

.bg-brand\/20 {
  background-color:       rgb(169 68 66 / 0.2);
}

.bg-brand\/5 {
  background-color:       rgb(169 68 66 / 0.05);
}

.bg-cream {
  --tw-bg-opacity:       1;
  background-color:       rgb(246 242 236 / var(--tw-bg-opacity, 1));
}

.bg-cream\/30 {
  background-color:       rgb(246 242 236 / 0.3);
}

.bg-cream\/40 {
  background-color:       rgb(246 242 236 / 0.4);
}

.bg-emerald-50 {
  --tw-bg-opacity:       1;
  background-color:       rgb(236 253 245 / var(--tw-bg-opacity, 1));
}

.bg-green-50 {
  --tw-bg-opacity:       1;
  background-color:       rgb(240 253 244 / var(--tw-bg-opacity, 1));
}

.bg-hairline {
  --tw-bg-opacity:       1;
  background-color:       rgb(238 238 238 / var(--tw-bg-opacity, 1));
}

.bg-ink {
  --tw-bg-opacity:       1;
  background-color:       rgb(17 17 17 / var(--tw-bg-opacity, 1));
}

.bg-panel {
  --tw-bg-opacity:       1;
  background-color:       rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.bg-red-50 {
  --tw-bg-opacity:       1;
  background-color:       rgb(254 242 242 / var(--tw-bg-opacity, 1));
}

.bg-sky-50 {
  --tw-bg-opacity:       1;
  background-color:       rgb(240 249 255 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color:       transparent;
}

.bg-white {
  --tw-bg-opacity:       1;
  background-color:       rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/10 {
  background-color:       rgb(255 255 255 / 0.1);
}

.bg-white\/5 {
  background-color:       rgb(255 255 255 / 0.05);
}

.bg-white\/80 {
  background-color:       rgb(255 255 255 / 0.8);
}

.bg-white\/90 {
  background-color:       rgb(255 255 255 / 0.9);
}

.bg-hero-vertical {
  background-image:       linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%);
}

.object-contain {
  -o-object-fit:       contain;
     object-fit:       contain;
}

.object-cover {
  -o-object-fit:       cover;
     object-fit:       cover;
}

.object-\[center_72\%\] {
  -o-object-position:       center 72%;
     object-position:       center 72%;
}

.p-0 {
  padding:       0px;
}

.p-10 {
  padding:       2.5rem;
}

.p-2 {
  padding:       0.5rem;
}

.p-3 {
  padding:       0.75rem;
}

.p-4 {
  padding:       1rem;
}

.p-5 {
  padding:       1.25rem;
}

.p-6 {
  padding:       1.5rem;
}

.p-7 {
  padding:       1.75rem;
}

.p-8 {
  padding:       2rem;
}

.px-0\.5 {
  padding-left:       0.125rem;
  padding-right:       0.125rem;
}

.px-1 {
  padding-left:       0.25rem;
  padding-right:       0.25rem;
}

.px-1\.5 {
  padding-left:       0.375rem;
  padding-right:       0.375rem;
}

.px-2 {
  padding-left:       0.5rem;
  padding-right:       0.5rem;
}

.px-2\.5 {
  padding-left:       0.625rem;
  padding-right:       0.625rem;
}

.px-3 {
  padding-left:       0.75rem;
  padding-right:       0.75rem;
}

.px-4 {
  padding-left:       1rem;
  padding-right:       1rem;
}

.px-5 {
  padding-left:       1.25rem;
  padding-right:       1.25rem;
}

.px-6 {
  padding-left:       1.5rem;
  padding-right:       1.5rem;
}

.px-7 {
  padding-left:       1.75rem;
  padding-right:       1.75rem;
}

.px-8 {
  padding-left:       2rem;
  padding-right:       2rem;
}

.py-0\.5 {
  padding-top:       0.125rem;
  padding-bottom:       0.125rem;
}

.py-1 {
  padding-top:       0.25rem;
  padding-bottom:       0.25rem;
}

.py-1\.5 {
  padding-top:       0.375rem;
  padding-bottom:       0.375rem;
}

.py-10 {
  padding-top:       2.5rem;
  padding-bottom:       2.5rem;
}

.py-12 {
  padding-top:       3rem;
  padding-bottom:       3rem;
}

.py-14 {
  padding-top:       3.5rem;
  padding-bottom:       3.5rem;
}

.py-16 {
  padding-top:       4rem;
  padding-bottom:       4rem;
}

.py-2 {
  padding-top:       0.5rem;
  padding-bottom:       0.5rem;
}

.py-2\.5 {
  padding-top:       0.625rem;
  padding-bottom:       0.625rem;
}

.py-20 {
  padding-top:       5rem;
  padding-bottom:       5rem;
}

.py-3 {
  padding-top:       0.75rem;
  padding-bottom:       0.75rem;
}

.py-3\.5 {
  padding-top:       0.875rem;
  padding-bottom:       0.875rem;
}

.py-4 {
  padding-top:       1rem;
  padding-bottom:       1rem;
}

.py-5 {
  padding-top:       1.25rem;
  padding-bottom:       1.25rem;
}

.py-6 {
  padding-top:       1.5rem;
  padding-bottom:       1.5rem;
}

.py-8 {
  padding-top:       2rem;
  padding-bottom:       2rem;
}

.pb-0 {
  padding-bottom:       0px;
}

.pb-1 {
  padding-bottom:       0.25rem;
}

.pb-10 {
  padding-bottom:       2.5rem;
}

.pb-12 {
  padding-bottom:       3rem;
}

.pb-16 {
  padding-bottom:       4rem;
}

.pb-2 {
  padding-bottom:       0.5rem;
}

.pb-20 {
  padding-bottom:       5rem;
}

.pb-3 {
  padding-bottom:       0.75rem;
}

.pb-32 {
  padding-bottom:       8rem;
}

.pb-4 {
  padding-bottom:       1rem;
}

.pb-40 {
  padding-bottom:       10rem;
}

.pb-44 {
  padding-bottom:       11rem;
}

.pb-5 {
  padding-bottom:       1.25rem;
}

.pb-6 {
  padding-bottom:       1.5rem;
}

.pb-8 {
  padding-bottom:       2rem;
}

.pl-1 {
  padding-left:       0.25rem;
}

.pl-10 {
  padding-left:       2.5rem;
}

.pl-11 {
  padding-left:       2.75rem;
}

.pl-20 {
  padding-left:       5rem;
}

.pl-4 {
  padding-left:       1rem;
}

.pr-12 {
  padding-right:       3rem;
}

.pr-2 {
  padding-right:       0.5rem;
}

.pr-3 {
  padding-right:       0.75rem;
}

.pr-4 {
  padding-right:       1rem;
}

.pt-0\.5 {
  padding-top:       0.125rem;
}

.pt-1 {
  padding-top:       0.25rem;
}

.pt-10 {
  padding-top:       2.5rem;
}

.pt-2 {
  padding-top:       0.5rem;
}

.pt-3 {
  padding-top:       0.75rem;
}

.pt-4 {
  padding-top:       1rem;
}

.pt-5 {
  padding-top:       1.25rem;
}

.pt-6 {
  padding-top:       1.5rem;
}

.pt-8 {
  padding-top:       2rem;
}

.pt-\[22px\] {
  padding-top:       22px;
}

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

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

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

.align-middle {
  vertical-align:       middle;
}

.font-body {
  font-family:       Karla, system-ui, -apple-system, Segoe UI, sans-serif;
}

.font-display {
  font-family:       Fraunces, Georgia, serif;
}

.font-mono {
  font-family:       ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-\[10px\] {
  font-size:       10px;
}

.text-\[11px\] {
  font-size:       11px;
}

.text-\[12px\] {
  font-size:       12px;
}

.text-\[13px\] {
  font-size:       13px;
}

.text-\[14px\] {
  font-size:       14px;
}

.text-\[15px\] {
  font-size:       15px;
}

.text-\[16px\] {
  font-size:       16px;
}

.text-\[18px\] {
  font-size:       18px;
}

.text-\[20px\] {
  font-size:       20px;
}

.text-\[22px\] {
  font-size:       22px;
}

.text-\[24px\] {
  font-size:       24px;
}

.text-\[26px\] {
  font-size:       26px;
}

.text-\[28px\] {
  font-size:       28px;
}

.text-\[32px\] {
  font-size:       32px;
}

.text-\[36px\] {
  font-size:       36px;
}

.text-\[40px\] {
  font-size:       40px;
}

.text-\[44px\] {
  font-size:       44px;
}

.text-\[56px\] {
  font-size:       56px;
}

.text-\[60px\] {
  font-size:       60px;
}

.text-\[9px\] {
  font-size:       9px;
}

.text-sm {
  font-size:       0.875rem;
  line-height:       1.25rem;
}

.font-bold {
  font-weight:       700;
}

.font-medium {
  font-weight:       500;
}

.font-normal {
  font-weight:       400;
}

.font-semibold {
  font-weight:       600;
}

.uppercase {
  text-transform:       uppercase;
}

.capitalize {
  text-transform:       capitalize;
}

.not-italic {
  font-style:       normal;
}

.leading-\[1\.02\] {
  line-height:       1.02;
}

.leading-\[1\.05\] {
  line-height:       1.05;
}

.leading-none {
  line-height:       1;
}

.leading-relaxed {
  line-height:       1.6;
}

.leading-snug {
  line-height:       1.35;
}

.leading-tight {
  line-height:       1.05;
}

.tracking-\[0\.12em\] {
  letter-spacing:       0.12em;
}

.tracking-\[0\.2em\] {
  letter-spacing:       0.2em;
}

.tracking-eyebrow {
  letter-spacing:       0.2em;
}

.tracking-tight {
  letter-spacing:       -0.025em;
}

.tracking-wide {
  letter-spacing:       0.025em;
}

.tracking-wider {
  letter-spacing:       0.05em;
}

.tracking-widest {
  letter-spacing:       0.1em;
}

.text-\[\#003087\] {
  --tw-text-opacity:       1;
  color:       rgb(0 48 135 / var(--tw-text-opacity, 1));
}

.text-\[\#0070ba\] {
  --tw-text-opacity:       1;
  color:       rgb(0 112 186 / var(--tw-text-opacity, 1));
}

.text-amber-900 {
  --tw-text-opacity:       1;
  color:       rgb(120 53 15 / var(--tw-text-opacity, 1));
}

.text-brand {
  --tw-text-opacity:       1;
  color:       rgb(169 68 66 / var(--tw-text-opacity, 1));
}

.text-dim {
  --tw-text-opacity:       1;
  color:       rgb(107 107 107 / var(--tw-text-opacity, 1));
}

.text-emerald-900 {
  --tw-text-opacity:       1;
  color:       rgb(6 78 59 / var(--tw-text-opacity, 1));
}

.text-green-800 {
  --tw-text-opacity:       1;
  color:       rgb(22 101 52 / var(--tw-text-opacity, 1));
}

.text-ink {
  --tw-text-opacity:       1;
  color:       rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.text-ink\/80 {
  color:       rgb(17 17 17 / 0.8);
}

.text-red-700 {
  --tw-text-opacity:       1;
  color:       rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-red-900 {
  --tw-text-opacity:       1;
  color:       rgb(127 29 29 / var(--tw-text-opacity, 1));
}

.text-sky-900 {
  --tw-text-opacity:       1;
  color:       rgb(12 74 110 / var(--tw-text-opacity, 1));
}

.text-white {
  --tw-text-opacity:       1;
  color:       rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/50 {
  color:       rgb(255 255 255 / 0.5);
}

.text-white\/60 {
  color:       rgb(255 255 255 / 0.6);
}

.text-white\/70 {
  color:       rgb(255 255 255 / 0.7);
}

.text-white\/80 {
  color:       rgb(255 255 255 / 0.8);
}

.text-white\/85 {
  color:       rgb(255 255 255 / 0.85);
}

.underline {
  text-decoration-line:       underline;
}

.line-through {
  text-decoration-line:       line-through;
}

.underline-offset-2 {
  text-underline-offset:       2px;
}

.antialiased {
  -webkit-font-smoothing:       antialiased;
  -moz-osx-font-smoothing:       grayscale;
}

.accent-\[\#A94442\] {
  accent-color:       #A94442;
}

.accent-brand {
  accent-color:       #A94442;
}

.opacity-50 {
  opacity:       0.5;
}

.opacity-60 {
  opacity:       0.6;
}

.opacity-70 {
  opacity:       0.7;
}

.opacity-80 {
  opacity:       0.8;
}

.opacity-90 {
  opacity:       0.9;
}

.outline-none {
  outline:       2px solid transparent;
  outline-offset:       2px;
}

.ring-2 {
  --tw-ring-offset-shadow:       var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow:       var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow:       var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-inset {
  --tw-ring-inset:       inset;
}

.ring-brand {
  --tw-ring-opacity:       1;
  --tw-ring-color:       rgb(169 68 66 / var(--tw-ring-opacity, 1));
}

.drop-shadow {
  --tw-drop-shadow:       drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter:       var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-lg {
  --tw-drop-shadow:       drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter:       var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.grayscale {
  --tw-grayscale:       grayscale(100%);
  filter:       var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter:       var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur {
  --tw-backdrop-blur:       blur(8px);
  backdrop-filter:       var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-md {
  --tw-backdrop-blur:       blur(12px);
  backdrop-filter:       var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property:       color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:       cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:       150ms;
}

.transition-all {
  transition-property:       all;
  transition-timing-function:       cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:       150ms;
}

.transition-transform {
  transition-property:       transform;
  transition-timing-function:       cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:       150ms;
}

.duration-500 {
  transition-duration:       500ms;
}

/* ─── Base resets aligned to the brand ────────────────────────── */

/* ─── Semantic typography utilities (mirror colors_and_type.css) ─ */

/* ─── Mobile typography baseline ──────────────────────────────── */

@media (max-width: 600px) {
  .ls-h-hero { font-size: var(--text-hero-m); }
  .ls-h1     { font-size: var(--text-h1-m); }
  .ls-h2     { font-size: var(--text-h2-m); }
}

/* Mobile FO chrome — #header wraps custom headers; inner sticky alone scrolls away. */

@media (max-width: 767px) {
  /* WCAG 2.5.5 — minimum 44×44px touch targets on mobile header controls. */
  .ls-tap-target {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  #header.header {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  /* Collapse Livraison / À emporter row once the page scrolls (see header.tpl JS). */
  .ls-mobile-ordermode-bar {
    overflow: hidden;
    max-height: 4rem;
    opacity: 1;
    transition: max-height 0.2s ease, opacity 0.15s ease, padding 0.2s ease;
  }

  #header.ls-header--compact .ls-mobile-ordermode-bar {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    pointer-events: none;
  }

  /* Compact header: swap city picker for back navigation on inner pages. */
  .ls-header-back {
    display: none;
  }

  #header.ls-header--compact .ls-header-location {
    display: none;
  }

  #header.ls-header--compact .ls-header-back {
    display: inline-flex;
  }

  /* Pin bottom chrome to the visual viewport (iOS Safari toolbar hide/show). */
  :root {
    --ls-vv-bottom-inset: 0px;
    --ls-tab-bar-height: 4rem;
  }

  .ls-mobile-tab-bar {
    bottom: var(--ls-vv-bottom-inset);
  }

  .ls-fixed-above-tab {
    bottom: calc(var(--ls-tab-bar-height) + env(safe-area-inset-bottom, 0px) + var(--ls-vv-bottom-inset));
    z-index: 60;
  }
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .ls-mobile-ordermode-bar {
    transition: none;
  }
}

/* FO type scale +1px on Tailwind arbitrary text-[Npx] (Trello #22) */

.text-\[9px\] { font-size: 10px; }

.text-\[10px\] { font-size: 11px; }

.text-\[11px\] { font-size: 12px; }

.text-\[12px\] { font-size: 13px; }

.text-\[13px\] { font-size: 14px; }

.text-\[14px\] { font-size: 15px; }

.text-\[15px\] { font-size: 16px; }

.text-\[16px\] { font-size: 17px; }

.text-\[18px\] { font-size: 19px; }

.text-\[20px\] { font-size: 21px; }

.text-\[22px\] { font-size: 23px; }

.text-\[24px\] { font-size: 25px; }

.text-\[26px\] { font-size: 27px; }

.text-\[28px\] { font-size: 29px; }

.text-\[32px\] { font-size: 33px; }

.text-\[36px\] { font-size: 37px; }

.text-\[40px\] { font-size: 41px; }

.text-\[44px\] { font-size: 45px; }

.text-\[56px\] { font-size: 57px; }

.text-\[60px\] { font-size: 61px; }

@media (min-width: 768px) {
  .md\:text-\[12px\] { font-size: 13px; }
  .md\:text-\[13px\] { font-size: 14px; }
  .md\:text-\[14px\] { font-size: 15px; }
  .md\:text-\[15px\] { font-size: 16px; }
  .md\:text-\[16px\] { font-size: 17px; }
  .md\:text-\[18px\] { font-size: 19px; }
  .md\:text-\[20px\] { font-size: 21px; }
  .md\:text-\[22px\] { font-size: 23px; }
  .md\:text-\[24px\] { font-size: 25px; }
  .md\:text-\[28px\] { font-size: 29px; }
  .md\:text-\[32px\] { font-size: 33px; }
  .md\:text-\[36px\] { font-size: 37px; }
  .md\:text-\[40px\] { font-size: 41px; }
  .md\:text-\[44px\] { font-size: 45px; }
}

/* blockwishlist — Material Icons + Line Sushi page chrome */

.material-icons {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-family: 'Material Icons', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga';
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* blockwishlist modals live in displayFooter — keep in DOM on all viewports (do not display:none) */

/* Vue modals render at document bottom; pin open state to viewport */

.wishlist-modal.show {
  position: fixed;
  inset: 0;
  z-index: 1051;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
  /* blockwishlist's Vue does not inject a .modal-backdrop, so dim the overlay here */
  background-color: rgba(17, 17, 17, 0.45);
}

.wishlist-modal.show + .modal-backdrop.in {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(17, 17, 17, 0.45);
  opacity: 1;
}

.wishlist-modal.show .modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 22rem;
}

/* Theme build ships Bootstrap reboot only, not the modal component — restore panel chrome */

.wishlist-modal .modal-content {
  background-color: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}

.wishlist-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-hairline);
}

.wishlist-modal .modal-header .modal-title {
  margin: 0;
}

.wishlist-modal .modal-body {
  padding: 1.25rem;
}

.wishlist-modal .modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-hairline);
}

.wishlist-modal .btn-close {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23111111' stroke-linecap='round' stroke-width='2' d='M2 2l12 12M14 2L2 14'/%3e%3c/svg%3e") center / 1rem no-repeat;
  cursor: pointer;
  opacity: 0.65;
}

.wishlist-modal .btn-close:hover {
  opacity: 1;
}

/* Add-to-favoris chooser — readable, tappable list rows */

.wishlist-modal .wishlist-chooselist .wishlist-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wishlist-modal .wishlist-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.75rem 0.25rem;
  cursor: pointer;
  color: var(--color-ink);
  border-bottom: 1px solid #f3f3f3;
}

.wishlist-modal .wishlist-list-item:last-child {
  border-bottom: 0;
}

.wishlist-modal .wishlist-list-item:hover {
  color: var(--color-brand);
}

.wishlist-modal .wishlist-list-item::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A94442'%3e%3cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3e%3c/svg%3e") center / contain no-repeat;
}

.wishlist-modal .wishlist-list-item p {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
}

.wishlist-modal .wishlist-list-empty {
  margin: 0;
  padding: 1rem 0.25rem;
  color: #888;
  font-size: 0.9rem;
}

/* Create-new-list — icon-only by default; make it a clearly labelled button */

.wishlist-modal .modal-footer .wishlist-add-to-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px dashed var(--color-hairline);
  border-radius: 9999px;
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.wishlist-modal .modal-footer .wishlist-add-to-new i {
  color: var(--color-brand);
  margin: 0;
}

.wishlist-modal .modal-footer .wishlist-add-to-new::after {
  content: "Créer une nouvelle liste";
}

/* Wishlist success toast — use theme brand colour instead of blockwishlist green (#69b92d) */

body .wishlist-toast.success {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

.ls-wishlist-page .wishlist-container-header h1,
.ls-wishlist-page .wishlist-products-container-header h1 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .ls-wishlist-page .wishlist-container-header h1,
  .ls-wishlist-page .wishlist-products-container-header h1 {
    display: none;
  }
}

.ls-wishlist-page .wishlist-add-to-new {
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.ls-wishlist-page .page-content.card,
.ls-wishlist-page .wishlist-list-item {
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.ls-wishlist-page .wishlist-list-item {
  margin-bottom: 12px;
  padding: 16px;
}

.ls-wishlist-page .wishlist-footer-links {
  display: none;
}

.ls-wishlist-page .wishlist-modal .btn-primary,
.ls-wishlist-page .wishlist-modal .btn-secondary {
  border-radius: 9999px;
}

.ls-wishlist-page .wishlist-modal .btn-primary {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

/* Wishlist product list — match the category product-card grid (Vue-rendered) */

.wishlist-products-container .page-content.card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.wishlist-products-container .wishlist-products-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 768px) {
  .wishlist-products-container .wishlist-products-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.wishlist-products-container .wishlist-products-item {
  list-style: none;
  margin: 0;
}

.wishlist-products-container .wishlist-product {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  overflow: hidden;
}

.wishlist-products-container .wishlist-product-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-ink);
}

.wishlist-products-container .wishlist-product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--color-panel, #f5f5f5);
}

.wishlist-products-container .wishlist-product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.wishlist-products-container .wishlist-product-right {
  display: flex;
  flex-direction: column;
  padding: 10px 12px 0;
}

.wishlist-products-container .wishlist-product-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  color: var(--color-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wishlist-products-container .wishlist-product-price {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-ink);
}

.wishlist-products-container .wishlist-product-price-promo {
  margin-right: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-dim, #888);
  text-decoration: line-through;
}

.wishlist-products-container .wishlist-product-combinations,
.wishlist-products-container .wishlist-product-combinations-text {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--color-dim, #888);
}

/* Add-to-cart — brand pill at the bottom of the card */

.wishlist-products-container .wishlist-product-addtocart.btn {
  margin: 10px 12px 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 9999px;
  background-color: var(--color-brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.wishlist-products-container .wishlist-product-addtocart .material-icons {
  font-size: 18px;
}

/* Delete-from-list — small round control over the image */

.wishlist-products-container .wishlist-product .wishlist-button-add {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.15);
  color: var(--color-ink);
  cursor: pointer;
}

.wishlist-products-container .wishlist-product .wishlist-button-add .material-icons {
  font-size: 18px;
}

/* Sort dropdown shipped its menu inline (no Bootstrap dropdown CSS) — collapse it */

.wishlist-products-container .products-sort-order .dropdown-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-hairline);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
}

.wishlist-products-container .products-sort-order.open .dropdown-menu,
.wishlist-products-container .products-sort-order:focus-within .dropdown-menu {
  display: flex;
}

.wishlist-products-container .products-sort-order .select-list {
  padding: 6px 10px;
  font-size: 14px;
  color: var(--color-ink);
  cursor: pointer;
  white-space: nowrap;
}

.wishlist-products-container .products-sort-order .select-list:hover {
  color: var(--color-brand);
}

/* Product page — blockwishlist heart (displayProductActions) */

.ls-product-wishlist .wishlist-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ls-product-wishlist .wishlist-button-add.wishlist-button-product {
  margin-left: 0;
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
  padding-top: 0;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 9999px;
  box-shadow: none;
}

.ls-product-wishlist .wishlist-button-add.wishlist-button-product:hover {
  opacity: 1;
  background-color: #f7f7f7;
}

.ls-product-wishlist .wishlist-button-add.wishlist-button-product i {
  color: #111;
  font-size: 1.25rem;
}

.ls-product-wishlist .wishlist-button-add.wishlist-button-product i.material-icons {
  font-family: 'Material Icons', sans-serif;
}

/* Mobile sticky bar — same tap target as adjacent Ajouter button */

.ls-product-wishlist--mobile .wishlist-button-add.wishlist-button-product {
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
}

.placeholder\:text-dim::-moz-placeholder {
  --tw-text-opacity:       1;
  color:       rgb(107 107 107 / var(--tw-text-opacity, 1));
}

.placeholder\:text-dim::placeholder {
  --tw-text-opacity:       1;
  color:       rgb(107 107 107 / var(--tw-text-opacity, 1));
}

.placeholder\:text-white\/40::-moz-placeholder {
  color:       rgb(255 255 255 / 0.4);
}

.placeholder\:text-white\/40::placeholder {
  color:       rgb(255 255 255 / 0.4);
}

.focus-within\:border-ink:focus-within {
  --tw-border-opacity:       1;
  border-color:       rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.hover\:border-brand:hover {
  --tw-border-opacity:       1;
  border-color:       rgb(169 68 66 / var(--tw-border-opacity, 1));
}

.hover\:border-ink:hover {
  --tw-border-opacity:       1;
  border-color:       rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.hover\:border-ink\/30:hover {
  border-color:       rgb(17 17 17 / 0.3);
}

.hover\:bg-brand:hover {
  --tw-bg-opacity:       1;
  background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
}

.hover\:bg-brand\/10:hover {
  background-color:       rgb(169 68 66 / 0.1);
}

.hover\:bg-brandDark:hover {
  --tw-bg-opacity:       1;
  background-color:       rgb(139 55 53 / var(--tw-bg-opacity, 1));
}

.hover\:bg-cream:hover {
  --tw-bg-opacity:       1;
  background-color:       rgb(246 242 236 / var(--tw-bg-opacity, 1));
}

.hover\:bg-ink:hover {
  --tw-bg-opacity:       1;
  background-color:       rgb(17 17 17 / var(--tw-bg-opacity, 1));
}

.hover\:bg-panel:hover {
  --tw-bg-opacity:       1;
  background-color:       rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white\/10:hover {
  background-color:       rgb(255 255 255 / 0.1);
}

.hover\:bg-white\/20:hover {
  background-color:       rgb(255 255 255 / 0.2);
}

.hover\:text-brand:hover {
  --tw-text-opacity:       1;
  color:       rgb(169 68 66 / var(--tw-text-opacity, 1));
}

.hover\:text-brandDark:hover {
  --tw-text-opacity:       1;
  color:       rgb(139 55 53 / var(--tw-text-opacity, 1));
}

.hover\:text-ink:hover {
  --tw-text-opacity:       1;
  color:       rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity:       1;
  color:       rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:text-white\/90:hover {
  color:       rgb(255 255 255 / 0.9);
}

.hover\:underline:hover {
  text-decoration-line:       underline;
}

.hover\:opacity-100:hover {
  opacity:       1;
}

.hover\:opacity-80:hover {
  opacity:       0.8;
}

.hover\:opacity-90:hover {
  opacity:       0.9;
}

.hover\:shadow-card:hover {
  --tw-shadow:       0 1px 2px rgba(0,0,0,.04), 0 4px 14px rgba(0,0,0,.06);
  --tw-shadow-colored:       0 1px 2px var(--tw-shadow-color), 0 4px 14px var(--tw-shadow-color);
  box-shadow:       var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-cardHover:hover {
  --tw-shadow:       0 2px 4px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.10);
  --tw-shadow-colored:       0 2px 4px var(--tw-shadow-color), 0 12px 28px var(--tw-shadow-color);
  box-shadow:       var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:not-sr-only:focus {
  position:       static;
  width:       auto;
  height:       auto;
  padding:       0;
  margin:       0;
  overflow:       visible;
  clip:       auto;
  white-space:       normal;
}

.focus\:fixed:focus {
  position:       fixed;
}

.focus\:left-3:focus {
  left:       0.75rem;
}

.focus\:top-3:focus {
  top:       0.75rem;
}

.focus\:z-50:focus {
  z-index:       50;
}

.focus\:rounded-full:focus {
  border-radius:       9999px;
}

.focus\:border-brand:focus {
  --tw-border-opacity:       1;
  border-color:       rgb(169 68 66 / var(--tw-border-opacity, 1));
}

.focus\:border-ink:focus {
  --tw-border-opacity:       1;
  border-color:       rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.focus\:bg-brand:focus {
  --tw-bg-opacity:       1;
  background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
}

.focus\:px-4:focus {
  padding-left:       1rem;
  padding-right:       1rem;
}

.focus\:py-2:focus {
  padding-top:       0.5rem;
  padding-bottom:       0.5rem;
}

.focus\:text-sm:focus {
  font-size:       0.875rem;
  line-height:       1.25rem;
}

.focus\:font-medium:focus {
  font-weight:       500;
}

.focus\:text-white:focus {
  --tw-text-opacity:       1;
  color:       rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.focus\:no-underline:focus {
  text-decoration-line:       none;
}

.focus\:shadow-card:focus {
  --tw-shadow:       0 1px 2px rgba(0,0,0,.04), 0 4px 14px rgba(0,0,0,.06);
  --tw-shadow-colored:       0 1px 2px var(--tw-shadow-color), 0 4px 14px var(--tw-shadow-color);
  box-shadow:       var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
  outline:       2px solid transparent;
  outline-offset:       2px;
}

.active\:scale-95:active {
  --tw-scale-x:       .95;
  --tw-scale-y:       .95;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:scale-\[\.97\]:active {
  --tw-scale-x:       .97;
  --tw-scale-y:       .97;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:scale-\[\.98\]:active {
  --tw-scale-x:       .98;
  --tw-scale-y:       .98;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.active\:bg-panel:active {
  --tw-bg-opacity:       1;
  background-color:       rgb(250 250 250 / var(--tw-bg-opacity, 1));
}

.active\:opacity-90:active {
  opacity:       0.9;
}

.active\:shadow-card:active {
  --tw-shadow:       0 1px 2px rgba(0,0,0,.04), 0 4px 14px rgba(0,0,0,.06);
  --tw-shadow-colored:       0 1px 2px var(--tw-shadow-color), 0 4px 14px var(--tw-shadow-color);
  box-shadow:       var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.group[open] .group-open\:rotate-180 {
  --tw-rotate:       180deg;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x:       1.05;
  --tw-scale-y:       1.05;
  transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:bg-brand {
  --tw-bg-opacity:       1;
  background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
}

.group:hover .group-hover\:text-ink {
  --tw-text-opacity:       1;
  color:       rgb(17 17 17 / var(--tw-text-opacity, 1));
}

.has-\[\:checked\]\:border-ink:has(:checked) {
  --tw-border-opacity:       1;
  border-color:       rgb(17 17 17 / var(--tw-border-opacity, 1));
}

.has-\[\:checked\]\:bg-ink:has(:checked) {
  --tw-bg-opacity:       1;
  background-color:       rgb(17 17 17 / var(--tw-bg-opacity, 1));
}

.has-\[\:checked\]\:font-semibold:has(:checked) {
  font-weight:       600;
}

.has-\[\:checked\]\:text-white:has(:checked) {
  --tw-text-opacity:       1;
  color:       rgb(255 255 255 / var(--tw-text-opacity, 1));
}

@media (min-width: 640px) {

  .sm\:inline {
    display:       inline;
  }

  .sm\:h-11 {
    height:       2.75rem;
  }

  .sm\:flex-row {
    flex-direction:       row;
  }

  .sm\:text-\[14px\] {
    font-size:       14px;
  }
}

@media (min-width: 768px) {

  .md\:static {
    position:       static;
  }

  .md\:relative {
    position:       relative;
  }

  .md\:sticky {
    position:       sticky;
  }

  .md\:left-auto {
    left:       auto;
  }

  .md\:top-\[100px\] {
    top:       100px;
  }

  .md\:top-auto {
    top:       auto;
  }

  .md\:order-1 {
    order:       1;
  }

  .md\:order-2 {
    order:       2;
  }

  .md\:col-span-3 {
    grid-column:       span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column:       span 4 / span 4;
  }

  .md\:col-span-8 {
    grid-column:       span 8 / span 8;
  }

  .md\:col-span-9 {
    grid-column:       span 9 / span 9;
  }

  .md\:mx-0 {
    margin-left:       0px;
    margin-right:       0px;
  }

  .md\:mx-auto {
    margin-left:       auto;
    margin-right:       auto;
  }

  .md\:mb-1 {
    margin-bottom:       0.25rem;
  }

  .md\:mb-1\.5 {
    margin-bottom:       0.375rem;
  }

  .md\:mb-4 {
    margin-bottom:       1rem;
  }

  .md\:mb-6 {
    margin-bottom:       1.5rem;
  }

  .md\:mb-8 {
    margin-bottom:       2rem;
  }

  .md\:mt-0 {
    margin-top:       0px;
  }

  .md\:mt-12 {
    margin-top:       3rem;
  }

  .md\:mt-2 {
    margin-top:       0.5rem;
  }

  .md\:mt-3 {
    margin-top:       0.75rem;
  }

  .md\:mt-4 {
    margin-top:       1rem;
  }

  .md\:mt-5 {
    margin-top:       1.25rem;
  }

  .md\:mt-6 {
    margin-top:       1.5rem;
  }

  .md\:mt-8 {
    margin-top:       2rem;
  }

  .md\:block {
    display:       block;
  }

  .md\:inline-block {
    display:       inline-block;
  }

  .md\:inline {
    display:       inline;
  }

  .md\:flex {
    display:       flex;
  }

  .md\:grid {
    display:       grid;
  }

  .md\:hidden {
    display:       none;
  }

  .md\:h-10 {
    height:       2.5rem;
  }

  .md\:h-11 {
    height:       2.75rem;
  }

  .md\:h-12 {
    height:       3rem;
  }

  .md\:h-20 {
    height:       5rem;
  }

  .md\:h-4 {
    height:       1rem;
  }

  .md\:h-7 {
    height:       1.75rem;
  }

  .md\:h-\[360px\] {
    height:       360px;
  }

  .md\:h-\[560px\] {
    height:       560px;
  }

  .md\:h-full {
    height:       100%;
  }

  .md\:min-h-\[180px\] {
    min-height:       180px;
  }

  .md\:w-10 {
    width:       2.5rem;
  }

  .md\:w-20 {
    width:       5rem;
  }

  .md\:w-4 {
    width:       1rem;
  }

  .md\:w-7 {
    width:       1.75rem;
  }

  .md\:w-72 {
    width:       18rem;
  }

  .md\:w-80 {
    width:       20rem;
  }

  .md\:w-auto {
    width:       auto;
  }

  .md\:w-full {
    width:       100%;
  }

  .md\:min-w-\[220px\] {
    min-width:       220px;
  }

  .md\:max-w-2xl {
    max-width:       42rem;
  }

  .md\:max-w-3xl {
    max-width:       48rem;
  }

  .md\:max-w-content {
    max-width:       1200px;
  }

  .md\:max-w-md {
    max-width:       28rem;
  }

  .md\:max-w-xl {
    max-width:       36rem;
  }

  .md\:flex-1 {
    flex:       1 1 0%;
  }

  .md\:flex-none {
    flex:       none;
  }

  .md\:grid-cols-1 {
    grid-template-columns:       repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns:       repeat(12, minmax(0, 1fr));
  }

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

  .md\:grid-cols-3 {
    grid-template-columns:       repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns:       repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-\[1fr_140px_120px_40px\] {
    grid-template-columns:       1fr 140px 120px 40px;
  }

  .md\:grid-cols-\[1fr_360px\] {
    grid-template-columns:       1fr 360px;
  }

  .md\:flex-row {
    flex-direction:       row;
  }

  .md\:flex-col {
    flex-direction:       column;
  }

  .md\:items-start {
    align-items:       flex-start;
  }

  .md\:items-end {
    align-items:       flex-end;
  }

  .md\:items-center {
    align-items:       center;
  }

  .md\:items-stretch {
    align-items:       stretch;
  }

  .md\:justify-center {
    justify-content:       center;
  }

  .md\:justify-between {
    justify-content:       space-between;
  }

  .md\:gap-12 {
    gap:       3rem;
  }

  .md\:gap-4 {
    gap:       1rem;
  }

  .md\:gap-5 {
    gap:       1.25rem;
  }

  .md\:gap-6 {
    gap:       1.5rem;
  }

  .md\:gap-8 {
    gap:       2rem;
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse:       0;
    margin-top:       calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:       calc(0px * var(--tw-space-y-reverse));
  }

  .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse:       0;
    margin-top:       calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:       calc(1rem * var(--tw-space-y-reverse));
  }

  .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse:       0;
    margin-top:       calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom:       calc(1.5rem * var(--tw-space-y-reverse));
  }

  .md\:divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse:       0;
    border-top-width:       calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width:       calc(1px * var(--tw-divide-y-reverse));
  }

  .md\:divide-hairline > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity:       1;
    border-color:       rgb(238 238 238 / var(--tw-divide-opacity, 1));
  }

  .md\:overflow-hidden {
    overflow:       hidden;
  }

  .md\:overflow-visible {
    overflow:       visible;
  }

  .md\:rounded-2xl {
    border-radius:       1rem;
  }

  .md\:rounded-b-2xl {
    border-bottom-right-radius:       1rem;
    border-bottom-left-radius:       1rem;
  }

  .md\:border {
    border-width:       1px;
  }

  .md\:border-0 {
    border-width:       0px;
  }

  .md\:border-b-0 {
    border-bottom-width:       0px;
  }

  .md\:border-l {
    border-left-width:       1px;
  }

  .md\:border-t-0 {
    border-top-width:       0px;
  }

  .md\:border-none {
    border-style:       none;
  }

  .md\:border-hairline {
    --tw-border-opacity:       1;
    border-color:       rgb(238 238 238 / var(--tw-border-opacity, 1));
  }

  .md\:bg-cream {
    --tw-bg-opacity:       1;
    background-color:       rgb(246 242 236 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-ink {
    --tw-bg-opacity:       1;
    background-color:       rgb(17 17 17 / var(--tw-bg-opacity, 1));
  }

  .md\:bg-white {
    --tw-bg-opacity:       1;
    background-color:       rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }

  .md\:object-\[center_65\%\] {
    -o-object-position:       center 65%;
       object-position:       center 65%;
  }

  .md\:p-4 {
    padding:       1rem;
  }

  .md\:p-5 {
    padding:       1.25rem;
  }

  .md\:p-6 {
    padding:       1.5rem;
  }

  .md\:p-7 {
    padding:       1.75rem;
  }

  .md\:p-9 {
    padding:       2.25rem;
  }

  .md\:px-0 {
    padding-left:       0px;
    padding-right:       0px;
  }

  .md\:px-1 {
    padding-left:       0.25rem;
    padding-right:       0.25rem;
  }

  .md\:px-3 {
    padding-left:       0.75rem;
    padding-right:       0.75rem;
  }

  .md\:px-4 {
    padding-left:       1rem;
    padding-right:       1rem;
  }

  .md\:px-6 {
    padding-left:       1.5rem;
    padding-right:       1.5rem;
  }

  .md\:py-0 {
    padding-top:       0px;
    padding-bottom:       0px;
  }

  .md\:py-10 {
    padding-top:       2.5rem;
    padding-bottom:       2.5rem;
  }

  .md\:py-12 {
    padding-top:       3rem;
    padding-bottom:       3rem;
  }

  .md\:py-14 {
    padding-top:       3.5rem;
    padding-bottom:       3.5rem;
  }

  .md\:py-16 {
    padding-top:       4rem;
    padding-bottom:       4rem;
  }

  .md\:py-20 {
    padding-top:       5rem;
    padding-bottom:       5rem;
  }

  .md\:py-24 {
    padding-top:       6rem;
    padding-bottom:       6rem;
  }

  .md\:py-4 {
    padding-top:       1rem;
    padding-bottom:       1rem;
  }

  .md\:py-5 {
    padding-top:       1.25rem;
    padding-bottom:       1.25rem;
  }

  .md\:py-6 {
    padding-top:       1.5rem;
    padding-bottom:       1.5rem;
  }

  .md\:py-8 {
    padding-top:       2rem;
    padding-bottom:       2rem;
  }

  .md\:pb-0 {
    padding-bottom:       0px;
  }

  .md\:pb-12 {
    padding-bottom:       3rem;
  }

  .md\:pb-16 {
    padding-bottom:       4rem;
  }

  .md\:pb-20 {
    padding-bottom:       5rem;
  }

  .md\:pb-4 {
    padding-bottom:       1rem;
  }

  .md\:pb-5 {
    padding-bottom:       1.25rem;
  }

  .md\:pb-6 {
    padding-bottom:       1.5rem;
  }

  .md\:pt-0 {
    padding-top:       0px;
  }

  .md\:pt-10 {
    padding-top:       2.5rem;
  }

  .md\:pt-3 {
    padding-top:       0.75rem;
  }

  .md\:pt-5 {
    padding-top:       1.25rem;
  }

  .md\:pt-8 {
    padding-top:       2rem;
  }

  .md\:text-left {
    text-align:       left;
  }

  .md\:font-display {
    font-family:       Fraunces, Georgia, serif;
  }

  .md\:text-\[12px\] {
    font-size:       12px;
  }

  .md\:text-\[14px\] {
    font-size:       14px;
  }

  .md\:text-\[15px\] {
    font-size:       15px;
  }

  .md\:text-\[16px\] {
    font-size:       16px;
  }

  .md\:text-\[18px\] {
    font-size:       18px;
  }

  .md\:text-\[20px\] {
    font-size:       20px;
  }

  .md\:text-\[22px\] {
    font-size:       22px;
  }

  .md\:text-\[24px\] {
    font-size:       24px;
  }

  .md\:text-\[28px\] {
    font-size:       28px;
  }

  .md\:text-\[32px\] {
    font-size:       32px;
  }

  .md\:text-\[34px\] {
    font-size:       34px;
  }

  .md\:text-\[36px\] {
    font-size:       36px;
  }

  .md\:text-\[40px\] {
    font-size:       40px;
  }

  .md\:text-\[44px\] {
    font-size:       44px;
  }

  .md\:font-medium {
    font-weight:       500;
  }

  .md\:font-semibold {
    font-weight:       600;
  }

  .md\:leading-none {
    line-height:       1;
  }

  .md\:tracking-wider {
    letter-spacing:       0.05em;
  }

  .md\:text-brand {
    --tw-text-opacity:       1;
    color:       rgb(169 68 66 / var(--tw-text-opacity, 1));
  }

  .md\:text-white\/80 {
    color:       rgb(255 255 255 / 0.8);
  }

  .md\:transition {
    transition-property:       color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function:       cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration:       150ms;
  }

  .md\:duration-500 {
    transition-duration:       500ms;
  }

  .md\:hover\:bg-brand:hover {
    --tw-bg-opacity:       1;
    background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
  }

  .md\:hover\:shadow-cardHover:hover {
    --tw-shadow:       0 2px 4px rgba(0,0,0,.05), 0 12px 28px rgba(0,0,0,.10);
    --tw-shadow-colored:       0 2px 4px var(--tw-shadow-color), 0 12px 28px var(--tw-shadow-color);
    box-shadow:       var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .group:hover .md\:group-hover\:scale-105 {
    --tw-scale-x:       1.05;
    --tw-scale-y:       1.05;
    transform:       translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .group:hover .md\:group-hover\:bg-brand {
    --tw-bg-opacity:       1;
    background-color:       rgb(169 68 66 / var(--tw-bg-opacity, 1));
  }
}

@media (min-width: 1024px) {

  .lg\:w-96 {
    width:       24rem;
  }

  .lg\:gap-10 {
    gap:       2.5rem;
  }
}

.\[\&\:\:-webkit-details-marker\]\:hidden::-webkit-details-marker {
  display:       none;
}
