/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Custom CSS to handle truncation */
.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product card hover effect */
.product-card {
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.12), 0 8px 12px -8px rgba(0, 0, 0, 0.08);
}

/* Micro animations for buttons */
.btn-animate {
    transition: transform 0.15s ease-out, background-color 0.15s ease-out;
}

.btn-animate:active {
    transform: scale(0.97);
}

/* Price superscript match */
.price-symbol, .price-fraction {
    position: relative;
    top: -0.2em;
}

/* Star rating color */
.text-amazon-star {
    color: #FFA41C;
}
