/* ConversionBox Upsell Widget Styles */

.conversionbox-upsell-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .conversionbox-upsell-widget {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }
  
  .cb-upsell-header {
    margin-bottom: 25px;
    text-align: center;
  }
  
  .cb-upsell-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    text-align: center;
  }
  
  .cb-upsell-subtitle {
    margin: 0;
    font-size: 16px;
    color: #666;
    text-align: center;
  }
  
  .cb-upsell-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 60px;
  }
  
  .cb-upsell-carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cb-upsell-products {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    /* padding: 0 10px; */
  }
  
  .cb-upsell-product-card {
    min-width: 250px;
    max-width: 250px;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
  }
  
  .cb-upsell-product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
    transform: translateY(-2px); 
    transition: all 0.3s ease;
  }
  
  .cb-upsell-product-image-container {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
  }
  
  .cb-upsell-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
  }
  
  .cb-upsell-product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .cb-upsell-product-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .cb-upsell-product-price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
  }
  
  .cb-upsell-product-price {
    font-size: 16px;
    font-weight: 600;
    color: #000;
  }
  
  
  
  .cb-upsell-add-to-cart-btn {
    width: 100%;
    padding: 10px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .cb-upsell-add-to-cart-btn:hover {
    background: #333;
  }
  
  .cb-upsell-add-to-cart-btn:active {
    background: #222;
  }
  
  .cb-upsell-add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  
  .cb-upsell-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 10;
  }
  
  .cb-upsell-nav-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .cb-upsell-nav-btn:active {
    background: #e0e0e0;
  }
  
  .cb-upsell-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
  }
  
  .cb-upsell-nav-btn.disabled:hover {
    background: #f5f5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .cb-upsell-nav-prev {
    left: 10px;
  }
  
  .cb-upsell-nav-next {
    right: 10px;
  }
  
  .cb-upsell-loading {
    width: 100%;
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
  }
  
  /* Skeleton loading styles */
  .cb-upsell-skeleton {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .cb-upsell-skeleton-item {
    min-width: 250px;
    max-width: 250px;
    height: 320px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .cb-upsell-skeleton-image {
    width: 100%;
    height: 180px;
    background: #e0e0e0;
    border-radius: 6px 6px 0 0;
  }
  
  .cb-upsell-skeleton-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .cb-upsell-skeleton-title {
    height: 14px;
    background: #e0e0e0;
    border-radius: 2px;
    width: 85%;
  }
  
  .cb-upsell-skeleton-price {
    height: 18px;
    background: #e0e0e0;
    border-radius: 2px;
    width: 45%;
  }
  
  .cb-upsell-skeleton-button {
    height: 40px;
    background: #d0d0d0;
    border-radius: 6px;
    width: 100%;
    margin-top: auto;
  }
  
  @keyframes loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
  .cb-upsell-no-products {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
  }
  
  /* Loader style matching instant search */
  .cbISloader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .conversionbox-upsell-container {
      max-width: 95%;
    }
  }
  
  @media (max-width: 768px) {
    .conversionbox-upsell-container {
      max-width: 98%;
    }
    
    .conversionbox-upsell-widget {
      padding: 15px;
      margin: 20px 0;
    }
  
    .cb-upsell-title {
      font-size: 20px;
    }
  
    .cb-upsell-subtitle {
      font-size: 14px;
    }
  
    /* .cb-upsell-product-card {
      min-width: 200px;
      max-width: 200px;
    } */
  
    .cb-upsell-product-image-container {
      height: 140px;
    }
  
    .cb-upsell-skeleton-image {
      height: 140px;
    }
  
    .cb-upsell-product-title {
      font-size: 13px;
    }
  
    .cb-upsell-product-price {
      font-size: 14px;
    }
  
    .cb-upsell-nav-btn {
      width: 35px;
      height: 35px;
    }
  
    .cb-upsell-nav-prev {
      left: 5px;
    }
  
    .cb-upsell-nav-next {
      right: 5px;
    }
  
    .cb-upsell-carousel-wrapper {
      padding: 0 50px;
    }
  }
  
  @media (max-width: 480px) {
    .cb-upsell-product-card {
      min-width: 180px;
      max-width: 180px;
    }
  }
  
  /* Accessibility */
  .cb-upsell-nav-btn:focus,
  .cb-upsell-add-to-cart-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
  }
  
  /* Reduced motion support */
  @media (prefers-reduced-motion: reduce) {
    .cb-upsell-products {
      transition: none;
    }
  
    .cb-upsell-product-card {
      transition: none;
    }
  
    .cb-upsell-nav-btn {
      transition: none;
    }
  
    .cb-upsell-add-to-cart-btn {
      transition: none;
    }
  }