/* Lush & Lilies digital brand system, translated from Brand Guidelines v1.0. */
:root {
  --ll-brand-sienna: #9c4401;
  --ll-brand-sienna-dark: #783400;
  --ll-brand-lilac: #c6add0;
  --ll-brand-lilac-soft: #eee6f1;
  --ll-brand-charcoal: #413e39;
  --ll-brand-plum: #64133d;
  --ll-brand-cream: #eee5d9;
  --ll-brand-cream-soft: #faf8f4;
  --ll-brand-autumn: #b47b35;
  --ll-brand-white: #ffffff;
  --ll-brand-border: #ded7ce;
  --ll-brand-muted: #6e6963;
  --ll-font-display: "Saviera", "Italiana", Georgia, serif;
  --ll-font-sans: "Onest", "Museo Sans", Arial, sans-serif;
  --ll-ink: var(--ll-brand-charcoal);
  --ll-footer-main-bg: #27231f;
  --ll-footer-newsletter-bg: #27231f;
  --ll-footer-text: rgba(255, 255, 255, .82);
  --ll-footer-muted: rgba(255, 255, 255, .64);
  --ll-footer-heading: #ffffff;
  --theme-color: var(--ll-brand-sienna);
  --theme-color2: var(--ll-brand-plum);
  --theme-color-light: var(--ll-brand-cream-soft);
  --body-text-color: var(--ll-brand-charcoal);
  --color-dark: var(--ll-brand-charcoal);
  --color-yellow: var(--ll-brand-autumn);
  --color-gray: var(--ll-brand-cream);
  --footer-bg: #27231f;
  --border-info-color: var(--ll-brand-border);
  --border-info-color2: var(--ll-brand-border);
}

html {
  background: var(--ll-brand-white);
  color: var(--ll-brand-charcoal);
}

body.ll-shared-chrome {
  background: var(--ll-brand-white);
  color: var(--ll-brand-charcoal);
  font-family: var(--ll-font-sans) !important;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
}

body.ll-shared-chrome h1,
body.ll-shared-chrome h2,
body.ll-shared-chrome .site-title,
body.ll-shared-chrome .ambiance-title,
body.ll-shared-chrome .ll-footer-brand,
body.ll-shared-chrome .ll-cart-heading h1,
body.ll-shared-chrome .ll-checkout-heading h1,
body.ll-shared-chrome .ll-order-success-card h1,
body.ll-shared-chrome .ll-cart-empty h1 {
  color: var(--ll-brand-charcoal);
  font-family: var(--ll-font-display) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

body.ll-shared-chrome h3,
body.ll-shared-chrome h4,
body.ll-shared-chrome h5,
body.ll-shared-chrome h6,
body.ll-shared-chrome button,
body.ll-shared-chrome input,
body.ll-shared-chrome select,
body.ll-shared-chrome textarea {
  font-family: var(--ll-font-sans) !important;
}

body.ll-shared-chrome a {
  text-underline-offset: 4px;
}

body.ll-shared-chrome :focus-visible {
  outline: 2px solid var(--ll-brand-sienna) !important;
  outline-offset: 3px;
}

::selection {
  background: var(--ll-brand-lilac);
  color: var(--ll-brand-charcoal);
}

.ll-section-kicker {
  margin: 0 0 12px;
  color: var(--ll-brand-sienna);
  font-family: var(--ll-font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Store chrome */
.ll-site-header {
  background: rgba(255, 255, 255, .98);
  color: var(--ll-brand-charcoal);
  border-bottom-color: var(--ll-brand-border);
}

.ll-site-header .ll-announcement {
  background: var(--ll-brand-sienna) !important;
  color: #fff !important;
}

.ll-site-header .ll-announcement__message {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1;
}

.ll-site-header .ll-chrome-inner,
.ll-site-header .ll-header-logo-row,
.ll-site-header .ll-nav-row {
  background: rgba(255, 255, 255, .98);
}

.ll-site-header .ll-header-logo img {
  height: 56px;
  filter: grayscale(1) contrast(1.25) brightness(.62);
}

.ll-site-header .ll-header-locale {
  color: var(--ll-brand-muted);
  font-size: 12px;
  font-weight: 400;
}

.ll-site-header .ll-nav-row {
  border-bottom: 1px solid var(--ll-brand-border);
}

.ll-site-header .ll-main-nav {
  gap: clamp(12px, 1.25vw, 20px);
}

.ll-site-header .ll-main-nav .nav-link {
  position: relative;
  color: var(--ll-brand-charcoal);
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: .035em;
  text-decoration: none;
}

/* Compact commerce dropdowns shared by Gifts, Souvenirs, Corporate,
   Personalization and Hampers. */
.ll-site-header .ll-has-mega {
  position: relative;
}

.ll-nav-dropdown {
  display: none;
}

@media (min-width: 768px) {
  .ll-nav-dropdown {
    position: absolute;
    top: calc(100% + 22px);
    left: 50%;
    z-index: 1080;
    display: block;
    width: 310px;
    border: 1px solid var(--ll-brand-border);
    border-top: 2px solid var(--ll-brand-sienna);
    background: #fff;
    box-shadow: 0 20px 50px rgba(43, 36, 32, .14);
    opacity: 0;
    transform: translate(-50%, 8px);
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }

  .ll-nav-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 24px;
    content: "";
  }

  .ll-has-mega:hover .ll-nav-dropdown,
  .ll-has-mega:focus-within .ll-nav-dropdown {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
    transition-delay: 0s;
  }

  .ll-nav-dropdown__inner {
    padding: 22px 24px 18px;
  }

  .ll-nav-dropdown__eyebrow {
    margin: 0 0 12px;
    color: var(--ll-brand-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .ll-nav-dropdown__links {
    display: grid;
  }

  .ll-nav-dropdown__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    border-bottom: 1px solid var(--ll-brand-line);
    color: var(--ll-brand-charcoal);
    font-size: 13px;
    line-height: 1.35;
    text-decoration: none;
    transition: color .16s ease, padding-left .16s ease;
  }

  .ll-nav-dropdown__link:hover {
    padding-left: 4px;
    color: var(--ll-brand-sienna);
  }

  .ll-nav-dropdown__link.is-featured,
  .ll-nav-dropdown__link.is-action {
    color: var(--ll-brand-sienna);
    font-weight: 600;
  }

  .ll-nav-dropdown__link.is-action {
    margin-top: 8px;
    border-bottom: 0;
  }
}

.ll-site-header .ll-main-nav .nav-link::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--ll-brand-sienna);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}

.ll-site-header .ll-main-nav .nav-link:hover,
.ll-site-header .ll-main-nav .nav-link.active {
  color: var(--ll-brand-sienna);
  text-decoration: none;
}

.ll-site-header .ll-main-nav .nav-link:hover::after,
.ll-site-header .ll-main-nav .nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.ll-site-header .ll-nav-icon,
.ll-site-header .ll-header-action {
  color: var(--ll-brand-charcoal);
  transition: color .18s ease, background-color .18s ease;
}

.ll-site-header .ll-nav-icon:hover,
.ll-site-header .ll-header-action:hover {
  background: var(--ll-brand-cream-soft);
  color: var(--ll-brand-sienna);
}

.ll-site-header .ll-cart-count-badge {
  background: var(--ll-brand-plum);
}

@media (min-width: 992px) {
  .ll-mega {
    border-top: 3px solid var(--ll-brand-sienna);
    box-shadow: 0 22px 52px rgba(65, 62, 57, .16);
  }

  .ll-mega__inner,
  .ll-mega__cols,
  .ll-mega__col {
    background: var(--ll-brand-cream-soft);
  }

  .ll-mega__feature-overlay {
    background: rgba(65, 19, 48, .58);
  }

  .ll-mega__feature-title {
    font-family: var(--ll-font-display);
    font-size: clamp(30px, 3vw, 42px);
  }

  .ll-mega__feature-btn {
    background: #fff;
    color: var(--ll-brand-plum);
  }

  .ll-mega__feature:hover .ll-mega__feature-btn {
    background: var(--ll-brand-sienna);
    color: #fff;
  }

  .ll-mega__col + .ll-mega__col {
    border-left-color: var(--ll-brand-border);
  }

  .ll-mega__item-title {
    color: var(--ll-brand-plum);
    font-weight: 500;
    letter-spacing: .08em;
  }

  .ll-mega__item-desc {
    color: var(--ll-brand-muted);
  }

  .ll-mega__item:hover .ll-mega__item-title {
    color: var(--ll-brand-sienna);
    opacity: 1;
  }
}

/* Commands, forms and feedback */
.theme-btn,
.ll-black-button,
.ll-cart-summary .ll-black-button,
.ll-checkout-panel .ll-black-button,
.product-detail-add,
.ll-primary-button {
  border: 1px solid var(--ll-brand-sienna) !important;
  border-radius: 2px !important;
  background: var(--ll-brand-sienna) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .045em !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.theme-btn::before {
  background: var(--ll-brand-sienna-dark) !important;
}

.theme-btn:hover,
.ll-black-button:hover,
.product-detail-add:hover,
.ll-primary-button:hover {
  border-color: var(--ll-brand-sienna-dark) !important;
  background: var(--ll-brand-sienna-dark) !important;
  color: #fff !important;
}

.ll-outline-button,
.ll-outline-btn,
.theme-btn2 {
  border-color: var(--ll-brand-charcoal) !important;
  border-radius: 2px !important;
  background: transparent !important;
  color: var(--ll-brand-charcoal) !important;
}

.ll-outline-button:hover,
.ll-outline-btn:hover,
.theme-btn2:hover {
  background: var(--ll-brand-charcoal) !important;
  color: #fff !important;
}

/* Storewide command hierarchy. Keep legacy page styles from weakening contrast. */
body.ll-shared-chrome .theme-btn,
body.ll-shared-chrome .ll-black-button,
body.ll-shared-chrome .ll-black-btn,
body.ll-shared-chrome .ll-cart-checkout-btn,
body.ll-shared-chrome .ll-quickview-add,
body.ll-shared-chrome .ll-add,
body.ll-shared-chrome .ll-cart-notes button,
body.ll-shared-chrome .ll-signup button,
body.ll-shared-chrome .ll-sidebar-apply,
body.ll-shared-chrome .ll-primary-button,
body.ll-shared-chrome .product-detail-add,
body.ll-shared-chrome .ll-contact-button--dark,
body.ll-shared-chrome .ll-care-button--dark {
  border: 1px solid var(--ll-brand-sienna) !important;
  border-radius: 2px !important;
  background: var(--ll-brand-sienna) !important;
  color: #fff !important;
  box-shadow: none !important;
}

body.ll-shared-chrome .theme-btn:hover,
body.ll-shared-chrome .ll-black-button:hover,
body.ll-shared-chrome .ll-black-btn:hover,
body.ll-shared-chrome .ll-cart-checkout-btn:hover,
body.ll-shared-chrome .ll-quickview-add:hover,
body.ll-shared-chrome .ll-add:hover,
body.ll-shared-chrome .ll-cart-notes button:hover,
body.ll-shared-chrome .ll-signup button:hover,
body.ll-shared-chrome .ll-sidebar-apply:hover,
body.ll-shared-chrome .ll-primary-button:hover,
body.ll-shared-chrome .product-detail-add:hover,
body.ll-shared-chrome .ll-contact-button--dark:hover,
body.ll-shared-chrome .ll-care-button--dark:hover {
  border-color: var(--ll-brand-sienna-dark) !important;
  background: var(--ll-brand-sienna-dark) !important;
  color: #fff !important;
}

body.ll-shared-chrome .ll-outline-button,
body.ll-shared-chrome .theme-btn2,
body.ll-shared-chrome .ll-contact-button:not(.ll-contact-button--dark),
body.ll-shared-chrome .ll-care-button:not(.ll-care-button--dark),
body.ll-shared-chrome .ll-sidebar-clear,
body.ll-shared-chrome .ll-load-more-button {
  border: 1px solid var(--ll-brand-charcoal) !important;
  border-radius: 2px !important;
  background: #fff !important;
  color: var(--ll-brand-charcoal) !important;
  box-shadow: none !important;
}

body.ll-shared-chrome .ll-outline-button:hover,
body.ll-shared-chrome .theme-btn2:hover,
body.ll-shared-chrome .ll-contact-button:not(.ll-contact-button--dark):hover,
body.ll-shared-chrome .ll-care-button:not(.ll-care-button--dark):hover,
body.ll-shared-chrome .ll-sidebar-clear:hover,
body.ll-shared-chrome .ll-load-more-button:hover {
  border-color: var(--ll-brand-charcoal) !important;
  background: var(--ll-brand-charcoal) !important;
  color: #fff !important;
}

/* Buttons over photography need their own contrast-safe treatment. */
body.ll-shared-chrome .ll-featured-hero .ll-outline-btn,
body.ll-shared-chrome .ll-featured-card .ll-outline-btn {
  border: 1px solid rgba(255, 255, 255, .9) !important;
  background: rgba(65, 62, 57, .82) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(20, 18, 16, .18) !important;
  backdrop-filter: blur(4px);
}

body.ll-shared-chrome .ll-featured-hero .ll-outline-btn:hover,
body.ll-shared-chrome .ll-featured-card .ll-outline-btn:hover {
  border-color: var(--ll-brand-sienna) !important;
  background: var(--ll-brand-sienna) !important;
  color: #fff !important;
}

body.ll-shared-chrome button:disabled,
body.ll-shared-chrome [class*="button"]:disabled,
body.ll-shared-chrome [class*="btn"]:disabled,
body.ll-shared-chrome [aria-disabled="true"] {
  cursor: not-allowed !important;
  opacity: .46 !important;
  box-shadow: none !important;
}

body.ll-shared-chrome .theme-btn:focus-visible,
body.ll-shared-chrome .ll-black-button:focus-visible,
body.ll-shared-chrome .ll-black-btn:focus-visible,
body.ll-shared-chrome .ll-cart-checkout-btn:focus-visible,
body.ll-shared-chrome .ll-quickview-add:focus-visible,
body.ll-shared-chrome .ll-add:focus-visible,
body.ll-shared-chrome .ll-cart-notes button:focus-visible,
body.ll-shared-chrome .ll-signup button:focus-visible,
body.ll-shared-chrome .ll-sidebar-apply:focus-visible,
body.ll-shared-chrome .ll-outline-button:focus-visible,
body.ll-shared-chrome .ll-outline-btn:focus-visible,
body.ll-shared-chrome .theme-btn2:focus-visible,
body.ll-shared-chrome .ll-contact-button:focus-visible,
body.ll-shared-chrome .ll-care-button:focus-visible {
  outline: 3px solid rgba(198, 173, 208, .9) !important;
  outline-offset: 3px !important;
}

.ll-cart-notes textarea,
.ll-form-grid input,
.ll-form-grid select,
.ll-form-grid textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.shop-search-form input,
.ll-search-drawer input {
  border-color: var(--ll-brand-border) !important;
  border-radius: 2px !important;
  background: #fff !important;
  color: var(--ll-brand-charcoal) !important;
}

.ll-cart-notes textarea:focus,
.ll-form-grid input:focus,
.ll-form-grid select:focus,
.ll-form-grid textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ll-brand-sienna) !important;
  box-shadow: 0 0 0 3px rgba(156, 68, 1, .08) !important;
}

.ll-status {
  border-left-color: var(--ll-brand-sienna);
}

/* Homepage */
.category-area {
  padding-top: 26px;
}

.category-slider .category-item {
  height: 104px;
}

.category-slider .category-info {
  border-color: var(--ll-brand-border);
  border-radius: 4px;
  background: #fff;
}

.category-slider .category-info:hover {
  border-color: var(--ll-brand-sienna);
}

.category-slider .category-info .icon {
  border-radius: 50%;
  background: var(--ll-brand-cream-soft);
}

.category-slider .category-info .icon img {
  filter: sepia(1) saturate(5) hue-rotate(342deg) brightness(.68);
}

.category-slider .category-info .content h4 {
  color: var(--ll-brand-charcoal);
  font-size: 15px;
  font-weight: 500;
}

.category-slider .category-info .content p {
  color: var(--ll-brand-muted);
  font-size: 12px;
}

.ll-video-hero {
  min-height: min(720px, calc(100vh - 120px));
  background: var(--ll-brand-charcoal);
}

.ll-video-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(46, 31, 24, .36);
  content: "";
  pointer-events: none;
}

.ll-video-hero .hero-content {
  z-index: 2;
  max-width: 720px;
}

.ll-video-hero .hero-sub-title {
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
}

.ll-video-hero .hero-title {
  max-width: 690px;
  color: #fff !important;
  font-family: var(--ll-font-display) !important;
  font-size: clamp(48px, 6vw, 86px) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.02 !important;
  text-transform: none !important;
}

.ll-video-hero .hero-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, .88) !important;
  font-size: clamp(16px, 1.4vw, 19px) !important;
  line-height: 1.65 !important;
}

.feature-area {
  padding: 56px 0 !important;
}

.feature-wrap {
  border-top: 1px solid var(--ll-brand-border);
  border-bottom: 1px solid var(--ll-brand-border);
  border-radius: 0;
  background: #fff;
}

.feature-item {
  min-height: 112px;
  border-right-color: var(--ll-brand-border) !important;
}

.feature-icon {
  color: var(--ll-brand-sienna) !important;
  box-shadow: none;
}

.feature-content h4 {
  color: var(--ll-brand-charcoal);
  font-size: 14px;
  font-weight: 500;
}

.feature-content p {
  color: var(--ll-brand-muted);
  font-size: 13px;
}

.ambiance-top-sellers {
  padding-bottom: clamp(72px, 8vw, 124px);
}

.ambiance-title,
.ll-discover-head h2,
.ll-featured-hero-content h2,
.ll-atelier-copy h2 {
  font-family: var(--ll-font-display) !important;
  font-weight: 400 !important;
}

.ambiance-link,
.ll-discover-link,
.site-heading-inline > a {
  color: var(--ll-brand-sienna) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  text-decoration-color: var(--ll-brand-sienna) !important;
}

.ambiance-editorial-img {
  background: var(--ll-brand-cream-soft);
}

.ll-discover-section {
  background: var(--ll-brand-cream-soft) !important;
}

.ll-discover-head p {
  color: var(--ll-brand-muted) !important;
}

.ll-discover-card {
  background: var(--ll-brand-charcoal);
}

.ll-discover-card::after,
.ll-featured-card::after,
.ll-featured-hero::after {
  background: rgba(53, 31, 39, .28) !important;
}

.ll-discover-card h3,
.ll-featured-card h3,
.ll-featured-hero-content h2 {
  color: #fff !important;
}

.ll-discover-arrow {
  border-color: rgba(255, 255, 255, .7) !important;
  color: #fff !important;
}

.ll-featured-collections-section {
  background: #fff !important;
}

.site-heading-inline {
  align-items: end;
  border-top: 1px solid var(--ll-brand-border);
  padding-top: 28px;
}

.site-heading-inline .site-title {
  color: var(--ll-brand-charcoal);
  font-size: clamp(34px, 4vw, 54px);
}

/* Product cards and shopping lists */
.product-img,
.ll-standard-product-card .product-img,
.ll-standard-product-card .product-img > a {
  background: var(--ll-brand-cream-soft) !important;
}

.ll-standard-product-card:hover .product-img,
.ll-standard-product-card:focus-within .product-img {
  box-shadow: inset 0 0 0 1px var(--ll-brand-sienna) !important;
}

.ll-card-hover-action {
  padding: 10px;
}

.ll-card-quickview {
  border-color: var(--ll-brand-plum);
  border-radius: 2px;
  background: rgba(255, 255, 255, .94);
  color: var(--ll-brand-plum);
  font-size: 13px;
  font-weight: 500;
}

.ll-card-quickview:hover {
  background: var(--ll-brand-plum);
  color: #fff;
}

.product-content {
  padding-top: 18px;
}

.product-title a,
.product-item .product-title a {
  color: var(--ll-brand-charcoal) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

.product-title a:hover {
  color: var(--ll-brand-sienna) !important;
}

.product-price,
.product-price span,
.product-item .product-price span {
  color: var(--ll-brand-muted) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.product-img .type,
.product-img .type.oos {
  border-radius: 2px;
  background: var(--ll-brand-plum) !important;
  color: #fff !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-area,
.ll-shop-shell,
.ll-category-shop,
.ll-collection-products {
  background: #fff !important;
}

.shop-widget,
.ll-filter-panel,
.ll-shop-sidebar {
  border-color: var(--ll-brand-border) !important;
  background: var(--ll-brand-cream-soft) !important;
}

.shop-widget-title,
.ll-filter-title {
  color: var(--ll-brand-plum) !important;
}

.shop-widget a:hover,
.shop-widget a.active,
.ll-filter-panel a:hover,
.ll-filter-panel a.active {
  color: var(--ll-brand-sienna) !important;
}

@media (min-width: 1200px) {
  .ll-shop-sidebar {
    position: static !important;
    top: auto !important;
    max-height: none;
    overflow: visible;
  }
}

/* Product details */
.ll-product-detail-shell,
.shop-single-area {
  background: #fff !important;
}

.ll-product-detail-media,
.shop-single-gallery,
.shop-single-img {
  background: var(--ll-brand-cream-soft) !important;
}

.ll-product-detail-kicker,
.shop-single-category,
.ll-product-eyebrow {
  color: var(--ll-brand-sienna) !important;
}

.ll-product-detail-title,
.shop-single-title {
  color: var(--ll-brand-charcoal) !important;
  font-family: var(--ll-font-display) !important;
}

.ll-product-detail-price,
.shop-single-price {
  color: var(--ll-brand-plum) !important;
}

.ll-product-facts,
.ll-service-options,
.ll-product-meta-grid {
  border-color: var(--ll-brand-border) !important;
  background: var(--ll-brand-cream-soft) !important;
}

/* Cart, checkout, account and client-care pages */
.ll-cart-shell,
.ll-cart-shell--upgraded,
.ll-checkout-shell,
.ll-order-success-shell,
.ll-client-care,
.ll-basic-page,
.ll-contact-page {
  background: var(--ll-brand-cream-soft) !important;
}

.ll-cart-heading,
.ll-checkout-heading,
.ll-cart-item,
.ll-cart-notes,
.ll-order-success-card,
.ll-client-care__section {
  border-color: var(--ll-brand-border) !important;
}

.ll-cart-summary,
.ll-checkout-panel,
.ll-order-success-card,
.ll-cart-empty,
.ll-client-care__card,
.ll-contact-card {
  border: 1px solid var(--ll-brand-border) !important;
  border-radius: 4px !important;
  background: #fff !important;
}

.ll-progress {
  background: var(--ll-brand-border) !important;
}

.ll-progress span {
  background: var(--ll-brand-sienna) !important;
}

.ll-quantity-control {
  border-color: var(--ll-brand-border) !important;
}

.ll-link-button,
.ll-cart-heading__meta a,
.ll-cart-summary__footer a,
.ll-cart-recommendations__head a {
  color: var(--ll-brand-sienna) !important;
}

.ll-payment-option:has(input:checked) {
  border-color: var(--ll-brand-sienna) !important;
  background: rgba(156, 68, 1, .04) !important;
}

/* Footer */
.ll-site-footer,
.ll-footer-main,
.ll-footer-bottom {
  background: #27231f !important;
}

.ll-site-footer {
  border-top: 6px solid var(--ll-brand-sienna);
}

.ll-footer-kicker {
  color: var(--ll-brand-lilac);
}

.ll-footer-brand {
  color: #fff !important;
  font-size: clamp(34px, 4vw, 56px);
}

.ll-footer-logo {
  display: inline-block;
  width: min(120px, 40%);
  margin: 8px 0 24px;
}

.ll-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .94;
}

.ll-footer-service-strip {
  border-color: rgba(198, 173, 208, .28);
}

.ll-footer-service-strip strong {
  color: var(--ll-brand-lilac);
}

.ll-footer-social a {
  border-radius: 50%;
}

.ll-footer-social a:hover {
  border-color: var(--ll-brand-lilac);
  background: var(--ll-brand-lilac);
  color: var(--ll-brand-plum);
}

.ll-footer-links a:hover,
.ll-footer-contact-list a:hover,
.ll-footer-legal a:hover {
  color: var(--ll-brand-lilac) !important;
}

.ll-footer-newsletter {
  border-color: rgba(198, 173, 208, .35);
  border-radius: 2px;
  background: rgba(255, 255, 255, .035) !important;
}

.ll-footer-newsletter:focus-within {
  border-color: var(--ll-brand-lilac);
}

.ll-footer-payments li {
  border-color: rgba(255, 255, 255, .24);
  border-radius: 2px;
}

.ll-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .48);
  font-family: var(--ll-font-sans);
  font-size: 10px;
  letter-spacing: .04em;
}

.ll-footer-partners a {
  color: rgba(255, 255, 255, .72);
  font-weight: 500;
}

.ll-footer-partners a:hover {
  color: var(--ll-brand-lilac);
}

#scroll-top {
  background: var(--ll-brand-sienna) !important;
  color: #fff !important;
}

/* Category directory */
.ll-category-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ll-category-directory__card {
  position: relative;
  display: flex;
  min-height: 210px;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--ll-brand-border);
  border-radius: 4px;
  background: var(--ll-brand-cream);
  isolation: isolate;
}

.ll-category-directory__card:nth-child(4n + 2) { background: var(--ll-brand-lilac); }
.ll-category-directory__card:nth-child(4n + 3) { background: var(--ll-brand-plum); }
.ll-category-directory__card:nth-child(4n + 4) { background: var(--ll-brand-charcoal); }

.ll-category-directory__image,
.ll-category-directory__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ll-category-directory__image {
  z-index: -2;
  object-fit: cover;
  transition: transform .35s ease;
}

.ll-category-directory__overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(24, 20, 18, .02) 22%, rgba(24, 20, 18, .78) 100%);
}

.ll-category-directory__card:not(.has-image) .ll-category-directory__overlay {
  background: linear-gradient(180deg, transparent, rgba(65, 62, 57, .12));
}

.ll-category-directory__monogram {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: -1;
  color: rgba(255, 255, 255, .34);
  font-family: var(--ll-font-display);
  font-size: 104px;
  line-height: 1;
}

.ll-category-directory__card:nth-child(4n + 1):not(.has-image) .ll-category-directory__monogram,
.ll-category-directory__card:nth-child(4n + 2):not(.has-image) .ll-category-directory__monogram {
  color: rgba(65, 62, 57, .16);
}

.ll-category-directory__content {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 14px;
  align-items: end;
  padding: 22px;
  color: #fff;
}

.ll-category-directory__card:not(.has-image):nth-child(4n + 1) .ll-category-directory__content,
.ll-category-directory__card:not(.has-image):nth-child(4n + 2) .ll-category-directory__content {
  color: var(--ll-brand-charcoal);
}

.ll-category-directory__count {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .76;
}

.ll-category-directory__content strong {
  min-width: 0;
  font-family: var(--ll-font-display);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 400;
  line-height: 1.16;
  overflow-wrap: break-word;
  word-break: normal;
}

.ll-category-directory__arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}

.ll-category-directory__card:hover .ll-category-directory__image { transform: scale(1.035); }
.ll-category-directory__card:hover .ll-category-directory__arrow { transform: translateX(4px); }

body.ll-categories-page .ll-site-header {
  position: relative !important;
  top: auto !important;
}

body.ll-categories-page .site-breadcrumb {
  display: flex;
  min-height: 190px;
  align-items: center;
  padding: 36px 0;
  overflow: hidden;
  background-position: center 46% !important;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

body.ll-categories-page .site-breadcrumb::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(31, 24, 20, .72) 0%, rgba(31, 24, 20, .46) 42%, rgba(31, 24, 20, .18) 100%);
}

body.ll-categories-page .site-breadcrumb .container {
  position: relative;
  z-index: 1;
}

body.ll-categories-page .site-breadcrumb .breadcrumb-title {
  margin: 0 0 12px;
  color: #fff !important;
  font-family: var(--ll-font-display);
  font-size: clamp(36px, 4vw, 52px) !important;
  font-weight: 400;
  line-height: 1;
}

body.ll-categories-page .site-breadcrumb .breadcrumb-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

body.ll-categories-page .site-breadcrumb .breadcrumb-menu li {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-family: var(--ll-font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

body.ll-categories-page .site-breadcrumb .breadcrumb-menu li::before {
  right: -15px;
  top: 0;
  content: "/";
  color: rgba(255, 255, 255, .55);
  font-family: inherit;
  font-size: 13px;
}

body.ll-categories-page .site-breadcrumb .breadcrumb-menu li a,
body.ll-categories-page .site-breadcrumb .breadcrumb-menu li.active {
  color: rgba(255, 255, 255, .9);
}

body.ll-categories-page .site-breadcrumb .breadcrumb-menu li a:hover {
  color: #fff;
}

/* Collection imagery varies widely, so hero copy must keep a fixed contrast layer. */
body.ll-shared-chrome .ll-detail-hero h1 {
  color: #fff !important;
  font-family: var(--ll-font-display) !important;
  font-size: clamp(46px, 5vw, 76px) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .55);
}

body.ll-shared-chrome .ll-detail-hero p {
  color: rgba(255, 255, 255, .94) !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

body.ll-shared-chrome .ll-detail-hero-mark {
  color: rgba(255, 255, 255, .2);
}

@media (max-width: 1199.98px) {
  .ll-category-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  body.ll-categories-page .site-breadcrumb {
    min-height: 150px;
    padding: 28px 0;
    background-position: center !important;
  }

  body.ll-categories-page .site-breadcrumb::before {
    background: rgba(31, 24, 20, .56);
  }

  .ll-category-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ll-category-directory__card { min-height: 168px; }
  .ll-category-directory__content { padding: 16px; }
  .ll-category-directory__content strong { font-size: 19px; }
}

.ll-mobile-menu-toggle,
.ll-mobile-nav {
  display: none !important;
}

@media (max-width: 991.98px) {
  .ll-site-header .ll-header-logo img {
    height: 46px;
  }

  .ll-site-header .ll-main-nav .nav-link {
    font-size: 12px !important;
  }

  .ll-video-hero {
    min-height: 620px;
  }

  .ll-video-hero .hero-content {
    max-width: 620px;
  }
}

@media (max-width: 767.98px) {
  .ll-site-header .ll-nav-row {
    grid-template-columns: auto 1fr auto;
  }

  .ll-site-header .ll-main-nav {
    display: none;
  }

  .ll-site-header .ll-nav-tools-right {
    gap: 2px;
  }

  .ll-site-header .ll-mobile-menu-toggle {
    display: inline-flex !important;
    order: -1;
  }

  .ll-site-header .ll-header-action[aria-label="Account"] {
    display: none;
  }

  .ll-mobile-nav:not([hidden]) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid var(--ll-brand-line);
    background: var(--ll-brand-white);
    box-shadow: 0 14px 28px rgba(65, 62, 57, .12);
  }

  .ll-mobile-nav .nav-link {
    min-height: 44px;
    padding: 13px 10px 10px;
    border-bottom: 1px solid var(--ll-brand-line);
    color: var(--ll-brand-charcoal);
    font-family: var(--ll-font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .ll-mobile-nav .nav-link.active {
    color: var(--ll-brand-sienna);
  }

  .ll-mobile-nav__group {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--ll-brand-line);
  }

  .ll-mobile-nav__group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-bottom: 0;
    cursor: pointer;
    list-style: none;
  }

  .ll-mobile-nav__group > summary::-webkit-details-marker {
    display: none;
  }

  .ll-mobile-nav__group > summary svg {
    width: 11px;
    height: 11px;
    transition: transform .18s ease;
  }

  .ll-mobile-nav__group[open] > summary svg {
    transform: rotate(180deg);
  }

  .ll-mobile-nav__submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 8px 10px;
    background: var(--ll-brand-cream-soft);
  }

  .ll-mobile-nav__submenu .nav-link {
    min-height: 38px;
    padding: 11px 8px 8px;
    font-size: 10px;
    letter-spacing: .035em;
    text-transform: none;
  }

  .ll-mobile-nav__submenu .nav-link.is-action {
    color: var(--ll-brand-sienna);
    font-weight: 600;
  }

  .ll-site-header .ll-announcement__message {
    font-size: 9px;
    letter-spacing: .1em;
  }

  .category-area {
    padding-top: 18px;
  }

  .category-slider .category-item {
    height: 146px;
  }

  .ll-video-hero {
    min-height: 560px;
  }

    .ll-video-hero .hero-content {
        left: auto !important;
        right: auto !important;
        width: min(100%, 520px);
        max-width: none;
        margin-right: auto;
        margin-left: auto;
        padding-right: 22px;
        padding-left: 22px;
        text-align: center;
    }

    .ll-video-hero .hero-title {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(40px, 12vw, 52px) !important;
    }

    .ll-video-hero .hero-sub-title,
    .ll-video-hero .hero-content p {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

  .feature-area {
    padding: 36px 0 !important;
  }

  .feature-item {
    min-height: 96px;
  }

  .site-heading-inline {
    align-items: start;
  }

  .ll-footer-brand {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-standard-product-card .product-img img,
  .ll-discover-card img,
  .ll-featured-card img,
  .ll-featured-hero img {
    transition: none !important;
  }
}

/* Persistent client-care launcher */
.ll-help-widget {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 1090;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--ll-font-sans);
}

.ll-help-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(370px, calc(100vw - 44px));
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(65, 62, 57, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 28px rgba(65, 62, 57, .14);
}

.ll-help-panel[hidden] { display: none !important; }

.ll-help-action {
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f7f4ef;
  color: var(--ll-brand-charcoal);
  transition: background-color .18s ease, transform .18s ease;
}

.ll-help-action--whatsapp { background: #eef6f0; }
.ll-help-action:hover { border-color: var(--ll-brand-border); background: #fff; color: var(--ll-brand-charcoal); transform: translateX(-2px); }

.ll-help-action__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--ll-brand-sienna);
  font-size: 15px;
}

.ll-help-action--whatsapp .ll-help-action__icon { color: #128c4a; }

.ll-help-action small,
.ll-help-action strong { display: block; }

.ll-help-action small {
  margin-bottom: 2px;
  color: var(--ll-brand-muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ll-help-action strong {
  color: var(--ll-brand-charcoal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.ll-help-toggle {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--ll-brand-sienna);
  color: #fff;
  padding: 6px 7px 6px 8px;
  box-shadow: 0 10px 24px rgba(65, 62, 57, .18);
  font-family: var(--ll-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ll-help-toggle__phone,
.ll-help-toggle__state {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ll-help-toggle__phone { background: rgba(255, 255, 255, .14); font-size: 14px; }
.ll-help-toggle__state { background: #fff; color: var(--ll-brand-sienna); font-size: 13px; }
.ll-help-toggle:focus,
.ll-help-toggle:active {
  outline: 0 !important;
  box-shadow: 0 10px 24px rgba(65, 62, 57, .18) !important;
}

.ll-help-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .92) !important;
  outline-offset: -4px;
  box-shadow: 0 10px 24px rgba(65, 62, 57, .18) !important;
}

@media (max-width: 767.98px) {
  .ll-help-widget { right: 12px; bottom: 74px; }
  .ll-help-panel { width: min(360px, calc(100vw - 24px)); }
  .ll-help-toggle { min-height: 48px; }
  .ll-help-toggle__phone,
  .ll-help-toggle__state { width: 35px; height: 35px; flex-basis: 35px; }
}

@media (max-width: 420px) {
  .ll-help-panel {
    width: min(310px, calc(100vw - 24px));
    grid-template-columns: 1fr;
  }
}
