@media (max-width: 420px) {
    .mobile-card-col {
        width: 100% !important;
    }
}

.shop-product-img {
    height: 250px;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .shop-product-img {
        height: 150px;
    }

    .shop-product-title {
        font-size: 0.85rem !important;
    }

    .shop-product-price {
        font-size: 1rem !important;
    }

    .shop-product-btn {
        font-size: 0.7rem !important;
        padding-top: 0.3rem !important;
        padding-bottom: 0.4rem !important;
        width: auto !important;
        min-width: 100px;
    }
}

.product-card-modern {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 140, 0, 0.2) !important;
}

.product-card-modern:hover {
    transform: translateY(-10px);
}

.product-card-modern:hover .card-actions {
    opacity: 1;
    bottom: 10px;
}

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

.extra-small {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.divider-slant {
    position: absolute;
    top: 0;
    right: 30%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg);
    pointer-events: none;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}


