/* ========================================================== */
/* ADDITIONAL PREMIUM OVERRIDES                               */
/* ========================================================== */
:root {
    --card-radius: 16px;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card {
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--shoppi-orange);
}

.card-image img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--shoppi-navy);
}

.current-price {
    font-weight: 800;
    color: var(--shoppi-orange);
}

.add-btn {
    border-radius: 12px;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Navbar blur effect (override if needed, usually already premium) */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

/* Categories styling */
.category-chip {
    padding: 8px 18px;
    border-radius: 12px;
    font-weight: 600;
}
