/* ==========================================================================
   PREMIUM UPLIFT - UI & CRO ENHANCEMENTS
   ========================================================================== */

/* 1. Product Card Modernization & Hover Effects */
.product-item-area {
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #fff;
    overflow: hidden;
    position: relative;
    padding-bottom: 15px;
}

.product-item-area:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.product-img-area {
    position: relative;
    overflow: hidden;
}

.showcase-img-container img {
    transition: transform 0.5s ease;
}

.product-item-area:hover .showcase-img-container img {
    transform: scale(1.05);
}

/* 2. Quick Add To Cart & Trust/Urgency Badges */
.premium-badges-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.urgency-badge {
    background-color: #ffeaea;
    color: #e53935;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.social-proof-stars {
    color: #ffb400;
    font-size: 11px;
}

.social-proof-stars span {
    color: #888;
    margin-left: 3px;
}

/* Quick Add Button overlaying the image */
.quick-add-btn-container {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    transition: bottom 0.3s ease;
    padding: 0 15px;
    z-index: 10;
}

.product-img-area:hover .quick-add-btn-container {
    bottom: 15px;
}

.btn-quick-add {
    width: 100%;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.btn-quick-add:hover {
    background: linear-gradient(135deg, #2c5364 0%, #203a43 50%, #0f2027 100%);
    color: #00d2ff;
}

/* 3. Global Trust Banner under Header */
.trust-banner-global {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: #555;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-item i {
    color: #2c5364;
    font-size: 16px;
}

/* 4. Garage Selector (Vehicle Search) */
.garage-selector-section {
    background: linear-gradient(135deg, #2b32b2 0%, #1488cc 100%);
    padding: 40px 0;
    margin-bottom: 30px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(20, 136, 204, 0.3);
}

.garage-selector-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.garage-form {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.garage-form select {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    height: 48px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.btn-garage-search {
    background-color: #ff9800;
    color: #fff;
    border: none;
    height: 48px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-garage-search:hover {
    background-color: #e68a00;
}
