.promo-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.promo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: transparent;
}

.promo-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.promo-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 0px;
    background: transparent;
    border-radius: 2px;
}


.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    height: 380px;
    border: 1px solid rgba(75, 99, 134, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4B6386 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-info {
    padding: 20px;
    background: #ffffff;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 10px;
    color: #4B6386;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    background: rgba(75, 99, 134, 0.1);
    padding: 4px 8px;
    border-radius: 15px;
    display: inline-block;
    align-self: flex-start;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title {
    font-size: 25px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 13px;
        height: 36px;
        line-height: 1.2;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 12px;
        height: 32px;
        line-height: 1.2;
    }
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.original-price {
    font-size: 14px;
    color: #e74c3c;
    text-decoration: line-through;
    font-weight: 500;
    order: 1;
}

.discounted-price {
    font-size: 18px;
    color: #2ab1ad;
    font-weight: 800;
    order: 2;
}

.custom-price-text {
    font-size: 14px;
    color: #4B6386;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    order: 2;
    background: linear-gradient(135deg, #4B6386 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* 
.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    background: linear-gradient(135deg, #4B6386 0%, #6c7b95 100%);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(75, 99, 134, 0.3);
    position: relative;
    overflow: hidden;
}

.see-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.see-more-btn:hover::before {
    left: 100%;
}

.see-more-btn:hover {
    box-shadow: 0 15px 35px rgba(75, 99, 134, 0.4);
}

.see-more-btn:active {
    transform: translateY(-1px);
} */

@media (max-width: 1200px) {
    .product-card {
        height: 360px;
    }

    .product-img-container {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .promo-heading {
        font-size: 2rem;
    }

    .product-card {
        height: 340px;
        margin-bottom: 25px;
    }

    .product-img-container {
        height: 180px;
    }

    .product-info {
        height: 140px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .promo-section {
        padding: 40px 0;
    }

    .promo-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .product-card {
        height: 320px;
        margin-bottom: 20px;
    }

    .product-img-container {
        height: 160px;
    }

    .product-info {
        height: 140px;
        padding: 12px;
    }

    .product-title {
        font-size: 14px;
        height: 40px;
    }

    .discounted-price {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-card {
        height: 300px;
    }

    .product-img-container {
        height: 150px;
    }

    .product-info {
        height: 130px;
        padding: 10px;
    }
/* 
    .see-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    } */
}

.product-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.product-card .product-category {
    transition: all 0.3s ease;
}

.product-card:hover .product-category {
    background: rgba(75, 99, 134, 0.2);
    transform: scale(1.05);
}

.product-card:hover .product-title {
    color: #4B6386;
}

.product-card:focus-within {
    outline: 3px solid rgba(75, 99, 134, 0.3);
    outline-offset: 2px;
}

.promo-pagination {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.promo-pagination-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-container {
    display: flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #4B6386;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pagination-btn:hover {
    box-shadow: 0 8px 20px rgba(75, 99, 134, 0.3);
    border-color: #4B6386;
}

.pagination-btn:hover::before {
    opacity: 1;
}

.pagination-btn:hover span {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #4B6386 0%, #6c7b95 100%);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(75, 99, 134, 0.4);
}

.pagination-btn.disabled {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .pagination-container {
        padding: 12px 16px;
        gap: 6px;
    }

    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .pagination-container {
        padding: 10px 12px;
        gap: 4px;
    }

    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

.no-products-message {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-products-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dee2e6;
}

.no-products-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #495057;
}

.no-products-message p {
    font-size: 1rem;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-more-products {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    border-color: #2ab1ad;
    color: #2ab1ad;
    transition: all 0.3s;
}

.btn-more-products:hover {
    background-color: #2ab1ad;
    border-color: #2ab1ad;
    color: white;
}