


/* ========== GLOBAL STYLES ========== */
:root {
    /* Color Scheme */
    --primary: #6c5ce7;
    --primary-dark: #5649c0;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --accent-dark: #e84393;
    --dark: #2d3436;
    --dark-gray: #636e72;
    --light-gray: #dfe6e9;
    --light: #f5f6fa;
    --white: #ffffff;
    
    /* Glass Morphism */
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(0, 0, 0, 0.1);
    
    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --blur: blur(10px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floating {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-10px); }
    100% { transform: translateY(-50%) translateX(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 121, 168, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(253, 121, 168, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 121, 168, 0); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
li{
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-color: transparent;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
}


/* Make sure to apply to your <section class="hero-section"> element */


    /* Course Carousel Styles */
    .xxx-course-carousel-section {
        color: #fff;
      font-family: 'Quicksand', sans-serif;
      padding: 40px 20px;
background: linear-gradient(135deg, #914ceb, #a619d9, #a329b6);
    }
    
    .xxx-course-carousel-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .xxx-carousel-title {
      text-align: center;
      font-size: 3rem;
      font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      margin-bottom: 30px;
      color: rgb(247, 249, 249);
      text-transform: capitalize;
    }
    
    .xxx-course-carousel {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .xxx-carousel-track {
      display: flex;
      gap: 15px;
      overflow: hidden;
      padding: 20px 0;
      position: relative;
      height: 300px;
    }
    
    .xxx-carousel-item {
      position: absolute;
      transition: all 0.6s ease-in-out;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      border: 3px solid white;
    }
    
    .xxx-carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    /* Position classes for carousel items */
    .xxx-carousel-item:nth-child(1) { left: 5%; width: 15%; height: 180px; top: 60px; z-index: 1; }
    .xxx-carousel-item:nth-child(2) { left: 20%; width: 20%; height: 220px; top: 40px; z-index: 2; }
    .xxx-carousel-item:nth-child(3) { left: 40%; width: 25%; height: 260px; top: 20px; z-index: 3; }
    .xxx-carousel-item:nth-child(4) { left: 65%; width: 20%; height: 220px; top: 40px; z-index: 2; }
    .xxx-carousel-item:nth-child(5) { left: 80%; width: 15%; height: 180px; top: 60px; z-index: 1; }
    
    .xxx-carousel-item.xxx-active {
      border-color: rgb(0, 133, 133);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    /* Navigation buttons */
    .xxx-carousel-prev, .xxx-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);
    }
    
    .xxx-carousel-prev { left: 10px; }
    .xxx-carousel-next { right: 10px; }
    
    /* Responsive styles */
    @media (max-width: 768px) {
      .xxx-carousel-track {
        height: 220px;
      }
      
      .xxx-carousel-item:nth-child(1) { left: 2%; width: 18%; height: 140px; top: 40px; }
      .xxx-carousel-item:nth-child(2) { left: 20%; width: 24%; height: 170px; top: 25px; }
      .xxx-carousel-item:nth-child(3) { left: 44%; width: 30%; height: 200px; top: 10px; }
      .xxx-carousel-item:nth-child(4) { left: 74%; width: 24%; height: 170px; top: 25px; }
      .xxx-carousel-item:nth-child(5) { left: 80%; width: 18%; height: 140px; top: 40px; }
      
      .xxx-carousel-prev, .xxx-carousel-next {
        width: 30px;
        height: 30px;
        font-size: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .xxx-carousel-track {
        height: 180px;
      }
      
      .xxx-carousel-item:nth-child(1) { left: 0%; width: 20%; height: 110px; top: 35px; }
      .xxx-carousel-item:nth-child(2) { left: 20%; width: 26%; height: 140px; top: 20px; }
      .xxx-carousel-item:nth-child(3) { left: 46%; width: 34%; height: 160px; top: 10px; }
      .xxx-carousel-item:nth-child(4) { left: 70%; width: 26%; height: 140px; top: 20px; }
      .xxx-carousel-item:nth-child(5) { left: 80%; width: 20%; height: 110px; top: 35px; }
      
      .xxx-carousel-title {
        font-size: 1.5rem;
      }
    }

.hero-section {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #222;
    color: #fff;
    overflow: hidden;

    /* === BACKGROUND IMAGE BEHAVIOR: === */
    background-size: cover;
    /* Or use: background-size: contain; */
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.34); /* overlay for readability */
    z-index: 1;
}

/* --- HERO CONTENT --- */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    border-radius: 0.5rem;
    max-width: 700px;
    backdrop-filter: blur(5px);
    color: #fff; /* Ensures text is always white */
    font-family: 'Roboto', Arial, sans-serif;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.5em;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Soft shadow */
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.hero-btns {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85em 2.2em;
    border-radius: 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    min-width: 130px;
}

.btn-primary {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-primary:hover,
.btn-primary:focus {
    background: #fcf1e8;
    color: #cf6700;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline:hover,
.btn-outline:focus {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .btn, .btn-primary, .btn-outline {
        width: 100%;
        min-width: unset;
        padding: 1em 0;
        font-size: 1.05rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-content {
        padding: 1.2rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }
}

/* ====================background image css above     =========================== */

.price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
    line-height: 1;
}

.old-price {
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ========== CATEGORIES SECTION ========== */
.categories-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 1;
}

.shop-now-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.product-count {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.category-card:hover .shop-now-text,
.category-card:hover .product-count {
    transform: translateY(0);
    opacity: 1;
}

.category-info {
    padding: 1.5rem;
    background: var(--white);
    text-align: center;
}

.category-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    transition: var(--transition);
}

.category-link:hover .category-name {
    color: var(--primary);
}














/* ==============suggest========== */
/* Modern Suggested Products Carousel */
.tq12-suggested-container {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
}

.tq12-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tq12-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    position: relative;
    padding-bottom: 0.5rem;
}

.tq12-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #9e77f7);
}

.tq12-carousel-controls {
    display: flex;
    gap: 0.5rem;
}

.tq12-carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tq12-carousel-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.tq12-suggested-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    margin: 0 -15px;
    scrollbar-width: none;
}

.tq12-suggested-carousel::-webkit-scrollbar {
    display: none;
}

.tq12-product-card {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: calc(33.333% - 1rem);
    min-width: 220px;
     height: 380px;
}

.tq12-card {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tq12-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tq12-card-img-div {
    height: 180px; /* Reduced from 200px for better proportions */
    width: 100%; /* Changed from 400px to be responsive */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tq12-card-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Changed from cover to contain to show full image */
    border-bottom: 1px solid #f1f5f9;
}

.tq12-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tq12-product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.tq12-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 0.25rem 0;
}

.tq12-original-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin: 0.1rem 0;
}

.tq12-discount-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.3rem;
}

.tq12-price-na {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0.5rem 0;
}

.tq12-view-btn {
    margin-top: auto;
    padding: 0.5rem 1rem;
    background: #3b82f6;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.tq12-view-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tq12-product-card {
        width: calc(50% - 0.45rem);
        min-width: 120px;
    }
    
    .tq12-section-title {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .tq12-product-card {
        width: calc(100% - 0.45rem);
    }
    
    .tq12-carousel-controls {
        display: none;
    }
    .tq12-discount-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    max-width: fit-content;
    padding: 0.2rem 0.3rem;
    border-radius: 4px;
    margin-top: 0.3rem;
}

}



/* ========== RECENT PRODUCTS SECTION ========== */
.recent-products-section {
    background-color: var(--white);
}

.recent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.recent-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.recent-carousel {
    display: flex;
    gap: 1.75rem;
    padding-bottom: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.recent-carousel::-webkit-scrollbar {
    height: 6px;
}

.recent-carousel::-webkit-scrollbar-track {
    background: #f1f2f6;
    border-radius: 10px;
}

.recent-carousel::-webkit-scrollbar-thumb {
    background: #b2bec3;
    border-radius: 10px;
}

.recent-item {
    flex: 0 0 calc(25% - 1.3125rem);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.recent-item:nth-child(1) { animation-delay: 0.1s; }
.recent-item:nth-child(2) { animation-delay: 0.2s; }
.recent-item:nth-child(3) { animation-delay: 0.3s; }
.recent-item:nth-child(4) { animation-delay: 0.4s; }
.recent-item:nth-child(5) { animation-delay: 0.5s; }
.recent-item:nth-child(6) { animation-delay: 0.6s; }
.recent-item:nth-child(7) { animation-delay: 0.7s; }
.recent-item:nth-child(8) { animation-delay: 0.8s; }

.recent-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.recent-item-link {
    display: block;
    height: 100%;
}

.recent-item-image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.recent-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    background: #f8f9fa;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.recent-item:hover .recent-item-image {
    transform: scale(1.08);
}

.recent-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 92, 231, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.recent-item:hover .recent-item-overlay {
    opacity: 1;
}

.view-product-text {
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.recent-item-info {
    padding: 1.75rem;
}

.recent-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recent-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* ========== SALE PRODUCTS SECTION ========== */
.sale-section {
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
}

.sale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    background: rgba(108, 92, 231, 0.1);
}

.view-all-link:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateX(5px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    padding: 0.35rem 1.15rem;
    border-radius: 30px;
    font-size: 0.55rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 1.75rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}

.original-price {
    font-size: 1rem;
    color: var(--dark-gray);
    text-decoration: line-through;
}

.discount-percent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

/* ========== FESTIVAL SECTION ========== */
.festival2-section {
    /* background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.festival2-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1513151233558-d860c5398176?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    /* opacity: 0.1; */
    z-index: 0;
}

.festival2-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.festival2-content h2 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.festival2-content p {
    font-size: 1.3rem;
    margin: 0 auto 3rem;
    opacity: 0.9;
    max-width: 700px;
}

.festival2-offers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.festival2-offer {
    background: var(--glass);
    backdrop-filter: var(--blur);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
}

.festival2-offer:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.festival2-offer h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.discount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 1rem 0;
    line-height: 1;
}

.offer-desc {
    color: var(--dark-gray);
    font-size: 1rem;
}

/* ========== SHOES SECTION ========== */
.shoes-section {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.shoes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
    opacity: 0.03;
    z-index: 0;
}

.shoes-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.shoes-tab {
    padding: 0.85rem 2rem;
    border-radius: 30px;
    background-color: var(--light);
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.shoes-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.shoes-tab.active {
    color: #0a0505dd;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.shoes-tab.active::before {
    opacity: 1;
}

.shoes-tab:hover:not(.active) {
    background-color: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.shoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.shoe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.shoe-card:nth-child(1) { animation-delay: 0.1s; }
.shoe-card:nth-child(2) { animation-delay: 0.2s; }
.shoe-card:nth-child(3) { animation-delay: 0.3s; }
.shoe-card:nth-child(4) { animation-delay: 0.4s; }
.shoe-card:nth-child(5) { animation-delay: 0.5s; }
.shoe-card:nth-child(6) { animation-delay: 0.6s; }
.shoe-card:nth-child(7) { animation-delay: 0.7s; }
.shoe-card:nth-child(8) { animation-delay: 0.8s; }

.shoe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.shoe-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(to right, var(--accent), #ff4757);
    color: var(--white);
    padding: 0.35rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.shoe-image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.shoe-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.shoe-card:hover .shoe-image {
    transform: scale(1.08);
}

.shoe-actions {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.shoe-card:hover .shoe-actions {
    opacity: 1;
    transform: translateY(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: translateY(-3px);
}

.shoe-info {
    padding: 1.75rem;
}

.shoe-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoe-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}



.shoe-btn {
    width: 100%;
    padding: 0.6rem;
    border-radius: 12px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
}

.shoe-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========== BANNER SECTION ========== */
.banner-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 350px;
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.banner-card:hover .banner-img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.banner-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.banner-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

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

.feature-card:hover .feature-icon {
    background: var(--white);
    color: var(--primary);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 1rem;
    transition: var(--transition);
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
    background-color: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.instagram-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transition: var(--transition);
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1.2);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 4.5rem;
    right: 2.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-offer {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 3rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .recent-item {
        flex: 0 0 calc(33.333% - 1.1667rem);
    }
    
    .festival2-content h2 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -8px;
    }
    
    .hero-section {
        padding: 6rem 0;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .recent-item {
        flex: 0 0 calc(50% - 0.875rem);
    }
    
    .festival2-offers {
        grid-template-columns: 1fr;
    }
    
    .shoes-tabs {
        gap: 0.5rem;
    }
    
    .shoes-tab {
        padding: 0.75rem 1.5rem;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .recent-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .carousel-controls {
        align-self: flex-end;
    }
    
    .recent-item {
        flex: 0 0 85%;
    }
    
    /* .product-grid, .shoes-grid {
        grid-template-columns: 1fr;
    } */
    
    .shoes-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .shoes-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .shoes-tab {
        flex: 0 0 auto;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        bottom: 5rem;
        right: 0.5rem;
    }

    .category-grid ,.shoes-grid,.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.original-price {
    font-size: 1rem;
    color: var(--dark-gray);
    text-decoration: line-through;
}

.discount-percent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 0.20rem 0.55rem;
    border-radius: 30px;
    font-size: 0.55rem;
    font-weight: 600;

}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}


.shoe-info {
    padding: 0.75rem;
}

.shoe-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    white-space: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shoe-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}
.btn-sales{
   
}


}
 .fpsc1-product-carousel-section {
        margin-top: 50px;

      font-family: 'Quicksand', sans-serif;
      padding: 30px 20px;
      background: no-repeat  linear-gradient(135deg, #cfe82a, #e0eea7, #d4d863);
;
    }
    
    .fpsc1-product-carousel-container {
      max-width: 1450px;
      margin: 0 auto;
    }
    
    .fpsc1-carousel-title {
      text-align: start;
      font-size: 2rem;
      margin-bottom: 40px;
      font-weight: 600;
      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 {
      font-family: 'Quicksand', sans-serif;
      padding: 30px 20px;
      background: no-repeat linear-gradient(50deg, rgb(238, 255, 255) 0%, rgb(59, 192, 192) 40%, rgb(105, 204, 204) 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;
      }
    }


    .fpsc2-product-carousel-section {
        margin-top: 30px;
        border-radius: 0.5rem;
      font-family: 'Quicksand', sans-serif;
      padding: 30px 20px;
      background: no-repeat linear-gradient(50deg, rgb(238, 255, 255) 0%, rgb(249, 249, 246) 40%, rgb(255, 255, 254) 50%, rgb(244, 242, 241) 75%);
    }
    
    .fpsc2-product-carousel-container {
      max-width: 1450px;
      margin: 0 auto;
    }
    
    .fpsc2-carousel-title {
      text-align: start;

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



  
