    <link rel="stylesheet" href="css/epulse-main-styles.css"> 


        :root {
            --epulse-color-primary: #007bff; /* Example primary color */
            --epulse-color-secondary: #6c757d;
            --epulse-color-success: #28a745;
            --epulse-color-danger: #dc3545;
            --epulse-color-warning: #ffc107;
            --epulse-color-info: #17a2b8;
            --epulse-color-light: #f8f9fa;
            --epulse-color-dark: #343a40;
            --epulse-color-text: #333;
            --epulse-color-text-muted: #666;
            --epulse-color-border: #dee2e6;
            --epulse-font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --epulse-border-radius: 2rem; /* 20px */
            --epulse-border-radius-pill: 5rem; /* 50px for pill shape */
            --epulse-box-shadow-soft: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
            --epulse-box-shadow-subtle: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.075);
        }

        body {

            font-size: 1.6rem; /* Default text size, 16px if base is 10px */
            line-height: 1.6;
            color: var(--epulse-color-text);
            background-color: #fff; /* Bright, clean background */
            margin: 0;
            padding: 0;
        }

        .epulse-container {
            width: 90%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1.5rem;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-weight: 700; /* Bold typography */
            line-height: 1.3;
        }
        h1 { font-size: 3.2rem; }
        h2 { font-size: 2.8rem; }
        h3 { font-size: 2.2rem; }
        p { margin-bottom: 1.5rem; }

        /* Buttons */
        .epulse-button {
            display: inline-flex; /* For icon alignment */
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            font-size: 1.6rem;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            white-space: nowrap;
            vertical-align: middle;
            cursor: pointer;
            user-select: none;
            border: 1px solid transparent;
            border-radius: var(--epulse-border-radius-pill); /* Pill-shaped */
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        }
        .epulse-button i { margin-right: 0.8rem; }

        .epulse-button--primary {
            color: #fff;
            background-color: var(--epulse-color-primary);
            border-color: var(--epulse-color-primary);
        }
        .epulse-button--primary:hover {
            background-color: darkgreen;
            border-color: darken(var(--epulse-color-primary), 10%);
        }

        .epulse-button--secondary {
            color: var(--epulse-color-primary);
            background-color: transparent;
            border-color: var(--epulse-color-primary);
        }
        .epulse-button--secondary:hover {
            color: #fff;
            background-color: darkcyan;
        }
        
        .epulse-button--cta { /* Call to action, e.g., Add to Cart */
            background-color: var(--epulse-color-success);
            color: #fff;
            border-color: var(--epulse-color-success);
        }
        .epulse-button--cta:hover {
            background-color: darkgreen;
            border-color: darken(var(--epulse-color-success), 10%);
        }
        .epulse-button--cta:disabled {
            background-color: var(--epulse-color-secondary);
            border-color: var(--epulse-color-secondary);
            cursor: not-allowed;
            opacity: 0.65;
        }

        /* Cards */
        .epulse-card {
            background-color: #fff;
            border: 1px solid var(--epulse-color-border);
            border-radius: var(--epulse-border-radius);
            box-shadow: var(--epulse-box-shadow-soft);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; /* For hover effects */
        }
        /* Subtle scroll animation class (to be applied by ScrollReveal or Intersection Observer) */
        .epulse-animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }
        .epulse-animate-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* Page Vendor Specific Styles */
        .page-vendor__hero {
            background-color: var(--epulse-color-light); /* Light background for hero */
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .page-vendor__hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .page-vendor__profile-wrapper { /* Changed from vendor-profile */
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .page-vendor__logo-container { /* Changed from vendor-image */
            width: 15rem; /* 150px */
            height: 15rem; /* 150px */
            border-radius: 50%; /* Circular logo */
            overflow: hidden;
            box-shadow: var(--epulse-box-shadow-soft);
            border: 3px solid #fff;
        }
        .page-vendor__logo { /* Changed from vendor-logo */
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .page-vendor__info { /* Changed from vendor-info */
            text-align: center;
        }
        .page-vendor__name { /* Was h1 */
            font-size: 3.6rem;
            margin-bottom: 1rem;
            color: var(--epulse-color-dark);
        }
        .page-vendor__actions { /* Changed from vendor-actions */
            display: flex;
            flex-wrap: wrap; /* For smaller screens */
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .page-vendor__details-section { /* Changed from vendor-details */
            padding: 3rem 0;
        }
        .page-vendor__section-title { /* Was h2 */
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.8rem;
        }
        .page-vendor__info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .page-vendor__info-card { /* Changed from info-card */
            background-color: #fff;
            border: 1px solid var(--epulse-color-border);
            border-radius: var(--epulse-border-radius);
            padding: 2.5rem;
            box-shadow: var(--epulse-box-shadow-subtle);
            /* For scroll animation targeting */
        }
        .page-vendor__info-card-title { /* Was h3 */
            font-size: 2rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            color: var(--epulse-color-primary);
        }
        .page-vendor__info-card-title i {
            margin-right: 1rem;
            font-size: 2.2rem;
        }
        .page-vendor__info-card-content p {
            font-size: 1.5rem;
            color: var(--epulse-color-text-muted);
            margin-bottom: 0;
        }


        /* Products Section */
        .page-products__section { /* Changed from .products */
            padding: 3rem 0;
        }
        .page-products__header {
            display: flex;
            flex-direction: column; /* Stack on mobile */
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            gap: 1.5rem;
        }
        .page-products__title { /* Changed from .heading */
            font-size: 2.8rem;
            margin-bottom: 0; /* Adjusted due to flex layout */
        }
        .page-products__sort-controls { /* Changed from .sort-wrapper */
        }
        .page-products__sort-select { /* Changed from #sort-products */
            padding: 0.8rem 1.2rem;
            border-radius: var(--epulse-border-radius-pill);
            border: 1px solid var(--epulse-color-border);
            background-color: #fff;
            font-size: 1.5rem;
            min-width: 200px; /* Ensure it's wide enough */
        }

        .epulse-product-grid { /* Changed from .box-container */
            display: flex;
            justify-content:center ;
            flex-wrap: wrap;
        }
        .epulse-product-card { /* Changed from .box and .product-item */
            background-color: #fff;
            border-radius: var(--epulse-border-radius);
            box-shadow: var(--epulse-box-shadow-subtle);
            text-align: center;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
            /* For scroll animation targeting */
            width: 300px;
        }
        .epulse-product-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--epulse-box-shadow-soft);
        }
        .epulse-product-card__image-link {
            display: block;
            margin-bottom: 1.5rem;
        }
        .epulse-product-card__image {
            width: 100%;
            max-height: 200px;
            object-fit: contain; /* Use contain to see full image, or cover if aspect ratio is consistent */
            border-radius: calc(var(--epulse-border-radius) - 1rem); /* Slightly smaller radius for image inside card */
            transition: transform 0.3s ease;
        }
        .epulse-product-card:hover .epulse-product-card__image {
            transform: scale(1.05);
        }
        .epulse-product-card__name { /* Changed from .name */
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--epulse-color-dark);
            margin-bottom: 1rem;
            min-height: 4rem; /* To allow for 2 lines of text generally */
        }
        .epulse-product-card__details { /* Changed from .flex */
            display: flex;
            justify-content: space-between; /* This might need adjustment if only price is present */
            align-items: center;
            margin-bottom: 1.5rem;
        }
        .epulse-product-card__price { /* Changed from .price */
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--epulse-color-primary);
        }
        .epulse-product-card__price .original-price {
            text-decoration: line-through;
            color: var(--epulse-color-text-muted);
            font-size: 1.4rem;
            margin-left: 0.5rem;
        }
         .epulse-product-card__price .discounted-price {
            color: var(--epulse-color-success); /* Make discounted price stand out */
         }

        .epulse-product-card__quantity-selector { /* Changed from .quantity-selector */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .epulse-product-card__quantity-button { /* Changed from .quantity-decrease, .quantity-increase */
            background-color: var(--epulse-color-light);
            border: 1px solid var(--epulse-color-border);
            color: var(--epulse-color-dark);
            width: 3.5rem;
            height: 3.5rem;
            font-size: 2rem;
            cursor: pointer;
            border-radius: 50%; /* Make them circular */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .epulse-product-card__quantity-input { /* Changed from .quantity-input */
            width: 5rem;
            text-align: center;
            border: none; /* Remove default border */
            border-top: 1px solid var(--epulse-color-border);
            border-bottom: 1px solid var(--epulse-color-border);
            font-size: 1.6rem;
            height: 3.5rem;
            margin: 0 0.5rem; /* Add some space around input */
            pointer-events: none; /* If you don't want direct typing */
        }
        .epulse-product-card__quantity-input::-webkit-inner-spin-button,
        .epulse-product-card__quantity-input::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .epulse-product-card__quantity-input[type=number] {
            -moz-appearance: textfield; /* Firefox */
        }

        .epulse-product-card__add-to-cart-button { /* Changed from .add-to-cart-btn */
            width: 100%;
        }
        .epulse-product-card__add-to-cart-button:hover { /* Changed from .add-to-cart-btn */
          background: darkgreen !important;
        }
        .epulse-empty-message { /* Changed from .empty */
            font-size: 1.8rem;
            color: var(--epulse-color-text-muted);
            text-align: center;
            padding: 4rem 0;
        }

        /* Notification Toast */
        .epulse-notification-toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--epulse-color-dark);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: var(--epulse-border-radius);
            box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.2);
            z-index: 1050;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            min-width: 300px; /* Minimum width */
        }
        .epulse-notification-toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        .epulse-notification-toast.success { background-color: var(--epulse-color-success); }
        .epulse-notification-toast.error { background-color: var(--epulse-color-danger); }
        .epulse-notification-toast.info { background-color: var(--epulse-color-info); }

        .epulse-notification-toast__content {
            display: flex;
            align-items: center;
            width: 100%;
        }
        .epulse-notification-toast__icon {
            font-size: 2.4rem;
            margin-right: 1.5rem;
        }
        .epulse-notification-toast__text {
            flex-grow: 1;
        }
        .epulse-notification-toast__title {
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-size: 1.6rem;
        }
        .epulse-notification-toast__message {
            font-size: 1.4rem;
            margin-bottom: 0;
        }
        .epulse-notification-toast__close {
            font-size: 2.4rem;
            font-weight: 300;
            line-height: 1;
            background: none;
            border: none;
            color: inherit;
            opacity: 0.7;
            cursor: pointer;
            padding: 0 0 0 1.5rem; /* Space from text */
        }
        .epulse-notification-toast__close:hover {
            opacity: 1;
        }

        /* Testimonials Section (Dynamically Added) */
        .page-vendor__testimonials { /* New class for the section container */
            padding: 3rem 0;
            background-color: var(--epulse-color-light); /* Light bg to differentiate */
        }
        .epulse-testimonials-container {
            position: relative;
            margin-top: 1rem; /* Reduced from 30px */
        }
        .epulse-testimonial-slider {
            display: flex;
            overflow-x: auto; /* Changed to auto for scrollbar if needed, JS handles smooth scroll */
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1.5rem; /* Space for scrollbar if it appears */
        }
        .epulse-testimonial-slide {
            flex: 0 0 100%; /* Each slide takes full width */
            width: 100%;
            scroll-snap-align: start;
            padding: 0 1rem; /* Spacing between slides if peeking */
            box-sizing: border-box;
        }
        .epulse-testimonial-content {
            background-color: #fff;
            border-radius: var(--epulse-border-radius);
            padding: 3rem;
            box-shadow: var(--epulse-box-shadow-soft);
            text-align: center;
            position: relative;
        }
        .epulse-testimonial-content::before { /* Quote styling */
            content: '\\201C';
            font-size: 6rem; /* Reduced from 80px */
            position: absolute;
            left: 2rem;
            top: 0rem; /* Adjusted */
            color: rgba(0,0,0,0.05); /* Softer quote color */
            font-family: serif;
            line-height: 1;
        }
        .epulse-testimonial-content p {
            font-style: italic;
            margin: 1.5rem 0;
            font-size: 1.6rem; /* Adjusted */
            color: var(--epulse-color-text-muted);
        }
        .epulse-testimonial-author {
            font-weight: 600;
            color: var(--epulse-color-primary);
            margin-top: 1.5rem;
            font-size: 1.5rem;
        }
        .epulse-testimonial-rating { /* Changed from .rating */
            color: var(--epulse-color-warning);
            font-size: 1.8rem; /* Adjusted */
            margin-bottom: 1rem;
        }
        .epulse-testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 1.5rem; /* Reduced from 20px */
            margin-top: 2rem;
        }
        .epulse-testimonial-button { /* Changed from .testimonial-prev, .testimonial-next */
            background-color: white;
            border: 1px solid var(--epulse-color-border);
            border-radius: 50%;
            width: 4rem; /* 40px */
            height: 4rem; /* 40px */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--epulse-color-primary);
        }
        .epulse-testimonial-button:hover {
            background-color: var(--epulse-color-primary);
            color: white;
            border-color: var(--epulse-color-primary);
        }

        /* Responsive Adjustments */
        @media (min-width: 768px) { /* Medium devices (tablets, 768px and up) */
            .page-vendor__hero-content {
                flex-direction: row;
                text-align: left;
            }
            .page-vendor__profile-wrapper {
                flex-direction: row;
                align-items: flex-start; /* Align items to the start for row layout */
                gap: 3rem; /* Increased gap for larger screens */
            }
            .page-vendor__info {
                text-align: left;
            }
            .page-vendor__actions {
                justify-content: flex-start;
            }
            .page-products__header {
                flex-direction: row; /* Side-by-side on larger screens */
                align-items: center;
            }
            .page-products__title {
                margin-bottom: 0;
            }
            .epulse-testimonial-slide {
                flex: 0 0 50%; /* Show two slides on medium screens */
            }
        }

        @media (min-width: 992px) { /* Large devices (desktops, 992px and up) */
            .epulse-testimonial-slide {
                flex: 0 0 33.333%; /* Show three slides on large screens */
            }
            .epulse-product-grid {
                 /* Example: 4 columns on large screens if minmax allows */
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
html{
    font-size: 60% !important;
}
    
