 :root {
        --primary: #6C5CE7;
        --primary-light: #A29BFE;
        --secondary: #FF7675;
        --accent: #FD79A8;
        --gold: #FDCB6E;
        --dark: #2D3436;
        --light: #F9FAFF;
        --success: #00B894;
        --danger: #D63031;
    }
    
    body {
        background: #F5F7FA;
        font-family: 'Poppins', sans-serif;
    }
    
    /* 🔥 Main Container */
    .product-container {
        display: flex;
        max-width: 1610px;
        margin: 2rem auto;
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.8s forwards;
    }
    
    @keyframes fadeInUp {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* 🖼️ Image Gallery with Zoom */
    .image-gallery {
        flex: 1;
        padding: 2rem;
        border-right: 1px solid #eee;
        position: relative;
    }
    
    .main-image-container {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        cursor: zoom-in;
        transition: all 0.3s;
    }
    
    .main-image {
        width: 100%;
        height: 500px;
        object-fit: contain;
        transition: transform 0.3s;
    }
    
    .main-image:hover {
        transform: scale(1.02);
    }
    
    .zoom-lens {
        position: absolute;
        border: 3px solid var(--primary);
        border-radius: 50%;
        width: 150px;
        height: 150px;
        pointer-events: none;
        display: none;
        z-index: 10;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        background-color: rgba(255,255,255,0.1);
        backdrop-filter: blur(2px);
    }
    
    .zoom-result {
        position: absolute;
        top: 0;
        left: calc(100% + 80px);
        width: 500px;
        height: 500px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
        overflow: hidden;
        display: none;
        z-index: 100;
    }
    
    .zoom-result img {
        position: absolute;
        max-width: none;
        max-height: none;
    }
    
    .thumbnail-container {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .thumbnail:hover, .thumbnail.active {
        border-color: var(--primary);
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.2);
    }
    
    /* 💰 Product Info */
    .product-info {
        flex: 1;
        padding: 2rem;
        position: relative;
    }
    
    .product-title {
        font-family: 'Baloo Bhai 2', cursive;
        font-size: 2.2rem;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    
    .product-brand {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    /* 🔥 YOUR PRICE LOGIC - Enhanced */
    .price-container {
        margin-bottom: 2rem;
        padding: 1rem;
        background: rgba(108, 92, 231, 0.05);
        border-radius: 15px;
        border-left: 4px solid var(--primary);
    }
    
    .current-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin-right: 1rem;
    }
    
    .original-price {
        font-size: 1.5rem;
        text-decoration: line-through;
        color: #999;
        margin-right: 1rem;
    }
    
    .discount-badge {
        background: var(--secondary);
        color: white;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 700;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* 🎨 Enhanced Color Selector with Images */
    .option-section {
        margin-bottom: 2rem;
    }
    
    .option-title {
        font-weight: 600;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    .option-title i {
        margin-right: 0.5rem;
        color: var(--primary);
    }
    
    .color-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .color-option-img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        border: 2px solid transparent;
        overflow: hidden;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .color-option-img.selected {
        border-color: var(--primary);
        box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary);
        transform: rotate(5deg) scale(1.1);
    }
    
    .color-option-img:hover {
        transform: scale(1.1) rotate(5deg);
    }
    
    /* 📏 Size Selector - Enhanced */
    .size-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .size-option {
        padding: 0.5rem 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .size-option:hover, .size-option.selected {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }
    
    .size-option.out-of-stock {
        opacity: 0.5;
        text-decoration: line-through;
        cursor: not-allowed;
        position: relative;
    }
    
    .size-option.out-of-stock::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--danger);
    }
    
    /* 🔥 Action Buttons */
    .action-buttons {
        display: flex;
        gap: 15px;
        margin-top: 2rem;
    }
    
    .add-to-cart-btn {
        flex: 1;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 1rem;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }
    
    .wishlist {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        background: var(--accent);
        color: white;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
    }
    
    .wishlist:hover {
        transform: scale(1.1) rotate(10deg);
        background: var(--secondary);
    }
    
    .add-to-cart-btn:hover {
        background: var(--primary-light);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    }
    
    .buy-now-btn {
        flex: 1;
        background: var(--success);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 1rem;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    }
    
    .buy-now-btn:hover {
        background: #00a884;
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
    }
    
    /* 📦 Stock Status - Enhanced */
    .stock-status {
        margin-top: 1rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .in-stock {
        color: var(--success);
        background: rgba(0, 184, 148, 0.1);
    }
    
    .low-stock {
        color: var(--gold);
        background: rgba(253, 203, 110, 0.1);
    }
    
    .out-of-stock {
        color: var(--danger);
        background: rgba(214, 48, 49, 0.1);
    }
    
    /* 💎 Premium Features */
    .premium-features {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(108, 92, 231, 0.05);
        border-radius: 15px;
        border-left: 4px solid var(--primary);
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        background: rgba(108, 92, 231, 0.1);
        transform: translateX(5px);
    }
    
    .feature-item:last-child {
        margin-bottom: 0;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    /* 📝 Description & Reviews - Enhanced */
    .details-section {
        max-width: 1610px;
        margin: 2rem auto;
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.8s forwards 0.2s;
        height: 500px;
        overflow: scroll;
    }
    
    .section-title {
        font-family: 'Baloo Bhai 2', cursive;
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--primary);
        animation: underlineGrow 0.8s ease-out;
    }
    
    @keyframes underlineGrow {
        from { width: 0 }
        to { width: 50px }
    }
    
    /* 💫 Ultra-Sexy Review Section */
    .review-card {
        border-radius: 15px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary);
        transform: scale(0.98);
        opacity: 0;
        animation: fadeInUp 0.5s forwards;
    }
    
    .review-card:nth-child(1) { animation-delay: 0.3s; }
    .review-card:nth-child(2) { animation-delay: 0.4s; }
    .review-card:nth-child(3) { animation-delay: 0.5s; }
    .review-card:nth-child(4) { animation-delay: 0.6s; }
    
    .review-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .review-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    
    .review-user {
        font-weight: 600;
        color: var(--dark);
    }
    
    .review-date {
        color: #999;
        font-size: 0.9rem;
    }
    
    .review-stars {
        color: var(--gold);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    
    .review-text {
        color: #555;
        line-height: 1.6;
    }
    
    /* Enhanced Review Gallery */
    .review-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
        margin-bottom: 2rem;
        
    }

    .review-gallery-item {
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        transition: all 0.3s;
    }

    .review-gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .review-gallery-item:hover img {
        transform: scale(1.1);
    }

    .review-gallery-count {
        position: absolute;
        bottom: 0;
        right: 0;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 0.2rem 0.5rem;
        border-radius: 5px 0 0 0;
        font-size: 0.8rem;
    }

    /* View More Button */
    .view-more-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        margin-top: 1rem;
        cursor: pointer;
        transition: all 0.3s;
    }

    .view-more-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
    }

    /* Modal for viewing all review images */
    .review-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        z-index: 2000;
        overflow-y: auto;
    }

    .review-modal-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        padding: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .review-modal-img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        background: #f5f5f5;
        border-radius: 8px;
    }

    .close-review-modal {
        position: fixed;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 2001;
    }

    /* Review Images */
    .review-images {
        display: flex;
        gap: 10px;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .review-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        transition: all 0.3s;
        cursor: pointer;
    }
    
    .review-image:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* ✨ Star Rating */
    .star-rating {
        direction: rtl;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .star-rating input[type="radio"] {
        display: none;
    }
    
    .star-rating label {
        color: #ddd;
        font-size: 2rem;
        padding: 0 5px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    
    .star-rating input[type="radio"]:checked ~ label,
    .star-rating label:hover,
    .star-rating label:hover ~ label {
        color: var(--gold);
        transform: scale(1.2);
        text-shadow: 0 0 10px rgba(253, 203, 110, 0.5);
    }
    
    /* 🎀 Add Review Section */
    .add-review {
        margin-top: 2rem;
        padding: 2rem;
        background: rgba(108, 92, 231, 0.05);
        border-radius: 15px;
        border: 1px dashed rgba(108, 92, 231, 0.3);
        transition: all 0.3s;
    }
    
    .add-review:hover {
        background: rgba(108, 92, 231, 0.08);
        border-color: var(--primary);
    }
    
    .review-textarea {
        width: 100%;
        border: 2px solid #eee;
        border-radius: 10px;
        padding: 1rem;
        margin-bottom: 1rem;
        resize: none;
        transition: all 0.3s ease;
        min-height: 120px;
    }
    
    .review-textarea:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
    }
    
    .submit-review-btn {
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    }
    
    .submit-review-btn:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
    }
    
    .submit-review-btn:active {
        transform: translateY(0);
    }
    
    /* 🎉 Success/Error Messages */
    .alert-message {
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s;
    }
    
    .alert-message.show {
        opacity: 1;
        transform: translateY(0);
    }
    
    .alert-success {
        background: rgba(0, 184, 148, 0.1);
        color: var(--success);
        border-left: 4px solid var(--success);
    }
    
    .alert-danger {
        background: rgba(214, 48, 49, 0.1);
        color: var(--danger);
        border-left: 4px solid var(--danger);
    }

    /* Celebration Animation */
    @keyframes floatUp {
        0% { transform: translateY(0) rotate(0deg); opacity: 1; }
        100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
    }

    .celebration {
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        animation: floatUp 2s ease-out forwards;
    }

    /* Success Message */
    .success-message {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 184, 148, 0.9);
        color: white;
        padding: 2rem;
        border-radius: 15px;
        z-index: 1000;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        animation: bounceIn 0.8s;
        display: none;
    }

    @keyframes bounceIn {
        0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
        70% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
        100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    }

    .success-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        animation: pulse 1.5s infinite;
    }

    /* Review Images Styling */
    .review-images-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 1rem;
    }

    .review-thumbnail {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        border: 2px solid rgba(108, 92, 231, 0.3);
    }

    .review-thumbnail:hover {
        transform: scale(1.1);
        border-color: var(--primary);
    }

    /* Cart Success Message */
    .cart-success-message {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(108, 92, 231, 0.9);
        color: white;
        padding: 2rem;
        border-radius: 15px;
        z-index: 1000;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        animation: bounceIn 0.8s;
        display: none;
    }

    /* Wishlist Success Message */
    .wishlist-success-message {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(253, 121, 168, 0.9);
        color: white;
        padding: 2rem;
        border-radius: 15px;
        z-index: 1000;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        animation: bounceIn 0.8s;
        display: none;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .product-container {
            flex-direction: column;
        }
        
        .image-gallery {
            border-right: none;
            border-bottom: 1px solid #eee;
        }
        
        .main-image {
            height: 400px;
        }
        
        .action-buttons {
            flex-direction: column;
        }
    }
    
    @media (max-width: 576px) {
        .main-image {
            height: 300px;
        }
        
        /* .price-container {
            flex-direction: row;
            align-items: flex-start;
        }
        
        .current-price, .original-price {
            display: block;
            margin-right: 0;
            margin-bottom: 0.5rem;
        }
         */
        .review-images {
            justify-content: center;
        }


  .details-section {
        max-width: 1610px;
        margin: 2rem auto;
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 0.8s forwards 0.2s;
        height: 350px;
        overflow: scroll;
    }
   

    #product-gallery img {
    cursor: pointer;
    object-fit: cover;
} 

          .wishlist {
        border-radius:0.5rem;
        width: 100%;
        height: 50px;
        background: var(--accent);
        color: white;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(253, 121, 168, 0.3);
    }

          .product-title {
        font-family: 'Baloo Bhai 2', cursive;
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    }


.recent-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-behavior: smooth;
}

.recent-item {
  flex: 0 0 auto;
  width: 160px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  padding: 10px;
  transition: box-shadow 0.3s ease;
}

.recent-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.recent-item img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 4px;
}

.recent-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}




 .fpsc1-product-carousel-section {
      font-family: 'Quicksand', sans-serif;
      padding: 30px 20px;
      background: no-repeat linear-gradient(50deg, rgb(238, 255, 255) 0%, rgb(227, 229, 229) 40%, rgb(226, 229, 229) 50%, rgb(238, 255, 255) 75%);
    }
    
    .fpsc1-product-carousel-container {
      max-width: 1450px;
      margin: 0 auto;
    }
    
    .fpsc1-carousel-title {
      text-align: start;

      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 40px;
      color: rgb(0, 27, 27);
      text-transform: capitalize;
    }
    
    .fpsc1-product-carousel {
      position: relative;
      width: 100%;
      margin: 0 auto;
    }
    
    .fpsc1-carousel-track {
      display: flex;
      gap: 10px;
      padding: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    
    .fpsc1-carousel-track::-webkit-scrollbar {
      display: none;
    }
    
    .fpsc1-product-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .fpsc1-product-card.fpsc1-active {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .fpsc1-product-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #dc2626;
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }
    
    .fpsc1-product-image {
      height: 200px;
      overflow: hidden;
    }
    
    .fpsc1-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .fpsc1-product-card:hover .fpsc1-product-image img {
      transform: scale(1.05);
    }
    
    .fpsc1-product-details {
      padding: 15px;
    }
    
    .fpsc1-product-title {
      font-size: 1rem;
      margin-bottom: 10px;
      color: rgb(0, 27, 27);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .fpsc1-price-container {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }
    
    .fpsc1-current-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #2563eb;
    }
    
    .fpsc1-original-price {
      font-size: 0.9rem;
      color: #6b7280;
      text-decoration: line-through;
    }
    
    .fpsc1-view-btn {
      width: 100%;
      padding: 10px;
      background: #2563eb;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .fpsc1-view-btn:hover {
      background: #1e40af;
    }
    
    /* Navigation buttons */
    .fpsc1-carousel-prev, .fpsc1-carousel-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 4;
      font-weight: bold;
      font-size: 1.2rem;
      color: rgb(0, 27, 27);
    }
    
    .fpsc1-carousel-prev { left: -20px; }
    .fpsc1-carousel-next { right: -20px; }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .fpsc1-product-card {
        flex: 0 0 220px;
      }
      
      .fpsc1-product-image {
        height: 160px;
      }
      
      .fpsc1-carousel-prev, .fpsc1-carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
      
      .fpsc1-carousel-prev { left: -15px; }
      .fpsc1-carousel-next { right: -15px; }
    }
    
    @media (max-width: 480px) {
      .fpsc1-product-carousel-section {
        padding: 40px 15px;
      }
      
      .fpsc1-carousel-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
      }
      
      .fpsc1-product-card {
        flex: 0 0 180px;
      }
      
      .fpsc1-product-image {
        height: 130px;
      }
      
      .fpsc1-product-details {
        padding: 12px;
      }
      
      .fpsc1-product-title {
        font-size: 0.9rem;
      }
      
      .fpsc1-current-price {
        font-size: 1rem;
      }
      
      .fpsc1-original-price {
        font-size: 0.8rem;
      }
      
      .fpsc1-view-btn {
        padding: 8px;
        font-size: 0.9rem;
      }
    }
.fpsc-product-carousel-section {
    margin-top: 50px;
      font-family: 'Quicksand', sans-serif;
      padding: 30px 20px;
      background: no-repeat linear-gradient(50deg, rgb(238, 255, 255) 0%, rgb(227, 229, 229) 40%, rgb(226, 229, 229) 50%, rgb(238, 255, 255) 75%);
    }
    
    .fpsc-product-carousel-container {
      max-width: 1450px;
      margin: 0 auto;
    }
    
    .fpsc-carousel-title {
      text-align: start;

      font-weight: 600;
      font-size: 2rem;
      margin-bottom: 40px;
      color: rgb(0, 27, 27);
      text-transform: capitalize;
    }
    
    .fpsc-product-carousel {
      position: relative;
      width: 100%;
      margin: 0 auto;
    }
    
    .fpsc-carousel-track {
      display: flex;
      gap: 10px;
      padding: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }
    
    .fpsc-carousel-track::-webkit-scrollbar {
      display: none;
    }
    
    .fpsc-product-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
    }
    
    .fpsc-product-card.fpsc-active {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .fpsc-product-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #dc2626;
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      z-index: 2;
    }
    
    .fpsc-product-image {
      height: 200px;
      overflow: hidden;
    }
    
    .fpsc-product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .fpsc-product-card:hover .fpsc-product-image img {
      transform: scale(1.05);
    }
    
    .fpsc-product-details {
      padding: 15px;
    }
    
    .fpsc-product-title {
      font-size: 1rem;
      margin-bottom: 10px;
      color: rgb(0, 27, 27);
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .fpsc-price-container {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }
    
    .fpsc-current-price {
      font-size: 1.2rem;
      font-weight: 700;
      color: #2563eb;
    }
    
    .fpsc-original-price {
      font-size: 0.9rem;
      color: #6b7280;
      text-decoration: line-through;
    }
    
    .fpsc-view-btn {
      width: 100%;
      padding: 10px;
      background: #2563eb;
      color: white;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .fpsc-view-btn:hover {
      background: #1e40af;
    }
    
    /* Navigation buttons */
    .fpsc-carousel-prev, .fpsc-carousel-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 4;
      font-weight: bold;
      font-size: 1.2rem;
      color: rgb(0, 27, 27);
    }
    
    .fpsc-carousel-prev { left: -20px; }
    .fpsc-carousel-next { right: -20px; }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .fpsc-product-card {
        flex: 0 0 220px;
      }
      
      .fpsc-product-image {
        height: 160px;
      }
      
      .fpsc-carousel-prev, .fpsc-carousel-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
      }
      
      .fpsc-carousel-prev { left: -15px; }
      .fpsc-carousel-next { right: -15px; }
    }
    
    @media (max-width: 480px) {
      .fpsc-product-carousel-section {
        padding: 40px 15px;
      }
      
      .fpsc-carousel-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
      }
      
      .fpsc-product-card {
        flex: 0 0 180px;
      }
      
      .fpsc-product-image {
        height: 130px;
      }
      
      .fpsc-product-details {
        padding: 12px;
      }
      
      .fpsc-product-title {
        font-size: 0.9rem;
      }
      
      .fpsc-current-price {
        font-size: 1rem;
      }
      
      .fpsc-original-price {
        font-size: 0.8rem;
      }
      
      .fpsc-view-btn {
        padding: 8px;
        font-size: 0.9rem;
      }
    }
