/** Shopify CDN: Minification failed

Line 577:0 Expected "}" to go with "{"

**/
/* VÉLORE — Online Store 2.0 theme */
:root {
  --velore-black: #050505;
  --velore-white: #fff;
  --velore-gold: #c7a75b;
  --velore-cream: #f7f7f5;
  --velore-charcoal: #151515;
  --shadow-soft: 0 18px 55px rgb(5 5 5 / 9%);
  --transition: 220ms cubic-bezier(.2, .7, .2, 1);
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-foreground, var(--velore-black));
  background: var(--color-background, var(--velore-cream));
  font-family: var(--font-body-family, Arial, sans-serif);
  font-size: calc(16px * var(--font-body-scale, 1));
  font-style: var(--font-body-style, normal);
  font-weight: var(--font-body-weight, 400);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.drawer-open, body.modal-open { overflow: hidden; }
img, svg, video, model-viewer { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { color: inherit; font: inherit; }
button, summary { cursor: pointer; }
button { border: 0; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
h1, h2, h3, h4 {
  color: inherit;
  font-family: var(--font-heading-family, Georgia, serif);
  font-style: var(--font-heading-style, normal);
  font-weight: var(--font-heading-weight, 500);
  letter-spacing: -.025em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.5rem, calc(7vw * var(--font-heading-scale, 1)), 6rem); }
h2 { font-size: clamp(2rem, calc(4.5vw * var(--font-heading-scale, 1)), 4.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
::selection { color: var(--velore-black); background: var(--velore-gold); }

:focus-visible { outline: 2px solid var(--velore-gold); outline-offset: 3px; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important;
  margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important; border: 0 !important;
}
.visually-hidden:focus, .skip-to-content-link:focus {
  position: fixed !important; z-index: 9999; top: 10px; left: 10px; width: auto !important; height: auto !important;
  margin: 0 !important; padding: 12px 18px !important; clip: auto !important; color: var(--velore-black); background: var(--velore-gold);
}
.list-unstyled { margin: 0; padding: 0; list-style: none; }
.page-width { width: min(100%, var(--page-width, 1320px)); margin-inline: auto; padding-inline: max(20px, var(--page-gutter, 24px)); }
.page-width--narrow { max-width: 880px; }
.page-width--narrow-wide { max-width: 1220px; }
.page-width--article { max-width: 1140px; }
.section, .section-spacing { padding-block: clamp(54px, var(--section-spacing, 80px), 120px); }
.content-for-layout { min-height: 50vh; }
.text-small { font-size: .84rem; }
.eyebrow {
  margin-bottom: 14px; color: var(--velore-gold); font-size: .72rem; font-weight: 700;
  letter-spacing: .19em; line-height: 1.3; text-transform: uppercase;
}
.rte > :last-child { margin-bottom: 0; }
.rte a { color: var(--velore-gold); text-decoration: underline; text-underline-offset: 3px; }
.rte ul, .rte ol { padding-left: 1.25rem; }
.rte img { margin-block: 2rem; }
.placeholder-svg { width: 100%; height: 100%; color: #92928e; background: #e8e8e4; }
.media { position: relative; overflow: hidden; background: #e9e9e5; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--square { aspect-ratio: 1; }
.media--landscape { aspect-ratio: 16 / 10; }
.media:not(.media--adapt) > img, .media:not(.media--adapt) > svg { width: 100%; height: 100%; object-fit: cover; }

.color-scheme-1, .color-scheme-4 { color: var(--velore-black); background: var(--velore-cream); }
.color-scheme-2 { color: var(--velore-white); background: var(--velore-black); }
.color-scheme-3 { color: var(--velore-white); background: var(--velore-charcoal); }
.color-scheme-5 { color: var(--velore-black); background: var(--velore-gold); }

.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 26px;
  border: 1px solid transparent; border-radius: var(--button-radius, 0); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; line-height: 1.2; text-align: center; text-transform: uppercase; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--velore-black); background: var(--velore-gold); border-color: var(--velore-gold); }
.button--primary:hover { color: var(--velore-white); background: var(--velore-black); border-color: var(--velore-black); }
.button--secondary { color: currentColor; background: transparent; border-color: currentColor; }
.button--secondary:hover { color: var(--velore-black); background: var(--velore-gold); border-color: var(--velore-gold); }
.button--text { min-height: auto; padding: 6px 0; color: currentColor; border: 0; border-bottom: 1px solid currentColor; }
.button--full { width: 100%; }
.button[disabled] { cursor: not-allowed; opacity: .48; transform: none; }
.button-group { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 7px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: ''; width: 100%; height: 1px; position: absolute; }
.text-link svg { width: 16px; }
.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.icon-button, .site-header__icon-button { display: inline-grid; width: 44px; height: 44px; place-items: center; color: inherit; background: transparent; }

input, select, textarea {
  width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid rgb(5 5 5 / 22%); border-radius: 0;
  color: var(--velore-black); background: var(--velore-white); box-shadow: none;
}
textarea { resize: vertical; }
label { font-size: .82rem; font-weight: 600; }
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label span { font-weight: 400; opacity: .7; }
.field-row { display: grid; gap: 0 18px; }
.form-message { margin-bottom: 20px; padding: 14px 16px; border: 1px solid; }
.form-message--success { color: #1c5c3b; background: #edf7f1; }
.form-message--error { color: #8b251d; background: #fff1f0; }

/* Announcement + navigation */
.announcement-bar { position: relative; z-index: 50; color: var(--velore-black); background: var(--velore-gold); }
.announcement-bar__inner { display: flex; min-height: 35px; align-items: center; justify-content: center; }
.announcement-bar__text { margin: 0; font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.announcement-bar__link-label { margin-left: 8px; padding-bottom: 1px; border-bottom: 1px solid; }
.site-header { position: relative; z-index: 45; color: var(--velore-white); background: var(--velore-black); border-bottom: 1px solid rgb(255 255 255 / 10%); }
.site-header--sticky { position: sticky; top: 0; }
.site-header__inner { display: grid; min-height: var(--header-height); grid-template-columns: 44px 1fr auto; align-items: center; gap: 8px; }
.site-header__logo { display: inline-flex; justify-self: center; letter-spacing: .18em; text-transform: uppercase; }
.site-header__logo-image { width: auto; max-height: 45px; }
.site-header__logo-text { color: var(--velore-white); font-family: var(--font-heading-family, Georgia, serif); font-size: 1.25rem; letter-spacing: .2em; }
.site-header__navigation { display: none; }
.site-header__actions { display: flex; align-items: center; justify-self: end; }
.site-header__account-link { display: none; }
.site-header__cart-link { position: relative; }
.site-header__cart-count { position: absolute; top: 4px; right: 1px; display: grid; min-width: 17px; height: 17px; place-items: center; padding: 0 4px; border-radius: 20px; color: var(--velore-black); background: var(--velore-gold); font-size: .6rem; font-weight: 700; }
.mobile-menu summary { list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.site-header__close-icon { display: none; }
.mobile-menu[open] .site-header__close-icon { display: block; }
.mobile-menu[open] summary > svg { display: none; }
.mobile-menu__panel { position: fixed; z-index: 44; inset: calc(35px + var(--header-height)) 0 0; overflow-y: auto; padding: 28px 24px 50px; color: var(--velore-white); background: var(--velore-black); }
.mobile-menu__link { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgb(255 255 255 / 13%); font-family: var(--font-heading-family, Georgia, serif); font-size: 1.45rem; }
.mobile-menu__children { padding: 8px 0 14px 18px; }
.mobile-menu__child-link { display: block; padding: 9px 0; opacity: .78; }
.mobile-menu__submenu summary { list-style: none; }

/* Hero and home sections */
.hero { position: relative; min-height: 620px; display: grid; overflow: hidden; }
.hero--medium { min-height: 570px; }
.hero--large { min-height: min(820px, 88vh); }
.hero--full { min-height: calc(100svh - 35px - var(--header-height)); }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__image { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { background: linear-gradient(90deg, rgb(5 5 5 / calc(var(--hero-overlay-opacity) + .25)), rgb(5 5 5 / calc(var(--hero-overlay-opacity) * .35))); }
.hero__content { position: relative; z-index: 2; display: flex; align-items: center; padding-block: 80px; }
.hero--content-center .hero__content { justify-content: center; }
.hero--content-right .hero__content { justify-content: flex-end; }
.hero__content-inner { width: min(100%, 700px); }
.hero--text-center .hero__content-inner { text-align: center; }
.hero--text-right .hero__content-inner { text-align: right; }
.hero__heading { max-width: 12ch; margin-bottom: 22px; color: var(--velore-white); text-wrap: balance; }
.hero__text { max-width: 540px; margin-bottom: 30px; color: rgb(255 255 255 / 85%); font-size: 1.05rem; }
.hero--text-center .hero__text { margin-inline: auto; }
.hero--text-right .hero__text { margin-left: auto; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero--text-center .hero__actions { justify-content: center; }
.hero--text-right .hero__actions { justify-content: flex-end; }
.hero .button--secondary { color: var(--velore-white); }

.section-heading { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.section-heading h2, .section-heading__title { margin: 0; }
.section-heading__text, .section-heading > p { max-width: 520px; margin: 0; opacity: .72; }
.section-heading--center { align-items: center; text-align: center; }
.section-heading--split { display: flex; flex-direction: column; }
.featured-collections__grid, .category-tiles__grid { display: grid; grid-auto-columns: 84%; grid-auto-flow: column; gap: 14px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.featured-collections__item, .category-tiles__item { scroll-snap-align: start; }
.collection-card, .category-tile { position: relative; display: block; overflow: hidden; border-radius: var(--card-radius, 0); }
.collection-card__media, .category-tile__media { overflow: hidden; }
.collection-card__image, .category-tile__image { transition: transform 700ms cubic-bezier(.2, .7, .2, 1); }
.collection-card:hover .collection-card__image, .category-tile:hover .category-tile__image { transform: scale(1.035); }
.featured-collections .collection-card__content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 24px 20px; color: var(--velore-white); background: linear-gradient(transparent, rgb(5 5 5 / 78%)); }
.featured-collections .collection-card__title { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 0; font-size: 1.65rem; }
.category-tile__overlay { position: absolute; inset: 0; background: rgb(5 5 5 / var(--tile-overlay-opacity)); }
.category-tile__content { z-index: 2; }
.category-tile__content--overlay { position: absolute; right: 0; bottom: 0; left: 0; padding: 26px 22px; color: var(--velore-white); background: linear-gradient(transparent, rgb(5 5 5 / 75%)); }
.category-tile__content--below { padding: 18px 2px; }
.category-tile__title { margin: 6px 0; font-size: 1.85rem; }
.category-tile__link { margin-top: 4px; }

.editorial-split { padding: 0; }
.editorial-split__inner { display: grid; }
.editorial-split__media { min-height: 520px; border-radius: 0; }
.editorial-split__image { width: 100%; height: 100%; object-fit: cover; }
.editorial-split__content { display: flex; min-height: 450px; align-items: center; padding: 60px 24px; color: var(--velore-white); background: var(--velore-charcoal); }
.editorial-split__content-inner { width: min(100%, 560px); margin-inline: auto; }
.editorial-split__heading { margin-bottom: 24px; }
.editorial-split__text { margin-bottom: 28px; color: rgb(255 255 255 / 72%); }
.editorial-split__content--center { text-align: center; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 12px; }
.product-grid__item { min-width: 0; }
.product-card { position: relative; min-width: 0; }
.product-card__media { border-radius: var(--card-radius, 0); background: #eaeae7; }
.product-card__media-link { display: block; height: 100%; }
.product-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease, opacity 400ms ease; }
.product-card__image--secondary { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card__image--secondary { opacity: 1; }
.product-card:hover .product-card__media-link > .product-card__image:not(.product-card__image--secondary) { opacity: 0; }
.product-card__badges { position: absolute; z-index: 2; top: 10px; left: 10px; display: flex; gap: 5px; }
.badge { display: inline-flex; padding: 5px 8px; color: var(--velore-white); background: var(--velore-black); font-size: .61rem; font-weight: 700; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.badge--sale { color: var(--velore-black); background: var(--velore-gold); }
.product-card__quick-add { position: absolute; z-index: 3; right: 10px; bottom: 10px; left: 10px; opacity: 0; transform: translateY(8px); transition: opacity var(--transition), transform var(--transition); }
.product-card:hover .product-card__quick-add, .product-card:focus-within .product-card__quick-add { opacity: 1; transform: none; }
.product-card__information, .product-card__content { padding: 14px 2px 0; }
.product-card__vendor { margin: 0 0 4px; color: #73736f; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.product-card__title { margin: 0 0 5px; font-family: var(--font-body-family, Arial, sans-serif); font-size: .9rem; font-weight: 600; letter-spacing: 0; line-height: 1.4; }
.price { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.price__container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.price__compare { color: #777; font-size: .82rem; }
.price__current { font-size: .86rem; }
.price--on-sale .price__current { color: #8a5a10; }
.price__badges { display: flex; }
.rating { display: flex; align-items: center; gap: 8px; color: var(--velore-gold); font-size: .72rem; }
.featured-products__mobile-link { margin-top: 30px; text-align: center; }

/* Trust and newsletter */
.trust-strip { border-block: 1px solid rgb(199 167 91 / 28%); }
.trust-strip__grid, .trust-strip__items, .trust-strip__list { display: grid; gap: 25px; }
.trust-item, .trust-strip__item { display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: start; }
.trust-item svg, .trust-strip__item svg { color: var(--velore-gold); }
.trust-item h3, .trust-strip__item h3 { margin: 0 0 5px; font-family: var(--font-body-family); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trust-item p, .trust-strip__item p { margin: 0; font-size: .8rem; opacity: .65; }
.newsletter { color: var(--velore-white); background: var(--velore-black); }
.newsletter__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.newsletter__heading { margin-bottom: 15px; }
.newsletter__text { color: rgb(255 255 255 / 68%); }
.newsletter-form, .newsletter__form { max-width: 620px; margin: 25px auto 0; }
.newsletter__field-group { display: flex; align-items: stretch; border-bottom: 1px solid rgb(255 255 255 / 45%); }
.newsletter-form input, .newsletter__input { min-width: 0; padding-inline: 0; color: currentColor; background: transparent; border: 0; }
.newsletter-form button { flex: 0 0 auto; color: var(--velore-gold); background: transparent; }
.newsletter__button { flex: 0 0 auto; min-height: 48px; }
.newsletter__legal { margin-top: 12px; font-size: .7rem; opacity: .55; }
.newsletter__message { display: flex; align-items: center; justify-content: center; gap: 8px; }
.newsletter__fine-print { margin-top: 12px; font-size: .72rem; opacity: .55; }

/* Footer */
.site-footer { padding-block: 65px 28px; color: var(--velore-white); background: var(--velore-black); border-top: 1px solid rgb(255 255 255 / 10%); }
.site-footer__top { display: grid; gap: 45px; }
.site-footer__brand-name { font-family: var(--font-heading-family, Georgia, serif); font-size: 1.6rem; letter-spacing: .18em; }
.site-footer__logo { max-width: 180px; }
.site-footer__tagline { max-width: 340px; margin-top: 18px; color: rgb(255 255 255 / 62%); }
.site-footer__blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px 22px; }
.site-footer__heading { margin-bottom: 16px; font-family: var(--font-body-family); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__links li, .site-footer__social-list li { margin-block: 8px; }
.site-footer__link, .site-footer__social-link { color: rgb(255 255 255 / 66%); font-size: .86rem; transition: color var(--transition); }
.site-footer__link:hover, .site-footer__social-link:hover { color: var(--velore-gold); }
.site-footer__bottom { display: flex; flex-direction: column; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / 12%); color: rgb(255 255 255 / 50%); font-size: .7rem; }
.site-footer__copyright { margin: 0; }
.site-footer__policies, .site-footer__payment-list { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.site-footer__payment-item svg { width: 34px; height: 22px; }

/* Page headers and breadcrumbs */
.page-header { margin-bottom: clamp(35px, 6vw, 70px); }
.page-header h1 { margin-bottom: 16px; }
.page-header--center { max-width: 800px; margin-inline: auto; text-align: center; }
.page-header__intro { max-width: 610px; margin-inline: auto; color: #62625e; }
.page-header--split { display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid #d8d8d2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #72726e; }
.breadcrumbs a:hover { color: var(--velore-gold); }
.pagination { display: flex; justify-content: center; margin-top: 55px; }
.pagination__list { display: flex; align-items: center; gap: 5px; }
.pagination__item { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid transparent; }
.pagination__item.is-current, .pagination__item:hover { border-color: var(--velore-black); }

/* Product page */
.product__layout { display: grid; gap: 36px; }
.product-gallery__stage { position: relative; overflow: hidden; background: #e8e8e4; }
.product-gallery__media { min-height: 460px; }
.product-gallery__media > *, .product-gallery__zoom { width: 100%; height: 100%; }
.product-gallery__zoom { display: block; padding: 0; background: transparent; }
.product-gallery__image { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.product-gallery__video, .product-gallery__model { width: 100%; min-height: 500px; }
.product-gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; padding-block: 10px; }
.product-gallery__thumb { position: relative; flex: 0 0 70px; aspect-ratio: 4 / 5; padding: 0; background: #eee; border: 1px solid transparent; }
.product-gallery__thumb.is-active { border-color: var(--velore-gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__media-type { position: absolute; inset: auto 4px 4px auto; display: grid; width: 22px; height: 22px; place-items: center; color: var(--velore-white); background: var(--velore-black); }
.product-info__title { margin-bottom: 17px; font-size: clamp(2.3rem, 4vw, 4.2rem); }
.product-info__price { margin-bottom: 17px; }
.product-info__price .price__current { font-size: 1.15rem; }
.product-info__intro { margin: 22px 0; color: #555550; }
.product-options { display: grid; gap: 24px; margin-block: 25px; }
.product-option { margin: 0; padding: 0; border: 0; }
.product-option__label { width: 100%; margin-bottom: 10px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-option__label span { color: #666; font-weight: 400; text-transform: none; }
.product-option__values { display: flex; flex-wrap: wrap; gap: 8px; }
.product-option__value { display: inline-flex; min-width: 46px; min-height: 43px; align-items: center; justify-content: center; gap: 7px; padding: 8px 13px; border: 1px solid #bababa; font-size: .8rem; font-weight: 500; transition: var(--transition); }
.product-option input:checked + .product-option__value { color: var(--velore-white); background: var(--velore-black); border-color: var(--velore-black); }
.product-option input:focus-visible + .product-option__value { outline: 2px solid var(--velore-gold); outline-offset: 2px; }
.swatch { width: 16px; height: 16px; border: 1px solid rgb(0 0 0 / 15%); border-radius: 50%; background: var(--swatch, #111); }
.product-form__row { display: grid; grid-template-columns: 112px 1fr; gap: 9px; }
.quantity-selector { display: grid; min-height: 50px; grid-template-columns: 34px 1fr 34px; border: 1px solid #bcbcb8; background: var(--velore-white); }
.quantity-selector button { padding: 0; background: transparent; }
.quantity-selector input { min-width: 0; min-height: 48px; padding: 0; border: 0; text-align: center; appearance: textfield; }
.quantity-selector input::-webkit-inner-spin-button { appearance: none; }
.product-form__message { min-height: 24px; margin: 10px 0 0; color: #8b251d; font-size: .8rem; }
.product-form__dynamic-checkout { margin-top: 10px; }
.shopify-payment-button__button { min-height: 50px !important; border-radius: var(--button-radius, 0) !important; }
.inventory-status { display: flex; align-items: center; gap: 8px; margin: 20px 0; }
.inventory-status__dot { width: 7px; height: 7px; border-radius: 50%; background: #388657; box-shadow: 0 0 0 4px rgb(56 134 87 / 12%); }
.product-perks { display: grid; gap: 11px; margin: 22px 0; padding: 20px 0; border-block: 1px solid #d6d6d1; }
.product-perks li { display: flex; align-items: center; gap: 10px; font-size: .78rem; }
.product-perks svg { width: 19px; color: var(--velore-gold); }
.product-accordions { border-top: 1px solid #d6d6d1; }
.accordion { border-bottom: 1px solid #d6d6d1; }
.accordion summary { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; list-style: none; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { width: 18px; transition: transform var(--transition); }
.accordion[open] summary svg { transform: rotate(45deg); }
.accordion__content { padding: 0 0 22px; color: #595954; font-size: .9rem; }
.complete-look { background: var(--velore-white); }

/* Collection and filters */
.collection-hero { display: grid; gap: 28px; margin-bottom: 40px; }
.collection-hero__content { align-self: center; }
.collection-hero__description { max-width: 680px; color: #5e5e5a; }
.collection-hero__image { overflow: hidden; aspect-ratio: 16 / 9; }
.collection-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.collection-toolbar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; margin-bottom: 25px; padding-block: 14px; border-block: 1px solid #d5d5d0; }
.collection-toolbar__count { display: none; margin: 0; color: #656561; }
.filter-toggle { justify-self: start; min-height: 42px; padding: 8px 15px; }
.sort-form { display: flex; align-items: center; gap: 8px; }
.sort-form label { display: none; }
.sort-form select { min-height: 42px; padding: 7px 32px 7px 10px; border: 0; background-color: transparent; }
.collection-layout { display: grid; }
.facets { position: fixed; z-index: 90; top: 0; bottom: 0; left: 0; width: min(92vw, 390px); overflow-y: auto; padding: 22px; background: var(--velore-cream); transform: translateX(-105%); transition: transform 300ms ease; }
.facets.is-open { transform: none; }
.facets__mobile-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #d5d5d0; }
.facets__mobile-header h2 { margin: 0; font-size: 1.5rem; }
.facet { border-bottom: 1px solid #d5d5d0; }
.facet summary { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; list-style: none; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.facet summary::-webkit-details-marker { display: none; }
.facet summary svg { width: 16px; transition: transform var(--transition); }
.facet[open] summary svg { transform: rotate(180deg); }
.facet__content { padding-bottom: 18px; }
.facet__list { display: grid; gap: 10px; }
.check-option { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 9px; font-weight: 400; }
.check-option input { position: absolute; width: 1px; height: 1px; min-height: 0; opacity: 0; }
.check-option__box { display: grid; width: 18px; height: 18px; place-items: center; border: 1px solid #aaa; }
.check-option input:checked + .check-option__box { background: var(--velore-black); border-color: var(--velore-black); }
.check-option input:checked + .check-option__box::after { content: '✓'; color: var(--velore-white); font-size: .7rem; }
.check-option input:focus-visible + .check-option__box { outline: 2px solid var(--velore-gold); outline-offset: 2px; }
.check-option__count { color: #72726e; font-size: .72rem; }
.check-option.is-disabled { opacity: .4; }
.price-range { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-range label { display: grid; gap: 5px; }
.field-with-prefix { display: flex; align-items: center; padding-left: 10px; border: 1px solid #bcbcb8; background: var(--velore-white); }
.field-with-prefix input { min-width: 0; border: 0; }
.facets__actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.active-filter { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border: 1px solid #bbb; font-size: .72rem; }
.active-filter svg { width: 13px; }
.drawer-overlay { position: fixed; z-index: 80; inset: 0; background: rgb(5 5 5 / 55%); }

/* Cart */
.cart-layout { display: grid; gap: 35px; }
.cart-item { display: grid; grid-template-columns: 105px 1fr; gap: 15px; padding-block: 20px; border-bottom: 1px solid #d6d6d1; }
.cart-item__image { aspect-ratio: 4 / 5; overflow: hidden; background: #e9e9e5; }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { margin-bottom: 5px; font-family: var(--font-body-family); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.cart-item__details p { margin-bottom: 4px; }
.cart-item__controls { display: flex; align-items: center; gap: 18px; margin-top: 14px; }
.quantity-selector--small { width: 105px; min-height: 38px; }
.quantity-selector--small input { min-height: 36px; }
.cart-item__price { display: none; }
.cart-summary { align-self: start; padding: 25px; color: var(--velore-white); background: var(--velore-charcoal); }
.cart-summary h2 { margin-bottom: 24px; font-size: 1.5rem; }
.cart-summary label { color: rgb(255 255 255 / 75%); }
.cart-summary textarea { margin: 7px 0 20px; }
.cart-summary__row { display: flex; align-items: center; justify-content: space-between; margin-block: 15px; padding-block: 18px; border-block: 1px solid rgb(255 255 255 / 16%); }
.cart-summary__tax { color: rgb(255 255 255 / 60%); }
.cart-terms { margin-block: 18px; }
.cart-terms .check-option__box { border-color: rgb(255 255 255 / 50%); }
.cart-summary__secure { display: flex; justify-content: center; gap: 7px; margin-top: 15px; color: rgb(255 255 255 / 58%); }
.cart-summary__secure svg { width: 17px; }
.discount-list { color: var(--velore-gold); font-size: .8rem; }
.additional-checkout-buttons { margin-top: 10px; }

/* Search, content cards, pages */
.search-form { display: flex; border-bottom: 1px solid #888; }
.search-form input { min-width: 0; padding-inline: 0; border: 0; background: transparent; }
.search-form button { flex: 0 0 48px; display: grid; place-items: center; background: transparent; }
.search-form--large { max-width: 650px; margin: 25px auto 14px; }
.search-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px 14px; }
.content-card__media { display: block; overflow: hidden; aspect-ratio: 4 / 5; }
.content-card__media img { width: 100%; height: 100%; object-fit: cover; }
.content-card__body { padding-top: 16px; }
.content-card__body h2 { font-size: 1.5rem; }
.content-card--text { display: flex; align-items: center; min-height: 280px; padding: 25px; border: 1px solid #d5d5d0; }
.main-page__content { font-size: 1.02rem; }
.contact-layout { display: grid; gap: 35px; }
.contact-intro > h1 { margin-bottom: 22px; }
.contact-details { margin-top: 35px; padding-top: 25px; border-top: 1px solid #d4d4cf; }
.contact-details p { display: grid; margin-bottom: 14px; }
.contact-details p span { color: #6b6b66; font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-form-wrap { padding: 25px; background: var(--velore-white); box-shadow: var(--shadow-soft); }

/* Journal */
.article-grid { display: grid; gap: 40px 18px; }
.article-card__image { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #e9e9e5; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.article-card:hover .article-card__image img { transform: scale(1.025); }
.article-card__content { padding-top: 18px; }
.article-card__content h2 { margin-bottom: 12px; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.article-card__content > p:not(.eyebrow) { color: #5d5d58; }
.article-card__meta { display: flex; gap: 18px; margin-bottom: 14px; color: #72726e; }
.article-header { max-width: 900px; margin: 40px auto 50px; text-align: center; }
.article-header__meta { display: flex; justify-content: center; gap: 20px; color: #6d6d68; }
.article-page__hero { overflow: hidden; max-height: 760px; }
.article-page__hero img { width: 100%; height: 100%; object-fit: cover; }
.article-page__body { max-width: 760px; margin: 50px auto; }
.rte--article { font-size: 1.07rem; line-height: 1.78; }
.rte--article h2 { margin-top: 2.1em; font-size: 2.2rem; }
.rte--article blockquote { margin: 2rem 0; padding-left: 22px; border-left: 3px solid var(--velore-gold); font-family: var(--font-heading-family); font-size: 1.5rem; }
.article-share { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 45px; padding-top: 22px; border-top: 1px solid #d4d4cf; font-size: .78rem; }
.article-share span { font-weight: 700; }
.article-footer { text-align: center; }
.article-comments { max-width: 760px; margin: 65px auto 0; padding-top: 45px; border-top: 1px solid #d4d4cf; }
.comment { margin: 25px 0; padding: 22px; background: var(--velore-white); }
.comment-form { margin-top: 45px; }

/* Empty and utility */
.empty-state { grid-column: 1 / -1; max-width: 620px; margin: 50px auto; text-align: center; }
.empty-state--large { margin-block: 90px; }
.empty-state__icon { display: inline-grid; width: 70px; height: 70px; place-items: center; border: 1px solid var(--velore-gold); border-radius: 50%; }
.empty-state h2 { margin: 22px 0 12px; }
.empty-state p { color: #62625e; }
.error-page { min-height: 70vh; display: flex; align-items: center; overflow: hidden; }
.error-page__content { position: relative; max-width: 700px; margin-inline: auto; text-align: center; }
.error-page__code { position: absolute; z-index: -1; top: 50%; left: 50%; margin: 0; color: rgb(199 167 91 / 12%); font-family: var(--font-heading-family); font-size: clamp(10rem, 35vw, 28rem); line-height: 1; transform: translate(-50%, -50%); }
.error-page .button-group { justify-content: center; margin-block: 28px; }
.error-page .search-form { max-width: 430px; margin-inline: auto; }
.list-collections .collection-grid { display: grid; gap: 18px; }
.list-collections .collection-card__media { aspect-ratio: 4 / 5; }
.list-collections .collection-card__media img { width: 100%; height: 100%; object-fit: cover; }
.list-collections .collection-card__content { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 15px 1px 25px; }
.list-collections .collection-card__content h2 { grid-column: 1 / -1; margin: 0 0 6px; font-size: 1.7rem; }
.list-collections .collection-card__content span { color: #6c6c67; font-size: .75rem; }
.list-collections .collection-card__arrow { justify-self: end; color: var(--velore-gold) !important; font-size: 1.2rem !important; }
.velore-modal { position: fixed; z-index: 999; inset: 0; display: grid; place-items: center; padding: 55px 20px 20px; background: rgb(5 5 5 / 94%); }
.velore-modal__image { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 80px); object-fit: contain; }
.velore-modal__close { position: absolute; top: 12px; right: 16px; display: grid; width: 44px; height: 44px; place-items: center; color: var(--velore-white); background: transparent; font-size: 2rem; line-height: 1; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease, transform 650ms ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 750px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .product-grid, .search-results { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 18px; }
  .product-grid--desktop-2, .product-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid--desktop-3, .product-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid--desktop-4, .product-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-grid--desktop-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .featured-collections__grid, .category-tiles__grid { grid-auto-flow: initial; grid-auto-columns: initial; grid-template-columns: repeat(3, 1fr); overflow: visible; }
  .featured-collections__grid--2-columns { grid-template-columns: repeat(2, 1fr); }
  .featured-collections__grid--4-columns { grid-template-columns: repeat(4, 1fr); }
  .section-heading--split, .section-heading { flex-direction: row; align-items: end; justify-content: space-between; }
  .section-heading--center { flex-direction: column; align-items: center; }
  .editorial-split__inner { grid-template-columns: 1fr 1fr; }
  .editorial-split--image-right .editorial-split__media { order: 2; }
  .editorial-split--image-right .editorial-split__content { order: 1; }
  .trust-strip__grid, .trust-strip__items, .trust-strip__list { grid-template-columns: repeat(2, 1fr); }
  .site-footer__top { grid-template-columns: minmax(240px, 1fr) 2fr; }
  .site-footer__blocks { grid-template-columns: repeat(3, 1fr); }
  .site-footer__bottom { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .collection-hero--with-image { grid-template-columns: 1fr 1.15fr; }
  .collection-toolbar { grid-template-columns: auto 1fr auto; }
  .collection-toolbar__count { display: block; text-align: center; }
  .sort-form label { display: block; }
  .cart-item { grid-template-columns: 140px 1fr auto; }
  .cart-item__mobile-price { display: none; }
  .cart-item__price { display: block; min-width: 100px; text-align: right; }
  .contact-layout { grid-template-columns: .8fr 1.2fr; gap: 8vw; }
  .contact-form-wrap { padding: 45px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-grid--featured .article-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.25fr 1fr; gap: 35px; align-items: center; }
  .article-grid--featured .article-card--featured .article-card__content { padding: 25px; }
  .list-collections .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .list-collections .collection-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 990px) {
  :root { --header-height: 82px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; gap: 38px; }
  .site-header__mobile-menu { display: none; }
  .site-header__logo { justify-self: start; }
  .site-header__navigation { display: block; justify-self: center; }
  .site-header__menu { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); }
  .site-header__menu-item { position: relative; }
  .site-header__menu-link { display: block; padding: 30px 0; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .site-header__menu-link::after { content: ''; position: absolute; right: 0; bottom: 22px; left: 0; height: 1px; background: var(--velore-gold); transform: scaleX(0); transition: transform var(--transition); }
  .site-header__menu-link:hover::after, .site-header__menu-link.is-active::after { transform: scaleX(1); }
  .site-header__dropdown { position: absolute; top: calc(100% - 1px); left: -24px; min-width: 210px; padding: 15px 24px; visibility: hidden; opacity: 0; background: var(--velore-black); border: 1px solid rgb(255 255 255 / 11%); transform: translateY(8px); transition: var(--transition); }
  .site-header__menu-item:hover .site-header__dropdown, .site-header__menu-item:focus-within .site-header__dropdown { visibility: visible; opacity: 1; transform: none; }
  .site-header__dropdown-link { display: block; padding: 8px 0; color: rgb(255 255 255 / 72%); font-size: .8rem; }
  .site-header__dropdown-link:hover { color: var(--velore-gold); }
  .site-header__account-link { display: inline-grid; }
  .product__layout { grid-template-columns: minmax(0, 1.3fr) minmax(360px, .7fr); align-items: start; gap: clamp(45px, 7vw, 100px); }
  .product-info { position: sticky; top: calc(var(--header-height) + 25px); }
  .product-gallery__media, .product-gallery__image { min-height: min(760px, 78vh); }
  .collection-layout { grid-template-columns: 230px 1fr; gap: 40px; }
  .filter-toggle { display: none; }
  .facets { position: static; width: auto; overflow: visible; padding: 0; background: transparent; transform: none; }
  .facets__mobile-header { display: none; }
  .drawer-overlay { display: none !important; }
  .cart-layout { grid-template-columns: 1fr 380px; gap: 65px; }
  .cart-summary { position: sticky; top: calc(var(--header-height) + 24px); }
  .search-results { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .trust-strip__grid, .trust-strip__items, .trust-strip__list { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 749px) {
  .hero__content-inner { text-align: left !important; }
  .hero__actions { justify-content: flex-start !important; }
  .hero__heading { font-size: clamp(2.65rem, 15vw, 4.8rem); }
  .product-grid--mobile-1 { grid-template-columns: 1fr; }
  .product-grid--mobile-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card__quick-add { display: none; }
  .page-header--split { align-items: start; }
  .collection-toolbar .button { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Password / coming-soon page */
.password-template { color: var(--velore-white); background: var(--velore-black); }
.password-page { position: relative; display: grid; min-height: 100svh; overflow: hidden; }
.password-page__media, .password-page__overlay { position: absolute; inset: 0; }
.password-page__background { width: 100%; height: 100%; object-fit: cover; }
.password-page__overlay { background: linear-gradient(90deg, rgb(5 5 5 / calc(var(--password-overlay) + .12)), rgb(5 5 5 / var(--password-overlay))); }
.password-page__content { position: relative; z-index: 2; display: flex; width: min(100%, 1440px); min-height: 100svh; align-items: center; margin-inline: auto; padding: 48px max(22px, 7vw); }
.password-page__card { width: min(100%, 650px); }
.password-page__logo { width: min(300px, 70vw); height: auto; margin-bottom: 30px; }
.password-page h1 { max-width: 10ch; margin-bottom: 18px; color: var(--velore-white); font-size: clamp(3.2rem, 9vw, 7rem); }
.password-page__text { max-width: 580px; color: rgb(255 255 255 / 78%); font-size: 1.02rem; }
.password-signup { margin-top: 30px; }
.password-signup__row, .password-entry__row { display: grid; gap: 10px; }
.password-signup input, .password-entry input { color: var(--velore-white); background: rgb(5 5 5 / 52%); border-color: rgb(255 255 255 / 42%); }
.password-signup input::placeholder, .password-entry input::placeholder { color: rgb(255 255 255 / 68%); }
.password-page__message { margin: 12px 0; padding: 12px 14px; border: 1px solid currentColor; }
.password-page__message--success { color: #d7f3df; background: rgb(23 92 51 / 45%); }
.password-page__message--error { color: #ffe2df; background: rgb(139 37 29 / 48%); }
.password-entry { margin-top: 24px; }
.password-entry summary { display: inline-block; color: rgb(255 255 255 / 72%); font-size: .78rem; text-decoration: underline; text-underline-offset: 4px; }
.password-entry__form { margin-top: 14px; }
.password-page__footer { margin: 28px 0 0; color: var(--velore-gold); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
@media (min-width: 750px) {
  .password-signup__row, .password-entry__row { grid-template-columns: minmax(0, 1fr) auto; }
  .password-page__content { padding-block: 70px; }
.site-header__cart-link {
  display: inline-grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

