    .cart-count {
            background: #ff4757;
            color: white;
            border-radius: 50%;
            padding: 2px 8px;
            font-size: 12px;
            margin-left: 5px;
        }


 /** ============================  from index  =================================**/
 .hero-section {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        padding: 80px 0;
        margin-bottom: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero-content h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .fabric-cut-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 50px 0;
    }
    
    .fabric-card, .cut-card {
        background: linear-gradient(135deg, var(--white), var(--light-green));
        border-radius: 15px;
        padding: 40px;
        text-align: center;
        border: 2px solid var(--light-green);
        transition: all 0.3s;
    }
    
    .fabric-card:hover, .cut-card:hover {
        transform: translateY(-5px);
        border-color: var(--secondary-green);
        box-shadow: 0 10px 25px rgba(76, 175, 80, 0.15);
    }
    
    .fabric-card h3, .cut-card h3 {
        color: var(--primary-green);
        font-size: 28px;
        margin-bottom: 15px;
    }

        /* Partner Products Section */
    .partner-products-section {
        margin: 50px 0;
        background: #f9f9f9;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .iframe-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
        background: white;
    }

    .iframe-wrapper iframe {
        width: 100%;
        height: 600px;
        border: none;
        display: block;
    }

    /* Partner iframe container */
.iframe-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.iframe-wrapper iframe {
    display: block;
    width: 100% !important;          /* force full width */
    height: 800px;                   /* set a comfortable height */
    border: none;
    margin: 0 auto;
}

/* On mobile, reduce height */
@media (max-width: 768px) {
    .iframe-wrapper iframe {
        height: 600px;
    }
}

    /* Make iframes taller on mobile? optional */
    @media (max-width: 768px) {
        .iframe-wrapper iframe {
            height: 450px;
        }
    }

        
        .partners-floating {
        position: fixed;
        left: 20px;
        bottom: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .partner-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        cursor: pointer;
        animation: slideInLeft 0.5s ease;
    }
    
    @keyframes slideInLeft {
        from { transform: translateX(-100px); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    
    .partner-btn:hover {
        transform: translateX(5px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }
    
    .partner-btn .logo {
        width: 35px;
        height: 35px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
    }
    
    .btn-avon {
        background: linear-gradient(135deg, #e91e63, #c2185b);
        color: white;
        border: 2px solid #ff69b4;
    }
    
    .btn-avon .logo {
        background: white;
        color: #e91e63;
        font-family: 'Georgia', serif;
        font-weight: bold;
    }
    
    .btn-justine {
        background: linear-gradient(135deg, #ff8c00, #e67600);
        color: white;
        border: 2px solid #ffb74d;
    }
    
    .btn-justine .logo {
        background: white;
        color: #ff8c00;
        font-family: 'Georgia', serif;
        font-weight: bold;
    }
    
    .sliding-products {
        background: var(--light-green);
        padding: 40px 0;
        margin: 40px 0;
        border-radius: 15px;
    }
    
    .sliding-products h3 {
        color: var(--primary-green);
        margin-bottom: 25px;
        font-size: 24px;
        font-weight: 700;
        padding-left: 20px;
    }
    
    .slider-container {
        overflow: hidden;
        padding: 10px 0;
    }
    
    .products-slider {
        display: flex;
        gap: 30px;
        animation: slide 30s linear infinite;
        width: fit-content;
    }
    
    .products-slider:hover {
        animation-play-state: paused;
    }
    
    .slider-item {
        min-width: 250px;
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--light-green);
        transition: all 0.3s;
    }
    
    .slider-item:hover {
        transform: translateY(-5px);
        border-color: var(--secondary-green);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .slider-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .slider-item .item-info {
        padding: 15px;
    }
    
    .slider-item h4 {
        color: var(--primary-green);
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .slider-item .price {
        color: var(--secondary-green);
        font-weight: 700;
        font-size: 18px;
    }
    
    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    @media (max-width: 768px) {
        .partners-floating {
            left: 10px;
            bottom: 10px;
            gap: 10px;
        }
        
        .partner-btn {
            padding: 8px 15px;
        }
        
        .partner-btn .logo {
            width: 28px;
            height: 28px;
            font-size: 14px;
        }
        
        .partner-btn .text {
            font-size: 12px;
        }
        
        .hero-content h2 {
            font-size: 32px;
        }
        
        .fabric-cut-section {
            grid-template-columns: 1fr;
        }
        
        .slider-item {
            min-width: 200px;
        }
    }
    
    @media (max-width: 480px) {
        .partner-btn .text span {
            display: none;
        }
        
        .partner-btn .text small {
            display: none;
        }
        
        .partner-btn {
            padding: 10px;
        }
    }

    /* Category Badges */
.categories-list {
    margin: 30px 0;
}

.categories-list h3 {
    font-size: 24px;
    color: var(--primary-color, #2e7d32);
    margin-bottom: 20px;
}

.category-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;                 /* space between badges */
    justify-content: flex-start;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-green, #e8f5e9);
    color: var(--primary-color, #2e7d32);
    border-radius: 50px;        /* pill shape */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.category-badge i {
    font-size: 16px;
    color: var(--secondary-color, #4caf50);
}

.category-badge:hover {
    background: var(--secondary-color, #4caf50);
    color: #fff;
    border-color: var(--primary-color, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.25);
}

.category-badge:hover i {
    color: #fff;
}

/* On smaller screens, make badges smaller and wrap nicely */
@media (max-width: 768px) {
    .category-badge {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }
    .category-badge i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-badge {
        padding: 6px 12px;
        font-size: 12px;
        gap: 4px;
        border-radius: 30px;
    }
}

    /** ========================== from category ================================== **/

      .category-page-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 50px 0;
        margin-bottom: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .category-page-header .breadcrumb {
        color: rgba(255,255,255,0.8);
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .category-page-header .breadcrumb a {
        color: white;
        text-decoration: none;
    }
    
    .category-page-header .breadcrumb a:hover {
        text-decoration: underline;
    }
    
    .category-page-header .breadcrumb .sep {
        margin: 0 8px;
    }
    
    .category-page-header h1 {
        font-size: 38px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .category-page-header h1 i {
        font-size: 40px;
    }
    
    .category-page-header p {
        font-size: 18px;
        opacity: 0.9;
    }
    
    .category-page-header .meta-info {
        display: flex;
        gap: 25px;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .category-page-header .meta-info span {
        background: rgba(255,255,255,0.15);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
    }
    
    .category-layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Sidebar */
    .category-sidebar {
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        height: fit-content;
        position: sticky;
        top: 100px;
    }
    
    .category-sidebar h3 {
        color: var(--primary-color);
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--light-green);
    }
    
    .category-sidebar h3 i {
        color: var(--secondary-color);
        margin-right: 8px;
    }
    
    .sidebar-category-list {
        list-style: none;
        padding: 0;
    }
    
    .sidebar-category-list li {
        margin-bottom: 5px;
    }
    
    .sidebar-category-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border-radius: 8px;
        color: #555;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .sidebar-category-list a:hover {
        background: var(--light-green);
        color: var(--primary-color);
    }
    
    .sidebar-category-list a.active {
        background: var(--secondary-color);
        color: white;
    }
    
    .sidebar-category-list a .count {
        background: var(--light-green);
        padding: 2px 8px;
        border-radius: 20px;
        font-size: 11px;
        color: #666;
    }
    
    .sidebar-category-list a.active .count {
        background: rgba(255,255,255,0.2);
        color: white;
    }
    
    .sidebar-category-list .sub-list {
        padding-left: 20px;
        list-style: none;
    }
    
    .sidebar-category-list .sub-list a {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* Subcategories Section */
    .subcategories-section {
        margin-bottom: 35px;
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .subcategories-section h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .subcategories-section h3 i {
        color: var(--secondary-color);
        margin-right: 8px;
    }
    
    .subcategories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .subcategory-link {
        background: var(--light-green);
        color: var(--primary-color);
        padding: 10px 16px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
    }
    
    .subcategory-link:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .subcategory-link .count {
        font-size: 11px;
        opacity: 0.7;
    }
    
    /* Filter Bar */
    .filter-bar {
        background: white;
        border-radius: 10px;
        padding: 15px 20px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .results-count {
        color: #666;
        font-size: 14px;
    }
    
    .results-count strong {
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .sort-select {
        padding: 8px 15px;
        border: 2px solid var(--light-green);
        border-radius: 8px;
        cursor: pointer;
        font-size: 14px;
        background: white;
        color: #333;
    }
    
    .sort-select:focus {
        border-color: var(--secondary-color);
        outline: none;
    }
    
    .empty-products {
        text-align: center;
        padding: 60px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .empty-products i {
        font-size: 60px;
        color: var(--secondary-color);
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .empty-products h2 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .empty-products p {
        color: #666;
        margin-bottom: 20px;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0 60px;
    }
    
    .pagination a, .pagination span {
        padding: 10px 16px;
        background: white;
        border-radius: 8px;
        text-decoration: none;
        color: var(--primary-color);
        transition: all 0.3s;
        border: 1px solid var(--light-green);
    }
    
    .pagination a:hover {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .pagination .active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .pagination .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .product-meta-category {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
        font-size: 12px;
        color: #666;
    }
    
    .product-meta-category .cat-tag {
        background: var(--light-green);
        padding: 2px 10px;
        border-radius: 20px;
        color: var(--primary-color);
    }
    
    @media (max-width: 1024px) {
        .category-layout {
            grid-template-columns: 1fr;
        }
        
        .category-sidebar {
            position: static;
        }
    }
    
    @media (max-width: 768px) {
        .category-page-header h1 {
            font-size: 28px;
            flex-direction: column;
            text-align: center;
        }
        
        .category-page-header .meta-info {
            justify-content: center;
        }
        
        .filter-bar {
            flex-direction: column;
        }
        
        .subcategories-grid {
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        }
    }

    /** ============================= from categories ===============================**/

 .categories-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: var(--black);
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .categories-header h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .categories-header h1 i {
        margin-right: 10px;
    }
    
    .categories-header p {
        font-size: 18px;
        opacity: 0.95;
    }
    
    .category-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-card {
        background: var(--secondary-green);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: transform 0.3s;
        color: var(--white)
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
    }
    
    .stat-number {
        font-size: 32px;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    .stat-label {
        color: #666;
        margin-top: 5px;
        font-size: 14px;
    }
    
    .category-section {
        margin-bottom: 50px;
    }
    
    .category-section-title {
        color: var(--primary-color);
        font-size: 28px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--light-green);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .category-section-title .count {
        font-size: 16px;
        color: #666;
        font-weight: normal;
    }
    
    .categories-grid-main {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .category-card-main {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
        display: block;
        border: 2px solid var(--light-green);
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }
    
    .category-card-main:hover {
        transform: translateY(-5px);
        border-color: var(--secondary-color);
        box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
    }
    
    .category-card-main .icon-wrapper {
        width: 70px;
        height: 70px;
        background: var(--light-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 30px;
        color: var(--secondary-green);
        transition: all 0.3s;
    }
    
    .category-card-main:hover .icon-wrapper {
        background: var(--gray);
        color: var(--success);
    }
    
    .category-card-main h3 {
        font-size: 20px;
        color: var(--primary-color);
        margin-bottom: 5px;
    }
    
    .category-card-main .description {
        color: #666;
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .category-meta {
        display: flex;
        gap: 20px;
        padding-top: 15px;
        border-top: 1px solid var(--light-green);
        flex-wrap: wrap;
    }
    
    .category-meta span {
        font-size: 13px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .category-meta span i {
        color: var(--secondary-color);
    }
    
    .category-meta .explore-link {
        margin-left: auto;
        color: var(--secondary-color);
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .category-card-main:hover .explore-link {
        transform: translateX(5px);
    }
    
    .subcategory-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
    
    .subcategory-tag {
        background: var(--light-green);
        color: var(--primary-color);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        text-decoration: none;
        transition: all 0.3s;
        cursor: pointer;
        border: none;
    }
    
    .subcategory-tag:hover {
        background: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
    }
    
    .subcategory-section {
        background: #f9f9f9;
        border-radius: 10px;
        padding: 15px 20px;
        margin-top: 15px;
    }
    
    .subcategory-section h4 {
        color: #666;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .subcategory-section .sub-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .empty-categories {
        text-align: center;
        padding: 80px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .empty-categories i {
        font-size: 60px;
        color: var(--secondary-color);
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .empty-categories h2 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .empty-categories p {
        color: #666;
        margin-bottom: 20px;
    }
    
    @media (max-width: 768px) {
        .categories-header h1 {
            font-size: 32px;
        }
        
        .categories-grid-main {
            grid-template-columns: 1fr;
        }
        
        .category-stats {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .category-meta .explore-link {
            margin-left: 0;
            width: 100%;
            text-align: center;
        }
    }

    /** =========================== from about =================================**/

     .about-hero {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 60px 0;
        text-align: center;
        margin-bottom: 50px;
        border-radius: 0 0 30px 30px;
    }
    
    .about-hero h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .about-hero p {
        font-size: 18px;
        opacity: 0.95;
    }
    
    .about-section {
        background: white;
        border-radius: 15px;
        padding: 40px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .about-section h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 28px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .about-section h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
    }
    
    .vision-mission {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .vision-card, .mission-card {
        background: var(--light-green);
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s;
    }
    
    .vision-card:hover, .mission-card:hover {
        transform: translateY(-5px);
    }
    
    .vision-card i, .mission-card i {
        font-size: 50px;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    .vision-card h3, .mission-card h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 24px;
    }
    
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .value-item {
        text-align: center;
        padding: 25px;
        background: var(--light-green);
        border-radius: 10px;
        transition: all 0.3s;
    }
    
    .value-item:hover {
        transform: translateY(-5px);
        background: var(--accent-color);
    }
    
    .value-item i {
        font-size: 40px;
        color: var(--secondary-color);
        margin-bottom: 15px;
    }
    
    .value-item h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
        font-size: 18px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    
    .stat-box {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: var(--secondary-color);
    }
    
    .stat-label {
        color: var(--white);
        margin-top: 5px;
    }
    
    @media (max-width: 768px) {
        .vision-mission {
            grid-template-columns: 1fr;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .about-section h2 {
            font-size: 24px;
        }
    }

    /** ======================== from best selling =============================**/
    
      .best-header {
        background: linear-gradient(135deg, #e67e22, var(--secondary-color));
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .best-header h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .best-header h1 i {
        margin-right: 10px;
    }
    
    .best-seller-badge {
        background: #e67e22;
        color: white;
    }
    
    .sales-count {
        display: inline-block;
        background: var(--light-green);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 12px;
        margin-top: 10px;
        color: var(--primary-color);
    }
    
    .rank-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #e67e22;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 16px;
        z-index: 1;
    }

    /** =================== from vendor-register ==================== **/
    
        .vendor-register-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
            min-height: 100vh;
            padding: 40px 20px; 
        }
        
        .vendor-register-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-top: 30px;
        }
        
        /* Header */
        .register-header {
            background: linear-gradient(135deg, #2e7d32, #4caf50);
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .register-header h1 {
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .register-header h1 i {
            margin-right: 10px;
        }
        
        .register-header p {
            opacity: 0.9;
            font-size: 16px;
        }
        
        /* Progress Bar */
        .progress-bar {
            display: flex;
            background: #f5f5f5;
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .progress-step {
            flex: 1;
            text-align: center;
            position: relative;
        }
        
        .progress-step .step-number {
            width: 35px;
            height: 35px;
            background: #ccc;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            margin-bottom: 8px;
        }
        
        .progress-step.active .step-number {
            background: #4caf50;
        }
        
        .progress-step.completed .step-number {
            background: #2e7d32;
        }
        
        .progress-step .step-label {
            font-size: 12px;
            color: #666;
        }
        
        .progress-step.active .step-label {
            color: #4caf50;
            font-weight: 600;
        }
        
        /* Form Sections */
        .form-sections {
            padding: 30px;
        }
        
        .form-section {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .form-section.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .section-title {
            color: #2e7d32;
            font-size: 22px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8f5e9;
        }
        
        .section-title i {
            margin-right: 10px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        
        .form-group label .required {
            color: #f44336;
        }
        
        .input-group {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .input-group i {
            position: absolute;
            left: 15px;
            color: #4caf50;
            font-size: 16px;
        }
        
        .input-group input, 
        .input-group select, 
        .input-group textarea {
            width: 100%;
            padding: 12px 15px 12px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s;
            background: #f9f9f9;
            font-family: inherit;
        }
        
        .input-group textarea {
            padding: 12px 15px;
            resize: vertical;
        }
        
        .input-group input:focus,
        .input-group select:focus,
        .input-group textarea:focus {
            outline: none;
            border-color: #4caf50;
            background: white;
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }
        
        /* Navigation Buttons */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .btn-prev, .btn-next, .btn-submit {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .btn-prev {
            background: #f0f0f0;
            color: #666;
        }
        
        .btn-prev:hover {
            background: #e0e0e0;
        }
        
        .btn-next, .btn-submit {
            background: #4caf50;
            color: white;
        }
        
        .btn-next:hover, .btn-submit:hover {
            background: #2e7d32;
            transform: translateY(-2px);
        }
        
        /* Alert Messages */
        .alert {
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .alert-error {
            background: #fef3f2;
            color: #dc2626;
            border: 1px solid #fecaca;
        }
        
        .alert-success {
            background: #f0fdf4;
            color: #16a34a;
            border: 1px solid #bbf7d0;
        }
        
        /* Terms */
        .terms-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }
        
        .terms-checkbox input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .terms-checkbox a {
            color: #4caf50;
            text-decoration: none;
        }
        
        .terms-checkbox a:hover {
            text-decoration: underline;
        }
        
        /* Success Page */
        .success-container {
            text-align: center;
            padding: 50px;
        }
        
        .success-icon {
            width: 80px;
            height: 80px;
            background: #4caf50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .success-icon i {
            font-size: 40px;
            color: white;
        }
        
        .success-container h2 {
            color: #2e7d32;
            margin-bottom: 15px;
        }
        
        .success-container p {
            color: #666;
            margin-bottom: 30px;
        }
        
        .btn-login {
            display: inline-block;
            background: #4caf50;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            background: #2e7d32;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .register-header {
                padding: 30px;
            }
            
            .form-sections {
                padding: 20px;
            }
            
            .progress-step .step-label {
                font-size: 10px;
            }
        }

        /** ====================== from latest products =================================**/

     .lp-search-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 40px 0;
        margin-bottom: 30px;
        border-radius: 0 0 30px 30px;
    }
    
    .lp-search-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color:black;
    }
    
    .lp-search-header .lp-query-text {
        font-size: 18px;
        opacity: 0.9;
        color: #000000;
    }
    
    .lp-search-header .lp-query-text strong {
        color: #000000;
    }
    
    .lp-search-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Filters Sidebar */
    .lp-filters-sidebar {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: fit-content;
        position: sticky;
        top: 100px;
    }
    
    .lp-filter-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .lp-filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .lp-filter-section h3 {
        color: var(--primary-color);
        font-size: 16px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .lp-filter-section h3 i {
        color: var(--secondary-color);
    }
    
    .lp-category-filter {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .lp-category-filter li {
        margin-bottom: 5px;
    }
    
    .lp-category-filter a {
        color: #555;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        padding: 6px 10px;
        border-radius: 5px;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .lp-category-filter a:hover,
    .lp-category-filter a.active {
        background: var(--light-green);
        color: var(--primary-color);
    }
    
    .lp-category-filter a.active {
        font-weight: 600;
        color: var(--secondary-color);
    }
    
    .lp-category-filter .count {
        color: #999;
        font-size: 12px;
    }
    
    .lp-category-filter .sub-list {
        padding-left: 20px;
        list-style: none;
    }
    
    .lp-category-filter .sub-list a {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    .lp-price-range {
        padding: 5px 0;
    }
    
    .lp-price-range-slider {
        width: 100%;
        margin: 15px 0;
    }
    
    .lp-price-inputs {
        display: flex;
        gap: 10px;
        margin: 10px 0;
    }
    
    .lp-price-input {
        flex: 1;
    }
    
    .lp-price-input label {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 3px;
    }
    
    .lp-price-input input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .lp-price-input input:focus {
        border-color: var(--secondary-color);
        outline: none;
    }
    
    .lp-btn-apply-filters {
        width: 100%;
        background: var(--secondary-color);
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
    }
    
    .lp-btn-apply-filters:hover {
        background: var(--primary-color);
    }
    
    .lp-btn-clear-filters {
        width: 100%;
        background: #f0f0f0;
        color: #666;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 8px;
        font-weight: 600;
    }
    
    .lp-btn-clear-filters:hover {
        background: #e0e0e0;
    }
    
    /* Rating Filter */
    .lp-rating-option {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px 0;
        cursor: pointer;
    }
    
    .lp-rating-option input[type="radio"] {
        cursor: pointer;
    }
    
    .lp-rating-option .stars {
        color: #f39c12;
        font-size: 14px;
    }
    
    .lp-rating-option .stars i {
        margin-right: 1px;
    }
    
    /* Results Area */
    .lp-results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        background: white;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .lp-results-count {
        color: #666;
        font-size: 14px;
    }
    
    .lp-results-count strong {
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .lp-sort-select {
        padding: 8px 15px;
        border: 2px solid var(--light-green);
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        background: white;
    }
    
    .lp-sort-select:focus {
        border-color: var(--secondary-color);
        outline: none;
    }
    
    .lp-no-results {
        text-align: center;
        padding: 60px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .lp-no-results i {
        font-size: 60px;
        color: var(--secondary-color);
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .lp-no-results h3 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .lp-no-results p {
        color: #666;
        margin-bottom: 10px;
    }
    
    .lp-no-results ul {
        list-style: none;
        padding: 0;
        color: #666;
    }
    
    .lp-no-results ul li {
        padding: 5px 0;
    }
    
    .lp-suggestions-box {
        margin-top: 20px;
        padding: 20px;
        background: var(--light-green);
        border-radius: 10px;
    }
    
    .lp-suggestions-box h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .lp-suggestions-box a {
        color: var(--secondary-color);
        text-decoration: none;
        display: inline-block;
        margin: 5px 10px 5px 0;
        padding: 5px 15px;
        background: white;
        border-radius: 20px;
        transition: all 0.3s;
    }
    
    .lp-suggestions-box a:hover {
        background: var(--secondary-color);
        color: white;
    }
    
    .lp-active-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .lp-filter-tag {
        background: var(--light-green);
        color: var(--primary-color);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    .lp-filter-tag .remove {
        cursor: pointer;
        color: #999;
        transition: color 0.3s;
    }
    
    .lp-filter-tag .remove:hover {
        color: var(--secondary-color);
    }
    
    .lp-filter-tag.clear-all {
        background: var(--secondary-color);
        color: white;
    }
    
    .lp-filter-tag.clear-all .remove {
        color: white;
    }
    
    .lp-filter-tag.clear-all .remove:hover {
        color: #ddd;
    }
    
    .lp-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0;
        flex-wrap: wrap;
    }
    
    .lp-pagination a, .lp-pagination span {
        padding: 10px 16px;
        background: white;
        border-radius: 8px;
        text-decoration: none;
        color: var(--primary-color);
        transition: all 0.3s;
        border: 1px solid var(--light-green);
    }
    
    .lp-pagination a:hover {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .lp-pagination .active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .lp-pagination .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .lp-product-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        font-size: 12px;
        color: #666;
    }
    
    .lp-brand-name {
        color: var(--secondary-color);
    }
    
    .lp-badge-category {
        display: inline-block;
        background: var(--light-green);
        color: var(--primary-color);
        padding: 2px 10px;
        border-radius: 20px;
        font-size: 11px;
    }
    
    .lp-search-highlight {
        background: #ffd700;
        padding: 0 3px;
        border-radius: 2px;
        font-weight: 600;
    }
    
    @media (max-width: 1024px) {
        .lp-search-layout {
            grid-template-columns: 1fr;
        }
        
        .lp-filters-sidebar {
            position: static;
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .lp-search-header h1 {
            font-size: 28px;
        }
        
        .lp-results-header {
            flex-direction: column;
            align-items: stretch;
        }
        
        .lp-price-inputs {
            flex-direction: column;
        }
    }

    /** =========================== From Special Offers   =================================== **/

  .so-offers-header {
        background: var(--primary-green);
        color: white;
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .so-offers-header h1 {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .so-savings-banner {
        background: white;
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 30px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    
    .so-savings-banner h2 {
        color: var(--primary-color);
        font-size: 24px;
    }
    
    .so-savings-amount {
        font-size: 36px;
        font-weight: 700;
        color: #e74c3c;
    }
    
    .so-discount-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #e74c3c;
        color: white;
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 16px;
        z-index: 1;
    }
    
    .so-original-price {
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
        margin-right: 8px;
    }
    
    .so-sale-price {
        color: #e74c3c;
        font-size: 20px;
        font-weight: 700;
    }
    
    .so-save-amount {
        display: inline-block;
        background: #e74c3c;
        color: white;
        padding: 3px 8px;
        border-radius: 5px;
        font-size: 12px;
        margin-left: 8px;
    }
    
    .so-offer-timer {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .so-offer-timer h3 {
        margin-bottom: 15px;
    }
    
    .so-timer {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .so-timer-box {
        text-align: center;
    }
    
    .so-timer-number {
        font-size: 36px;
        font-weight: 700;
        background: rgba(255,255,255,0.2);
        padding: 10px 20px;
        border-radius: 10px;
        min-width: 70px;
    }
    
    .so-timer-label {
        font-size: 12px;
        margin-top: 5px;
        opacity: 0.8;
    }

    /** ================ from Search =========================== **/

    .sc-search-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 40px 0;
        margin-bottom: 30px;
        border-radius: 0 0 30px 30px;
    }
    
    .sc-search-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #000000;
    }
    
    .sc-search-header .lp-query-text {
        font-size: 18px;
        opacity: 0.9;
        color: #000000;
    }
    
    .sc-search-header .lp-query-text strong {
        color: #000000;
    }
    
    .sc-search-layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .sc-filters-sidebar {
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        height: fit-content;
        position: sticky;
        top: 100px;
    }
    
    .sc-filter-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
    }
    
    .sc-filter-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .sc-filter-section h3 {
        color: var(--primary-color);
        font-size: 16px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .sc-filter-section h3 i {
        color: var(--secondary-color);
    }
    
    .sc-category-filter {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sc-category-filter li {
        margin-bottom: 5px;
    }
    
    .sc-category-filter a {
        color: #555;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        padding: 6px 10px;
        border-radius: 5px;
        transition: all 0.3s;
        font-size: 14px;
    }
    
    .sc-category-filter a:hover,
    .sc-category-filter a.active {
        background: var(--light-green);
        color: var(--primary-color);
    }
    
    .sc-category-filter a.active {
        font-weight: 600;
        color: var(--secondary-color);
    }
    
    .sc-category-filter .count {
        color: #999;
        font-size: 12px;
    }
    
    .sc-price-inputs {
        display: flex;
        gap: 10px;
        margin: 10px 0;
    }
    
    .sc-price-input {
        flex: 1;
    }
    
    .sc-price-input label {
        display: block;
        font-size: 12px;
        color: #666;
        margin-bottom: 3px;
    }
    
    .sc-price-input input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }
    
    .sc-price-input input:focus {
        border-color: var(--secondary-color);
        outline: none;
    }
    
    .sc-btn-apply-filters {
        width: 100%;
        background: var(--secondary-color);
        color: white;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 600;
    }
    
    .sc-btn-apply-filters:hover {
        background: var(--primary-color);
    }
    
    .sc-btn-clear-filters {
        width: 100%;
        background: #f0f0f0;
        color: #666;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 8px;
        font-weight: 600;
    }
    
    .sc-btn-clear-filters:hover {
        background: #e0e0e0;
    }
    
    .sc-results-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        background: white;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sc-results-count {
        color: #666;
        font-size: 14px;
    }
    
    .sc-results-count strong {
        color: var(--primary-color);
        font-size: 18px;
    }
    
    .sc-sort-select {
        padding: 8px 15px;
        border: 2px solid var(--light-green);
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        background: white;
    }
    
    .sc-sort-select:focus {
        border-color: var(--secondary-color);
        outline: none;
    }
    
    .sc-no-results {
        text-align: center;
        padding: 60px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .sc-no-results i {
        font-size: 60px;
        color: var(--secondary-color);
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .sc-no-results h3 {
        font-size: 24px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .sc-no-results p {
        color: #666;
        margin-bottom: 10px;
    }
    
    .sc-no-results ul {
        list-style: none;
        padding: 0;
        color: #666;
    }
    
    .sc-no-results ul li {
        padding: 5px 0;
    }
    
    .sc-suggestions-box {
        margin-top: 20px;
        padding: 20px;
        background: var(--light-green);
        border-radius: 10px;
    }
    
    .sc-suggestions-box h4 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .sc-suggestions-box a {
        color: var(--secondary-color);
        text-decoration: none;
        display: inline-block;
        margin: 5px 10px 5px 0;
        padding: 5px 15px;
        background: white;
        border-radius: 20px;
        transition: all 0.3s;
    }
    
    .sc-suggestions-box a:hover {
        background: var(--secondary-color);
        color: white;
    }
    
    .sc-active-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }
    
    .sc-filter-tag {
        background: var(--light-green);
        color: var(--primary-color);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    
    .sc-filter-tag .remove {
        cursor: pointer;
        color: #999;
        transition: color 0.3s;
    }
    
    .sc-filter-tag .remove:hover {
        color: var(--secondary-color);
    }
    
    .sc-filter-tag.clear-all {
        background: var(--secondary-color);
        color: white;
    }
    
    .sc-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0;
        flex-wrap: wrap;
    }
    
    .sc-pagination a, .sc-pagination span {
        padding: 10px 16px;
        background: white;
        border-radius: 8px;
        text-decoration: none;
        color: var(--primary-color);
        transition: all 0.3s;
        border: 1px solid var(--light-green);
    }
    
    .sc-pagination a:hover {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .sc-pagination .active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .sc-pagination .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .sc-search-highlight {
        background: #ffd700;
        padding: 0 3px;
        border-radius: 2px;
        font-weight: 600;
    }
    
    @media (max-width: 1024px) {
        .sc-search-layout {
            grid-template-columns: 1fr;
        }
        
        .sc-filters-sidebar {
            position: static;
            margin-bottom: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .sc-search-header h1 {
            font-size: 28px;
        }
        
        .sc-results-header {
            flex-direction: column;
            align-items: stretch;
        }
        
        .sc-price-inputs {
            flex-direction: column;
        }
    }

    .search-wrapper {
    position: relative;
    width: 100%;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;  /* hidden by default */
}

.search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 12px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
    text-decoration: none;
    color: #333;
}

.search-suggestions .suggestion-item:hover {
    background: var(--light-green, #e8f5e9);
}

.search-suggestions .suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-suggestions .suggestion-item .suggestion-info {
    flex: 1;
}

.search-suggestions .suggestion-item .suggestion-info .name {
    font-weight: 600;
    color: var(--primary-color, #2e7d32);
}

.search-suggestions .suggestion-item .suggestion-info .type {
    font-size: 12px;
    color: #888;
}

.search-suggestions .suggestion-item .suggestion-info .price {
    font-weight: 700;
    color: var(--secondary-color, #4caf50);
}

.search-suggestions .suggestion-item .suggestion-info .category-icon {
    color: var(--secondary-color);
    margin-right: 6px;
}

.search-suggestions .suggestion-divider {
    padding: 8px 15px;
    background: #f9f9f9;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #eee;
}

.search-suggestions .view-all-link {
    display: block;
    padding: 10px 15px;
    text-align: center;
    background: var(--light-green);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
}

.search-suggestions .view-all-link:hover {
    background: var(--secondary-color);
    color: white;
}

    /** ============= From Featured Products ==================== **/

        .ftp-featured-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .ftp-featured-header h1 {
        font-size: 42px;
        margin-bottom: 15px;
        color: #000000;
    }
    
    .ftp-featured-header h1 i {
        margin-right: 10px;
        color: #000000;
    }
    
    .ftp-featured-header p {
        font-size: 18px;
        opacity: 0.95;
        color: #000000;
    }
    
    .ftp-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0;
    }
    
    .ftp-pagination a {
        padding: 10px 15px;
        background: white;
        border-radius: 5px;
        text-decoration: none;
        color: var(--primary-color);
        transition: all 0.3s;
        border: 1px solid var(--light-green);
    }
    
    .ftp-pagination a:hover, .ftp-pagination a.active {
        background: var(--secondary-color);
        color: white;
        border-color: var(--secondary-color);
    }
    
    .ftp-empty-state {
        text-align: center;
        padding: 80px;
        background: white;
        border-radius: 15px;
    }
    
    .ftp-empty-state i {
        font-size: 60px;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    .ftp-empty-state h2 {
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    /*** =============== Black Text ===================== **/
    .black-text{
        color: #000000;
    }
   .green-text{
        color: #00FF00;
    }
    .black-text a {
        color: #000000;
    }

    /** ============ From Vendors ========================== **/

     /* Vendors Page Styles - Gold & Black Theme */
    .vendors-header {
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        border-bottom: 3px solid var(--secondary-green);
        padding: 60px 0;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .vendors-header h1 {
        font-size: 42px;
        color: var(--secondary-green);
        margin-bottom: 15px;
    }
    
    .vendors-header h1 i {
        margin-right: 10px;
        color: var(--secondary-green);
    }
    
    .vendors-header p {
        font-size: 18px;
        color: #cccccc;
    }
    
    /* Filter Bar */
    .vendors-filter-bar {
        background: #1a1a1a;
        border-radius: 15px;
        padding: 20px 25px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        border: 1px solid #2a2a2a;
    }
    
    .vendors-search-form {
        flex: 1;
        max-width: 400px;
    }
    
    .vendors-search-input-group {
        display: flex;
        position: relative;
    }
    
    .vendors-search-input-group i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--secondary-green);
    }
    
    .vendors-search-input-group input {
        width: 100%;
        padding: 12px 15px 12px 45px;
        border: 2px solid #f4f1f1;
        border-radius: 50px;
        font-size: 14px;
        background: #f7fcfd;
        color: #ffffff;
        transition: all 0.3s;
    }
    
    .vendors-search-input-group input:focus {
        outline: none;
        border-color: var(--secondary-green);
        box-shadow: 0 0 0 3px rgba(92, 238, 163, 0.1);
    }
    
    .vendors-search-input-group input::placeholder {
        color: #100303;
    }
    
    .vendors-search-input-group button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--secondary-green);
        color: #ffffff;
        border: none;
        padding: 8px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .vendors-search-input-group button:hover {
        background: var(--secondary-green);
    }
    
    .vendors-results-count {
        color: #cccccc;
        font-size: 14px;
    }
    
    .vendors-results-count strong {
        color: var(--secondary-green);
        font-size: 18px;
    }
    
    .vendors-sort-select {
        padding: 10px 15px;
        border: 2px solid #2a2a2a;
        border-radius: 8px;
        background: #cfeaf4;
        color: var(--secondary-green);
        cursor: pointer;
        font-size: 14px;
        font-weight: 500;
    }
    
    .vendors-sort-select option {
        background: #1a1a1a;
        color: #cccccc;
    }
    
    /* Vendors Grid */
    .vendors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    /* Vendor Card */
    .vendor-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s;
        border: 1px solid #2a2a2a;
        position: relative;
    }
    
    .vendor-card:hover {
        transform: translateY(-5px);
        border-color: var(--secondary-green);
        box-shadow: 0 10px 30px var(--warning);
    }
    
    /* Vendor Banner */
    .vendor-banner {
        height: 120px;
        background: linear-gradient(135deg, #586c1e, rgb(244, 246, 242));
        position: relative;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .vendor-logo {
        position: absolute;
        bottom: -40px;
        left: 20px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #1a1a1a;
        border: 4px solid var(--secondary-green);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vendor-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .vendor-logo .vendors-no-logo {
        font-size: 40px;
        color: var(--secondary-green);
    }
    
    /* Verified Badge */
    .vendors-verified-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--white);
        color: var(--secondary-green);
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 600;
        border: 1px solid var(--secondary-green);
    }
    
    .vendors-verified-badge i {
        margin-right: 5px;
        color: var(--secondary-green);
    }
    
    /* Featured Badge */
    .vendors-featured-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--secondary-green);
        color: #0a0a0a;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        z-index: 1;
    }
    
    /* Vendor Info */
    .vendor-info {
        padding: 50px 20px 20px;
    }
    
    .vendor-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--secondary-green);
        margin-bottom: 5px;
    }
    
    .vendor-owner {
        color: #888888;
        font-size: 13px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .vendor-owner i {
        color: var(--secondary-green);
    }
    
    /* Stats Row */
    .vendor-stats {
        display: flex;
        justify-content: space-around;
        margin: 15px 0;
        padding: 12px 0;
        border-top: 1px solid #2a2a2a;
        border-bottom: 1px solid #2a2a2a;
    }
    
    .vendors-stat-item {
        text-align: center;
    }
    
    .vendors-stat-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--secondary-green);
    }
    
    .vendors-stat-label {
        font-size: 11px;
        color: #888888;
        margin-top: 3px;
    }
    
    /* Rating Stars */
    .vendor-rating {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 12px 0;
    }
    
    .vendors-stars {
        color: var(--secondary-green);
        font-size: 14px;
    }
    
    .vendors-stars i {
        margin-right: 2px;
    }
    
    .rating-text {
        font-size: 13px;
        color: #888888;
    }
    
    /* Product Preview */
    .vendors-product-preview {
        display: flex;
        gap: 8px;
        margin: 15px 0;
    }
    
    .vendors-preview-img {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        object-fit: cover;
        background: #0a0a0a;
        border: 1px solid #2a2a2a;
    }
    
    .vendors-preview-more {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        background: #2a2a2a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        color: var(--secondary-green);
        border: 1px solid #2a2a2a;
    }
    
    /* Action Buttons */
    .vendor-actions {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }
    
    .vendors-btn-visit-store {
        flex: 1;
        background: var(--secondary-green);
        color: #0a0a0a;
        border: none;
        padding: 10px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 14px;
    }
    
    .vendors-btn-visit-store:hover {
        background: var(--secondary-green);
        transform: translateY(-2px);
    }
    
    .vendors-btn-contact {
        background: transparent;
        color: var(--secondary-green);;
        border: 2px solid var(--secondary-green);
        padding: 8px 12px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
    }
    
    .vendors-btn-contact:hover {
        background: var(--secondary-green);;
        color: #0a0a0a;
    }
    
    /* Empty State */
    .vendors-empty-state {
        text-align: center;
        padding: 80px;
        background: #1a1a1a;
        border-radius: 20px;
        border: 1px solid #2a2a2a;
        margin: 40px 0;
    }
    
    .vendors-empty-state i {
        font-size: 80px;
        color: var(--secondary-green);;
        margin-bottom: 20px;
        opacity: 0.5;
    }
    
    .vendors-empty-state h2 {
        color: var(--secondary-green);;
        margin-bottom: 10px;
    }
    
    .vendors-empty-state p {
        color: #888888;
        margin-bottom: 25px;
    }
    
    /* Pagination */
    .vendors-pagination {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 40px 0 60px;
        flex-wrap: wrap;
    }
    
    .vendors-pagination a, .vendors-pagination span {
        padding: 10px 16px;
        background: #1a1a1a;
        border-radius: 8px;
        text-decoration: none;
        color: #cccccc;
        transition: all 0.3s;
        border: 1px solid #2a2a2a;
    }
    
    .vendors-pagination a:hover {
        background: var(--secondary-green);;
        color: #0a0a0a;
        border-color: var(--secondary-green);;
    }
    
    .vendors-pagination .active {
        background: var(--secondary-green);;
        color: #0a0a0a;
        border-color: var(--secondary-green);;
    }
    
    .vendors-pagination .disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .vendors-header h1 {
            font-size: 32px;
        }
        
        .vendors-grid {
            grid-template-columns: 1fr;
        }
        
        .vendors-filter-bar {
            flex-direction: column;
        }
        
        .vendors-search-form {
            max-width: 100%;
            width: 100%;
        }
        
        .vendor-banner {
            height: 100px;
        }
        
        .vendor-logo {
            width: 65px;
            height: 65px;
            bottom: -32px;
        }
        
        .vendor-info {
            padding-top: 45px;
        }
        
        .vendor-stats {
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .vendors-stat-item {
            flex: 1;
        }
        
        .vendors-empty-state {
            padding: 40px;
        }
    }

    /** ==== COMMON ==== **/
    .plain-link {
       text-decoration: none; /* Removes the underline */
       color: inherit;        /* Forces the link to match the surrounding text color */
    }

    .red-button {
      background: var(--danger);
      color: var(--white);
    }

    .yellow-button {
      background: var(--warning);
      color: var(--white);
    }
    .yellow-fill {
        color: var(--warning);
    }

    .green-button {
      background: var(--green);
      color: var(--white);
    }


    /** ================ FROM ADMIN > INDEX ========================= **/
       .ad-index-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .ad-index-stat-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s;
    }
    
    .ad-index-stat-card:hover {
        transform: translateY(-5px);
    }
    
    .ad-index-stat-card h3 {
        color: #666;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .ad-index-stat-number {
        font-size: 32px;
        font-weight: 700;
        color: inherit;
        text-decoration: none; 
        
    }
    
    .ad-index-quick-actions {
        margin: 30px 0;
    }
    
    .ad-index-quick-actions h2 {
        margin-bottom: 20px;
        color: #2e7d32;
    }
    
    .ad-index-actions-grid {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .ad-index-btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .ad-index-btn-primary {
        background: #4caf50;
        color: white;
    }
    
    .ad-index-btn-primary:hover {
        background: #2e7d32;
        transform: translateY(-2px);
    }
    
    .ad-index-btn-secondary {
        background: #2196f3;
        color: white;
    }
    
    .ad-index-btn-secondary:hover {
        background: #1976d2;
        transform: translateY(-2px);
    }
    
    .ad-index-chart-container {
        margin: 30px 0;
        padding: 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .ad-index-chart-container h2 {
        margin-bottom: 20px;
        color: #2e7d32;
    }
    
    .ad-index-chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 20px;
        height: 200px;
        margin-top: 20px;
    }
    
    .ad-index-chart-bar-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .ad-index-chart-bar {
        width: 100%;
        background: #4caf50;
        border-radius: 5px 5px 0 0;
        transition: height 0.3s;
        position: relative;
        min-height: 30px;
    }
    
    .ad-index-chart-label {
        font-size: 12px;
        color: #666;
    }
    
    .ad-index-recent-orders {
        margin: 30px 0;
        background: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .ad-index-recent-orders h2 {
        margin-bottom: 20px;
        color: #2e7d32;
    }
    
    .ad-index-table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .ad-index-table th {
        background: #f5f5f5;
        padding: 12px;
        text-align: left;
        font-weight: 600;
    }
    
    .ad-index-table td {
        padding: 12px;
        border-bottom: 1px solid #eee;
    }
    
    .ad-index-status-pending {
        background: #fff3cd;
        color: #856404;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 12px;
    }
    
    .ad-index-status-completed {
        background: #d4edda;
        color: #155724;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 12px;
    }
    
    .ad-index-status-processing {
        background: #cce5ff;
        color: #004085;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 12px;
    }
    
    /* ============================================
   FULL-WIDTH LAYOUT STYLES (override)
   ============================================ */

/* Add these at the END of shopfaboo-custom.css */

.hero-carousel-full {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-carousel-full .carousel-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.hero-carousel-full .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-carousel-full .carousel-slide.active {
    opacity: 1;
}

.hero-carousel-full .slide-content {
    text-align: center;
    padding: 20px;
    max-width: 700px;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(4px);
}

.hero-carousel-full .slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.hero-carousel-full .slide-content p {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.hero-carousel-full .slide-content .btn-slide {
    display: inline-block;
    padding: 14px 40px;
    background: #4caf50;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-shadow: none;
}

.hero-carousel-full .slide-content .btn-slide:hover {
    background: #2e7d32;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

/* Carousel controls */
.hero-carousel-full .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    font-size: 20px;
}

.hero-carousel-full .carousel-arrow:hover {
    background: rgba(0,0,0,0.8);
}

.hero-carousel-full .carousel-arrow.prev {
    left: 20px;
}

.hero-carousel-full .carousel-arrow.next {
    right: 20px;
}

.hero-carousel-full .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-carousel-full .carousel-indicators .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-carousel-full .carousel-indicators .dot.active {
    background: #4caf50;
    border-color: white;
    transform: scale(1.2);
}

/* Product Grid Override */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-carousel-full .carousel-container {
        height: 280px;
    }
    .hero-carousel-full .slide-content h2 {
        font-size: 28px;
    }
    .hero-carousel-full .slide-content p {
        font-size: 16px;
    }
    .hero-carousel-full .slide-content {
        padding: 20px;
        margin: 20px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-carousel-full .carousel-container {
        height: 220px;
    }
    .hero-carousel-full .slide-content h2 {
        font-size: 22px;
    }
    .hero-carousel-full .slide-content p {
        font-size: 14px;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
}




