/*
landing.css - Optimized CSS for landing_2d.html
Minimal CSS with only used classes - converted from LESS to CSS custom properties
*/

@charset "UTF-8";

/* ============================================
   FONT FACES
   ============================================ */

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  font-stretch: 100%;
  src:
    url('../fonts/poppins/Poppins-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('../fonts/poppins/Poppins-VariableFont_wght.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  font-stretch: 100%;
  src:
    url('../fonts/poppins/Poppins-Italic-VariableFont_wght.woff2') format('woff2 supports variations'),
    url('../fonts/poppins/Poppins-Italic-VariableFont_wght.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  src:
    url('../fonts/fraunces/Fraunces.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src:
    url('../fonts/fraunces/Fraunces-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

/* ============================================
   CSS CUSTOM PROPERTIES (COLORS)
   ============================================ */

:root {
  /* Typography tokens */
  --font-sans-ui: "Poppins", arial, helvetica, sans-serif;
  --font-serif-ui: "Fraunces", serif;
  --font-serif-display-settings: "opsz" 72, "wght" 250, "SOFT" 36, "WONK" 0;
  --font-serif-heading-settings: "opsz" 42, "wght" 300, "SOFT" 36, "WONK" 0;

  /* Background Colors */
  --color-bg-1: #691d42; /*691d42*/
  --color-bg-2: #2b2b2b;
  --color-bg-3: #f9f8f7; /* fbf2e4 #f9f8f7 */
  --color-bg-4: #8F6660;
  --color-bg-5: #8B8C8B;

  /* foreground colors */
  --color-fg-1: #ffffff;
  --color-fg-2: #ffffff;
  --color-fg-3: #171717;
  --color-fg-4: #ffffff;
  --color-fg-5: #ffffff;

  /* Design Tokens: Spacing */
  --cc-space-1: 0.25rem;
  --cc-space-2: 0.5rem;
  --cc-space-3: 0.75rem;
  --cc-space-4: 1rem;
  --cc-space-5: 1.5rem;
  --cc-space-6: 2rem;

  /* Design Tokens: Radius */
  --cc-radius-sm: 8px;
  --cc-radius-md: 12px;
  --cc-radius-lg: 16px;
  --cc-radius-pill: 999px;

  /* Design Tokens: Border */
  --cc-border-subtle: rgba(0, 0, 0, 0.08);
  --cc-border-strong: rgba(0, 0, 0, 0.14);

  /* Design Tokens: Shadow */
  --cc-shadow-sm: 0 6px 16px rgba(17, 24, 39, 0.05);
  --cc-shadow-md: 0 10px 24px rgba(17, 24, 39, 0.08);
  --cc-shadow-lg: 0 16px 32px rgba(17, 24, 39, 0.12);

  /* UI Tone (editorial-neutral) */
  --ui-text-strong: #1d1d1f;
  --ui-text-muted: #62666d;
  --ui-surface-soft: #f2f2f2;
  --ui-border-soft: #e1e4e8;
  --ui-focus-ring: 0 0 0 0.2rem rgba(29, 29, 31, 0.14);

  /* Bootstrap overrides */
  --bs-body-color: var(--ui-text-strong);
  --bs-secondary-color: var(--ui-text-muted);
  --bs-border-color: var(--ui-border-soft);
  --bs-tertiary-bg: var(--ui-surface-soft);
}

/* ============================================
   FONT FAMILY UTILITIES
   ============================================ */

.font-sans {
  font-family: var(--font-sans-ui) !important;
}

.font-alt {
  font-family: "Poppins", sans-serif !important;
}

.font-serif {
  font-family: var(--font-serif-ui) !important;
  --font-serif-opsz: 42;
  --font-serif-wght: 300;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght), "SOFT" 36, "WONK" 0;
}

.font-serif-display {
  font-family: var(--font-serif-ui) !important;
  --font-serif-opsz: 72;
  --font-serif-wght: 250;
  font-weight: 250;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght), "SOFT" 36, "WONK" 0;
}

.font-serif-heading {
  font-family: var(--font-serif-ui) !important;
  --font-serif-opsz: 42;
  --font-serif-wght: 300;
  font-weight: 300;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght), "SOFT" 36, "WONK" 0;
}

/* ============================================
   FONT WEIGHT UTILITIES
   ============================================ */

.fw-thin {
  font-weight: 100 !important;
  --font-serif-wght: 100;
}

.fw-extralight {
  font-weight: 200 !important;
  --font-serif-wght: 200;
}

.fw-light {
  font-weight: 300 !important;
  --font-serif-wght: 300;
}

.fw-light {
  font-weight: 300 !important;
  --font-serif-wght: 300;
}

.fw-regular {
  font-weight: 400 !important;
  --font-serif-wght: 400;
}

.fw-medium {
  font-weight: 500 !important;
  --font-serif-wght: 500;
}

.fw-semibold {
  font-weight: 600 !important;
  --font-serif-wght: 600;
}

.fw-bold {
  font-weight: 700 !important;
  --font-serif-wght: 700;
}

.fw-extrabold {
  font-weight: 800 !important;
  --font-serif-wght: 800;
}

.fw-black {
  font-weight: 900 !important;
  --font-serif-wght: 900;
}

/* ============================================
   COLOR UTILITIES (bg-app-*, text-app-*, border-app-*, btn-app-*)
   ============================================ */

/* Background Colors */
.bg-app-1 {
  background-color: var(--color-bg-1) !important;
  color: var(--color-fg-1);
}

.bg-app-2 {
  background-color: var(--color-bg-2) !important;
  color: var(--color-fg-2);
}

.bg-app-3 {
  background-color: var(--color-bg-3) !important;
  color: var(--color-fg-3);
}

.bg-app-4 {
  background-color: var(--color-bg-4) !important;
  color: var(--color-fg-4);
}

/* Ensure dark sections have readable text */
.bg-dark {
  color: #ffffff;
}

.bg-black {
  color: #ffffff;
}

.bg-dark a:not(.btn),
.bg-black a:not(.btn) {
  color: inherit;
}

/*.bg-white {
  background-color: #faf6f2 !important;
}*/


.bg-white,
.bg-light {
  color: #212529;
}

.bg-white a:not(.btn),
.bg-light a:not(.btn) {
  color: inherit;
}

.bg-app-5 {
  background-color: var(--color-bg-5) !important;
  color: var(--color-fg-5);
}

/* Links inside bg-app containers */
.bg-app-1 a:not(.btn),
.bg-app-2 a:not(.btn),
.bg-app-3 a:not(.btn),
.bg-app-4 a:not(.btn),
.bg-app-5 a:not(.btn) {
  color: inherit;
}

/* Text Colors */
.text-app-1 {
  color: var(--color-bg-1) !important;
}

.text-app-2 {
  color: var(--color-bg-2) !important;
}

.text-app-3 {
  color: var(--color-bg-3) !important;
}

.text-app-5 {
  color: var(--color-bg-5) !important;
}

/* Button Colors */
.btn-app-1 {
  color: var(--color-fg-1) !important;
  background-color: var(--color-bg-1);
  border-color: var(--color-bg-1);
}

.btn-app-1:hover,
.btn-app-1:focus,
.btn-app-1:active {
  color: var(--color-fg-1) !important;
  background-color: var(--color-bg-1);
  border-color: var(--color-bg-1);
}

.btn-app-2 {
  color: var(--color-fg-2) !important;
  background-color: var(--color-bg-2);
  border-color: var(--color-bg-2);
}

.btn-app-2:hover,
.btn-app-2:focus,
.btn-app-2:active {
  color: var(--color-fg-2) !important;
  background-color: var(--color-bg-2);
  border-color: var(--color-bg-2);
}

.border-app-1 {
  border-color: var(--color-bg-1) !important;
}

.border-app-2 {
  border-color: var(--color-bg-2) !important;
}

.border-app-3 {
  border-color: var(--color-bg-3) !important;
}

/* ============================================
   FONT SIZE UTILITIES (em-size-*)
   ============================================ */

.em-size-40 {
  font-size: 0.40em;
}

.em-size-50 {
  font-size: 0.50em;
}

.em-size-60 {
  font-size: 0.60em;
}

.em-size-70 {
  font-size: 0.70em;
}

.em-size-80 {
  font-size: 0.80em;
  }

.em-size-85 {
  font-size: 0.85em;
}

.em-size-90 {
  font-size: 0.90em;
}

.em-size-95 {
  font-size: 0.95em;
}

.em-size-110 {
  font-size: 1.10em;
}

.em-size-120 {
  font-size: 1.20em;
}

.em-size-140 {
  font-size: 1.40em;
}

.em-size-150 {
  font-size: 1.50em;
}

.em-size-190 {
  font-size: 1.90em;
}

/* ============================================
   THUMBNAIL/WIDTH UTILITIES (thumb-*)
   ============================================ */

.minw-0 {
  min-width: 0;
}

.thumb-24 {
  width: 24px;
}

.thumb-32 {
  width: 32px;
}

.thumb-48 {
  width: 48px;
}

.thumb-64 {
  width: 64px;
}

.thumb-96 {
  width: 96px;
}

.thumb-128 {
  width: 128px;
}

.thumb-160 {
  width: 160px;
}

.thumb-192 {
  width: 192px;
}

.thumb-256 {
  width: 256px;
}

.thumb-320 {
  width: 320px;
}

.thumb-400 {
  width: 400px;
}

.thumb-640 {
  width: 640px;
}

.thumb-960 {
  width: 960px;
}

/* ============================================
   TEXT SPACING UTILITIES
   ============================================ */

@media only screen and (min-width: 576px) {
  .text-spacing-80 {
    letter-spacing: -0.02em !important;
  }

  .text-spacing-90 {
    letter-spacing: -0.01em !important;
  }

  .text-spacing-100 {
    letter-spacing: 0 !important;
  }

  .text-spacing-110 {
    letter-spacing: 0.01em !important;
  }

  .text-spacing-120 {
    letter-spacing: 0.02em !important;
  }

  .text-spacing-150 {
    letter-spacing: 0.05em !important;
  }
}

/* ============================================
   LINE HEIGHT UTILITIES
   ============================================ */

.text-height-100 {
  line-height: 100% !important;
 }

.text-height-110 {
  line-height: 110% !important;
}

.text-height-120 {
  line-height: 120% !important;
}

.text-height-130 {
  line-height: 130% !important;
}

.text-height-140 {
  line-height: 140% !important;
}

.text-height-150 {
  line-height: 150% !important;
}

.text-height-160 {
  line-height: 160% !important;
}

.text-height-170 {
  line-height: 170% !important;
}


.truncate-lines-2 {
  display: -webkit-box;
  display: box; /* fallback standard */
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-lines-3 {
  display: -webkit-box;
  display: box; /* fallback standard */
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-lines-4 {
  display: -webkit-box;
  display: box; /* fallback standard */
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================
   BASE STYLES
   ============================================ */

html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "kern" 1, "liga" 1;
  word-break: break-word;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: var(--font-sans-ui);
  font-weight: 400;
  line-height: 1.62;
  height: 100%;
  font-size: 14px;
  color: var(--ui-text-strong);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif-ui);
  --font-serif-opsz: 42;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght, 300), "SOFT" 36, "WONK" 0;
  font-weight: var(--font-serif-wght, 300);
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-serif-ui);
  --font-serif-opsz: 42;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght, 300), "SOFT" 36, "WONK" 0;
  font-weight: var(--font-serif-wght, 300);
  letter-spacing: -0.01em;
  line-height: 1.14;
}

h1,
.h1,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  --font-serif-opsz: 72;
  font-variation-settings: "opsz" var(--font-serif-opsz), "wght" var(--font-serif-wght, 250), "SOFT" 36, "WONK" 0;
  font-weight: var(--font-serif-wght, 250);
}

b,
strong {
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* Keep underline visually lower for emphasized/underlined inline text. */
em,
.text-decoration-underline {
  text-underline-offset: 0.30em;
  text-decoration-thickness: from-font;
  text-decoration-skip-ink: auto;
}

p {
  font-size: 1.0em;
  color: var(--ui-text-strong);
}

.text-muted {
  color: var(--ui-text-muted) !important;
}

.form-label,
label,
legend {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400 !important;
  margin-bottom: 8px;
  color: var(--ui-text-strong);
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
  font-family: var(--font-sans-ui);
  font-size: 0.9em;
  letter-spacing: 0.3px;
  border-radius: 50rem;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  transition: background-color 0.2s, color 0.2s;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  color: var(--bs-dark) !important;
}

.ui-btn {
  font-family: arial, helvetica, sans-serif;
  font-size: 0.9em !important;
  letter-spacing: 0.3px !important;
  border-radius: 0 !important;
  font-weight: 500 !important;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--cc-space-2);
  white-space: nowrap;
  padding: var(--cc-space-2) var(--cc-space-4);
  transition: all 0.2s ease, box-shadow 0.2s ease;
}

.ui-btn:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(29, 29, 31, 0.15);
}

.ui-btn.btn-sm {
  font-size: 0.9em !important;
  padding: var(--cc-space-2) var(--cc-space-4);
}

.ui-btn.btn-link {
  padding: 0 !important;
  border-radius: 0 !important;
}

.ui-btn i,
.ui-btn .bi {
  margin: 0 !important;
  line-height: 1;
}

.ui-btn.btn-dark {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

.ui-btn.btn-dark:hover {
  background: #334155;
  border-color: #334155;
  color: #fff;
}

.ui-btn.btn-outline-dark {
  border-color: #cbd5e1;
  color: #475569;
  background: #fff;
}

.ui-btn.btn-outline-dark:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #1e293b;
}

.shop-cart-summary [data-cart-recovery-submit].ui-btn.btn-outline-dark,
.shop-cart-aside-summary-content [data-cart-recovery-submit].ui-btn.btn-outline-dark {
  background: #fff;
  border-color: #1e293b;
  color: #1e293b;
  font-weight: 600 !important;
}

.shop-cart-summary [data-cart-recovery-submit].ui-btn.btn-outline-dark:hover,
.shop-cart-aside-summary-content [data-cart-recovery-submit].ui-btn.btn-outline-dark:hover {
  background: #f8fafc;
  border-color: #0f172a;
  color: #0f172a;
}

.ui-card {
  background: #fff;
  border: 1px solid var(--cc-border-subtle);
  border-radius: var(--cc-radius-lg);
  box-shadow: var(--cc-shadow-md);
}

.card {
  border-color: var(--ui-border-soft);
  border-radius: var(--cc-radius-md);
}

.modal-content {
  border-color: var(--ui-border-soft);
  border-radius: var(--cc-radius-md);
}

/* ============================================
   FORM STYLES
   ============================================ */

button:focus,
a:focus,
a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  outline: none !important;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

::selection {
  background: rgba(0, 0, 0, 0.5);
  color: #faf3eb;
}

.form-control,
.form-select {
  border: 1px solid var(--ui-border-soft);
  border-radius: 4px;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: var(--ui-text-strong);
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  min-height: 40px;
  padding: 0.5rem 0.8rem;
}

.ui-field {
  border: 1px solid var(--ui-border-soft);
  border-radius: 4px;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: var(--ui-text-strong);
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  min-height: 40px;
  padding: 0.5rem 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus,
.form-select:focus,
.ui-field:focus {
  border-color: rgb(128, 128, 128) !important;
  box-shadow: none;
  outline: 0;
  background-color: #f9f9f9;
}

.ui-field.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.12);
}

.ui-field.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.12);
}

.form-control.is-valid,
.form-select.is-valid {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.12);
}

.form-check-input,
input[type="checkbox"],
input[type="radio"] {
  accent-color: #111827;
}

.form-check-input:checked {
  background-color: #111827;
  border-color: #111827;
}

textarea,
input {
  outline: none;
}

textarea:focus,
input:not([type="checkbox"]):not([type="radio"]):focus,
.uneditable-input:focus {
  border-color: rgb(128, 128, 128) !important;
  box-shadow: none;
  background-color: #f9f9f9;
  outline: 0 none;
}

input.error,
textarea.error,
select.error {
  border: 2px solid var(--color-bg-10);
}

input[type="checkbox"],
input[type="radio"] {
  outline: 2px solid transparent;
}

input[type="checkbox"].error,
input[type="radio"].error {
  outline: 2px solid var(--color-bg-10);
}

.form-control::placeholder {
  color: rgba(23, 23, 23, 0.52);
  font-size: 13px;
  line-height: 18px;
}


.form-contact textarea {
  min-height: 100px !important;
}
.form-contact .form-control {
  font-size: 0.9rem;
}
.form-contact textarea,
.form-contact textarea:focus,
.form-contact textarea:active,
.form-contact input,
.form-contact input:focus,
.form-contact input:active {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #DDD;
  outline: none;
  color: var(--ca-color-fg-3);
  font-weight: 500;
}
.form-contact textarea:focus,
.form-contact textarea:active,
.form-contact input:focus,
.form-contact input:active {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #171717;
}
.form-contact .form-floating label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ca-color-fg-3);
}
.form-contact .form-floating input:focus + label {
  color: var(--ca-color-fg-3);
}
.form-contact .form-floating textarea:focus + label {
  color: var(--ca-color-fg-3);
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-control-plaintext ~ label::after,
.form-floating > .form-select ~ label::after {
  background-color: transparent;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal.fade {
  z-index: 5000 !important;
}

.modal img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY
   ============================================ */

@media only screen and (max-width: 1200px) {
  .display-2 {
    font-size: 3.8rem !important;
  }
  .display-3 {
    font-size: 3.5rem !important;
  }
}

@media only screen and (max-width: 991px) {
  .display-2 {
    font-size: 3.5rem !important;
  }
  .display-3 {
    font-size: 3.2rem !important;
  }
  .display-5 {
    font-size: 2.1rem !important;
  }

  h1, .h1 {
    font-size: 1.9rem !important;
  }
  h2, .h2 {
    font-size: 1.60rem !important;
  }
  h3, .h3, h4, .h4 {
    font-size: 1.45rem !important;
  }
  h5, .h5 {
    font-size: 1.25rem !important;
  }
  h6, .h6 {
    font-size: 1.15rem !important;
  }
}

@media only screen and (max-width: 743px) {
  .display-2 {
    font-size: 3.0rem !important;
  }
  .display-3 {
    font-size: 2.4rem !important;
  }
  .display-5 {
    font-size: 1.7rem !important;
  }

  h1, .h1 {
    font-size: 1.6rem !important;
  }
  h2, .h2 {
    font-size: 1.40rem !important;
  }
  h3, .h3, h4, .h4 {
    font-size: 1.4rem !important;
  }
  h5, .h5 {
    font-size: 1.25rem !important;
  }
  h6, .h6 {
    font-size: 1.15rem !important;
  }
}

/* ============================================
   RESPONSIVE FONT SIZES (mobile optimization)
   ============================================ */

@media only screen and (min-width: 0px) and (max-width: 743px) {
  h3, .h3 {
    font-size: 1.15rem;
  }
  .em-size-120,
  .em-size-125 {
    font-size: 1.00em;
  }
  .em-size-130,
  .em-size-135,
  .em-size-140,
  .em-size-145 {
    font-size: 1.1em;
  }
  .em-size-150,
  .em-size-155 {
    font-size: 1.2em;
  }
}

@media only screen and (min-width: 744px) and (max-width: 991px) {
  h3, .h3 {
    font-size: 1.25rem;
  }
  .em-size-120,
  .em-size-125 {
    font-size: 1.15em;
  }
  .em-size-130,
  .em-size-135,
  .em-size-140,
  .em-size-145 {
    font-size: 1.2em;
  }
  .em-size-150,
  .em-size-155 {
    font-size: 1.3em;
  }
}

/* ============================================
   CONTAINER UTILITIES
   ============================================ */

.container-fluid {
  max-width: 2560px;
}

.container-fluid.full-hd {
  max-width: 1920px;
}

/* ============================================
   IMAGE RATIO UTILITIES
   ============================================ */

img.ratio--11 {
  aspect-ratio: 1/1;
  object-fit: cover;
}

img.ratio--43 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ============================================
   BACKGROUND UTILITIES
   ============================================ */

.bg-hero {
  background-image: url('../img/hero-bg-1920.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.scroll-rotate {
  animation: rotate360 10s linear infinite;
}

@keyframes arrowUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.arrow-bounce {
  animation: arrowUpDown 1.5s ease-in-out infinite;
  will-change: transform;
}

/* ============================================
   FLOATING CART BUTTON
   ============================================ */

#floating-cart-btn .btn {
  transition: width 0.4s ease-in-out, padding 0.4s ease-in-out, border-radius 0.4s ease-in-out;
  overflow: hidden;
  white-space: nowrap;
  min-width: 60px;
}

#floating-cart-btn .cart-text {
  max-width: 0;
  opacity: 0;
  display: inline-block;
  margin-left: 0;
  transition: max-width 0.4s ease-in-out, opacity 0.4s ease-in-out, margin-left 0.4s ease-in-out;
}

#floating-cart-btn .btn:hover {
  width: auto !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 2rem !important;
}

#floating-cart-btn .btn:hover .cart-text {
  max-width: 150px;
  opacity: 1;
  margin-left: 0.5rem;
}

@keyframes cart-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

#floating-cart-btn.pulse-animation {
  animation: cart-pulse 0.4s ease-in-out 3;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.app-toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1090;
  width: min(92vw, 560px);
  pointer-events: none;
}

.app-toast-container .toast {
  pointer-events: auto;
}

.toast {
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
}

.toast .toast-body {
  background-color: #212529 !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  text-align: center;
}

.toast #toast-msg {
  display: block;
  font-weight: 400 !important;
}

.toast .btn-close {
  filter: invert(1);
}

.btn-app-1.is-loading,
.btn-app-1:disabled,
.btn-app-1.disabled {
  opacity: 1 !important;
  background-color: var(--ca-color-bg-1) !important;
  border-color: var(--ca-color-bg-1) !important;
  color: var(--ca-color-fg-1) !important;
  visibility: visible !important;
}

button.hamburger {
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  outline: none;
}

.hamburger {
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: var(--ca-color-fg-1, #fff);
}

.hamburger-box {
  width: 28px;
  height: 25px;
  display: inline-block;
  overflow: hidden;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  width: 28px;
  height: 2px;
  background-color: var(--ca-color-fg-1, #fff);
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner:after,
.hamburger-inner:before {
  content: "";
  display: block;
}

.hamburger-inner:before {
  top: -9px;
}

.hamburger-inner:after {
  bottom: -9px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner:before {
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}

/* ============================================
   OFFCANVAS CUSTOMIZATIONS
   ============================================ */

/* Fade-in effect for offcanvas content */
.offcanvas .offcanvas-body,
.offcanvas .offcanvas-header {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.offcanvas.show .offcanvas-body,
.offcanvas.show .offcanvas-header {
  opacity: 1;
  transition-delay: 0.15s;
}

/* Fix offcanvas header layout */
.offcanvas-header {
  gap: 0 !important;
}

.offcanvas-header .offcanvas-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* ============================================
   BUTTON HOVER EFFECTS (E-COMMERCE)
   ============================================ */

.btn:not(.ui-btn) {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.btn:not(.ui-btn)::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: inherit;
  background-color: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.btn:not(.ui-btn):hover::before {
  width: 120%;
  height: 120%;
}

.btn:not(.ui-btn):hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:not(.ui-btn):active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Specific styles for primary buttons */
.btn-app-1:hover {
  filter: brightness(1.1);
}

.btn-app-2:hover {
  filter: brightness(1.1);
}

/* Outline buttons hover effect */
.btn-outline-light:not(.ui-btn):hover,
.btn-outline-dark:not(.ui-btn):hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Pill buttons specific effect */
.btn.rounded-pill:not(.ui-btn):hover {
  transform: scale(1.02);
}

/* Icon buttons in cart */
.btn:not(.ui-btn):has(.bi-cart-plus):hover .bi-cart-plus {
  animation: cartBounce 0.6s ease;
}

@keyframes cartBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Circular buttons enhancement */
.btn.rounded-circle:not(.ui-btn):hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Explore/View buttons in product cards */
.basket-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ============================================
   PRODUCT PREVIEW IMAGE HEIGHTS (RESPONSIVE)
   ============================================ */

/* Default height for mobile devices */
.product-img-container {
  height: 128px;
}

/* Tablet and larger screens */
@media (min-width: 768px) {
  .product-img-container {
    height: 200px;
  }
}


/* ============================================
   OVERLAY
   ============================================ */

.overlay-item--full {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 5;
  background-color: #00000010;
}
.overlay-item--full.overlay--xs {
  background-color: #00000005;
}
.overlay-item--full.overlay--sm {
  background-color: #00000017;
}
.overlay-item--full.overlay--md {
  background-color: #00000030;
}
.overlay-item--full.overlay--lg {
  background-color: #00000051;
}
.overlay-item--full.overlay--xl {
  background-color: #00000068;
}
.overlay-item--full.overlay--xxl {
  background-color: #00000085;
}
.overlay-item--top-left {
  position: absolute;
  top: 20px;
  right: auto;
  bottom: auto;
  left: 20px;
  right: 20px;
}
.overlay-item--top-right {
  position: absolute;
  top: 17px;
  left: auto;
  bottom: auto;
  right: 17px;
}
.overlay-item--bottom-left {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 6;
}
.overlay-item--bottom-right {
  position: absolute;
  bottom: 20px;
  left: auto;
  top: auto;
  right: 20px;
  z-index: 100;
}
.overlay-item--bottom-center {
  position: absolute;
  bottom: 48px;
  left: 0;
  top: auto;
  right: 0;
  overflow: hidden;
}
.overlay-item--center-xy {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 6;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.overlay-item--center-container {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 6;
  -webkit-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


/* ============================================
   VAR
   ============================================ */

/* offcanvas */
.offcanvas-end {
  width: 640px !important;
  max-width: 100%;
}

/* Global offcanvas pace: slower open/close animation */
.offcanvas,
.offcanvas-backdrop {
  transition-duration: 0.6s !important;
}

.offcanvas-backdrop {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.shop-filters-offcanvas {
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* Keep shop filter offcanvas content visible across all Bootstrap states */
.shop-filters-offcanvas .offcanvas-header,
.shop-filters-offcanvas .offcanvas-body {
  opacity: 1 !important;
}

.shop-filters-offcanvas .offcanvas-header {
  border-bottom: none;
  padding: 0.95rem 1rem;
}

.shop-filters-offcanvas .offcanvas-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.shop-filters-offcanvas .offcanvas-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
}

@media (min-width: 992px) {
  .shop-filters-offcanvas .offcanvas-header,
  .shop-filters-offcanvas .offcanvas-body {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

.shop-filters-offcanvas .offcanvas-footer {
  flex: 0 0 auto;
  background: #fff;
  border-top: 1px solid #e5e7eb !important;
  padding: 0.9rem 1rem !important;
}

.shop-category-filters-trigger {
  font-weight: 600 !important;
}

.shop-filters-group + .shop-filters-group {
  margin-top: 1.6rem;
}

.shop-filters-offcanvas .shop-filters-group {
  margin-bottom: 1.6rem !important;
}

.shop-filters-group h3 {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.85rem !important;
}

.shop-filters-offcanvas .form-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding: 0.25rem 0;
  margin: 0;
  background: transparent;
}

.shop-filters-offcanvas .form-check-input {
  float: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  flex-shrink: 0;
}

.shop-filters-offcanvas .form-check-label {
  margin: 0;
  color: #111827;
  font-size: 0.9rem;
  line-height: 1.35;
}

.shop-quick-filters-menu {
  min-width: 320px;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.shop-quick-filters-toggle::after {
  margin-left: 0.5rem;
}

.shop-quick-filters-toggle.btn {
  border-color: transparent !important;
  --bs-btn-font-size: 0.90rem;
  font-size: 0.90rem !important;
}

.shop-quick-filters-list {
  max-height: 62vh;
  overflow-y: auto;
  padding: 0.35rem;
}

.shop-quick-filters-list .dropdown-item {
  border-radius: 10px;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 0.6rem 0.8rem;
}

.shop-price-filter-menu {
  min-width: 300px;
  padding: 0;
}
.shop-search-filter-menu {
  min-width: 300px;
  padding: 0;
}
.shop-price-filter-menu .form-control {
  font-size: 0.85rem;
}
.shop-search-filter-menu .form-control {
  font-size: 0.85rem;
}
.shop-search-filter-menu .form-control::placeholder {
  font-size: 0.78rem;
}
.shop-price-filter-menu .input-group-text {
  font-size: 0.85rem;
}
.shop-price-input-wrap {
  flex: 1;
  min-width: 0;
}
.shop-quick-filters-toggle.active {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  border-color: var(--bs-dark) !important;
}

.shop-quick-filters-list .dropdown-item.active,
.shop-quick-filters-list .dropdown-item:active {
  background: #f1f3f5;
  color: #111827;
}

.shop-filters-facet-group {
  border-top: 1px solid #eef2f6;
  padding-top: 0.9rem;
}

.shop-filters-facet-title {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

#shopCategoryFacetGroups {
  gap: 1.1rem !important;
}

.shop-filters-facet-group .row {
  row-gap: 0.55rem;
}

.shop-inspire-actions {
  margin-top: 2.2rem;
  width: 100%;
  max-width: 220px;
}

.shop-inspire-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.shop-offcanvas-cat-link {
  display: block;
  text-decoration: none;
  color: #1c1f24;
  padding: 0.9rem 0;
  font-family: "Fraunces", serif;
  font-size: 2.99rem;
  font-weight: 200 !important;
  line-height: 1.1;
  transition: color 150ms ease;
}

@media (max-width: 767px) {
  .shop-offcanvas-cat-link {
    padding: 0.7rem 0;
    font-size: 1.5rem;
  }
}

.shop-offcanvas-cat-link:hover {
  color: #888;
}

.shop-offcanvas-cat-link--root {
  font-weight: 500;
}

.shop-offcanvas-cat-link--child {
  font-weight: 400 !important;
  font-size: 0.9rem;
  color: #555;
}

.shop-offcanvas-cat-link--child:hover {
  color: #888;
}

/* iOS segmented control  */
.seg-control {
  background: #e5e5e5;
  border-radius: 50rem;
  padding: 4px;
  display: inline-flex;
  gap: 0.25rem;
  --bs-nav-pills-border-radius: 50rem;
  --bs-nav-link-color: #000;
  --bs-nav-link-hover-color: #000;
  --bs-nav-pills-link-active-bg: #fff;
  --bs-nav-pills-link-active-color: #000;
}
.seg-control .nav-link {
  border-radius: 50rem;
  font-weight: 500;
  background: transparent;
  font-size: 0.75rem;
}
.seg-control .nav-link.active {
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}
@media (max-width: 575px) {
  .seg-control .nav-link {
    font-size: 0.75rem;
  }
}
.progress.progress-slim {
  height: 0.5rem;
}

/* Tiny-slider specific layout */
.hSlider .tns-item {
  padding: 0 !important;
}

.hSlider .slide-inner {
  position: relative;
  aspect-ratio: 21 / 9;
  margin: 0 8px;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #0a0a0a;
}

.hSlider .slide {
  background: transparent;
}

.hSlider .slide-inner img,
.hSlider .slide-inner .slide-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.hSlider .slide-inner .slide-overlay {
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
}

.hSlider .slide-inner .slide-caption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .hSlider .slide-inner {
    margin: 0 12px;
  }
}

.tns-outer .tns-nav {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #efeff2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.tns-outer .tns-nav [aria-controls] {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #717173;
  opacity: 0.9;
  border: 0;
  transition: all 0.25s;
}

.tns-outer .tns-nav [aria-controls].tns-nav-active {
  width: 28px;
  height: 6px;
  background: #1d1d1f;
  opacity: 1;
}


/* Ratio helpers */
.ratio {
  position: relative;
  width: 100%;
  --bs-aspect-ratio: 100%;
}

.ratio::before {
  content: "";
  display: block;
  padding-top: var(--bs-aspect-ratio);
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

@media (min-width: 992px) {
  .ratio-lg-32x9 {
    --bs-aspect-ratio: calc(100% * 9 / 32);
  }
}

/* Hero video container */
.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-container video.video-fullscreen {
  height: 100vh;
  object-fit: cover;
}

@media (max-width: 991px) {
  .video-container video.video-fullscreen {
    width: auto;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .with-laptop-v4-home {
    position: relative;
    min-height: 700px;
  }
  .with-laptop-v4-home::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 25%;
    background: url('../img/home/macbook-256.png') no-repeat right center;
    background-size: contain;
    z-index: 0;
  }
  .with-laptop-v4-home .row,
  .with-laptop-v4-home .col-12 {
    position: relative;
    z-index: 1;
  }
}

:root {
  --navbar-offset: 54px;
}

:root {
  --promobar-height: 0px;
}
.mt-navbar {
  margin-top: calc(var(--navbar-offset) + var(--promobar-height)) !important;
}

/* Promobar */
.promobar {
  position: fixed;
  top: var(--navbar-offset);
  left: 0;
  right: 0;
  background-color: var(--bs-dark, #212529);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  z-index: 1029;
  border: 0;
  border-radius: 0;
  box-shadow: 0 1px 0 0 var(--bs-dark, #212529);
}
.promobar .carousel-item {
  padding: 0;
}
.promobar__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.promobar__link:hover {
  color: rgba(255,255,255,.8);
}
.promobar__text {
  color: #fff;
}
.promobar__close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0.7;
  z-index: 1;
}
.promobar__close:hover {
  opacity: 1;
}

@media (min-width: 992px) {
  :root {
    --navbar-offset: 69px;
  }
}


/* Markdown content */
.markdown-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.cms-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin: 1.5rem 0;
}

.cms-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  font-variation-settings: normal;
  font-weight: 400;
}

.markdown-body strong {
  font-variation-settings: normal;
  font-weight: 700;
}

.markdown-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.markdown-body th,
.markdown-body td {
  border: 1px solid #dee2e6;
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-family: var(--font-sans-ui);
  font-size: 0.8em;
  font-weight: 400;
  font-variation-settings: normal;
}

/* ============================================
   SHOP FRONTEND
   ============================================ */

.shop-summary-box,
.shop-panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.shop-panel--outline {
  background: transparent;
}

.shop-summary-box {
  color: #212529;
}

/* Prevent "white-on-white" if Bootstrap utility classes are used inside a light summary box. */
.shop-summary-box .text-white-50,
.shop-summary-box .text-white {
  color: rgba(33, 37, 41, 0.7) !important;
}

.shop-category-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shop-category-link {
  color: #495057;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 8px 10px;
  transition: all 0.2s ease;
}

.shop-category-link:hover {
  background: #eef1f4;
  color: #212529;
}

.shop-category-link.is-active {
  background: #212529;
  color: #ffffff;
  border-color: #212529;
}

.shop-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(33, 37, 41, 0.4);
  --bs-breadcrumb-item-active-color: #212529;
  font-family: var(--font-sans-ui);
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.35;
}

.shop-breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.shop-pagination-nav {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.shop-hero-desc {
  max-width: 980px;
}

.shop-hero-img {
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
}

.pagination .page-link {
  color: #212529;
  background-color: #ffffff;
  border-color: transparent;
  border-radius: 0;
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.1;
  padding: 0.45rem 0.68rem;
  min-width: 2.1rem;
  text-align: center;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
  color: #212529;
  background-color: #f3f4f6;
  border-color: transparent;
  box-shadow: none;
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: #212529;
  border-color: transparent;
}

.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  background-color: transparent;
  border-color: transparent;
  opacity: 1;
}

.shop-product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 0 !important;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(25, 36, 54, 0.12) !important;
}

.shop-floating-atc {
  position: fixed;
  top: var(--navbar-offset);
  left: 0;
  right: 0;
  z-index: 1029;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.22s ease;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.08);
}

.shop-floating-atc.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shop-floating-atc__thumb {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.shop-floating-atc__thumb--empty {
  background: #f3f4f6;
  border: 1px solid #e9ecef;
}

.shop-floating-atc__title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  color: #212529;
}

.shop-floating-atc__meta {
  font-size: 0.73rem;
  color: #6c757d;
  line-height: 1.15;
}

.shop-floating-atc__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42px;
  transform: translateY(3px);
}

.shop-floating-atc__price {
  font-size: 0.86rem;
  font-weight: 400;
  color: #212529;
  white-space: nowrap;
}

.shop-product-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  background: #f9f8f6;
}

.shop-group-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  overflow: visible;
  padding: 4px 2px;
  scroll-snap-type: none;
}

.shop-group-item {
  display: block;
  width: 94px;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
}

.shop-group-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 6px;
  border-radius: 12px;
  border: none;
  /*background: #f3f4f6;*/
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.shop-group-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-group-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    #f3f4f6,
    #f3f4f6 10px,
    #eef1f4 10px,
    #eef1f4 20px
  );
}

.shop-group-caption {
  font-size: 0.70rem;
  text-align: center;
  color: #495057;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  .shop-product-detail-sticky {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }

  .shop-group-strip {
    gap: 4px;
    padding-left: 0;
    padding-right: 0;
  }

  .shop-group-item {
    width: 72px;
  }

  .shop-group-thumb {
    width: 56px;
    height: 56px;
  }
}

a[data-bs-target="#shopGroupDiscoverOffcanvas"] u {
  text-underline-offset: 3px;
}

.shop-group-item:hover .shop-group-thumb {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(25, 36, 54, 0.10);
}

.shop-group-item.is-active .shop-group-thumb {
  box-shadow: none;
}

.shop-group-check {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(33, 37, 41, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.shop-group-offcanvas {
  width: min(980px, 96vw) !important;
}

.shop-group-offcanvas .offcanvas-header {
  justify-content: flex-end;
  padding: 1rem 1rem 0.25rem;
  border-bottom: 0;
}

.shop-group-offcanvas .offcanvas-body {
  padding: 1rem 1.25rem 1.5rem;
  overflow-y: auto;
}

.shop-group-offcanvas-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  padding: 0.55rem;
}

.shop-group-offcanvas-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: hidden;
}

.shop-group-offcanvas-item.is-active {
  border-color: #212529;
}

.shop-group-offcanvas-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-group-offcanvas-caption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #343a40;
}

.shop-product-image--placeholder {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.shop-home-category-poster {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.shop-product-detail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f4f6;
}

.shop-product-detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shop-product-detail-gallery-item {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.shop-product-detail-gallery-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-position: center bottom;
  filter: sepia(0.11) saturate(0.9) brightness(0.96) contrast(1.03);
}

.shop-product-detail-sticky {
  position: sticky;
  top: calc(var(--navbar-offset) + var(--promobar-height, 0px));
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.shop-product-detail-title {
  font-size: 32px;
  font-variation-settings: "SOFT" 42.9, "WONK" 0, "opsz" 120, "wght" 200;
}

.shop-product-detail-first-sticky {
  top: calc(var(--navbar-offset) + var(--promobar-height, 0px));
}

.shop-product-detail-first-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: sepia(0.12) saturate(0.88) brightness(0.93) contrast(1.04);
}

.shop-product-detail-inline-thumb-image {
  width: clamp(220px, 32vw, 480px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .shop-product-detail-inline-thumb-image {
    max-height: clamp(200px, calc(100vh - var(--navbar-offset) - 500px), 400px);
  }
}

.shop-product-carousel {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f3f4f6;
  box-shadow: 0 12px 22px rgba(25, 36, 54, 0.10);
}

.shop-product-carousel-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f4f6;
}

.shop-lightbox-trigger,
.shop-product-lightbox-trigger {
  cursor: zoom-in;
}

.shop-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.shop-image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.shop-image-lightbox__viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 72px;
  user-select: none;
  transform: scale(0.996);
  opacity: 0.9;
  transition: transform 200ms ease, opacity 200ms ease;
  overflow: hidden;
}

.shop-image-lightbox__image {
  max-width: min(100%, calc(100vw - 144px));
  max-height: calc(100vh - 128px);
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  transform: scale(0.985);
  opacity: 0.92;
  transition: transform 240ms ease, opacity 240ms ease;
}

.shop-image-lightbox.is-open .shop-image-lightbox__viewport {
  transform: scale(1);
  opacity: 1;
}

.shop-image-lightbox.is-open .shop-image-lightbox__image {
  transform: scale(1);
  opacity: 1;
}

.shop-image-lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.shop-image-lightbox__btn svg {
  width: 22px;
  height: 22px;
}

.shop-image-lightbox__btn:hover {
  opacity: 1;
}

.shop-image-lightbox__btn[hidden] {
  display: none !important;
}

.shop-image-lightbox__btn--prev {
  left: 20px;
}

.shop-image-lightbox__btn--next {
  right: 20px;
}

.shop-image-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.shop-image-lightbox__close svg {
  width: 22px;
  height: 22px;
}

.shop-image-lightbox__close:hover {
  opacity: 1;
}

.shop-image-lightbox__counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: rgba(17, 24, 39, 0.65);
  letter-spacing: 0.02em;
}

body.shop-image-lightbox-open {
  overflow: hidden;
}

.shop-product-carousel-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.shop-product-carousel .carousel-indicators {
  margin-bottom: 0.6rem;
}

.shop-product-carousel .carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: rgba(17, 24, 39, 0.45);
}

.shop-product-carousel .carousel-indicators .active {
  background-color: rgba(17, 24, 39, 0.9);
}

.shop-product-carousel .carousel-item {
  transition-duration: 900ms;
}

.shop-product-detail-image--placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 0;
  background: #f8f9fb;
  text-align: center;
  padding: 1rem;
}

.shop-price {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: #121212;
}

.shop-price--list {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
}

.shop-price--large {
  font-size: 2rem;
  line-height: 1.1;
}

.shop-price--original {
  font-weight: 400;
  font-size: 0.75em;
}

.shop-variations-table thead th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #212529;
  font-weight: 600;
}

.shop-variations-table tbody td {
  font-size: 0.76rem;
  font-weight: 400;
}

.shop-variations-table .badge {
  background-color: #212529 !important;
  border-radius: 50rem;
  font-size: 0.66rem;
}

.shop-variation-picker .form-select {
  min-height: 44px;
}

.shop-payment-element {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
}

.shop-long-desc p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1920px;
  }
}

@media (max-width: 991px) {
  .shop-product-detail-image--placeholder {
    min-height: 0;
  }

  .shop-product-detail-sticky {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

@media (min-width: 1400px) {
  .shop-product-detail-first-sticky {
    position: sticky;
  }
}

@media (max-width: 580px) {
  .shop-image-lightbox__viewport {
    padding: 54px 42px;
  }

  .shop-image-lightbox__image {
    max-width: min(100%, calc(100vw - 84px));
    max-height: calc(100vh - 108px);
  }

  .shop-image-lightbox__btn {
    width: 30px;
    height: 30px;
  }

  .shop-image-lightbox__btn svg {
    width: 20px;
    height: 20px;
  }

  .shop-image-lightbox__btn--prev {
    left: 8px;
  }

  .shop-image-lightbox__btn--next {
    right: 8px;
  }

  .shop-image-lightbox__close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .shop-image-lightbox__close svg {
    width: 20px;
    height: 20px;
  }

  .shop-floating-atc .btn {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    font-size: 0.78rem;
  }

}

.shop-product-card-wrap .js-add-to-cart {
  border-radius: 50rem;
  font-weight: 400;
}

.cms-showcase-carousel {
  background: #ffffff;
}

.cms-showcase-carousel__layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.cms-showcase-carousel--full .cms-showcase-carousel__layout {
  display: block;
}

.cms-showcase-carousel__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.06;
  margin: 0 0 1rem;
}

.cms-showcase-carousel__desc {
  max-width: 35ch;
  margin: 0;
  color: #2d3339;
  font-size: 1.12rem;
}

.cms-showcase-carousel__cta {
  display: inline-block;
  margin-top: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  color: #212529;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(33, 37, 41, 0.9);
  padding-bottom: 0.20rem;
}

.cms-showcase-carousel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cms-showcase-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.cms-showcase-carousel__arrow {
  border: 0;
  background: transparent;
  color: #20252b;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.72;
  transition: opacity 160ms ease;
}

.cms-showcase-carousel__arrow:hover {
  opacity: 1;
}

.cms-showcase-carousel__intro--vcenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}

.cms-showcase-carousel__slider--overlay-arrows {
  position: relative;
}

.cms-showcase-carousel__overlay-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: 0;
  background: #ffffff;
  color: #20252b;
  width: 52px;
  height: 26px;
  border-radius: 50rem;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.13);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .cms-showcase-carousel__overlay-arrow {
    display: inline-flex;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .cms-showcase-carousel__overlay-arrow {
    display: inline-flex;
    opacity: 1;
    pointer-events: auto;
    width: 44px;
    height: 24px;
  }

  .cms-showcase-carousel__overlay-arrow--prev {
    left: 8px;
  }

  .cms-showcase-carousel__overlay-arrow--next {
    right: 8px;
  }
}

.cms-showcase-carousel__slider--overlay-arrows:hover .cms-showcase-carousel__overlay-arrow {
  opacity: 1;
  pointer-events: auto;
}

.cms-showcase-carousel__overlay-arrow--prev {
  left: -22px;
}

.cms-showcase-carousel__overlay-arrow--next {
  right: 8px;
}

.cms-showcase-carousel__overlay-arrow[disabled],
.cms-showcase-carousel__overlay-arrow.tns-disabled {
  opacity: 0.28;
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}

.cms-showcase-carousel__slider--overlay-arrows .cms-showcase-carousel__track {
  margin-top: 0;
}

.cms-showcase-carousel__track {
  margin-top: 1rem;
}

.cms-showcase-carousel__item {
  height: 100%;
}

.cms-showcase-card {
  display: block;
  height: 100%;
  color: #1c1f24;
  text-decoration: none;
}

.cms-showcase-card__media {
  aspect-ratio: 1 / 1;
  background: transparent;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.cms-showcase-card__media--portrait {
  margin-bottom: 0.55rem;
}

.cms-showcase-card__media--portrait {
  aspect-ratio: 2 / 3;
  overflow: hidden;
}

.cms-showcase-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.cms-showcase-card__media--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-showcase-card__title {
  font-size: 1.04rem;
  line-height: 1.35;
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.cms-showcase-card__subtitle {
  margin: 0.35rem 0 0;
  text-align: center;
  color: #444d57;
  font-size: 0.96rem;
}

.cms-showcase-card__price {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 1.06rem;
}

.home-categories-carousel .cms-showcase-carousel__track {
  margin-top: 0;
}

.home-category-carousel-card {
  display: block;
  position: relative;
  color: #ffffff;
  text-decoration: none;
}

.home-category-carousel-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d4d7db;
}

.home-category-carousel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 340ms ease;
}

.home-category-carousel-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 15, 0.52) 0%, rgba(14, 14, 15, 0.10) 48%, rgba(14, 14, 15, 0.0) 72%);
  pointer-events: none;
}

.home-category-carousel-card__media--placeholder {
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.04em;
}

.home-category-carousel-card__title {
  position: absolute;
  left: 2.2rem;
  bottom: 3rem;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-serif-ui);
  font-size: clamp(1.35rem, 2.8vw, 2.5rem);
  font-weight: 320;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: none;
}

.home-category-carousel-card:hover .home-category-carousel-card__media img,
.home-category-carousel-card:focus-visible .home-category-carousel-card__media img {
  opacity: 0.55;
}

.home-stories-placeholder {
  background: #f3f4f6;
}

#home-instagram-feed {
  border-top: 1px solid #ececec;
}

.home-instagram-feed__link {
  color: #1f1f1f;
  font-weight: 600;
  text-underline-offset: 0.16em;
}

.home-instagram-feed__link:hover,
.home-instagram-feed__link:focus {
  color: #000000;
}

.home-instagram-marquee {
  overflow: hidden;
  border-radius: 0.75rem;
}

.home-instagram-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.home-instagram-marquee__item {
  flex: 0 0 clamp(170px, 22vw, 260px);
  aspect-ratio: 4 / 5;
  display: block;
  overflow: hidden;
  background: #f3f4f6;
}

.home-instagram-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 340ms ease;
}

.home-instagram-marquee__item:hover img,
.home-instagram-marquee__item:focus-visible img {
  transform: scale(1.03);
}

@media (max-width: 767.98px) {
  .home-instagram-marquee {
    border-radius: 0.5rem;
  }

  .home-instagram-marquee__item {
    flex-basis: 44vw;
  }
}

.cms-showcase-carousel .tns-outer .tns-nav {
  margin-top: 1.7rem;
  padding: 10px 16px;
  background: #efeff2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

.cms-showcase-carousel__slider .tns-outer .tns-nav {
  margin-top: 1.7rem;
  padding: 10px 16px;
  background: #efeff2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-radius: 999px;
}

.cms-showcase-carousel__slider--overlay-arrows .tns-outer .tns-nav {
  margin-top: 1.2rem;
}

@media (min-width: 992px) {
  .cms-showcase-carousel__slider--overlay-arrows .tns-outer .tns-nav {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .tns-outer .tns-nav,
  .cms-showcase-carousel .tns-outer .tns-nav,
  .cms-showcase-carousel__slider .tns-outer .tns-nav,
  .cms-showcase-carousel__slider--overlay-arrows .tns-outer .tns-nav {
    background: transparent;
    box-shadow: none;
  }
}

.shop-product-card-title {
  font-size: 0.96rem;
  font-family: "Fraunces", serif;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.006em;
}

.shop-product-card-footer {
  border-top: 0;
  padding-top: 0.8rem;
}

.shop-product-card-cart-btn {
  min-width: 34px;
  height: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50rem;
  border: 0;
  border-color: transparent;
  background: transparent;
  color: #121212;
  font-size: 1.25rem;
}

.shop-product-card-cart-btn:hover,
.shop-product-card-cart-btn:focus,
.shop-product-card-cart-btn:active {
  border: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #121212;
  opacity: 1;
}

.shop-product-card-cart-btn .bi {
  line-height: 1;
}

.shop-product-stock-note {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .cms-showcase-carousel__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cms-showcase-carousel__title {
    margin-bottom: 0.8rem;
  }

  .cms-showcase-carousel__desc {
    max-width: none;
    font-size: 1rem;
  }

  .cms-showcase-carousel__head {
    justify-content: flex-end;
  }

  .cms-showcase-carousel__track {
    margin-top: 0.6rem;
  }
}



.shop-cart-link,
.shop-cart-link-mobile {
  position: relative;
}

.shop-cart-badge {
  position: absolute;
  top: -1px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 18px;
  text-align: center;
  font-weight: 700;
  padding: 0 4px;
}

.shop-cart-link-mobile .shop-cart-badge {
  position: static;
  margin-left: 4px;
}

.shop-cart-lines {
  border-top: 1px solid #e5e7eb;
}

.shop-cart-line {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.shop-cart-line__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: #ffffff;
  object-fit: contain;
  display: block;
}

.shop-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 1px;
  overflow: hidden;
}

.shop-cart-qty button {
  border: 0;
  background: transparent;
  width: 32px;
  height: 30px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
}

.shop-cart-qty button:hover {
  background: rgba(0, 0, 0, 0.05);
}

.shop-cart-qty input {
  width: 34px;
  border: 0;
  text-align: center;
  font-weight: 400;
  height: 30px;
  background: transparent;
  font-size: 0.875rem;
}

.shop-cart-qty input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.shop-cart-qty input[type="number"]::-webkit-outer-spin-button,
.shop-cart-qty input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-cart-item-row--unavailable {
  opacity: 0.5;
}

@media (max-width: 991.98px) {
  .shop-cart-line {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.3rem 0;
  }

}

/* ── Wishlist Button ─────────────────────────────────────── */

.shop-wishlist-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 !important;
  border-radius: 0 !important;
}

.shop-wishlist-btn.is-active {
  color: #dc3545;
  border-color: #dc3545;
}

[data-primary-atc] {
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
}

/* ── Cart Upsell ──────────────────────────────────────────── */



.cart-upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .cart-upsell-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.cart-upsell-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.cart-upsell-card:hover {
  color: inherit;
}

.cart-upsell-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  background: var(--color-bg-3);
}

.cart-upsell-card__img--placeholder {
  display: block;
}

.cart-upsell-card__title {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cart-upsell-card__price {
  font-size: 0.8rem;
  color: #495057;
}

/* ── Fine Cart Upsell ─────────────────────────────────────── */

.shop-cart-coupon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-cart-coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.76rem;
  line-height: 1.1;
}

.shop-cart-coupon-pill.is-applied {
  background: rgba(25, 135, 84, 0.12);
  color: #0f5132;
}

.shop-cart-coupon-pill button {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-weight: 700;
  line-height: 1;
}

.shop-checkout-summary-sticky,
.shop-cart-summary-sticky {
  position: sticky;
  top: 96px;
}

.shop-checkout-layout {
  background: linear-gradient(to right, #ffffff 0 50%, var(--color-bg-3) 50% 100%);
}

.shop-checkout-layout .container-xxl {
  max-width: 1360px;
}

.shop-checkout-aside-col {
  border-left: 1px solid #e6e6e6;
}

.shop-checkout-aside-wrap {
  padding-top: 0;
}

.shop-checkout-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.shop-checkout-summary-card {
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shop-checkout-mobile-summary {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #f7f7f7;
}

.shop-checkout-mobile-summary-toggle {
  width: 100%;
  color: #111827;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.98rem;
  font-weight: 500;
}

.shop-checkout-mobile-summary-toggle:hover,
.shop-checkout-mobile-summary-toggle:focus {
  color: #111827;
  text-decoration: none;
}

.shop-checkout-mobile-summary-toggle__left {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.shop-checkout-mobile-summary-toggle .bi {
  transition: transform 0.2s ease;
}

.shop-checkout-mobile-summary-toggle:not(.collapsed) .bi {
  transform: rotate(180deg);
}

.shop-checkout-mobile-summary-body {
  border-top: 1px solid #e6e6e6;
  padding: 0.9rem 1rem;
}

.shop-checkout-form .form-label {
  margin-bottom: 6px;
}

.shop-checkout-separator {
  margin: 0.35rem 0 0.15rem;
  border: 0;
  border-top: 1px solid #edf1f5;
  opacity: 1;
}

#shopBillingBlock > .shop-checkout-separator {
  margin-top: 0.85rem;
}

.shop-checkout-billing-title {
  margin-top: 0.8rem;
}

.shop-checkout-options {
  display: grid;
  gap: 0.55rem;
}

.shop-checkout-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0.82rem 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.shop-checkout-option:hover {
  border-color: #cbd5e1;
  background: #fafafa;
}

.shop-checkout-option:has(input:checked) {
  border-color: #94a3b8;
  background: #f8fafc;
}

.shop-checkout-option input[type="radio"] {
  margin-top: 0;
}

#shopCheckoutPayBtn {
  min-height: 56px;
  padding: 0.95rem 1.75rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin: 0.85rem 0 0.7rem;
}

#shopCheckoutPaymentOffcanvasPayBtn {
  min-height: 56px;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.shop-checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.2rem;
  font-family: var(--font-sans-ui);
  font-size: 0.9em;
  color: #212529;
  text-decoration: none;
}

.shop-checkout-back-link:hover,
.shop-checkout-back-link:focus {
  color: #212529;
  text-decoration: none;
}

.form-check-input:focus {
  border-color: #111827;
  box-shadow: none;
}

.shop-checkout-summary-card #shopCheckoutSummaryDesktop,
#shopCheckoutSummaryMobile {
  color: #111827 !important;
}

.shop-checkout-summary-items {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1rem;
}

.shop-checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.shop-checkout-summary-item__media {
  position: relative;
  width: 60px;
  height: 60px;
  border: 4px solid #ffffff;
  border-radius: 6px;
  background: #fff;
  overflow: visible;
  flex-shrink: 0;
  box-shadow: var(--bs-box-shadow-sm);
}

.shop-checkout-summary-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.shop-checkout-summary-item__qty {
  position: absolute;
  top: -9px;
  right: -15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #303030;
  color: #fff;
  font-size: 0.74rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 1px;
  font-weight: 700;
  border: 2px solid #ffffff;
  z-index: 2;
}

.shop-checkout-summary-item__content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 5px;
}

.shop-checkout-summary-item__body {
  min-width: 0;
  padding-left: 0.1rem;
}

.shop-checkout-summary-item__title {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #374151;
}

.shop-checkout-summary-item__meta {
  margin: 0.18rem 0 0;
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.3;
}

.shop-checkout-summary-item__price {
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 0.02rem;
  color: #374151;
}

.shop-checkout-summary-item__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  white-space: nowrap;
}

.shop-checkout-summary-item__price-old {
  font-size: 0.75rem;
  line-height: 1.2;
  color: #6b7280;
  text-decoration: line-through;
}

.shop-summary-coupon,
.shop-checkout-summary-coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  margin: 1.9rem 0 0.7rem;
}

.shop-summary-coupon .form-control,
.shop-checkout-summary-coupon .form-control {
  border-color: #d8d8d8;
  border-radius: 0;
  background: #fff;
}

.shop-summary-coupon .btn,
.shop-checkout-summary-coupon .btn {
  border-radius: 0;
  min-width: 98px;
}

.shop-checkout-summary-rows {
  border-top: 1px solid #e5e7eb;
}

.shop-checkout-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.58rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.shop-checkout-summary-row--total {
  margin-top: 0.15rem;
  padding-top: 0.9rem;
  border-bottom: 0;
  border-top: 1px solid #dbe3ea;
}

.shop-checkout-summary-row--total span {
  font-weight: 500;
}

.shop-checkout-summary-row--total strong {
  font-size: 1.34rem;
  letter-spacing: -0.01em;
}

#about-store-map {
  filter: grayscale(55%) contrast(1.02) brightness(1.12);
}
.about-store-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (max-width: 991.98px) {
  .shop-checkout-layout {
    background: #ffffff;
  }

  #shopCheckoutSummaryMobile .shop-checkout-summary-items {
    margin-top: 1.5rem;
  }

  .shop-checkout-summary-sticky,
  .shop-cart-summary-sticky {
    position: static;
    top: auto;
  }

  .shop-checkout-aside-col {
    border-left: 0;
    background: transparent;
  }
}

@media (min-width: 992px) {
  .about-store-map {
    min-height: 0;
  }
}

/* Account pages */
.account-shell {
  max-width: 1080px;
}

.account-auth-card {
  border: none;
  border-radius: 0;
  padding: 1.4rem;
  background: #ffffff;
  box-shadow: none;
}

.account-shell h1.h2 {
  font-weight: 400;
  letter-spacing: -0.012em;
}

.account-auth-card h2 {
  font-weight: 400;
  letter-spacing: -0.01em;
}

.account-auth-card .btn {
  min-height: 46px;
  font-weight: 500;
}

.account-code-input {
  font-size: 1.15rem;
  text-align: center;
  letter-spacing: 0.3em;
  font-weight: 700;
}

#ordersList > article {
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 14px !important;
}

@media (min-width: 992px) {
  .account-auth-card {
    padding: 1.5rem;
  }
}

/* Frontend search offcanvas */
.modal-title,
.offcanvas-title {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-header,
.modal-footer {
  border-color: var(--ui-border-soft);
}

.site-search-section {
  min-width: 0;
}

.site-search-section + .site-search-section {
  margin-top: 1.45rem;
}

.site-search-section__title {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin-bottom: 0.48rem;
}

.site-search-section__items {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.site-search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem 0.92rem;
  color: #111;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  min-height: 74px;
  height: 100%;
}

.site-search-item-col {
  display: flex;
}

.site-search-item-col .site-search-item {
  width: 100%;
}

.site-search-item:hover {
  border-color: #e9eef5;
  background: #f8fafc;
  color: #111;
}

.site-search-item.is-active {
  border-color: #e9eef5;
  background: #f1f5f9;
  color: #111;
}

.site-search-item__title {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.25;
}

.site-search-item__content {
  min-width: 0;
  flex: 1;
}

.site-search-item__thumb-wrap {
  width: 112px;
  height: 112px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 112px;
  background: transparent;
  border: 0;
}

.site-search-item__thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.site-search-item__meta {
  font-size: 0.73rem;
  color: #64748b;
  margin-top: 0.22rem;
  line-height: 1.3;
}

.site-search-item__icon {
  font-size: 0.72rem;
  opacity: 0;
  flex: 0 0 auto;
  transition: opacity 0.16s ease;
}

.site-search-item:hover .site-search-item__icon,
.site-search-item.is-active .site-search-item__icon {
  opacity: 0.58;
}

.site-search-input-line {
  border: 0;
  border-bottom: 2px solid #d0d7de;
  border-radius: 0;
  background: transparent;
  padding: 0.42rem 0.1rem 0.46rem;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none !important;
}

.site-search-input-line:focus {
  border-color: #111;
}

.site-search-input-line::placeholder {
  color: #9aa3af;
  font-weight: 400;
}

.cms-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  border: 0;
  border-radius: 16px;
  background: #fff;
}

.cms-state--compact {
  padding: 1rem;
  border-radius: 12px;
}

.cms-state__icon {
  font-size: 3rem;
  line-height: 1;
  color: #6c757d;
  margin-bottom: 0.8rem;
}

.cms-state__title {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  letter-spacing: 0.01em;
  margin: 0;
}

.cms-state__text {
  color: #6c757d;
  line-height: 1.55;
  max-width: 44ch;
  margin: 0.35rem 0 0;
}

.cms-state__spinner {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.55rem;
}

.cms-state--error .cms-state__icon {
  color: #dc3545;
}

.cms-state--error .cms-state__title,
.cms-state--error .cms-state__text {
  color: #842029;
}

.cms-state--loading .cms-state__text {
  color: #495057;
}

.site-search-state {
  margin-top: 0.5rem;
}

.site-search-state .cms-state__icon {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .site-search-section + .site-search-section {
    margin-top: 1.15rem;
  }
}

/* Home hero banners */
#home-banner-slot-1,
#home-banner-slot-1 .carousel-item {
  overflow: hidden;
}

#home-banner-slot-1 .carousel-indicators {
  z-index: 10;
}

.home-slot-hero-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  object-position: center;
  transform: none;
  transform-origin: center;
}

/* Desktop/tablet hero: keep first fold aligned with navbar + promobar offsets. */
@media (min-width: 768px) {
  #home-banner-slot-1 .carousel-item,
  #home-banner-slot-1 .carousel-item > a,
  #home-banner-slot-1 .carousel-item > img {
    height: calc(100vh - var(--navbar-offset, 69px));
  }

  .home-slot-hero-image {
    height: calc(100vh - var(--navbar-offset, 69px));
    object-fit: cover;
  }
}

/* Mobile hero: keep fullscreen crop style. */
@media (max-width: 767.98px) {
  .home-slot-hero-image {
    height: calc(100vh - var(--navbar-offset, 60px));
    object-fit: cover;
    transform: scale(1.06);
  }
}

/* Main header layout */
.shop-main-nav {
  padding: 0.17rem 0;
}

.shop-main-nav__desktop {
  grid-template-columns: 1fr auto 1fr;
  min-height: 64px;
}

.shop-main-nav__left .navbar-nav {
  flex-wrap: wrap;
}

.shop-main-nav__link {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--ui-text-muted);
}

.shop-main-nav__link:hover,
.shop-main-nav__link:focus {
  color: #1f1f1f;
}

.shop-main-nav .nav-icon-btn {
  color: #5d2c4b;
  text-decoration: none;
  padding: 0.2rem 0.35rem !important;
  border: 0;
  box-shadow: none;
  overflow: visible;
  border-radius: var(--cc-radius-pill) !important;
}

.shop-main-nav .nav-icon-btn .bi {
  font-size: 1.32rem;
  line-height: 1;
}

.shop-main-nav .nav-icon-btn--with-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.7rem;
}

.shop-main-nav__desktop .shop-main-nav__cart-btn {
  margin-left: 1.1rem;
}

.shop-main-nav__right {
  overflow: visible;
  padding-right: 0.25rem;
}

.shop-main-nav .nav-icon-btn__label {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ui-text-muted);
  line-height: 1;
}

.shop-main-nav .nav-icon-btn:hover,
.shop-main-nav .nav-icon-btn:focus {
  color: #3d1c30;
}

.shop-main-nav .navbar-toggler {
  padding: 0.1rem;
}

.shop-main-nav .hamburger-inner,
.shop-main-nav .hamburger-inner:before,
.shop-main-nav .hamburger-inner:after {
  background-color: #5d2c4b;
}

.shop-nav-offcanvas {
  width: min(82vw, 420px) !important;
}

.shop-nav-offcanvas .offcanvas-header {
  justify-content: space-between;
}

.shop-nav-offcanvas-menu .nav-link {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.42rem 0;
}

.shop-offcanvas-cat-indent-1 { padding-left: 1.1rem; }
.shop-offcanvas-cat-indent-2 { padding-left: 2.2rem; }
.shop-offcanvas-cat-indent-3 { padding-left: 3.3rem; }
.shop-offcanvas-cat-indent-4 { padding-left: 4.4rem; }
.shop-offcanvas-cat-indent-5 { padding-left: 5.5rem; }
.shop-offcanvas-cat-indent-6 { padding-left: 6.6rem; }

.shop-category-desc {
  max-width: 980px;
}

.shop-product-tags-line {
  margin-top: 1.25rem;
}

.shop-product-price-range {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.shop-product-price-main {
  font-family: "Poppins", arial, helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
}

.shop-product-price-main .shop-price--original {
  font-size: 0.95rem;
  font-weight: 400;
}

#shop-categories .display-5,
#shop-products .display-5,
.shop-product-detail-sticky .display-6 {
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

#shop-products .h6.text-uppercase {
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--ui-text-muted);
}

.shop-results-count {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.shop-results-count strong {
  color: var(--ui-text-strong);
  font-weight: 600;
}

#orderDetailModal .modal-body {
  line-height: 1.6;
}

#ordersList > article .small {
  letter-spacing: 0.005em;
}

.showcase-collection-placeholder {
  height: 200px;
}

.showcase-collection-placeholder-icon {
  font-size: 3rem;
}

.collection-editorial-card {
  text-decoration: none;
  color: #fff;
  display: block;
}

.collection-editorial-card__inner {
  position: relative;
  overflow: hidden;
  background: #eceae7;
}

.collection-editorial-card__media {
  width: 100%;
  height: clamp(520px, 82vh, 1080px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.collection-editorial-card__media--placeholder {
  background: #eceae7;
}

.collection-editorial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0) 62%);
}

.collection-editorial-card__meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
}

.collection-editorial-card__title {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0.015em;
  font-size: clamp(1.15rem, 1.6vw, 2.05rem);
}

.collection-editorial-card__date {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-collection-story-card {
  text-decoration: none;
  color: #ffffff;
}

.shop-collection-story-card__inner {
  position: relative;
  overflow: hidden;
  background: #eceae7;
  border-radius: 0.35rem;
}

.shop-collection-story-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.shop-collection-story-card__media--placeholder {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #9f9f9f 0%, #7e7e7e 100%);
}

.shop-collection-story-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 42%, rgba(0, 0, 0, 0) 68%);
}

.shop-collection-story-card__meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
}

.shop-collection-story-card__title {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  line-height: 1.05;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.3vw, 1.55rem);
}

.shop-collection-story-card__count {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

@media (max-width: 991.98px) {
  .collection-editorial-card__media {
    height: clamp(420px, 70vh, 860px);
  }
}

.hover-lift {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 991.98px) {
  .shop-main-nav {
    padding: 0.7rem 0;
  }
}

@media (max-width: 767.98px) {
  .shop-product-detail-sticky .display-6 {
    font-size: 2.05rem;
    line-height: 1.12;
  }
}

@media (max-width: 991.98px) {
  .shop-main-nav .nav-icon-btn {
    padding: 0.18rem 0.34rem;
  }

  .shop-main-nav__mobile .nav-icon-btn .bi {
    font-size: 1.17rem !important;
  }

  .shop-main-nav__mobile .shop-mobile-menu-toggle {
    margin-left: 0.75rem;
    padding-left: 0.6rem;
  }

  .shop-main-nav .nav-icon-btn--with-label {
    margin-left: 0;
  }

  .shop-main-nav .nav-icon-btn__label {
    display: none;
  }

  .shop-nav-offcanvas-menu .nav-link {
    font-size: 2.3rem;
  }
}

@media (max-width: 511.98px) {
  .shop-mobile-whatsapp {
    display: none !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .shop-main-nav__center .thumb-192 {
    width: 170px;
  }

  .shop-main-nav__link {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .shop-main-nav .nav-icon-btn--with-label {
    margin-left: 0.5rem;
  }

  .shop-main-nav__desktop .shop-main-nav__cart-btn {
    margin-left: 0.85rem;
  }

/* ============================================
   GDPR MODAL
   ============================================ */

#modalGDPR .modal-content {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

#modalGDPR .form-check-input:checked {
  background-color: var(--color-bg-1);
  border-color: var(--color-bg-1);
}

#modalGDPR .btn-gdpr-delete {
  color: var(--color-bg-1);
  text-decoration: underline;
}

#modalGDPR .btn-gdpr-delete:hover {
  opacity: 0.75;
}
}

/* ============================================
   SHOP ADD-TO-CART OFFCANVAS
   ============================================ */

/* Base offcanvas sizing */
.shop-atc-offcanvas {
  width: 435px !important;
  max-width: 100%;
  overflow: visible;
  isolation: isolate;
  background-color: #fff;
  --bs-offcanvas-transition: transform 0.6s ease-in-out !important;
}

/* Disable global offcanvas fade-in (lines 1327-1337) for this offcanvas
   and add bg-white to cover the z-index:-1 drawer behind */
.shop-atc-offcanvas .offcanvas-body,
.shop-atc-offcanvas .offcanvas-header,
.shop-atc-offcanvas .offcanvas-footer {
  opacity: 1 !important;
  transition: none !important;
  background-color: #fff;
  position: relative;
  z-index: 3;
}

/* Footer: sticky buttons at the bottom */
.shop-atc-offcanvas .offcanvas-footer {
  flex-shrink: 0;
}

/* ── External drawer: absolute-positioned to the left of the offcanvas ── */
.shop-atc-related-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 280px;
  z-index: -1;
  background-color: #f5f0eb;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

.shop-atc-offcanvas.is-related-open .shop-atc-related-panel {
  transform: translateX(0);
  pointer-events: auto;
}

.shop-atc-related-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Drawer title: fixed at top */
.shop-atc-related-title {
  padding: 3.75rem 0.95rem 1.25rem 0.95rem;
  margin: 0;
  flex-shrink: 0;
}

/* Drawer list: scrolls independently */
.shop-atc-related-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 2.75rem;
  margin-left: 0;
  margin-right: 0;
}

.shop-atc-related-product {
  transition: opacity 0.15s ease;
  margin-bottom: 1.5rem;
}

.shop-atc-related-product:hover {
  opacity: 0.75;
}

.shop-atc-related-thumb {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eae5df;
}

.shop-atc-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) saturate(0.88) brightness(0.93) contrast(1.04);
  display: block;
}

.shop-atc-related-thumb-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #e9ecef;
}

/* Product meta */
.shop-atc-product-meta > div {
  margin-bottom: 0.35rem;
}

.shop-atc-product-meta > div:last-child {
  margin-bottom: 0;
}

.shop-atc-product-image {
  width: 96px;
  flex: 0 0 96px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f8f9fa;
}

.shop-atc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.06) saturate(0.95) brightness(0.97);
}

.shop-atc-product-meta {
  min-width: 0;
}

.shop-atc-product-summary {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.shop-cart-aside-offcanvas {
  width: 560px !important;
  max-width: 100%;
}

.shop-cart-aside-offcanvas .offcanvas-body {
  overflow-y: auto;
  min-height: 0;
}

.shop-cart-aside-offcanvas .offcanvas-footer {
  text-align: center;
}

.shop-cart-aside-summary-panel {
  width: 340px;
  background-color: #f5f0eb;
}

.shop-cart-aside-summary-inner {
  overflow-y: auto;
  min-height: 0;
}

.shop-cart-aside-summary-title {
  padding-bottom: 1rem;
}

.shop-cart-aside-summary-content {
  padding: 0 1.75rem 2rem;
}

.shop-cart-aside-offcanvas [data-cart-content] .shop-cart-lines {
  border-top: 0;
}

@media (min-width: 768px) {
  .shop-atc-offcanvas .offcanvas-body {
    overflow-y: auto;
  }

  .shop-atc-product-summary {
    display: block;
  }

  .shop-atc-product-image {
    width: 100%;
    flex: 0 0 auto;
  }

  .shop-atc-product-meta {
    margin-top: 0.9rem;
  }
}

/* ── Mobile: hide external drawer, full-width offcanvas ── */
@media (max-width: 767.98px) {
  .shop-atc-offcanvas {
    width: 100% !important;
    overflow-y: auto;
  }

  .shop-cart-aside-offcanvas {
    width: 100% !important;
    max-width: 100%;
  }

  .shop-cart-aside-summary-panel {
    width: auto;
  }

  .shop-cart-aside-summary-content {
    padding: 0 0.75rem 1.25rem;
  }

  .shop-atc-related-panel {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    z-index: auto;
    background-color: transparent;
    transform: none;
    transition: none;
    overflow: visible;
    margin-top: 1.25rem !important;
  }

  .shop-atc-related-inner {
    display: block;
    height: auto;
  }

  .shop-atc-offcanvas .offcanvas-body {
    order: 2;
    overflow: visible;
    flex: 0 0 auto;
  }

  .shop-atc-offcanvas .offcanvas-header {
    order: 1;
    position: sticky;
    top: 0;
    z-index: 4;
  }

  .shop-atc-offcanvas .offcanvas-footer {
    order: 4;
  }

  .shop-atc-related-panel {
    order: 3;
  }

  .shop-atc-related-title {
    padding: 0 0.75rem;
    text-align: left !important;
  }

  .shop-atc-related-list {
    overflow: visible;
    padding: 0 0.75rem;
  }
}
