/** Shopify CDN: Minification failed

Line 771:49 Unexpected ".5"
Line 777:49 Unexpected ".5"

**/
.kl_reviews__summary.kl_reviews__summary.kl_reviews__summary h2 {
  text-align: center !important;
  text-transform: uppercase !important;
}



#shopify-section-template--18037374255239__slideshow div > p.h1 > span {
  font-size: xx-large;
  vertical-align: text-top;
}
#shopify-section-template--18037374255239__slideshow div > p.h1 {
  font-size: 4rem;
}
#shopify-section-template--18037374255239__slideshow div > p.h6 {
  font-size: x-large;
}
@media screen and (max-width: 700px) {
  #shopify-section-template--18037374255239__slideshow div > p.h1 {
    font-size: 2rem;
  }
  #shopify-section-template--18037374255239__slideshow div > p.h6 {
    font-size: large;
  }
  #shopify-section-template--18037374255239__slideshow div > p.h1 > span {
    font-size: large;
    vertical-align: text-top;
  }
}

#shopify-section-sections--18037374713991__footer  div > p.h6{
  font-size: x-large !important;
}

/* Desktop Header Controls - Left side hamburger and search */
.header-desktop-controls {
  display: none; /* Hidden by default, shown only on desktop */
  position: absolute;
  left: 0;
  /* top: 30%; */
  transform: translateY(-50%);
  align-items: center;
  gap: 1rem;
  padding: 0 3.35rem;
  z-index: 5;
  pointer-events: auto;
}

/* Show controls only on desktop (>= 1000px) */
@media screen and (min-width: 1000px) {
  .header-desktop-controls {
    display: flex;
  }
}

/* Hide controls on mobile/tablet */
@media screen and (max-width: 999px) {
  .header-desktop-controls {
    display: none !important;
  }
}

/* Hamburger button styling */
.header-desktop-controls__hamburger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: opacity 0.2s ease;
}

.header-desktop-controls__hamburger:hover {
  opacity: 0.7;
}

.header-desktop-controls__hamburger .header__nav-icon {
  width: 24px;
  height: 24px;
}

/* Search input container */
.header-desktop-controls__search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 200px;
  max-width: 300px;
}

.header-desktop-controls__search-icon {
  position: absolute;
  left: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.header-desktop-controls__search-icon .header__nav-icon {
  width: 20px;
  height: 20px;
  color: currentColor;
  opacity: 0.6;
}

.header-desktop-controls__search-input {
  width: 100%;
  padding: 0.4rem 0.8rem 0.4rem 2.5rem;
  border: 1px solid rgba(var(--text-color) / 0.15);
  border-radius: var(--input-border-radius, 0.125rem);
  background: transparent;
  color: inherit;
  font-size: var(--text-base, 0.875rem);
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.header-desktop-controls__search-input:hover {
  border-color: rgba(var(--text-color) / 0.3);
}

.header-desktop-controls__search-input:focus {
  outline: none;
  border-color: rgba(var(--text-color) / 0.5);
}

.header-desktop-controls__search-input::placeholder {
  color: rgba(var(--text-color) / 0.5);
  opacity: 1;
}





/* Optimize images-with-text-scroll section spacing on large screens */
/* This reduces excessive blank space while maintaining scroll effect functionality */
@media screen and (min-width: 1000px) {
  .images-with-text-scroll__container {
    /* Limit padding maximum value to prevent excessive blank space
       The original formula: (100vh - image-height - header-height) / 2
       can result in very large padding on tall screens (e.g., 262px+)
       By limiting to max 3rem (48px), we further reduce blank space
       while maintaining scroll functionality */
    --content-padding: min(
      calc((100vh - var(--image-height) - var(--sticky-area-height)) / 2),
      3rem
    );
    
    /* Remove left margin and padding to allow image to start from screen edge */
    margin-inline-start: 0 !important;
    padding-inline-start: 0;
    
    /* Add gap between image and text columns to ensure spacing (minimum 2rem) */
    column-gap: 2rem;
    gap: 2rem;
    
    /* Increase image max width for better visual balance
       Remove container-gutter from calculation since we want image at edge
       Original: 575px, increased to 700px for larger screens */
    --image-width: min(50vw, 1000px);
  }
  
  /* Position image to start from left edge of screen */
  .images-with-text-scroll__image {
    /* Ensure image aligns to left edge */
    justify-self: start;
    margin-inline-start: 0;
    /* Ensure image doesn't have any left padding */
    padding-inline-start: 0;
  }
  
  /* Increase text max width for better readability on large screens
     Original: 375px, increased to 600px for better content display */
  .images-with-text-scroll__text {
    max-width: 600px;
    /* Ensure text has spacing from image via grid gap, no additional margin needed */
    margin-inline-start: 0;
  }
  
  /* For reverse layout (image on right), adjust accordingly */
  .images-with-text-scroll--reverse .images-with-text-scroll__container {
    margin-inline-end: 0 !important;
    padding-inline-end: 0;
  }
  
  .images-with-text-scroll--reverse .images-with-text-scroll__image {
    justify-self: end;
    margin-inline-end: 0;
    padding-inline-end: 0;
  }
  
  .images-with-text-scroll--reverse .images-with-text-scroll__text {
    margin-inline-end: 0;
  }
}


/* Optimize images-with-text-scroll section for mobile devices */
@media screen and (max-width: 999px) {
  /* Remove section top padding to let image touch section top edge */
  .shopify-section--images-with-text-scroll {
    padding-block-start: 0;
  }
  
  .images-with-text-scroll__container {
    /* Remove top padding to let image touch section top edge */
    padding-block-start: 0 !important;
    /* Remove horizontal padding to let image touch screen edges */
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    /* Remove container margins to allow full-width image */
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    /* Keep appropriate gap between image and text */
    row-gap: 1.5rem;
  }
  
  /* Make image full width, touching left and right screen edges */
  .images-with-text-scroll__image {
    width: 100vw !important;
    max-width: 100vw;
    /* Ensure image starts from top of section */
    align-self: start;
    /* Remove any margins */
    margin: 0;
  }
  
  /* Center text with appropriate horizontal padding */
  .images-with-text-scroll__text {
    /* Center text horizontally */
    text-align: center;
    margin-inline: auto;
    /* Add horizontal padding for readability */
    padding-inline: 1.25rem;
    /* Ensure text doesn't exceed container width */
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Reduce spacing between dots and make them closer to text */
  .images-with-text-scroll .page-dots {
    /* Reduce gap between dots (original: 0.5rem 1rem, now: 0.25rem 0.5rem) */
    gap: 0.25rem 0.5rem !important;
    /* Reduce top margin to bring dots closer to text */
    margin-block-start: 0.75rem !important;
    margin-block-end: 0;
    /* Center dots */
    justify-content: center;
    /* Ensure dots are positioned right after text */
    padding: 0;
  }
}



/* Optimize product sticky bar for mobile devices */
@media screen and (max-width: 699px) {
  .product-sticky-bar {
    /* Layout: info on left, button on right */
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem var(--container-gutter) !important;
    background: #f3f3f3 !important;
    box-shadow: 0 -1px rgb(var(--border-color));
    /* Override default theme styles */
    position: fixed !important;
    inset-block-end: 0 !important;
    inset-inline-start: 0 !important;
    width: 100% !important;
    z-index: 20;
  }
  
  /* Hide desktop info on mobile */
  .product-sticky-bar__info {
    display: none !important;
  }
  
  /* Mobile info section */
  .product-sticky-bar__info-mobile {
    flex: 1;
    min-width: 0; /* Allow text truncation */
    display: block !important;
  }
  
  .product-sticky-bar__info-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  /* Product name */
  .product-sticky-bar__product-name {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
    color: rgb(var(--text-color));
    /* Truncate if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }
  
  /* Variant info (e.g., "Queen") */
  .product-sticky-bar__variant {
    font-size: 0.75rem;
    line-height: 1.3;
    color: rgb(var(--text-color) / 0.7);
    /* Truncate if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }
  
  /* Price wrapper - contains price and quantity */
  .product-sticky-bar__price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0;
  }
  
  /* Ensure price list displays inline and properly styled */
  .product-sticky-bar__price-wrapper .price-list {
    display: inline-flex !important;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 0 !important;
  }
  
  /* Price elements styling */
  .product-sticky-bar__price-wrapper .sale-price,
  .product-sticky-bar__price-wrapper .regular-price,
  .product-sticky-bar__price-wrapper .compare-at-price {
    display: inline !important;
    margin: 0 !important;
    font-size: 0.875rem;
    line-height: 1.3;
  }
  
  /* Quantity display (e.g., "x 1") */
  .product-sticky-bar__quantity {
    font-size: 0.75rem;
    color: rgb(var(--text-color) / 0.7);
    white-space: nowrap;
    margin: 0;
    margin-inline-start: 0.25rem;
  }
  
  /* Button styling - ensure it doesn't shrink */
  .product-sticky-bar .buy-buttons {
    flex-shrink: 0;
    margin: 0;
  }
  
  .product-sticky-bar .buy-buttons .button {
    white-space: nowrap;
    padding-inline: 1.25rem;
    padding-block: 0.75rem;
    min-width: auto;
    font-size: 0.875rem;
  }
}

/* #ShopifyChat{
  bottom:70px !important;
} */

/* Product Description Expand/Collapse Styles */
.product-description-wrapper {
  position: relative;
}

.product-description-content h3,
.product-description-content.prose h3,
.product-description-content h4,
.product-description-content.prose h4 {
  font-size: large;
}

.product-description-collapsed {
  max-height: 6.5em;  /* 约 3 行高度，可调整 */
  overflow: hidden;
}

.product-description-wrapper.expanded .product-description-collapsed {
  max-height: none;
  overflow: visible;
}

.product-description-toggle {
  background: none;
  border: none;
  padding: 0;
  margin-block-start: 0.75rem;
  cursor: pointer;
  color: rgb(var(--text-color));
  font-size: var(--text-base, 0.875rem);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.product-description-toggle:hover {
  opacity: 0.7;
}

.header-sidebar::part(header) ,.header-sidebar__main-panel{
  background: #f8f8f8;
}


@media screen and (min-width: 1000px) {
  .header-sidebar__collapsible-panel {
    width: 800px;
    background: #f8f8f8;
    transform: translateX(calc(var(--transform-logical-flip) * 50%)) !important;
  }
.header-sidebar__sub-panel-content {
  display: flex;
}
  .header-sidebar__sub-panel-content {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .header-sidebar__sub-panel-content .header-sidebar__linklist {
    flex: 1;
    min-width: 0;
    max-width: 400px;
  }

  .header-sidebar__sub-panel-content .header-sidebar__promo {
    flex: 0 0 400px;
    margin-block-start: 0;
  }
  
}


/* Increase mobile sidebar width */
@media screen and (max-width: 999px) {
  .header-sidebar.drawer--sm {
    --drawer-max-width: min(92vw, 30rem); /* 从 25rem 增加到 30rem (480px) */
  }

  .header-sidebar.drawer--sm:has(.header-sidebar__promo--horizontal) {
    --drawer-max-width: min(98vw, 52rem);
  }
}


/* Responsive promo images width and spacing for sidebar */
/* Mobile: Adjust for smaller screens */
@media screen and (max-width: 699px) {
  .header-sidebar__promo {
    gap: 1rem 0.75rem !important; /* Reduce gap on mobile: row-gap column-gap */
  }
  
  .header-sidebar__promo > * {
    min-width: calc((100% - 0.75rem) / 2) !important; /* Two images side by side with gap */
    max-width: calc((100% - 0.75rem) / 2) !important;
    flex: 0 0 calc((100% - 0.75rem) / 2) !important;
  }
  
  /* Ensure images scale properly */
  .header-sidebar__promo img {
    width: 100%;
    height: auto;
  }
}

/* Tablet: Medium screens */
@media screen and (min-width: 700px) and (max-width: 999px) {
  .header-sidebar__promo {
    gap: 1.25rem 1rem !important; /* Slightly larger gap on tablet */
  }
  
  .header-sidebar__promo > * {
    min-width: calc((100% - 1rem) / 2) !important;
    max-width: calc((100% - 1rem) / 2) !important;
    flex: 0 0 calc((100% - 1rem) / 2) !important;
  }
  
  .header-sidebar__promo img {
    width: 100%;
    height: auto;
  }

  .header-sidebar__promo--horizontal {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.625rem !important;
  }

  .header-sidebar__promo--horizontal > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 0 !important;
  }

  .header-sidebar__promo--horizontal .h6 {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .header-sidebar__promo--horizontal .overflow-hidden {
    aspect-ratio: 9 / 16;
    width: 100%;
  }

  .header-sidebar__promo--horizontal .overflow-hidden img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Desktop: Ensure proper sizing for vertical layout */
@media screen and (min-width: 1000px) {
  .header-sidebar__promo {
    gap: 1.5rem !important; /* Column gap for vertical layout */
  }
  
  .header-sidebar__promo > * {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .header-sidebar__collapsible-panel:has(.header-sidebar__promo--horizontal) {
    width: calc(100vw - 25rem - 1.25rem);
    transform: translateX(calc(var(--transform-logical-flip) * 25rem)) !important;
    animation: luxotic-menu-panel-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .header-sidebar__sub-panel-content:has(.header-sidebar__promo--horizontal) {
    gap: clamp(1rem, 2vw, 2rem);
  }

  .header-sidebar__sub-panel-content:has(.header-sidebar__promo--horizontal) .header-sidebar__linklist {
    flex: 0 0 clamp(9rem, 12vw, 12rem);
    max-width: 12rem;
  }

  .header-sidebar__sub-panel-content:has(.header-sidebar__promo--horizontal) .header-sidebar__promo {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-sidebar__promo--horizontal {
    display: flex !important;
    flex-direction: row !important;
    gap: clamp(0.625rem, 1vw, 0.875rem) !important;
  }

  .header-sidebar__promo--horizontal > * {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: 1 1 0 !important;
    animation: luxotic-menu-promo-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
    transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header-sidebar__promo--horizontal > *:nth-child(2) {
    animation-delay: 70ms;
  }

  .header-sidebar__promo--horizontal > *:nth-child(3) {
    animation-delay: 140ms;
  }

  .header-sidebar__promo--horizontal img {
    width: 100%;
    height: auto;
  }

  .header-sidebar__promo--horizontal .overflow-hidden {
    aspect-ratio: 9 / 16;
    width: 100%;
  }

  .header-sidebar__promo--horizontal .overflow-hidden img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .header-sidebar__promo--horizontal > *:hover {
    transform: translateY(-0.25rem);
  }

  .header-sidebar__promo--horizontal > *:hover .overflow-hidden img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.025);
  }
}

@media screen and (min-width: 1000px) and (max-width: 1199px) {
  .header-sidebar__sub-panel-content:has(.header-sidebar__promo--horizontal) {
    gap: 1rem;
  }

  .header-sidebar__sub-panel-content:has(.header-sidebar__promo--horizontal) .header-sidebar__linklist {
    flex-basis: 10rem;
  }
}

.mega-menu--horizontal .mega-menu__promo {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}

.mega-menu--horizontal .mega-menu__promo > * {
  flex: 1 1 0;
  min-width: 0;
  max-width: 380px;
}

.mega-menu--horizontal .mega-menu__promo img {
  width: 100%;
  height: auto;
}

.mega-menu--horizontal .overflow-hidden {
  aspect-ratio: 3 / 4;
  width: 100%;
}

.mega-menu--horizontal .overflow-hidden img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes luxotic-menu-panel-reveal {
  from {
    opacity: 0;
    transform: translateX(calc(var(--transform-logical-flip) * 24rem));
  }

  to {
    opacity: 1;
    transform: translateX(calc(var(--transform-logical-flip) * 25rem));
  }
}

@keyframes luxotic-menu-promo-reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-sidebar__collapsible-panel:has(.header-sidebar__promo--horizontal),
  .header-sidebar__promo--horizontal > *,
  .header-sidebar__promo--horizontal .overflow-hidden img {
    animation: none !important;
    transition: none !important;
  }
}

/* Add to Cart Button with Price Display */
.add-to-cart-button__content {
  display:block;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.add-to-cart-button__text {
  flex: 0 0 auto;
  font-family: var(--text-font-family);
}

.add-to-cart-button__price {
  display:none;
  flex: 0 0 auto;
  margin-inline-start: auto;
  font-weight: 500;
  font-family: var(--text-font-family);
}

/* Ensure button maintains proper spacing */
.buy-buttons .button {
  padding-inline: 1.25rem;

}

/* Ensure button content spans full width */
.buy-buttons .button .add-to-cart-button__content {
  width: 100%;
}

/* Size Option Variant Picker Styling */
.variant-picker__option[data-option-size="true"] {
  display: inline-flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding-inline-end: 0.1rem;
}

/* 只隐藏尺寸选项的额外信息，不隐藏颜色名称 */
div.variant-picker__option-info.h-stack.justify-between.gap-2 > div[data-option-size="true"]{
  display:none;
}

@media screen and (max-width: 999px) {
span.klaviyo-star-rating-widget{
  text-align:left;
}
}

.block-swatch.is-disabled{
  display:none;
}

@media screen and (max-width: 999px) {
.block-swatch{
  font-size: small;
  --swatch-padding: 0.175rem ;
  height: 2rem;
  min-width: 1.5rem;
}
  }

  .badge--on-sale{
    font-size:1rem !important;
    padding: .0625rem .4125rem !important;
    color: #363636;
  }




@media screen and (max-width: 380px) {
  .div.variant-picker__optionvalues.h-stack.gap-2.5.wrap {
    gap: .225rem;
  }
}

@media screen and (max-width: 340px) {
  .div.variant-picker__optionvalues.h-stack.gap-2.5.wrap {
    gap: .125rem;
  }
}

button.chat-toggle.chat-toggle--text-button{
  font-family: inter !important;
}

@media screen and (max-width: 999px) {
    .ai-image-text-scroll__mobile-text-aodl2efhvsxnqqxp3caigenblock3dc27aarrrz8b {
        padding-bottom: 0px !important;
    }

  }

/**
 * Klaviyo Reviews - Card Layout Custom CSS
 * This CSS transforms the review list into a card-based grid layout
 * Reference: https://help.klaviyo.com/hc/en-us/articles/22192640532507
 * 
 * IMPORTANT: Use high-specificity selectors to override Klaviyo's default styles
 */

/* ============================================================
   SECTION 1: RESET & OVERRIDE BASE STYLES
   ============================================================ */

/* Reset the list container to remove any default flex/grid */
#klaviyo-all-reviews-wrapper .kl_reviews__list_container,
#klaviyo-all-reviews-wrapper .kl_reviews__reviews_list .kl_reviews__list_container {
  display: block !important;
  flex-direction: unset !important;
  flex-wrap: unset !important;
}

/* Target the [role="status"] div that wraps all review items */
#klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"],
#klaviyo-all-reviews-wrapper .kl_reviews__list_container > div[role="status"] {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  padding: 24px 0 !important;
  align-items: stretch !important;
}

/* ============================================================
   SECTION 2: REVIEW CARD STYLING
   ============================================================ */

/* Individual Review Card - Reset and Apply Card Styles */
#klaviyo-all-reviews-wrapper .kl_reviews__review_item,
#klaviyo-all-reviews-wrapper .kl_reviews__list_container .kl_reviews__review_item {
  display: flex !important;
  flex-direction: column !important;
  background-color: #ffffff !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 8px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease !important;
  overflow: hidden !important;
  height: auto !important;
  min-height: 0 !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review_item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* The inner div of review item */
#klaviyo-all-reviews-wrapper .kl_reviews__review_item > div {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 20px !important;
  height: 100% !important;
}

/* Remove any default borders/dividers between reviews */
#klaviyo-all-reviews-wrapper .kl_reviews__review_item::before,
#klaviyo-all-reviews-wrapper .kl_reviews__review_item::after {
  display: none !important;
  content: none !important;
}

/* ============================================================
   SECTION 3: PRODUCT CARD - BOTTOM OF CARD (Original Position)
   ============================================================ */

/* Keep product card at bottom with separator */
#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card {
  margin-top: auto !important;
  padding-top: 16px !important;
  border-top: 1px solid #f0f0f0 !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__container {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: inherit !important;
  padding: 8px !important;
  border-radius: 6px !important;
  background: transparent !important;
  transition: background-color 0.2s ease !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__container:hover {
  background-color: #f8f8f8 !important;
}

/* Product thumbnail image - keep visible */
#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__container img {
  width: 50px !important;
  height: 50px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  flex-shrink: 0 !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__details {
  flex: 1 !important;
  min-width: 0 !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__details__name {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--kl-reviews-reviews-primary-font-color, #333) !important;
  text-decoration: underline !important;
  line-height: 1.4 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
}

/* Product review info */
#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__details__review_info {
  font-size: 12px !important;
  color: var(--kl-reviews-reviews-secondary-font-color, #666) !important;
  margin-top: 2px !important;
}

/* Arrow carat */
#klaviyo-all-reviews-wrapper .kl_reviews__review__product_card__carat {
  flex-shrink: 0 !important;
}

/* ============================================================
   SECTION 4: STARS AND TIMESTAMP
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__review_stars_and_time {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__timestamp,
#klaviyo-all-reviews-wrapper .kl_reviews__time_badge .kl_reviews__review__timestamp {
  font-size: 12px !important;
  color: var(--kl-reviews-reviews-secondary-font-color, #999) !important;
  font-weight: 400 !important;
}

/* ============================================================
   SECTION 5: AUTHOR SECTION
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__review__author {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 8px !important;
  font-size: 14px !important;
  color: var(--kl-reviews-reviews-primary-font-color, #333) !important;
  font-weight: 400 !important;
}

/* Verified badge styling */
#klaviyo-all-reviews-wrapper .kl_reviews__verified_badge {
  display: inline-flex !important;
  align-items: center !important;
  background-color: #f0f0f0 !important;
  color: #666 !important;
  font-size: 11px !important;
  padding: 2px 8px !important;
  border-radius: 4px !important;
  margin-left: 4px !important;
}

/* ============================================================
   SECTION 6: REVIEW TITLE
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__review__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--kl-reviews-reviews-primary-font-color, #333) !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}

/* ============================================================
   SECTION 7: REVIEW CONTENT
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__review__content,
#klaviyo-all-reviews-wrapper p.kl_reviews__review__content {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--kl-reviews-reviews-primary-font-color, #555) !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
}

/* ============================================================
   SECTION 8: REVIEW IMAGES & VIDEOS - Keep Visible
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__review__image_row {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-bottom: 16px !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__image_container {
  cursor: pointer !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  display: block !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__image,
#klaviyo-all-reviews-wrapper img.kl_reviews__review__image {
  width: var(--kl-reviews-reviews-review-images-size, 350px) !important;
  height: var(--kl-reviews-reviews-review-images-size, 350px) !important;
  max-width: 350px !important;
  max-height: 350px !important;
  object-fit: cover !important;
  border-radius: var(--kl-reviews-reviews-review-images-corner-radius, 6px) !important;
  transition: transform 0.2s ease !important;
  display: block !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__review__image:hover {
  transform: scale(1.03) !important;
}

/* Video elements - keep visible */
#klaviyo-all-reviews-wrapper .kl_reviews__review__video_container,
#klaviyo-all-reviews-wrapper .kl_reviews__review__video {
  display: block !important;
}

/* ============================================================
   SECTION 9: RESPONSIVE DESIGN - TABLET (2 columns)
   ============================================================ */

@media screen and (max-width: 992px) {
  #klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"],
  #klaviyo-all-reviews-wrapper .kl_reviews__list_container > div[role="status"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* ============================================================
   SECTION 10: RESPONSIVE DESIGN - MOBILE (1 column)
   ============================================================ */

@media screen and (max-width: 640px) {
  #klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"],
  #klaviyo-all-reviews-wrapper .kl_reviews__list_container > div[role="status"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  #klaviyo-all-reviews-wrapper .kl_reviews__review_item > div {
    padding: 16px !important;
  }

  #klaviyo-all-reviews-wrapper .kl_reviews__review__image,
  #klaviyo-all-reviews-wrapper img.kl_reviews__review__image {
    width: 300px !important;
    height: 300px !important;
  }
}

/* ============================================================
   SECTION 11: FILTER SECTION (keep original layout)
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__filters {
  margin-bottom: 16px !important;
}

#klaviyo-all-reviews-wrapper .kl_reviews__filter_info {
  margin-bottom: 8px !important;
}

#klaviyo-all-reviews-wrapper hr.kl_reviews__filter_info__divider {
  margin-bottom: 0 !important;
  border: none !important;
  border-top: 1px solid #e5e5e5 !important;
}

/* ============================================================
   SECTION 12: SUMMARY SECTION (keep original)
   ============================================================ */

#klaviyo-all-reviews-wrapper .kl_reviews__summary {
  margin-bottom: 24px !important;
}

/* ============================================================
   SECTION 13: HIDE EXTRA ELEMENTS
   ============================================================ */

/* Hide any empty spans that might affect layout */
#klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"] > span:empty {
  display: none !important;
}

/* Hide Shopify chat widget container
#shopify-chat {
  display: none !important;
} */

.kl_reviews__summary__average_value{
  font-size: calc(var(--kl-reviews-reviews-primary-font-font-size, 14px) * 1.43) !important;
}

.kl_reviews__summary.kl_reviews__summary.kl_reviews__summary h2{
  font-family:"Libre Baskerville", serif !important;
}

.kl_reviews__reviews_list.kl_reviews__reviews_list.kl_reviews__reviews_list button.kl_reviews__list__tab {
  font-family:"Libre Baskerville", serif !important;
}

.kl_reviews__review__title{
  font-family:"Libre Baskerville", serif !important;
}


.more_onpage_offers .item.launchtip_onpage_each_product_offer:nth-child(n+0) {
  display: none !important;
}


.badge--new-design {
  background-color: #9333EA;
  color: #ffffff;
  font-size: 1rem !important;
  padding: .0625rem .4125rem !important;
}

/* 隐藏只有一个选项值的选项 */
.variant-picker__option[data-single-color-option="true"] {
  display: none !important;
}


sale-price.h4.text-subdued {
  color:black;
}



/* Keep the native chat container and button fully visible */
#shopify-chat {
  position: fixed !important;
  bottom: 16px !important;
  right: 16px !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  z-index: 18 !important;
}

/* Hide the legacy Shopify Inbox activator while keeping it scriptable. */
inbox-online-store-chat::part(button) {
  display: block !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Shopify Inbox 2026 web component: hide only the exported native activator. */
shopify-chat::part(activator) {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Keep the dialog approximately 1.3x larger while scaling its contents by 1.15x. */
@media screen and (min-width: 769px) {
  shopify-chat::part(dialog) {
    width: min(565px, calc(100vw - 64px)) !important;
    height: min(418px, calc(87dvh - 28px)) !important;
    max-width: calc(100vw - 64px) !important;
    max-height: calc(87dvh - 28px) !important;
    zoom: 1.15;
  }
}

/* Position the custom chat icon to avoid overlapping with the native one */
.custom-chat-icon {
  bottom: 30px !important;
  right: 16px !important;
}



/* Custom Chat Icon Styles */
.custom-chat-icon {
  position: fixed;
  bottom: 5px;
  right: 16px;
  width: 200px;
  height: 60px;
  /* background-color: #ffffff; */
  border-radius: 50%;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* One level above Shopify Inbox's --shopify-agent-z-index (2147483000). */
  z-index: 2147483001;
  transition: all 0.3s ease;
}

.custom-chat-icon:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.custom-chat-icon:hover {
  transform: scale(1.05);
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* The open Shopify Inbox panel has its own minimize control. */
.custom-chat-icon.is-chat-open {
  display: none !important;
}

.custom-chat-icon img {
  width: 200px;
  height: 60px;
  object-fit: contain;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .custom-chat-icon {
    width: 160px;
    height: 55px;
    bottom: 10px !important;
    right: 5px;
    z-index: 2147483001 !important;
  }
  
  .custom-chat-icon img {
    width: 160px;
    height: 55px;
  }
}


@media (min-width: 769px) {
    .chat-ui {
        margin-bottom: 75px !important;
    }
  }

/* Product Description Styles - Scoped to .product-description */

/* Product Description Styles - Scoped to .product-description */

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
}

.product-description .description-section {
  margin-bottom: 1.5rem;
}

.product-description .description-section p {
  margin-bottom: 0.75rem;
}

.product-description .description-section p:last-child {
  margin-bottom: 0;
}

.product-description .section-divider {
  width: 48%;
  border: 0;
  border-top: 1px solid rgba(176, 150, 90, 0.45);
  margin: 2.25rem 0;
}

.product-description .section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: inherit;
}

.product-description .spec-list,
.product-description .included-list,
.product-description .care-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-description .spec-list li,
.product-description .included-list li,
.product-description .care-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.product-description .spec-list li:last-child,
.product-description .included-list li:last-child,
.product-description .care-list li:last-child {
  margin-bottom: 0;
}

.product-description .spec-label {
  font-weight: 500;
}

.product-description .editorial-note {
  border: 1px solid rgba(176, 150, 90, 0.35);
  padding: 0.875rem 1rem;
  margin: 1.75rem 0 2.25rem 0;
  font-size: 0.95em;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
  background: transparent;
}

/* Extracted inline styles */
.product-description .extracted-style-1 { margin: 36px 0; }
.product-description .extracted-style-2 { width: 48%; border: 0; border-top: 1px solid rgba(176,150,90,0.45); margin: 0; }
.product-description .extracted-style-3 { border: 0px solid rgba(176,150,90,0.35); padding: 14px 16px; margin: 28px 0 36px 0; font-size: 0.95em; line-height: 1.6; color: rgba(0,0,0,0.72); }
.product-description .extracted-style-4 { margin: 15px 0; padding-left: 20px; }

/* Responsive adjustments */
@media screen and (max-width: 767px) {
  .product-description {
    font-size: 0.9375rem;
  }

  .product-description .section-divider {
    width: 60%;
  }

  .product-description .editorial-note {
    font-size: 0.875em;
    padding: 0.75rem 0.875rem;
  }
}






/* Floating Reviews Button */
.floating-reviews-btn {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background-color: rgb(80, 79, 79);
  color: rgb(255, 255, 255);
  padding: 8px 10px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 2px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-reviews-btn:hover {
  background-color: rgb(60, 58, 58);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .floating-reviews-btn {
    right: 0px;
    padding: 6px 12px;
    font-size: 12px;
    display:none;
  }
}

/* Floating Reviews Modal */
.floating-reviews-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.floating-reviews-modal.active {
  display: block;
}

.floating-reviews-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.floating-reviews-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  height: 85%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.floating-reviews-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.floating-reviews-modal-body {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

.floating-reviews-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 16px;
  color: #666;
}

/* Reviews Grid in Modal - make original media query work inside modal */
.floating-reviews-modal-body #klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"],
.floating-reviews-modal-body #klaviyo-all-reviews-wrapper .kl_reviews__list_container > div[role="status"] {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
}

@media screen and (max-width: 768px) {
  .floating-reviews-modal-body #klaviyo-all-reviews-wrapper .kl_reviews__list_container > [role="status"],
  .floating-reviews-modal-body #klaviyo-all-reviews-wrapper .kl_reviews__list_container > div[role="status"] {
    grid-template-columns: 1fr !important;
  }
}

.floating-reviews-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.floating-reviews-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}

.floating-reviews-modal-close svg {
  width: 20px;
  height: 20px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .floating-reviews-modal-content {
    width: 95%;
    height: 90%;
  }
}

#placement-AYzJ4TnJkbmkwTGxNe__afterpay_on_site_messaging_payments_messaging_J9hzem span.afterpay-main-text{
    font-size: xx-small !important;
}




.page-dots{
  display:none !important;
}



#sidebar-menu > div > div.header-sidebar__scroller > ul > li:nth-child(5) > button{
color: #CC5525 !important;
}
  

.divide-y > :not([hidden]) ~ :not([hidden]) {
  border-block-start-width: 0px;
}

/* .header-sidebar__linklist > li:nth-child(6) {
  border-block-start-width: 2px !important;
} */

.jm-medals__medal[title="Bronze Verified Reviews Shop"] {
    display: none !important;
}
.jm-medals__medal-link:nth-of-type(2) {
    display: none !important;
}

.colored-feature-tag-in-pdp{
font-family: Georgia, 'Times New Roman', serif !important;
font-size:14px;
width:110px;
margin-top: 10px;
border-radius: 4px;
color:#ffffff;
padding:1px;
text-align: center;
margin-block-start:0;
}

#header-panel-3 > div > ul > li:nth-child(5) > accordion-disclosure > details > summary{
  border-block-start-width: 2px !important;
}

.product-info__block-item[data-block-type=complementary-products]{
  background-color: #f9f9f9;
  margin-block-start: 1rem !important;
  padding-top: 0.5rem;
}

.complementary-products{
      max-width: 55rem;
}

button.\@large\:horizontal-product-card__button.button.button--outline.button--subdued{
    background-color: #33383c;
    color: white;
}

#quick-buy-modal-content > div.quick-buy-modal__info-wrapper > safe-sticky > div > div:nth-child(7) > variant-picker > fieldset:nth-child(3){
  display:block;
}


#quick-buy-modal-content > div.quick-buy-modal__info-wrapper > safe-sticky > div > div:nth-child(3) > div > price-list > sale-price
{
  color: #33383c;
}

.quick-buy-modal.modal{
  z-index:1500 !important;
}

@media screen and (max-width: 700px) {
    .complementary-products__header {
        text-align: start;
        justify-content: space-between;
    }
}

#quick-buy-modal-content > div.quick-buy-modal__gallery-wrapper > div > price-list > sale-price
{
  color: #33383c;
}

/* #header-panel-1 > div > ul > li:nth-child(2) > accordion-disclosure > details > summary{
    color: #e1a95d !important;
    text-decoration: underline;
} */

#header-panel-1 > div > ul > li[data-menu-title*="CLEARANCE"] > a {
  color: #CC5525 !important;
}

.header-sidebar__linklist.divide-y .header-sidebar__nested-linklist{
  font-family: 'Libre Baskerville' !important;
  font-size: 12px !important;
}
.luxotic-super-king-note {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 14px;
  align-items: stretch;
  max-height: 0;
  margin-top: 0;
  padding: 0 14px;
  overflow: hidden;
  border: 0 solid #e8e8e8;
  border-radius: 6px;
  background: #fafafa;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    max-height 220ms ease,
    margin-top 180ms ease,
    padding 180ms ease,
    border-width 180ms ease;
}

.variant-picker__option[data-luxotic-super-king-option="true"] {
  flex-wrap: wrap;
  row-gap: 12px;
}

.luxotic-super-king-note[aria-hidden="true"] {
  display: none;
}

.luxotic-super-king-note.is-visible {
  flex: 0 0 100%;
  order: 1;
  max-height: 180px;
  margin-top: 2px;
  padding: 14px;
  border-width: 1px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.luxotic-super-king-note__rule {
  border-radius: 999px;
  background: #d1a75d;
}

.luxotic-super-king-note__copy {
  display: grid;
  gap: 4px;
}

.luxotic-super-king-note__title {
  color: #8b8b8b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.luxotic-super-king-note__message {
  margin: 0;
  color: #4f555b;
  font-size: 14px;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
.jdgm-trust-badge[data-v-bc357776]
{
  font-size: 22px !important;
}
}

.jdgm-trust-badge[data-v-bc357776]
{
  font-size: 16px !important;
}

/* #custom-chat-icon{
  display:none !important;
} */

body.homepage .jdgm-revs-tab {
    display:none!important;
}
