/** Shopify CDN: Minification failed

Line 1555:27 Expected ":"

**/
.section-header.main_section_header{
    display: unset;
}

  .best-sellers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  /* Header styles are now in custom-dev.css - using reusable classes */
  .best-sellers-shop-vertical-line {
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    margin-right: 15px;
  }
  
  .best-sellers-tabs {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
 .best-sellers-tab {
      background: none;
      border: none;
      padding: 5px 10px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: color 0.3s ease;
      position: relative;
      font-family: 'CoFo Sans VF', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 100%;
      text-align: right;
      color: #352D2C;
  }
  
  .best-sellers-tab:hover {
    color: #000;
  }
  .best-sellers-header-right button.slick-arrow:not(.slick-disabled) {
    cursor: pointer;
  }
  
  .best-sellers-products-wrapper {
    position: relative;
    min-height: 500px;
  }
  
  .best-sellers-products-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    width: 100%;
  }
  
  .best-sellers-products-grid.active {
    display: grid !important;
  }
  
  .best-seller-product-item {
    position: relative;
    cursor: pointer;
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .best-seller-product-item:hover{
    border: 1px solid #72675F;
  }
  .best-seller-product-item.product{
    width:100%;
    min-width: auto;
  }
  .best-seller-product-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .best-seller-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .best-seller-product-badges .new {
    left: auto;
    right: 30px;
    top: -10px;
    position: absolute;
  }
  
  .best-seller-product-badges {
      position: absolute;
      top: 15px;
      left: 20px;
      right: 20px;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
  }
  
  .best-seller-badge {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .best-seller-badge.discount {
      background-color: #212120;
      color: #fff;
      border-radius: 23px;
      padding: 10px 12px;
      font-family: 'CoFo Sans VF', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 11.52px;
  }
  
  .best-seller-badge.new {
      background-color: #E9F0BF;
      color: #CF5828;
      border: 1px solid #CF5828;
      border-radius: 50%;
      width: 57px;
      height: 57px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'CoFo Sans VF',sans-serif;
      font-weight: 500;
      font-size: 14px;
      line-height: 11.52px;
    }
  
  .best-seller-product-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #E9E4E1;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    /* Ensure quickshop button is always accessible to querySelector */
    visibility: visible !important;
  }
  
  .best-seller-product-item:hover .best-seller-product-details {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
  }
  
  .best-seller-product-item:not(:hover) .best-seller-product-details {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    pointer-events: none;
    /* Keep visibility so querySelector can find buttons */
    visibility: visible !important;
  }
  
  /* Ensure quickshop button is always in DOM and findable */
  .best-seller-product-details [data-product-card-interaction-quickshop] {
    visibility: visible !important;
    display: block !important;
  }
  
  /* Ensure quickshop button is always clickable even when overlay is hidden */
  .best-seller-product-details .product-card-interaction-quickshop,
  .best-seller-product-overlay-actions .product-card-interaction-quickshop {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 9999 !important;
  }
  
  /* Ensure the overlay actions container allows clicks */
  .best-seller-product-overlay-actions {
    pointer-events: auto !important;
    z-index: 10;
  }
  
  /* Make sure product details overlay can receive clicks when visible */
  .best-seller-product-item:hover .best-seller-product-details {
    pointer-events: auto !important;
  }
  
  /* Ensure button works even when overlay is not hovered */
  .best-seller-product-item .best-seller-product-details .product-card-interaction-quickshop {
    pointer-events: auto !important;
  }
  
  .best-seller-price-with-rating-main {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 5px;
    display: flex;
    gap: 5px;
  }
  
  
  .best-seller-product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .best-seller-product-slider-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .best-seller-product-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
    z-index: 1;
  }
  
  .best-seller-product-slider-image.active {
    opacity: 1;
    z-index: 2;
  }
  
  .best-seller-product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #212120;
    border: none;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
  }
  .best-seller-product-slider-nav svg path{
    fill: #212120;
  }
  
  .best-seller-product-item:hover .best-seller-product-slider-nav {
    opacity: 1;
  }
  
  .best-seller-product-slider-nav:hover {
    color: #000;
  }
  
  .best-seller-product-slider-nav.prev {
    left: 10px;
    top: 40%;
    transform: translate(-10px, -40%);
  }
  
  .best-seller-product-slider-nav.next {
    right: 0px;
    top: 40%;
    transform: translate(0px, -40%);
  }
  .best-seller-product-slider-nav.prev svg, 
  .best-seller-product-slider-nav.next svg {
    width: 50%;
    height: 50%;
    transition: none;
  }
  .best-seller-product-overlay-title {
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    letter-spacing: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    text-decoration: none;
  }
  
  .best-seller-product-overlay-subtitle {
    line-height: 20px !important;
    font-size: 14px !important;
    letter-spacing: 0px;
    font-style: italic;
    color: #3F3A3B;
    font-weight: 400;
    margin: 0;
  }
  
  .best-seller-product-overlay-price {
    font-family: system-ui, sans-serif;
    letter-spacing: 0px;
    text-align: right;
    line-height: 14px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    margin: 0;
  }

    .best-seller-product-overlay-price span{
    line-height: 14px !important;
    letter-spacing: 0px;
    font-weight: 400;
    margin: 0;
  }
  
  .best-seller-product-overlay-header {
    border-top: 1px solid #72675F;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 20px;
    display: flex;
    gap: 17px;
  }
  
  .best-seller-product-overlay-header-left {
    flex: 1;
    text-align: left;
  }
  .section-title-main.best-sellers-title{
    margin: 25px 0;
  }
  
  .best-seller-product-overlay-rating {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    align-items: center;
  }
  
  .best-seller-product-star {
    width: 16px;
    height: 16px;
    fill: #000;
    display: block;
  }
  
  .best-seller-product-overlay-actions {
    display: flex;
    gap: 0px;
    border-top: 1px solid #72675F;
  }
  
  .best-seller-product-overlay-actions .product-card-interactions {
    flex: 1;
    display: flex;
  }
  
  .best-seller-product-overlay-actions .product-card-interaction {
    font-family: 'CoFo Sans VF', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: transparent;
    letter-spacing: 1.28px;
    padding: 12px 0;
    line-height: 100%;
    font-weight: 400;
    color: #212120;
    cursor: pointer;
    font-size: 16px;
    border: none;
    flex: 1;
  }

  .best-seller-product-action-btn {
    flex: 1;
    padding: 12px 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    font-family: "CoFo Sans VF", sans-serif;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
  }
  
  .best-seller-product-action-btn:hover,
  .best-seller-product-action-btn.primary:hover,
  .product-card-interaction-quickshop:hover {
    background: #E9F0BF;
    color: #171717;
  }
  
  .best-seller-product-action-btn.primary {
    background: transparent;
    color: #171717;
  }

  a.best-seller-product-action-btn--choose-styles {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    color: #171717;
  }

  a.best-seller-product-action-btn--choose-styles:hover {
    color: #171717;
  }

  .best-seller-mobile-choose-styles-btn {
    width: auto;
    height: auto;
    min-height: 26px;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #72675F;
    border-radius: 100px;
    text-decoration: none;
    color: #212120;
    white-space: nowrap;
    font-family: "CoFo Sans VF", sans-serif;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
  }
  
  /* Add to cart button states */
  .best-seller-product-action-btn .product-card-interaction-addtocart-available,
  .best-seller-product-action-btn .product-card-interaction-addtocart-error,
  .best-seller-product-action-btn .product-card-interaction-addtocart-spinner {
    display: inline-block;
  }
  
  .best-seller-product-action-btn .product-card-interaction-addtocart-error,
  .best-seller-product-action-btn .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .best-seller-product-action-btn.loading .product-card-interaction-addtocart-available,
  .best-seller-product-action-btn.loading .product-card-interaction-addtocart-error {
    display: none;
  }
  
  .best-seller-product-action-btn.loading .product-card-interaction-addtocart-spinner {
    display: inline-block;
  }
  
  .best-seller-product-action-btn.error .product-card-interaction-addtocart-available,
  .best-seller-product-action-btn.error .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .best-seller-product-action-btn.error .product-card-interaction-addtocart-error {
    display: inline-block;
  }
  
  /* Mobile cart button states */
  .best-seller-mobile-cart-btn .product-card-interaction-addtocart-available,
  .best-seller-mobile-cart-btn .product-card-interaction-addtocart-error,
  .best-seller-mobile-cart-btn .product-card-interaction-addtocart-spinner {
    display: block;
  }
  
  .best-seller-mobile-cart-btn .product-card-interaction-addtocart-error,
  .best-seller-mobile-cart-btn .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .best-seller-mobile-cart-btn.loading .product-card-interaction-addtocart-available,
  .best-seller-mobile-cart-btn.loading .product-card-interaction-addtocart-error {
    display: none;
  }
  
  .best-seller-mobile-cart-btn.loading .product-card-interaction-addtocart-spinner {
    display: block;
  }
  
  .best-seller-mobile-cart-btn.error .product-card-interaction-addtocart-available,
  .best-seller-mobile-cart-btn.error .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .best-seller-mobile-cart-btn.error .product-card-interaction-addtocart-error {
    display: block;
  }
  @media screen and (min-width: 1442px) {
    .best-sellers-products-grid {
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
  }
  @media screen and (max-width: 991px) {
    .best-sellers-header-section-main {
      border-top: 1px solid #72675F;
      border-bottom: 1px solid #72675F;
      flex-direction: column;
      align-items: stretch !important;
    }
    
    .best-sellers-header {
      flex-direction: row;
      align-items: center;
      gap: 15px;
    }
    
    .best-sellers-header-left {
      flex-shrink: 0;
    }
    
    .best-sellers-shop-strip {
      min-height: auto;
      border-left: 0px solid #72675F;
      border-right: 1px solid #72675F;
    }
    .shopify-section .section-header.best-sellers-header{
      gap:0;
    }
    
    .best-sellers-shop-label {
      padding: 10px 5px;
    }
    
    .best-sellers-shop-label span {
      font-size: 10px;
    }
    
    .best-sellers-header-center {
      flex: 1;
      text-align: center;
      width: auto;
      padding-left: 0;
      margin: 0;
    }
    
    [data-section-type="best-sellers-tabs"] .best-sellers-title {
      font-size: 24px;
      text-align: center;
      margin:0;
    }
    
    .best-sellers-header-right {
      width: 100%;
      padding: 0;
      border-top: 1px solid #72675F;
    }
    
    .best-sellers-tabs {
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      padding: 10px;
    }
    
    .best-sellers-tab {
      font-size: 11px;
      padding: 4px 0;
    }
    
    .best-sellers-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      row-gap: 4rem;
    }
    
    .best-seller-product-image-wrapper {
      height: auto;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      overflow: visible;
      border: 1px solid #72675F;
    }
    
    .best-seller-product-image,
    .best-seller-product-image-slider {
      height: 400px;
      flex-shrink: 0;
    }
    
    /* Show product details always on mobile - below image, not as overlay */
    .best-seller-product-details {
      position: relative !important;
      bottom: auto !important;
      left: auto !important;
      width: 100%;
      background-color: #E9E4E1;
      display: flex !important;
      flex-direction: column;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
      padding: 15px;
      pointer-events: auto;
      transition: none;
      z-index: 1;
      margin-top: 0;
    }
    
    .best-seller-product-item:hover .best-seller-product-details,
    .best-seller-product-item:not(:hover) .best-seller-product-details {
      max-height: none !important;
      opacity: 1 !important;
      padding: 10px 10px;
    }
    
    /* Hide slider arrows on mobile */
    .best-seller-product-slider-nav {
      display: none;
    }
    
    .best-seller-product-overlay-header {
      margin-bottom: 8px;
      padding: 0;
      flex-direction: column;
      align-items: center;
      border:0;
      gap:0;
      margin: 0;
    }
    
    .best-seller-product-overlay-title {
      font-size: 14px;
      margin-bottom: 4px;
      text-decoration: none;
    }
    
    .best-seller-product-overlay-subtitle {
      font-size: 11px;
      margin-bottom: 5px;
      margin-top: 5px;
      line-height: 22px;
    }
    .best-seller-product-overlay-actions .product-card-interaction-quickshop{
      display:block;
    }
    .best-seller-product-overlay-price {
      font-size: 16px;
      margin-bottom: 0;
    }
    
    .best-seller-product-overlay-rating {
      margin-bottom: 0px;
      justify-content: flex-start;
    }
    
    .best-seller-product-star {
      width: 14px;
      height: 14px;
    }
    
    .best-seller-product-overlay-actions {
      flex-direction: column;
      gap: 8px;
      border: 0;
    }
    
    .best-seller-product-action-btn {
      width: 100%;
      padding: 10px 15px;
      font-size: 11px;
      /* border: 1px solid #72675F; */
    }
    
    .best-seller-product-action-btn:first-child {
      /* border-right: 1px solid #72675F; */
    }
    
    /* Show only QUICK SHOP button on mobile, hide ADD TO CART */
    .best-seller-product-action-btn.primary {
      display: none;
    }
      .best-seller-product-overlay-header-left {
      text-align: center;
    }
    
    .best-seller-price-with-rating-main {
      align-items: center;
      gap: 6px;
    }
    
    .best-seller-product-item {
      border: 1px solid transparent;
    }
    
    .best-seller-product-item:hover {
      border: 1px solid transparent;
    }
    
    /* Mobile Add to Cart Button - bottom right of image */
    .best-seller-mobile-cart-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 26px;
      height: 26px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: transform 0.2s ease;
    }
    
    .best-seller-mobile-cart-btn:active {
      transform: scale(0.95);
    }
    
    .best-seller-mobile-cart-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .best-seller-mobile-cart-btn svg {
      width: 26px;
      height: 26px;
      display: block;
    }
    .best-sellers-title{
      padding-top:0;
    }
    .tolstoy-carousel-arrows-container{
      margin-top:0 !important;
    }
    .tolstoy-carousel-container > div {
        margin-bottom: 0 !important;
    }
    .showcase-gallery .showcase-slider .showcase-track{
      padding: 0 !important;
    }
  }
    @media screen and (max-width:749px){
    .best-sellers-slider .best-sellers-title{
      text-align: center;
    } 
  }
  /* Hide mobile cart button on desktop */
  @media screen and (min-width: 991px) {
    .best-seller-mobile-cart-btn {
      display: none;
    }
  }
  
  /* @media screen and (max-width: 991px) and (min-width: 769px) {
    .best-sellers-header {
      flex-direction: column;
      align-items: flex-start;
      padding: 15px 0;
    }
    
    .best-sellers-shop-strip {
      min-height: 60px;
    }
    
    .best-sellers-header-center {
      text-align: left;
      width: 100%;
      padding-left: 0;
      margin: 10px 0;
    }
    
    .best-sellers-title {
      font-size: 36px;
    }
    
    .best-sellers-header-right {
      width: 100%;
    }
    
    .best-sellers-tabs {
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .best-sellers-products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  } */

  /* ============================================
     COLLECTION PRODUCT ITEM STYLES
     ============================================ */
  
  .collection-product-item {
    position: relative;
    cursor: pointer;
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .collection-product-item:hover {
    border: 1px solid #72675F;
  }
  
  .collection-product-item.product {
    width: 100%;
    min-width: auto;
  }
  
  .collection-product-image-wrapper {
    position: relative;
    width: 100%;
    /* height: 85rem; */
    height: 53.4rem;
    overflow: hidden;
    background-color: transparent;
    flex-shrink: 0;
  }
  
  .collection-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .collection-product-badges {
    position: absolute;
    top: 15px;
    left: 18px;
    right: 3rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  @media screen and (min-width:1441px){
    .collection-product-badges{
      top: 20px;
      right: 3rem;
      left: 18px;
    }
  }
  
  .collection-badge {
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .collection-badge.discount {
    background-color: #212120;
    color: #fff;
    border-radius: 23px;
    padding: 10px 12px;
    font-family: 'CoFo Sans VF', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 11.52px;
  }
  
  .collection-badge.custom__badge {
    background-color: #E9F0BF;
    color: #CF5828;
    border: 1px solid #CF5828;
    /* border-radius: 50%;
    width: 57px;
    height: 57px; */
    border-radius: 99999px;
    width: auto;
    height: auto;
    /* padding: 20px 10px; */
    padding:12px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CoFo Sans VF', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 11.52px;
  }
  
  .collection-product-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #E9E4E1;
    display: flex;
    flex-direction: column;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: 5;
    pointer-events: none;
    visibility: visible !important;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  
  .collection-product-item:hover .collection-product-details {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
  }
  
  .collection-product-item:not(:hover) .collection-product-details {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    pointer-events: none;
    visibility: visible !important;
  }
  
  /* Ensure overlay details can receive clicks when visible */
  .collection-product-item:hover .collection-product-details {
    pointer-events: auto !important;
  }
  
  /* Ensure the overlay actions container allows clicks */
  .collection-product-overlay-actions {
    pointer-events: auto !important;
    z-index: 10;
  }
  
  /* Ensure button works even when overlay is not hovered */
  .collection-product-item .collection-product-details .product-card-interaction-quickshop {
    pointer-events: auto !important;
  }
  
  .collection-product-overlay-header {
    border-top: 1px solid #72675F;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    padding: 20px;
    display: flex;
    gap: 17px;
  }
  
  .collection-product-overlay-header-left {
    flex: 1;
    text-align: left;
  }
  
  .collection-product-overlay-title {
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    letter-spacing: 0;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    text-decoration: none;
  }
  
  .collection-product-overlay-subtitle {
    line-height: 20px !important;
    font-size: 14px !important;
    letter-spacing: 0px;
    font-style: italic;
    color: #3F3A3B;
    font-weight: 400;
    margin: 0;
  }
  
  .collection-price-with-rating-main {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 5px;
    display: flex;
    gap: 5px;
  }
  
  .collection-product-overlay-price {
    /* font-family: system-ui, sans-serif; */
    letter-spacing: 0px;
    text-align: right;
    line-height: 14px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    margin: 0;
  }
  
  .collection-product-overlay-price span {
    line-height: 14px !important;
    letter-spacing: 0px;
    font-weight: 400;
    margin: 0;
  }
  
  .collection-product-overlay-rating {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    align-items: center;
  }
  
  .collection-product-star {
    width: 16px;
    height: 16px;
    fill: #000;
    display: block;
  }
  
  .collection-product-overlay-actions {
    display: flex;
    gap: 0px;
    border-top: 1px solid #72675F;
    pointer-events: auto !important;
    z-index: 10;
  }
  
  .collection-product-action-btn {
    flex: 1;
    padding: 12px 20px;
    color: #000;
    /* font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px; */
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    font-family: "CoFo Sans VF", sans-serif;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
  }
  
  .collection-product-action-btn:hover,
  .collection-product-action-btn.primary:hover {
    background: #E9F0BF;
    color: #171717;
  }
  
  .collection-product-action-btn.primary {
    background: transparent;
    color: #171717;
  }

    a.collection-product-action-btn--choose-styles {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    color: #171717;
  }

  a.collection-product-action-btn--choose-styles:hover {
    color: #171717;
  }

  .collection-mobile-choose-styles-btn {
    width: auto;
    height: auto;
    min-height: 26px;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #72675F;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #212120;
    white-space: nowrap;
  }
  
  /* Add to cart button states */
  .collection-product-action-btn .product-card-interaction-addtocart-available,
  .collection-product-action-btn .product-card-interaction-addtocart-error,
  .collection-product-action-btn .product-card-interaction-addtocart-spinner {
    display: inline-block;
  }
  
  .collection-product-action-btn .product-card-interaction-addtocart-error,
  .collection-product-action-btn .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .collection-product-action-btn.loading .product-card-interaction-addtocart-available,
  .collection-product-action-btn.loading .product-card-interaction-addtocart-error {
    display: none;
  }
  
  .collection-product-action-btn.loading .product-card-interaction-addtocart-spinner {
    display: inline-block;
  }
  
  .collection-product-action-btn.error .product-card-interaction-addtocart-available,
  .collection-product-action-btn.error .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .collection-product-action-btn.error .product-card-interaction-addtocart-error {
    display: inline-block;
  }
  
  /* Mobile cart button states */
  .collection-mobile-cart-btn .product-card-interaction-addtocart-available,
  .collection-mobile-cart-btn .product-card-interaction-addtocart-error,
  .collection-mobile-cart-btn .product-card-interaction-addtocart-spinner {
    display: block;
  }
  
  .collection-mobile-cart-btn .product-card-interaction-addtocart-error,
  .collection-mobile-cart-btn .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .collection-mobile-cart-btn.loading .product-card-interaction-addtocart-available,
  .collection-mobile-cart-btn.loading .product-card-interaction-addtocart-error {
    display: none;
  }
  
  .collection-mobile-cart-btn.loading .product-card-interaction-addtocart-spinner {
    display: block;
  }
  
  .collection-mobile-cart-btn.error .product-card-interaction-addtocart-available,
  .collection-mobile-cart-btn.error .product-card-interaction-addtocart-spinner {
    display: none;
  }
  
  .collection-mobile-cart-btn.error .product-card-interaction-addtocart-error {
    display: block;
  }
  
  .collection-product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .collection-product-slider-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .collection-product-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
    z-index: 1;
  }
  
  .collection-product-slider-image.active {
    opacity: 1;
    z-index: 2;
  }
  
  .collection-product-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #212120;
    border: none;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
  }
  
  .collection-product-slider-nav svg path {
    fill: #212120;
  }
  
  .collection-product-item:hover .collection-product-slider-nav {
    opacity: 1;
  }
  
  .collection-product-slider-nav:hover {
    color: #000;
  }
  
  .collection-product-slider-nav.prev {
    left: 10px;
    top: 40%;
    transform: translate(-10px, -40%);
  }
  
  .collection-product-slider-nav.next {
    right: 0px;
    top: 40%;
    transform: translate(0px, -40%);
  }
  
  .collection-product-slider-nav.prev svg,
  .collection-product-slider-nav.next svg {
    width: 50%;
    height: 50%;
    transition: none;
  }
  
  /* Mobile Add to Cart Button */
  @media screen and (max-width: 990px) {
    .collection-product-image-wrapper {
      height: auto;
      min-height: 400px;
      display: flex;
      flex-direction: column;
      overflow: visible;
      border: 1px solid #72675F;
    }
    
    .collection-product-image,
    .collection-product-image-slider {
      height: 400px;
      flex-shrink: 0;
    }
    
    /* Show product details always on mobile - below image, not as overlay */
    .collection-product-details {
      position: relative !important;
      bottom: auto !important;
      left: auto !important;
      width: 100%;
      background-color: #E9E4E1;
      display: flex !important;
      flex-direction: column;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
      padding: 15px;
      pointer-events: auto;
      transition: none;
      z-index: 1;
      margin-top: 0;
    }
    
    .collection-product-item:hover .collection-product-details,
    .collection-product-item:not(:hover) .collection-product-details {
      max-height: none !important;
      opacity: 1 !important;
      padding: 15px;
    }
    
    /* Hide slider arrows on mobile */
    .collection-product-slider-nav {
      display: none;
    }
    
    .collection-product-overlay-header {
      margin-bottom: 8px;
      padding: 0;
      flex-direction: column;
      align-items: center;
      border: 0;
      gap: 0;
    }
    
    .collection-product-overlay-title {
      font-size: 14px;
      margin-bottom: 4px;
      text-decoration: none;
    }
    
    .collection-product-overlay-subtitle {
      font-size: 11px;
      margin-bottom: 5px;
      margin-top: 5px;
      line-height: 22px;
    }
    
    .collection-product-overlay-price {
      font-size: 16px;
      margin-bottom: 0;
      text-align:center;
      line-height: 20px;
    }
    
    .collection-product-overlay-rating {
      margin-bottom: 10px;
      justify-content: flex-start;
    }
    
    .collection-product-star {
      width: 14px;
      height: 14px;
    }
    
    .collection-product-overlay-actions {
      flex-direction: column;
      gap: 8px;
      border: 0;
    }
    
    .collection-product-action-btn {
      width: 100%;
      padding: 10px 15px;
      font-size: 11px;
    }
    
    .collection-product-action-btn:first-child {
      /* border-right: 1px solid #72675F; */
    }
    
    /* Show only QUICK SHOP button on mobile, hide ADD TO CART */
    .collection-product-action-btn.primary {
      display: none;
    }
    
    .collection-product-overlay-header-left {
      text-align: center;
    }
    
    .collection-price-with-rating-main {
      align-items: center;
      gap: 6px;
    }
    
    .collection-product-item {
      border: 1px solid transparent;
    }
    
    .collection-product-item:hover {
      border: 1px solid transparent;
    }
    
    /* Mobile Add to Cart Button - bottom right of image */
    .collection-mobile-cart-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      width: 26px;
      height: 26px;
      padding: 0;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 6;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      transition: transform 0.2s ease;
    }
    
    .collection-mobile-cart-btn:active {
      transform: scale(0.95);
    }
    
    .collection-mobile-cart-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .collection-mobile-cart-btn svg {
      width: 26px;
      height: 26px;
      display: block;
    }
  }
  
  /* Hide mobile cart button on desktop */
  @media screen and (min-width: 991px) {
    .collection-mobile-cart-btn {
      display: none;
    }
  }

  video.tolstoy-carousel-video {
    border-radius: 0 !important;
}
.tolstoy-carousel-center-tile .tolstoy-product-content {
    display: block !important;
}
.tolstoy-product-content {
    display: none !important;
    background: transparent !important;
    padding-right:0 !important;
  }
.tolstoy-carousel-tile {
    background: transparent !important;
}
.tolstoy-carousel-video-container {
    border-top: 1px solid #72675F;
    border-right: 1px solid #72675F;
    border-left: 1px solid #72675F;
    border-bottom: 1px solid #72675F;
}
.tolstoy-carousel-center-tile .tolstoy-product-content {
    border-right: 1px solid #72675F !important;
    border-radius: 0 !important;
    border-left: 1px solid #72675F !important;
    border-bottom: 1px solid #72675F !important;
}
.tolstoy-previous-button:hover,
.tolstoy-next-button:hover {
    background-color: #E9F0BF !important;
    width: 60px !important;
    height: 30px !important;
}
.tolstoy-previous-button:hover{
    border-radius: 50px 0 0 50px;
}
.tolstoy-previous-button , .tolstoy-next-button{
  height:30px !important;
   width: 60px !important;
}
.tolstoy-next-button:hover {
    border-radius: 0 50px 50px 0;
}
/* .tolstoy-previous-button {
    border-radius: 0 20px 20px 0 ;
    background-color: transparent;
    padding-left: 16px;
} */
.tolstoy-previous-button svg,
.tolstoy-next-button svg {
  display: none !important;
}
.tolstoy-next-button {
  transform: none !important;
}
.tolstoy-previous-button,
.tolstoy-next-button {
  position: relative;
}
.tolstoy-previous-button:after {
  content: "";
  position: absolute;
  width: 31px;
  height: 9px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;utf8,<svg width='19' height='5' viewBox='0 0 19 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M18.7647 2.20588H1.21765L3.11177 0.447058L2.69412 0L0 2.5L2.69412 5L3.11177 4.55294L1.21765 2.79412H18.7647V2.20588Z' fill='%2372675F'/></svg>") no-repeat center;
  background-size: contain;
}
.tolstoy-next-button:after {
  content: "";
  position: absolute;
  width: 31px;
  height: 9px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("data:image/svg+xml;utf8,<svg width='19' height='5' viewBox='0 0 19 5' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 2.20588H17.547L15.6529 0.447058L16.0705 0L18.7646 2.5L16.0705 5L15.6529 4.55294L17.547 2.79412H0V2.20588Z' fill='%2372675F'/></svg>") no-repeat center;
  background-size: contain;
}
.tolstoy-product-tile > div {
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .tolstoy-product-tile{
    padding:0 !important;
  }
  .showcase-gallery .showcase-slider .showcase-slider-control.prev,
  .showcase-gallery .showcase-slider .showcase-slider-control.next {
    display: none;
  }
  @media screen and (min-width:769px){
    .showcase-gallery .showcase-grid .showcase-grid-items .showcase-grid-item .showcase-grid-item-post.square .showcase-grid-item-post-media video {
      transform: translate(-49.9%, -50%) !important;
      left: 49.9% !important;
    }
  }
  .showcase-gallery .showcase-slider .showcase-track {
    padding: 0 0px !important;
  }

  @media screen and (max-width:475px){
    .collection-product-badges{
      top: 8px;
      left: 8px;
    }
    .collection-badge.discount{
      font-size: 10px;
      line-height: 7.52px;s
    }
    .collection-badge.custom__badge{
      /* width: 45px;
      height: 45px; */
      font-size: 10px;
      line-height: 8.52px;
      padding: 16px 8px;
    }
  }