/** Shopify CDN: Minification failed

Line 930:0 Unexpected "}"
Line 1072:7 Expected ":"
Line 1605:2 Expected "{" but found "."
Line 2587:3 Expected identifier but found "13"
Line 2602:1 Expected identifier but found "13"
Line 2963:0 Expected "}" to go with "{"

**/
/* ================================
   REVYNO CLEAN GLOBAL CSS
   Use this at the BOTTOM of base.css
   Keep section-specific CSS inside each section file.
================================ */

/* ---------- Brand tokens ---------- */
:root {
  --rev-brown: #4a2f22;
  --rev-dark-brown: #3b2418;
  --rev-gold: #b98956;
  --rev-soft-gold: #c6a87d;
  --rev-muted: #8a6f60;
  --rev-cream: #fffaf6;
  --rev-blush: #fbf6f1;
  --rev-border: rgba(234, 216, 200, 0.7);
  --rev-shadow: 0 25px 80px rgba(95, 58, 33, 0.08);
}

/* ---------- Global polish ---------- */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

::selection {
  background: #ead2bb;
  color: var(--rev-dark-brown);
}

/* ---------- Revyno design system ---------- */
.rev-section {
  padding: 120px 20px;
}

.rev-section-tight {
  padding: 90px 20px;
}

.rev-section-hero {
  padding: 140px 20px 120px;
}

.rev-container {
  max-width: 1100px;
  margin: 0 auto;
}

.rev-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(234, 216, 200, 0.6);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--rev-shadow);
}

.rev-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(185, 137, 86, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rev-card:hover::before {
  opacity: 1;
}

.rev-kicker {
  margin-bottom: 12px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 500;
  color: var(--rev-gold);
  text-transform: uppercase;
}

.rev-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.5px;
  text-align: center;
  color: var(--rev-brown);
}

.rev-subtext {
  max-width: 520px;
  margin: 20px auto 50px;
  text-align: center;
  color: var(--rev-muted);
  font-size: 16px;
  line-height: 1.9;
}

.rev-stack > * + * {
  margin-top: 18px;
}

/* ---------- Clean luxury header ---------- */
.header-wrapper,
.shopify-section-header,
.shopify-section-group-header-group {
  background: rgba(255, 250, 246, 0.96) !important;
  border-bottom: 1px solid rgba(234, 216, 200, 0.7) !important;
  box-shadow: 0 8px 30px rgba(90, 55, 30, 0.06) !important;
}

.header {
  padding-top: 28px !important;
  padding-bottom: 22px !important;
  text-align: center !important;
}

/* Logo */
.header__heading,
.header__heading-link,
.revyno-logo {
  margin: 0 auto !important;
  text-align: center !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 34px !important;
  letter-spacing: 8px !important;
  font-weight: 400 !important;
  color: #7a4f36 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

/* If you use an image logo, keep it controlled */
.header__heading-logo {
  max-width: 200px !important;
  height: auto !important;
}

/* Menu */
.header__inline-menu {
  display: flex !important;
  justify-content: center !important;
  gap: 42px !important;
  margin-top: 22px !important;
}

.header__menu-item,
.list-menu__item,
.header__inline-menu a,
.revyno-menu a {
  position: relative !important;
  display: inline-block !important;
  color: #5c4638 !important;
  font-size: 11px !important;
  letter-spacing: 2.8px !important;
  font-weight: 300 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.35s ease, opacity 0.35s ease, transform 0.35s ease !important;
}

.header__menu-item::after,
.list-menu__item::after,
.header__inline-menu a::after,
.revyno-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rev-soft-gold), transparent);
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

.header__menu-item:hover,
.list-menu__item:hover,
.header__inline-menu a:hover,
.revyno-menu a:hover {
  color: var(--rev-gold) !important;
  opacity: 1 !important;
  transform: translateY(-1px);
}

.header__menu-item:hover::after,
.list-menu__item:hover::after,
.header__inline-menu a:hover::after,
.revyno-menu a:hover::after {
  width: 100%;
}

/* Hide header clutter only if your design intentionally removes icons */
.header__search,
.header__icon--account {
  display: none !important;
}

/* Keep cart visible by default for shopping.
   To hide cart, uncomment the block below. */
/*
.header__icon--cart,
cart-icon-bubble,
a[href*="/cart"] {
  display: none !important;
}
*/

/* Optional: hide announcement bar */
/*
.announcement-bar,
.announcement-bar-section,
.header-announcement {
  display: none !important;
}
*/

/* ---------- Product page polish ---------- */
.product__info-wrapper {
  margin-bottom: 20px;
}

.revyno-product-trust {
  margin-top: 30px;
}

.revyno-product-details {
  margin-top: 60px;
}

/* Add-to-cart button */
.product-form__submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4af7f, var(--rev-gold));
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(185, 137, 86, 0.25);
}

.product-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 137, 86, 0.45);
  background: linear-gradient(135deg, #e6c89c, #c79a63);
}

/* ---------- Collection/product card polish ---------- */
.card-wrapper {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card-wrapper img {
  transition: transform 0.6s ease;
}

.card-wrapper:hover img {
  transform: scale(1.04);
}

.card__heading {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.card-wrapper:hover .card__heading {
  color: #8b5e3c;
  letter-spacing: 0.5px;
}

.price {
  color: #8b5e3c;
}

/* ---------- Ultra interactions for Revyno custom cards ---------- */
.revyno-hero-card,
.revyno-collection-card,
.revyno-faq-shell,
.revyno-testimonial-card {
  position: relative;
  overflow: hidden;
}

.revyno-hero-card::after,
.revyno-collection-card::after,
.revyno-faq-shell::after,
.revyno-testimonial-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: radial-gradient(
    500px circle at var(--rev-x, 50%) var(--rev-y, 50%),
    rgba(255, 255, 255, 0.42),
    rgba(185, 137, 86, 0.14) 28%,
    transparent 60%
  );
  transition: opacity 0.35s ease;
}

.revyno-hero-card:hover::after,
.revyno-collection-card:hover::after,
.revyno-faq-shell:hover::after,
.revyno-testimonial-card:hover::after {
  opacity: 1;
}

.revyno-collection-card,
.revyno-testimonial-card,
.revyno-btn,
.revyno-faq-card summary {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.revyno-collection-card img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.revyno-collection-card:hover img {
  transform: scale(1.07);
}

.revyno-collection-card:hover,
.revyno-testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
}

/* ---------- Section spacing ---------- */
.revyno-collections,
.revyno-testimonials,
.revyno-faq {
  margin-top: 60px;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .header {
    padding-top: 24px !important;
    padding-bottom: 18px !important;
  }

  .header__heading,
  .header__heading-link,
  .revyno-logo {
    font-size: 22px !important;
    letter-spacing: 5px !important;
  }

  .header__inline-menu {
    gap: 22px !important;
    margin-top: 16px !important;
    flex-wrap: wrap !important;
  }

  .header__menu-item,
  .list-menu__item,
  .header__inline-menu a {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }
}

@media (max-width: 640px) {
  .rev-section {
    padding: 70px 16px;
  }

  .rev-section-hero {
    padding: 100px 16px 70px;
  }

  .rev-heading {
    font-size: 34px;
    line-height: 1.2;
  }

  .rev-subtext {
    font-size: 14px;
  }

  .revyno-hero-card::after,
  .revyno-collection-card::after,
  .revyno-faq-shell::after,
  .revyno-testimonial-card::after {
    display: none;
  }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== REVYNO PRODUCT ULTRA LUXURY ===== */

.product__info-wrapper {
  position: relative;
}

.product__title,
.product__title h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(34px, 4vw, 56px) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  color: #4a2f22 !important;
  letter-spacing: -0.5px !important;
}

.price,
.price__regular,
.price-item {
  color: #8b5e3c !important;
  font-size: 18px !important;
  letter-spacing: 1px !important;
}

.product-form__submit,
button[name="add"] {
  border-radius: 999px !important;
  padding: 17px 28px !important;
  background: #4a2f22 !important;
  color: #fffaf6 !important;
  border: 1px solid #4a2f22 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  transition: all 0.35s ease !important;
  box-shadow: 0 16px 36px rgba(74,47,34,0.16) !important;
}

.product-form__submit:hover,
button[name="add"]:hover {
  background: transparent !important;
  color: #4a2f22 !important;
  transform: translateY(-2px);
}

.product-form__input,
.product-form__quantity,
.quantity,
.quantity__input {
  border-radius: 999px !important;
}

.product__description,
.product__description p {
  color: #7b6253 !important;
  line-height: 1.9 !important;
  font-size: 15px !important;
}

.product__media img {
  border-radius: 30px !important;
}

.product__media-wrapper {
  border-radius: 34px !important;
}

@media (max-width: 749px) {
  .product__title,
  .product__title h1 {
    font-size: 34px !important;
  }

  .product-form__submit,
  button[name="add"] {
    width: 100% !important;
    position: sticky !important;
    bottom: 14px !important;
    z-index: 20 !important;
  }
}

/* ===== FINAL PRODUCT SPACING ===== */

.product__info-wrapper {
  padding-left: 40px;
}

.product__title {
  margin-bottom: 10px;
}

.price {
  margin-bottom: 18px;
}

.product-form__input {
  margin-bottom: 16px;
}

.product-form__buttons {
  margin-top: 20px;
  margin-bottom: 10px;
}

.product__description {
  margin-top: 30px;
}

/* ===== REVYNO FINAL PRODUCT POLISH ===== */

.product__info-wrapper {
  padding-left: 40px;
  margin-bottom: 20px;
}

.product__title {
  margin-bottom: 10px;
}

.price {
  margin-bottom: 18px;
}

.product-form__input {
  margin-bottom: 16px;
}

.product-form__buttons {
  margin-top: 20px;
  margin-bottom: 10px;
}

.product__description {
  margin-top: 30px;
  border-top: 1px solid rgba(234,216,200,.6);
  padding-top: 25px;
}

.product__media img {
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.product__media:hover img {
  transform: scale(1.04);
}

.product__media-wrapper {
  overflow: hidden;
}

.badge {
  background: #4a2f22;
  color: #fffaf6;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 1px;
}

.quantity {
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(234,216,200,.7);
}

.revyno-product-trust {
  margin-top: 30px;
}

.revyno-product-details {
  margin-top: 70px;
}

@media (max-width: 749px) {
  .product__info-wrapper {
    padding-left: 0;
  }

  .product__title {
    font-size: 30px;
  }

  .product-form__buttons {
    position: sticky;
    bottom: 10px;
    z-index: 20;
  }
}

/* ===== REVYNO LUXURY PRODUCT INFORMATION ===== */

.product__media {
  border-radius: 34px;
  background: #fffaf6;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(95,58,33,.08);
}

.product__media img {
  border-radius: 34px;
  transition: transform .8s ease;
}

.product__media:hover img {
  transform: scale(1.04);
}

.product__title h1,
.product__title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(38px, 5vw, 60px) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  color: #4a2f22 !important;
  margin-bottom: 18px !important;
}

.price,
.price-item {
  color: #8b5e3c !important;
  font-size: 20px !important;
  letter-spacing: 1px !important;
  margin-bottom: 24px !important;
}

.product-form__input {
  margin-bottom: 22px !important;
}

.quantity {
  border-radius: 999px !important;
  border: 1px solid rgba(234,216,200,.8) !important;
  background: #fffaf6 !important;
  overflow: hidden;
}

.product-form__submit:hover,
button[name="add"]:hover {
  background: transparent !important;
  color: #4a2f22 !important;
  transform: translateY(-2px);
}

.product__description {
  margin-top: 34px !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(234,216,200,.7);
  color: #7b6253 !important;
  line-height: 1.9 !important;
  font-size: 15px !important;
}

.share-button {
  margin-top: 18px;
}

/* sold out badge */
.badge {
  background: #4a2f22 !important;
  color: #fffaf6 !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
}

/* mobile */
@media (max-width: 749px) {
  .product {
    grid-template-columns: 1fr !important;
  }
}

select[name^="options"] {
  display: none !important;
}

.revyno-real-select {
  display: none !important;
}

.revyno-option-btn {
  transition: all 0.2s ease;
}

.revyno-option-btn:hover {
  transform: scale(1.08);
}

.revyno-option-btn.active {
  border: 2px solid #4a2f22;
  box-shadow: 0 0 0 2px rgba(74,47,34,0.1);
}

/* OPTION WRAPPER */
.revyno-option {
  margin-bottom: 24px;
}

/* LABEL */
.revyno-option label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 10px;
}

/* BUTTON ROW */
.revyno-option-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* SWATCH BUTTON */
.revyno-option-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

/* SWATCH CIRCLE */
.revyno-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all 0.25s ease;
}

/* HOVER */
.revyno-option-btn:hover .revyno-swatch {
  transform: scale(1.1);
}

/* ACTIVE STATE */
.revyno-option-btn.active .revyno-swatch {
  border: 2px solid #4a2f22;
  box-shadow: 0 0 0 2px rgba(74,47,34,0.1);
}

/* SPACING BEFORE QUANTITY */
.revyno-option + .revyno-option {
  margin-top: 10px;

/* ===== REVYNO SAFE PRODUCT/SWATCH CSS ===== */

.revyno-real-select,
select[name^="options"] {
  display: none !important;
}

.revyno-option {
  margin-bottom: 24px;
}

.revyno-option label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 10px;
}

.revyno-option-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.revyno-option-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.revyno-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(74,47,34,0.25);
  transition: all 0.25s ease;
}

.revyno-option-btn:hover .revyno-swatch {
  transform: scale(1.1);
}

.revyno-option-btn.active .revyno-swatch {
  border: 2px solid #4a2f22;
  box-shadow: 0 0 0 2px rgba(74,47,34,0.1);
}

@media (max-width: 749px) {
  .shopify-pc__banner {
    position: fixed !important;
    bottom: 0;
    height: auto !important;
    max-height: 80px;
    overflow: hidden;
    z-index: 10;
  }
}

@media (max-width: 749px) {
  .revyno-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .revyno-sticky-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
  }

  .revyno-sticky-btn {
    background: #4a2f22;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
  }

  body {
    padding-bottom: 90px;
  }
}

  .revyno-sticky-btn {
    box-shadow: 0 10px 24px rgba(74, 47, 34, 0.22);
  }

  .revyno-sticky-btn:active {
    transform: scale(0.96);
  }

  #revyno-sticky-title {
    font-size: 12px;
    letter-spacing: 0.4px;
  }

  #revyno-sticky-price {
    font-size: 12px;
    color: #8b5e3c;
  }
}

@media (max-width: 749px) {
  .revyno-sticky-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 9999;

    transform: opacity 0.25s ease;
    opacity: 0;
    transition: all 0.35s ease;

    pointer-events: none;
  }

  .revyno-sticky-bar.show {
    transform: opacity 0.25s ease;
    opacity: 1;
    pointer-events: auto;
  }
}

/* SHOW CART ICON */
.header__icon--cart,
cart-icon-bubble,
a[href*="/cart"] {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.revyno-original-quick-add {
  display: none !important;
}

.revyno-listing-add-btn {
  width: 100%;
  background: #3b2a22; /* match your theme */
  color: #fff;
  padding: 10px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  z-index: 10;
}
}

.revyno-listing-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.revyno-listing-add-btn:active {
  transform: scale(0.96);
}

.quick-add {
  display: none !important;
}

.revyno-sticky-bar {
  display: block !important;
  position: fixed !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 18px !important;
  z-index: 99998 !important;
}

.revyno-sticky-bar {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  position: fixed !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 18px !important;
  z-index: 999999 !important;
}

.revyno-sticky-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  display: block;
}

.revyno-sticky-bar {
  background: red;
  color: white;
  padding: 20px;
  text-align: center;
}

.revyno-sticky-wrapper,
.revyno-sticky-bar,
.revyno-sticky-content,
.revyno-sticky-actions,
.revyno-sticky-btn,
.revyno-sticky-cart {
  pointer-events: auto !important;
}

.revyno-sticky-wrapper {
  z-index: 999999 !important;
}

a[href="/cart"] {
  position: relative !important;
}

a[href="/cart"] .sticky-cart-bubble {
  position: absolute !important;
  top: -10px !important;
  right: -8px !important;
}

@media (min-width: 768px) {
  .revyno-sticky-bar {
    display: none !important;
  }
}

.revyno-mini-cart-card {
  display: flex !important;
}

@media (min-width: 768px) {
  .revyno-mini-cart-card {
    left: auto !important;
    right: 24px !important;
    bottom: 90px !important;
    width: 320px !important;
    max-width: 320px !important;
    padding: 12px 14px !important;
  }
}

.revyno-product-accordion {
  margin-top: 32px;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.revyno-accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.revyno-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: transparent;
  border: none;

  padding: 18px 0;

  font-size: 15px;
  font-weight: 500;

  cursor: pointer;

  color: #222;
}

.revyno-accordion-header span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.revyno-accordion-item.active .revyno-accordion-header span {
  transform: rotate(45deg);
}

.revyno-accordion-content {
  overflow: hidden;
  max-height: 0;

  transition:
    max-height 0.3s ease,
    opacity 0.2s ease;
    all 0.3s ease;

  line-height: 1.7;
}

.revyno-accordion-item.active .revyno-accordion-content {
  max-height: 500px;
  opacity: 1;

  padding-bottom: 18px;
}

.revyno-accordion-item[open] .revyno-accordion-content {
  display: block !important;
  max-height: 500px !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: #5c3a2e !important;
  padding-top: 12px;
}

.revyno-accordion-content,
.revyno-accordion-content p {
  color: #5c3a2e !important;
  font-size: 14px;
  line-height: 1.7;
}

.revyno-add-btn {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

.revyno-add-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.revyno-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.revyno-accordion-header::after {
  content: "⌄";
  font-size: 12px;
  transition: transform 0.3s ease;
}

details[open] .revyno-accordion-header::after {
  transform: rotate(180deg);
}

.revyno-accordion-content {
  padding-top: 10px;
  padding-bottom: 14px;
  color: #6b625d;
  line-height: 1.7;
  font-size: 14px;
}

.revyno-accordion-content p {
  margin: 0 0 10px;
}

.revyno-upsell {
  margin-top: 10px;
}

.revyno-upsell-title {
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 500;
}

.revyno-upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.revyno-upsell-item {
  text-decoration: none;
  color: inherit;
}

.revyno-upsell-item img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.revyno-upsell-item p {
  margin-top: 10px;
  font-size: 13px;
}

.revyno-upsell-item span {
  font-size: 13px;
  opacity: 0.7;
}

@media screen and (max-width: 749px) {
  footer,
  .footer,
  .shopify-section-group-footer-group {
    position: relative;
    z-index: 9999;
    background: #fffaf6;
  }

  .revyno-sticky-bar {
    z-index: 1000 !important;
  }
}

@media screen and (max-width: 749px) {
  .disclosure__list-wrapper {
    position: fixed !important;
    left: 16px !important;
    right: 16px !important;
    bottom: 24px !important;
    top: auto !important;

    background: #fffaf6 !important;
    border-radius: 18px !important;
    padding: 12px !important;

    max-height: 55vh !important;
    overflow-y: auto !important;

    z-index: 999999 !important;
  }

  .disclosure__list {
    background: #fffaf6 !important;
  }

  .disclosure__item,
  .disclosure__link {
    color: #3b2a24 !important;
    background: #fffaf6 !important;
  }

  .disclosure__button,
  .localization-form__select {
    position: relative !important;
    z-index: 999999 !important;
  }
}

@media screen and (max-width: 749px) {
  .localization-form:has(.disclosure__list-wrapper) ~ * {
    opacity: 1 !important;
  }

  body:has(.disclosure__list-wrapper) {
    overflow: auto !important;
  }

  .modal-overlay,
  .disclosure-overlay,
  .localization-overlay,
  .country-selector__overlay {
    display: none !important;
    opacity: 0 !important;
    background: transparent !important;
  }
}

/* Mobile luxury spacing */
@media screen and (max-width: 749px) {

  .revyno-sticky-bar {
    padding: 10px 14px;
    min-height: 78px;
  }

  .revyno-sticky-price-line {
    gap: 6px;
    align-items: center;
  }

  .revyno-sticky-urgency {
    font-size: 12px;
    opacity: 0.8;
  }

  .accordion__content {
    line-height: 1.9;
    font-size: 15px;
  }

  .accordion {
    border-radius: 18px;
  }

  .product__accordion {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

@media screen and (max-width: 749px) {

  .disclosure__list-wrapper {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    top: 10vh !important;
    bottom: auto !important;

    width: 92vw !important;
    max-width: 420px !important;

    max-height: 70vh !important;
    overflow-y: auto !important;

    background: #f8f4ef !important;
    border-radius: 22px !important;
    padding: 18px !important;
    z-index: 999999 !important;

    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
  }

  .disclosure__list-wrapper input[type="search"] {
    width: 100% !important;
    height: 48px !important;

    border-radius: 14px !important;
    border: 1px solid #d8cfc3 !important;

    padding: 0 16px !important;

    font-size: 16px !important;

    background: white !important;
  }

  .disclosure__list {
    margin-top: 16px !important;
  }

  .disclosure__item {
    padding: 10px 0 !important;
  }
}

/* REVYNO COLLECTION STYLE */

.revyno-collection-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:22px;
  aspect-ratio:1/1;
  height:auto;
  margin:0;
}

.revyno-collection-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.revyno-collection-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:16px;
  background:linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05)
  );
}

.revyno-collection-card:hover .revyno-collection-image {
  transform: scale(1.06);
}

.revyno-collection-sub{
  font-size:9px;
  letter-spacing:2px;
  color:#fff;
  margin-bottom:4px;
}

.revyno-collection-title{
  font-size:22px;
  line-height:1.1;
  color:#fff;
  margin:0;
}

.revyno-collections-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;

  width: 100% !important;
  max-width: 92% !important;

  margin-left: auto !important;
  margin-right: auto !important;

  padding: 0 !important;
  list-style: none !important;
  box-sizing: border-box !important;
}

.revyno-collections-grid li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.revyno-collection-card {
  width: 100% !important;
}

@media screen and (max-width: 749px) {
  .revyno-collections-grid > li:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: calc((100% - 14px) / 2) !important;
  }
}

 @media screen and (min-width: 990px) {

  .revyno-collections-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;

    gap: 24px !important;

    max-width: 900px !important;
    width: 100% !important;

    margin: 5px auto 80px !important;
    padding: 0 !important;

    list-style: none !important;
  }

  .revyno-collections-grid > li {
    width: 320pxpx !important;
    flex: 0 0 320pxpx !important;

    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .revyno-collection-card {
    width: 320px !important;
    height: 260px !important;
    aspect-ratio: 1 / 1 !important;

    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .revyno-collection-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .revyno-collection-overlay {
    padding: 18px !important;
  }

  .revyno-collection-title {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .revyno-collection-sub {
    font-size: 9px !important;
    letter-spacing: .2em !important;
  }

.main-page-title,
.title,
h1 {
  text-align: center !important;
  display: block;
  width: 100%;
  margin: 0 auto 30px auto !important;
}

.title-wrapper,
.page-width {
  display: flex;
  flex-direction: column;
  align-items: center !important;
}

.page-width p,
.rte p,
.main-page-title + div p {
  color: #5f514a !important;
  opacity: 1 !important;
}

.page-width {
  opacity: 1 !important;
}

.template-page .page-width p,
.template-page .rte p,
body .page-width p {
  color: #4f4038 !important;
  opacity: 1 !important;
  font-weight: 500 !important;
}

h1 {
  font-size: 52px !important;
}

.revyno-collections-heading {
  width: 100%;
  text-align: center !important;
  display: block;
  margin: 0 auto 32px auto;

  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
}


@media screen and (max-width: 749px) {

  .page-width {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

}

@media screen and (max-width: 749px) {

  .title-wrapper-with-link,
  .title-wrapper,
  .page-width {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .revyno-collections-heading {
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin: 0 auto 24px auto !important;
    font-size: 34px;
    margin-bottom: 24px;
  }

  .revyno-collections-heading-wrap {
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.revyno-collections-heading {
  text-align: center !important;
  margin: 0 auto 28px !important;
  width: auto !important;
}

.revyno-product-tile {
  background: #faf6f1;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.revyno-product-tile:hover {
  transform: translateY(-4px);
}

.revyno-product-tile-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.revyno-product-tile-info {
  padding: 14px;
  text-align: center;
}

.revyno-product-tile-info h3 {
  color: #4b342d;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: 500;
}

.revyno-product-tile-info p {
  color: #8a6f61;
  font-size: 14px;
}

/* MOBILE */
@media screen and (max-width: 749px) 
  .revyno-product-tile-info {
    padding: 10px;
  }

  .revyno-product-tile-info h3 {
    font-size: 13px;
  }

  .revyno-product-tile-info p {
    font-size: 13px;
  }
/* FORCE SMALLER PRODUCT GRID */
.revyno-product-tile-img {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: 180px !important;
  object-fit: cover !important;
}

.revyno-product-tile-info {
  padding: 8px !important;
}

.revyno-product-tile-info h3 {
  font-size: 12px !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
}

.revyno-product-tile-info p {
  font-size: 12px !important;
}

/* desktop */
@media screen and (min-width: 990px) {
  .revyno-product-tile-img {
    max-height: 240px !important;
  }

  .revyno-product-tile {
  max-width: 160px !important;
  margin: 0 auto !important;
}

.revyno-product-tile img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block !important;
}

@media screen and (min-width: 990px) {
  .revyno-product-tile {
    max-width: 220px !important;
  }

  .revyno-product-tile img {
    height: 220px !important;
  }

  /* Clean collection product page */
.facets-wrapper,
.facets-container,
.mobile-facets__wrapper,
#FacetFiltersForm,
#FacetFiltersFormMobile,
.product-count {
  display: none !important;
}

.revyno-product-tile {
  display: block !important;
  background: #faf6f1 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.revyno-product-tile-img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
}

.revyno-product-tile-info {
  padding: 10px !important;
  text-align: center !important;
}

.revyno-product-tile-info h3 {
  font-size: 12px !important;
  line-height: 1.35 !important;
  color: #4b342d !important;
  margin: 0 0 6px !important;
  text-decoration: none !important;
}

.revyno-product-tile-info p {
  font-size: 12px !important;
  color: #8a6f61 !important;
  margin: 0 !important;
}

.collection-hero__title,
.template-collection h1 {
  text-align: center !important;
  font-size: 30px !important;
  color: #4b342d !important;
}

.collection-hero__description {
  text-align: center !important;
  padding: 0 18px !important;
  color: #7a6a63 !important;
}

.collection-hero__title,
.template-collection h1 {
  text-align: center !important;
  font-size: 30px !important;
  color: #4b342d !important;
}

.collection-hero__description {
  text-align: center !important;
  padding: 0 18px !important;
  color: #7a6a63 !important;
}

  .revyno-product-grid-final {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 14px !important;
  padding: 0 14px 40px !important;
  max-width: 520px !important;
  margin: 28px auto !important;
}

.revyno-product-card-final {
  display: block !important;
  background: #faf6f1 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.revyno-product-img-final {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
}

.revyno-product-info-final {
  padding: 9px !important;
  text-align: center !important;
}

.revyno-product-info-final h3 {
  font-size: 11px !important;
  line-height: 1.35 !important;
  color: #4b342d !important;
  margin: 0 0 5px !important;
  text-decoration: none !important;
}

.revyno-product-info-final p {
  font-size: 11px !important;
  color: #8a6f61 !important;
  margin: 0 !important;
}

@media screen and (min-width: 750px) {
  .revyno-product-grid-final {
    grid-template-columns: repeat(4, 180px) !important;
    max-width: 820px !important;
    justify-content: center !important;
    gap: 22px !important;
  }

  .revyno-product-img-final {
    height: 160px !important;
  }

.footer-block__details-content {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-block__details-content li {
  list-style: none !important;
}

.footer-block__details-content li::marker,
.footer-block__details-content li::before {
  display: none !important;
  content: none !important;
}

.footer * ul,
.footer * li {
  list-style: none !important;
}

.footer * li::before,
.footer * li::marker {
  content: none !important;
  display: none !important;
}

.footer ul {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.list-social__item::before,
.list-social li::before,
.list-social__item::marker,
.list-social li::marker {
  display: none !important;
  content: none !important;
}

.footer-social-clean {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.footer-social-clean a {
  text-decoration: underline;
  color: inherit;
}

@media screen and (min-width: 750px) {

  .footer__content-bottom-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    width: 100% !important;
  }

  /* country selector lower */
  .footer_column.footer_localization {
    margin-top: 80px !important;
  }

  /* payment section lower */
  .footer__payment {
    margin-top: 80px !important;
  }

  /* payment icons one line */
  .list-payment {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    align-items: center !important;
  }

  .list-payment li {
    display: inline-flex !important;
  }

  @media screen and (min-width: 750px) {

  .footer-bottom-top {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
  }

  .footer-bottom-bottom {
    margin-top: -40px !important;
  }

  .footer__payment {
    margin-top: 70px !important;
  }

  .footer_column.footer_localization {
    margin-top: 70px !important;
  }

  .list-payment {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  @media screen and (min-width: 750px) {

  /* bottom footer layout */
  .footer__content-bottom-wrapper {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* left side country selector */
  .footer_column.footer_localization {
    margin-top: 40px !important;
  }

  /* right side payment section */
  .footer_column.footer_column--info {
    margin-top: 40px !important;
    text-align: right !important;
  }

  /* payment icons single row */
  .list-payment {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .list-payment li {
    display: inline-flex !important;
  }

  /* policy links spacing */
  .footer__policies {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 18px !important;
    margin-top: 12px !important;
  }

/* ===== REVYNO LUXURY COLORS ===== */

:root {
  --revyno-bg: #f7f2ec;
  --revyno-card: #efe7df;
  --revyno-text: #5c463d;
  --revyno-soft: #9c8577;
  --revyno-border: #e3d7cd;
  --revyno-button: #4b2e2a;
  --revyno-button-hover: #6a433d;
}

/* SITE BACKGROUND */
body,
.color-background-1,
.gradient {
  background: var(--revyno-bg) !important;
  color: var(--revyno-text) !important;
}

/* PRODUCT CARDS */
.card,
.card-wrapper,
.product-card-wrapper {
  background: var(--revyno-card) !important;
  border-radius: 22px;
}

/* PRODUCT TITLES */
.card__heading,
.full-unstyled-link,
.product__title h1,
h1,
h2,
h3 {
  color: var(--revyno-text) !important;
}

/* PRICE */
.price {
  color: var(--revyno-soft) !important;
}

/* BUTTONS */
.button,
button,
.product-form__submit {
  background: var(--revyno-button) !important;
  color: #fff !important;
  border-radius: 999px !important;
  border: none !important;
}

.button:hover,
button:hover,
.product-form__submit:hover {
  background: var(--revyno-button-hover) !important;
}

/* INPUTS */
input,
select,
textarea {
  border-radius: 12px !important;
  border: 1px solid var(--revyno-border) !important;
  background: #fffdfb !important;
}

/* FOOTER */
.footer {
  background: #f3ece5 !important;
  color: var(--revyno-text) !important;
}

/* SOCIAL ICONS */
.footer .list-social__link {
  color: var(--revyno-text) !important;
}

/* ANNOUNCEMENT BAR */
.utility-bar {
  background: #eadfd5 !important;
  color: var(--revyno-text) !important;
}

/* HEADER */
.header-wrapper {
  background: rgba(247,242,236,0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--revyno-border);
}

/* COLLECTION TITLES */
.collection-hero__title {
  color: var(--revyno-text) !important;
}

/* ACCORDIONS */
.accordion {
  border-color: var(--revyno-border) !important;
}

/* MOBILE STICKY BUY BAR */
.sticky-atc,
.product-form-sticky {
  background: #f8f1ea !important;
  border-top: 1px solid var(--revyno-border);
}

/* Custom header smaller */
.custom-header {
  padding: 8px 24px !important;
  min-height: 80px !important;
}

.custom-header__logo img {
  max-width: 78px !important;
  height: auto !important;
}

.custom-header__nav {
  gap: 22px !important;
}

.custom-header__nav a,
.custom-header__cart {
  font-size: 15px !important;
  letter-spacing: 0.08em !important;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .custom-header {
    padding: 8px 14px !important;
    min-height: 72px !important;
  }

  .custom-header__logo img {
    max-width: 70px !important;
  }

  .custom-header__nav {
    gap: 14px !important;
  }

  .custom-header__nav a,
  .custom-header__cart {
    font-size: 14px !important;
  }
}

/* Hide Skip to content unless keyboard focused */
.skip-to-content-link {
  position: absolute !important;
  left: -9999px !important;
}

.skip-to-content-link:focus {
  left: 10px !important;
}

/* CLEAN FOOTER */
.footer {
  padding-top: 40px !important;
}

.footer__content-top {
  padding-bottom: 20px !important;
  border-bottom: none !important;
}

.footer__content-bottom-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
  padding: 20px 0 !important;
}

.footer__localization,
.footer__column--info {
  margin: 0 !important;
}

.footer__list-social {
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.list-payment {
  justify-content: center !important;
}

.footer__copyright {
  text-align: center !important;
  width: 100% !important;
  margin-top: 10px !important;
}

.footer-block__heading {
  display: none !important;
}

/* MOBILE */
@media screen and (max-width: 749px) {

  .footer__content-bottom-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .footer__localization {
    text-align: center !important;
  }

  .footer__column--info {
    text-align: center !important;
  }

  .list-payment {
    flex-wrap: wrap !important;
  }

  @media screen and (min-width: 750px) {

  .footer {
    text-align: center !important;
    padding-top: 30px !important;
  }

  .footer__content-top,
  .footer__content-bottom,
  .footer__content-bottom-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer__content-bottom-wrapper {
    gap: 18px !important;
    padding: 15px 0 !important;
  }

  .footer__localization,
  .footer__column--info,
  .footer__payment,
  .footer__copyright {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .list-payment {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .footer__policies {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
  }

  .footer-block__heading {
    display: none !important;
  }

  .custom-footer-policies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 6px;
  padding: 0;
}

.custom-footer-policies a {
  font-size: 12px !important;
  color: rgba(0,0,0,0.55) !important;
  text-decoration: none !important;
  font-weight: 400 !important;
}

.custom-footer-copyright {
  font-size: 12px !important;
  color: rgba(0,0,0,0.55) !important;
  text-align: center;
  margin-top: 4px;
}

.custom-footer-policies a,
.custom-footer-policies a:visited,
.custom-footer-policies a:hover,
.custom-footer-policies a:active {
  color: #8f8178 !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  opacity: 0.8;
}

.custom-footer-policies li {
  list-style: none !important;
}

.custom-footer-policies {
  gap: 10px !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Center payment methods */
.footer__content-bottom-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-align: center !important;
}

/* Payment text */
.footer__payment .caption {
  text-align: center !important;
  width: 100% !important;
  font-size: 12px !important;
  color: #8f8178 !important;
  margin-bottom: 8px !important;
}

/* Payment icons spacing */
.list-payment {
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 auto !important;
}

/* Make footer narrower + cleaner */
.footer {
  padding-top: 30px !important;
  padding-bottom: 25px !important;
}

.footer__content-top,
.footer__content-bottom {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Country selector luxury style */
.custom-footer-localization h2,
.footer__localization h2 {
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  color: #8f8178 !important;
  margin-bottom: 10px !important;
}

.localization-form,
.localization-form__select {
  margin: 0 auto !important;
  text-align: center !important;
}

.localization-form__select {
  min-width: 180px !important;
  height: 42px !important;
  border: 1px solid #d8c9bf !important;
  border-radius: 999px !important;
  background: #fbf7f2 !important;
  color: #8f8178 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  padding: 0 18px !important;
}

.localization-form__select:hover {
  border-color: #bfa99b !important;
}

.luxury-country-selector select,
.luxury-country-selector button,
.luxury-country-selector .disclosure__button {
  min-width: 180px !important;
  height: 42px !important;
  border: 1px solid #d8c9bf !important;
  border-radius: 999px !important;
  background: #fbf7f2 !important;
  color: #8f8178 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
}

/* Center country region title */
.footer__localization h2,
.custom-footer-localization h2 {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
}

/* Mobile social icons spacing */
@media screen and (max-width: 749px) {

  .footer__list-social {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    gap: 18px !important;
    justify-content: center !important;
  }

  .footer__content-top {
    padding-top: 12px !important;
  }

  .footer__blocks-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .footer__list-social {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 22px !important;
}

.footer_list-social .list-social_item {
  margin: 0 !important;
}

.footer__list-social {
  margin-bottom: 40px !important;
}

.footer .list-social__link {
  font-size: 15px !important;
}

.footer .copyright__content,
.footer .policies li a {
  font-size: 13px !important;
}

.footer__content-bottom {
  padding-top: 20px !important;
}

@media screen and (max-width: 749px) {
  .social-mobile-spacing {
    margin-top: 25px !important;
    margin-bottom: 35px !important;
  }

  /* Footer typography - luxury soft style */
.footer,
.footer a,
.footer span,
.footer small,
.footer h2 {
  font-family: inherit !important;
  color: #8f8178 !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
}

.footer a {
  text-decoration: none !important;
}

/* Social links */
.footer__list-social {
  gap: 18px !important;
}

.footer__list-social a,
.footer .list-social__link {
  font-size: 13px !important;
  color: #6f5b51 !important;
  text-decoration: none !important;
}

/* Country / payment / policies */
.custom-footer-localization h2,
.footer__localization h2 {
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
}

.custom-footer-payment span {
  font-size: 12px !important;
  color: #9a8a82 !important;
}

.custom-footer-policies a,
.custom-footer-policies li {
  font-size: 11px !important;
  color: #9a8a82 !important;
  text-decoration: none !important;
}

.custom-footer-copyright,
.custom-footer-copyright small {
  font-size: 11px !important;
  color: #9a8a82 !important;
}

/* Mobile: more breathing space */
@media screen and (max-width: 749px) {
  .footer__list-social {
    flex-wrap: wrap !important;
    row-gap: 12px !important;
    column-gap: 24px !important;
    padding: 14px 20px !important;
  }

  .footer__list-social a,
  .footer .list-social__link {
    font-size: 14px !important;
  }

  .custom-footer {
    gap: 18px !important;
    padding-top: 24px !important;
    padding-bottom: 28px !important;
  }

  .custom-footer-policies {
    row-gap: 10px !important;
    column-gap: 18px !important;
    padding: 0 24px !important;
  }

  /* Luxury footer social section */
.footer__list-social,
.custom-footer-social-icons {
  max-width: 520px;
  margin: 0 auto !important;
  padding: 28px 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
}

.footer__list-social a,
.custom-footer-social-icons a {
  color: #8f8178 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  font-weight: 400 !important;
  opacity: 0.85;
}

.footer__list-social svg,
.custom-footer-social-icons svg {
  width: 18px !important;
  height: 18px !important;
  color: #8f8178 !important;
  opacity: 0.85;
}

.footer__list-social a:hover,
.custom-footer-social-icons a:hover {
  color: #6f5b51 !important;
  opacity: 1;
}

/* mobile luxury spacing */
@media screen and (max-width: 749px) {
  .footer__list-social,
  .custom-footer-social-icons {
    gap: 24px !important;
    padding: 34px 28px !important;
    line-height: 1.8 !important;
  }

  .footer__list-social a,
  .custom-footer-social-icons a {
    font-size: 12px !important;
  }

  .revyno-footer {
  background: #fbf7f2;
  padding: 40px 20px;
  text-align: center;
}

.revyno-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.revyno-socials a {
  color: #8f6f5f !important;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  gap: 8px;
  transition: all 0.3s ease;
}

.revyno-socials a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.revyno-socials span {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f6f5f;
  line-height: 1.4;
}

@media screen and (max-width: 749px) {

  .revyno-socials {
    gap: 22px;
  }

  .revyno-socials a {
    font-size: 20px;
  }

  .revyno-socials span {
    font-size: 11px;
  }

  [13:01, 5/10/2026] Justina.ysm 🤗: @media screen and (max-width: 749px) {

  .revyno-socials {
    gap: 22px;
  }

  .revyno-socials a {
    font-size: 20px;
  }

  .revyno-socials span {
    font-size: 11px;
  }

}
[13:05, 5/10/2026] Justina.ysm 🤗: /* Social icons one line */
.revyno-socials {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;

  margin-top: 10px !important;
  margin-bottom: 10px !important;

  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Reduce huge footer spacing */
.footer__content-top,
.footer__content-bottom,
.footer {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Make icons compact */
.revyno-socials a {
  font-size: 16px !important;
  gap: 4px !important;
  min-width: auto !important;
  padding: 0 4px !important;
}

/* Smaller text */
.revyno-socials span {
  font-size: 11px !important;
  white-space: nowrap !important;
}

/* Mobile */
@media screen and (max-width: 749px) {

  .revyno-socials {
    gap: 10px !important;
    overflow-x: auto;
  }

  .revyno-socials a {
    font-size: 15px !important;
  }

  .revyno-socials span {
    font-size: 10px !important;
  }

  .footer__content-top,
.footer__blocks-wrapper,
.footer-block,
.footer__content-bottom {
  border-top: none !important;
  border-bottom: none !important;
}

.footer .footer__content-top {
  box-shadow: none !important;
}

.footer {
  border-top: 1px solid #eee6df !important;
}

.custom-footer-social-icons {
  border: none !important;
}

.footer__content-top {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.footer__content-bottom {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

.footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.collection-hero__text-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.collection-hero__inner {
  display: flex !important;
  justify-content: center !important;
}

.collection-hero__text-wrapper {
  margin: 0 auto !important;
  text-align: center !important;
}

.collection-hero__description {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  text-align: center !important;
}

.collection-hero__description p {
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

.collection-hero__title{
  font-size: 42px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 749px){
  .collection-hero__title{
    font-size: 28px !important;
  }

.collection-list-wrapper .title,
.collection-list-wrapper .inline-richtext,
.collection-list-wrapper h2 {
  font-size: 48px !important;
  line-height: 1.2 !important;
}

/* FORCE FIX CART QUANTITY DESKTOP + MOBILE */
cart-items .quantity__button,
.cart-items .quantity__button,
.cart-item .quantity__button {
  display: none !important;
}

cart-items .quantity,
.cart-items .quantity,
.cart-item .quantity,
.quantity-popover-container .quantity {
  width: 72px !important;
  height: 38px !important;
  min-height: 38px !important;
  border: 1px solid #eaded8 !important;
  border-radius: 999px !important;
  background: #fffaf7 !important;
  overflow: hidden !important;
}

cart-items .quantity__input,
.cart-items .quantity__input,
.cart-item .quantity__input,
.quantity-popover-container .quantity__input {
  width: 72px !important;
  height: 38px !important;
  min-height: 38px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 14px !important;
}

.quantity__button .visually-hidden {
  display: none !important;
}

.skip-to-content-link {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #f8efe6;
  color: #8b6b52;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.skip-to-content-link:focus {
  opacity: 1;
  transform: translateY(0);
}

a[href="#MainContent"],
.skip-to-content-link {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 99999 !important;
  background: #f8efe6 !important;
  color: #8b6b52 !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
}

a[href="#MainContent"]:focus,
.skip-to-content-link:focus {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.revyno-product-gallery {
  position: relative;
  width: 520px;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
}

.revyno-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 24px;
}

.revyno-product-image.active {
  opacity: 1;
}

/* Revyno Luxury Header */

.header-wrapper {
  background: #f8f4f1;
  border-bottom: 1px solid #eee5df;
}

.header {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo */
.header__heading-logo {
  max-width: 70px;
}

/* Navigation links */
.header__menu-item {
  color: #7b6257;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Hover effect */
.header__menu-item:hover {
  color: #c89d8d;
}

/* Icons */
.header__icon,
.header__icon span {
  color: #7b6257;
}

/* Mobile header */
@media screen and (max-width: 749px) {
  .header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header__heading-logo {
    max-width: 55px;
  }

  .header__menu-item {
    font-size: 14px;
  }
}

.main-page-title,
h1 {
  margin-bottom: 20px !important;
}

.page-width p:first-of-type {
  margin-top: 0 !important;
}

.custom-header__cart svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.3;
  color: #8a6f63;
  transition: opacity 0.2s ease;
}

.custom-header__cart:hover svg {
  opacity: 0.7;
}

.custom-header__cart {
  color: #5c463d !important;
}

.custom-header__cart svg {
  width: 18px !important;
  height: 18px !important;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

body.template-index .custom-header {
  display: none !important;
}


body.template-index .footer,
body.template-index footer,
body.template-index .shopify-section-group-footer-group {
  display: none !important;
}

.button,
button,
a.button {
  transition: all 0.35s ease;
}

.button:hover,
button:hover,
a.button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow: 0 10px 24px rgba(201, 149, 134, 0.18);
}


