      /* Iranyekan Font Import */
        @import url('https://fonts.googleapis.com/css2?family=Iranyekan:wght@400;700&display=swap');

        body {
            font-family: 'Iranyekan', sans-serif;
            background-color: #f5f5f5;
        }


        /* Slideshow Styles */
        .spd-slideshow-container {
            max-height: 280px;
            position: relative;
            max-width: 100%;
            margin: auto;
            overflow: hidden;
            margin-top: 2%;
        }

        .spd-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .spd-slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        .spd-slide img {
            width: 100%;
            height: auto;
        }

        .spd-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8);
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }
        .spd-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .spd-section-title {
            font-size: 22px;
            color: #374151;
            margin: 25px 0 15px;
            font-weight: 700;
        }

        .spd-scroll-container {
            overflow-x: auto;
            padding: 10px 0;
            margin-bottom: 30px;
            scrollbar-width: none;
        }

        .spd-scroll-container::-webkit-scrollbar {
            display: none;
        }

        .spd-scroll-track {
            display: flex;
            gap: 15px;
        }

        .spd-scroll-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            width: 220px;
            flex-shrink: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

        .spd-product-image {
            width: 100%;
            height: 180px;
            object-fit: contain;
            padding: 10px;
            background: #f9fafb;
        }

        .spd-product-content {
            padding: 15px;
        }

        .spd-product-name {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            margin-bottom: 10px;
            line-height: 1.4;
            height: 40px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .spd-product-group {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 10px;
        }

        .spd-product-price {
            font-size: 16px;
            font-weight: 700;
            color: #d12f2f;
            margin-bottom: 15px;
        }

        .rating-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 10px;
        }

        .star {
            color: #eab308;
            font-size: 16px;
        }

        .rating-count {
            font-size: 12px;
            color: #6b7280;
            margin-right: 5px;
        }

        .spd-product-btn {
            display: block;
            background-color: #e11d48;
            color: white;
            text-align: center;
            padding: 8px 0;
            border-radius: 6px;
            font-size: 14px;
            transition: background-color 0.2s;
            text-decoration: none;
        }

        .spd-product-btn:hover {
            background-color: #be123c;
        }

        .spd-multi-color-line {
            height: 4px;
            background: linear-gradient(to left, #e11d48, #d946ef, #6366f1);
            margin: 30px 0;
            border-radius: 2px;
        }

        .spd-gallery {
            display: flex;
            gap: 15px;
            margin: 25px 0;
        }

        .spd-gallery-segment {
            flex: 1;
            border-radius: 12px;
            overflow: hidden;
        }

        .spd-gallery-segment img {
            width: 100%;
            display: block;
        }

        .spd-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 15px;
        }

        .bill {
            max-width: 1200px; /* Add 'px' to specify units */
            height: 200px;
            overflow: hidden;
        }

        .bill img {
            width: 100%; /* Make the image take the full width of the container */
            height: 100%; /* Make the image take the full height of the container */
            object-fit: cover; /* Use 'cover' to maintain aspect ratio and fill the container */
            background-color: white;
        }
