/* ==========================================
   PRODUCT PAGES - COMMON STYLES
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #0a77bc;
    --primary-hover: #065a94;
    --secondary-color: #3490ff;
    --accent-color: #4fc3f7;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --success-color: #4caf50;
    --danger-color: #f44336;
    --warning-color: #0a77bc;
    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background-color: #f0f2f5;
    color: var(--dark-color);
}

/* Common Text Styles */
.text-orange {
    color: var(--primary-color);
}

.text-blue {
    color: var(--primary-color);
    font-weight: 600;
}

/* Common Button Styles */
.btn {
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: none;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 3px 10px rgba(10, 119, 188, 0.2);
    transform: translateY(-1px);
}

.btn-warning {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-warning:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 3px 10px rgba(10, 119, 188, 0.2);
    transform: translateY(-1px);
    color: white;
}

/* Add to Cart Button - List Page */
.btn-add-cart {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transform: translateY(-2px);
    color: white;
}

.btn-add-cart:active {
    transform: translateY(0);
}

.btn-add-cart i {
    font-size: 0.9rem;
}

/* Detail Button - List Page */
.btn-detail {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3490ff 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-detail:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 12px rgba(10, 119, 188, 0.3);
    transform: translateY(-2px);
    color: white;
}

.btn-detail:active {
    transform: translateY(0);
}

.btn-detail i {
    font-size: 0.9rem;
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
    }

/* Checkbox Styles */
.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.2em;
    border-radius: 6px;
    border: 2px solid rgba(10, 119, 188, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(10, 119, 188, 0.3);
    }

    .form-check-input:hover {
        border-color: var(--primary-color);
        box-shadow: 0 2px 6px rgba(10, 119, 188, 0.15);
    }

.form-check-label {
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    padding-left: 8px;
    color: #495057;
}

    .form-check-label:hover {
        color: var(--primary-color);
    }

.big-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #6c757d;
    transition: var(--transition);
}

    .big-checkbox:checked {
        background-color: var(--dark-navy);
        border-color: var(--dark-navy);
    }

    .big-checkbox:focus {
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

.custom-checkbox .form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 0;
}

/* Badge Styles */
.badge {
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.badge-custom {
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.1), rgba(52, 144, 255, 0.08));
    color: #0a77bc;
    border-radius: 8px;
    padding: 7px 14px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(10, 119, 188, 0.15);
    border: 1px solid rgba(10, 119, 188, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(10, 119, 188, 0.25);
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.15), rgba(52, 144, 255, 0.12));
}

.badge-custom i {
    font-size: 0.85rem;
}

.badge-success {
    background: linear-gradient(145deg, #66bb6a, #43a047);
    color: white;
}

.badge-warning {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.badge-danger {
    background: linear-gradient(145deg, #ef5350, #e53935);
    color: white;
}

/* Product Image Styles */
.image-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 1px solid rgba(10, 119, 188, 0.08);
}

    .image-wrapper .tire-container {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-wrapper img.tire-img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
    }

    .image-wrapper:hover img.tire-img {
        transform: scale(1.5);
    }

.product-image {
    max-height: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.thumb-image {
    width: 70px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s;
}

    .thumb-image:hover {
        border-color: var(--primary-color);
    }

.active-thumb {
    border-color: var(--primary-color);
}

.image-gallery {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Brand Logo Styles */
.brand-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(248,249,250,0.9));
    border-top: 1px solid rgba(10, 119, 188, 0.1);
    min-height: 38px;
}

.brand-logo {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: var(--transition);
}

.brand-text {
    font-size: 12px;
    font-weight: 700;
    color: #0a77bc;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.car-brand-logo {
    height: 20px;
    width: auto;
    margin-right: 5px;
    transition: transform 0.3s ease;
    object-fit: contain;
    vertical-align: middle;
}

    .car-brand-logo:hover {
        transform: scale(3);
        z-index: 10;
    }

/* Card Styles */
.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    margin-bottom: 0;
    border: 2px solid rgba(10, 119, 188, 0.12);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a77bc, #3490ff);
    border-radius: 14px 14px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.col-md-12 {
    margin-bottom: 25px;
}

    .product-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 16px 40px rgba(10, 119, 188, 0.22);
        border-color: rgba(10, 119, 188, 0.35);
    }

    .product-card:hover::before {
        opacity: 1;
    }

    .product-card .card-body {
        padding: 26px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

.detail-box {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Filter Sidebar */
.filter-sidebar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 0px 20px;
    border: 1px solid rgba(10, 119, 188, 0.1);
}

    .filter-sidebar h5 {
        font-weight: 700;
        color: #0a0e17;
        margin-bottom: 25px;
        padding: 12px 16px;
        background: linear-gradient(to right, rgba(10, 119, 188, 0.08), transparent);
        border-left: 4px solid #0a77bc;
        border-radius: 8px;
        font-size: 1.1rem;
    }

    .filter-sidebar h6 {
        font-size: 14px;
        font-weight: 700;
        color: #0a77bc;
        margin-bottom: 14px;
        margin-top: 20px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
    }

/* Season Filter Styles */
.season-filter {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 2px solid rgba(10, 119, 188, 0.1);
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    cursor: pointer;
    flex: 1;
    overflow: hidden;
}

    /* CRITICAL FIX: Allow clicks to reach button, not child elements */
    .season-filter * {
        pointer-events: none;
    }

    .season-filter:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(10, 119, 188, 0.15);
        border-color: rgba(10, 119, 188, 0.3);
    }

    .season-filter.active {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(10, 119, 188, 0.08) 0%, rgba(52, 144, 255, 0.08) 100%);
        box-shadow: 0 6px 20px rgba(10, 119, 188, 0.2);
    }

    .season-filter .selection-indicator {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0a77bc 0%, #3490ff 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(0.3);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 4px 12px rgba(10, 119, 188, 0.4);
    }

    .season-filter.active .selection-indicator {
        opacity: 1;
        transform: scale(1);
    }

    .season-filter .season-name {
        font-size: 11px;
        font-weight: 600;
        margin-top: 6px;
        color: #555;
        transition: var(--transition);
        letter-spacing: 0.2px;
        text-align: center;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding: 0 2px;
    }

    .season-filter.active .season-name {
        color: var(--primary-color);
        font-weight: 700;
    }

    .season-filter img {
        height: 32px;
        width: auto;
        max-width: 100%;
        transition: var(--transition);
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    .season-filter.active img {
        transform: scale(1.1);
    }

/* Price Section */
.price-section {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price {
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(10, 119, 188, 0.1);
    letter-spacing: -0.5px;
}

/* Quantity Section */
.quantity-section {
    margin: 20px 0;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    position: relative;
}

    .quantity-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 12px 12px 0 0;
    }

.quantity-title {
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .quantity-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
    }

.quantity-controls {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    padding: 5px;
    width: fit-content;
    border: 1px solid #efefef;
}

.quantity-input {
    width: 60px;
    height: 46px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    border: none;
    border-radius: 8px;
    margin: 0 8px;
    background-color: #fff;
}

    .quantity-input:focus {
        outline: none;
    }

.quantity-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    color: #212529;
    cursor: pointer;
    transition: var(--transition);
}

    .quantity-btn:hover {
        background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(10, 119, 188, 0.25);
    }

    .quantity-btn:active {
        transform: translateY(0);
    }

.quantity-label {
    font-weight: 500;
    color: #6c757d;
    margin-left: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quantity-info {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

    .quantity-info i {
        margin-right: 5px;
        color: var(--primary-color);
    }

/* Store Section */
.store-section {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    margin-top: 15px;
}

.store-list {
    max-height: 250px;
    overflow-y: auto;
}

.store-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .store-item:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .store-item.selected {
        border-color: var(--primary-color);
        background-color: rgba(10, 119, 188, 0.05);
    }

.store-name {
    font-weight: 500;
    font-size: 15px;
    color: #343a40;
}

.store-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.best-price-badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 4px;
}

.store-radio {
    position: relative;
}

    .store-radio input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

    .store-radio label {
        position: relative;
        cursor: pointer;
        padding: 0;
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 2px solid #e9ecef;
        border-radius: 50%;
        background-color: white;
        transition: all 0.2s ease;
    }

    .store-radio input[type="radio"]:checked + label {
        border-color: var(--primary-color);
    }

        .store-radio input[type="radio"]:checked + label:after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary-color);
        }

.store-max-quantity {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .add-to-cart-btn i {
        font-size: 1.2rem;
    }

    .add-to-cart-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(10, 119, 188, 0.3);
    }

/* Breadcrumb Navigation */
.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #6c757d;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.breadcrumb-item i {
    font-size: 0.85rem;
}

/* Technical Info Card - Clean & Professional Design */
.lastik-bilgi-karti {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(10, 119, 188, 0.15);
    border: 2px solid rgba(10, 119, 188, 0.2);
    transition: all 0.3s ease;
}

.lastik-bilgi-karti:hover {
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.25);
    border-color: rgba(10, 119, 188, 0.35);
    transform: translateY(-2px);
}

.lastik-bilgi-karti .baslik {
    display: none;
}

.lastik-bilgi-karti .baslik-metin {
    display: none;
}

.lastik-bilgi-karti .baslik-metin i {
    display: none;
}

.lastik-bilgi-karti .ikon-liste {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    gap: 8px;
    background: white;
    border-bottom: 2px solid rgba(10, 119, 188, 0.1);
}

.lastik-bilgi-karti .ikon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    border: 1px solid rgba(10, 119, 188, 0.1);
    transition: all 0.2s ease;
}

.lastik-bilgi-karti .ikon-item:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    border-color: rgba(10, 119, 188, 0.25);
    transform: translateY(-2px);
}

.lastik-bilgi-karti .ikon-item i {
    font-size: 1.2rem;
    color: #0a77bc;
}

.lastik-bilgi-karti .ikon-item img {
    width: 22px;
    height: 22px;
}

.lastik-bilgi-karti .ikon-item span {
    font-weight: 600;
    color: #212529;
    font-size: 0.75rem;
    text-align: center;
}

.veri-tablosu {
    padding: 0;
    background: white;
}

.featured-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    margin: 0;
    background: white;
    border-bottom: 1px solid rgba(10, 119, 188, 0.1);
    transition: all 0.2s ease;
}

.featured-row:last-child {
    border-bottom: none;
}

.featured-row:hover {
    background: linear-gradient(135deg, #e3f2fd, #f0f9ff);
    transform: translateX(3px);
}

.featured-row .fw-bold {
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
}

.veri-deger {
    font-weight: 700;
    color: #0a77bc;
    font-size: 0.9rem;
}

.veri-satir:last-child {
    margin-bottom: 0;
}

/* Status Indicators */
.status-active {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #28a745;
}

.status-inactive {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: #9ca3af;
}

    .status-active i, .status-inactive i {
        margin-right: 4px;
        font-size: 12px;
    }

.stock-badge, .oem-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
}

.stock-badge {
    color: #28a745;
    border-left: 3px solid #28a745;
}

.oem-badge {
    color: #212529;
    border-left: 3px solid var(--primary-color);
}

/* Year Selection */
.compact-year-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.compact-year-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    padding: 8px 5px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
}

    .compact-year-btn:hover {
        border-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .compact-year-btn.active {
        border-color: var(--primary-color);
        background-color: var(--primary-color);
    }

    .compact-year-btn .year {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .compact-year-btn .price {
        font-size: 13px;
        font-weight: 500;
        color: #666;
    }

    .compact-year-btn.active .year, .compact-year-btn.active .price {
        color: white;
    }

/* Tabs */
.tab-section {
    margin-top: 30px;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}

    .nav-tabs .nav-link.active {
        color: var(--primary-color);
        background-color: transparent;
        border-bottom: 3px solid var(--primary-color);
    }

.tab-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

    .specs-table tr {
        transition: background-color 0.2s ease;
    }

        .specs-table tr:hover {
            background-color: rgba(10, 119, 188, 0.05);
        }

    .specs-table td {
        padding: 12px 10px;
        border-bottom: 1px solid #e9ecef;
    }

    .specs-table tr:last-child td {
        border-bottom: none;
    }

    .specs-table td:first-child {
        color: #6c757d;
        width: 40%;
        font-weight: 500;
    }

    .specs-table td:last-child {
        color: #212529;
        font-weight: 500;
    }

/* Spec Badges */
.spec-badges {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    gap: 5px;
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 12px;
    color: #555;
    margin-right: 5px;
}

    .spec-badge i {
        margin-right: 5px;
        font-size: 12px;
    }

.spec-fuel {
    background-color: #e3f2fd;
    color: #1976d2;
}

.spec-grip {
    background-color: #e8f5e9;
    color: #388e3c;
}

.spec-noise {
    background-color: #e0f2f1;
    color: #00796b;
}

.spec-oem {
    background-color: #e0f2f1;
    color: #26a69a;
}

/* OEM Logos */
.oem-logos {
    display: inline-flex;
    align-items: center;
    margin-left: 2px;
}

.oem-logo {
    height: 20px;
    width: auto;
    margin-right: 3px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

    .oem-logo:hover {
        transform: scale(2);
        z-index: 10;
    }

/* Season Icon */
.season-icon {
    width: 24px;
    height: 24px;
}

/* Search Stats */
.search-stats {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 18px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 119, 188, 0.1);
    border-left: 4px solid #0a77bc;
}

    .search-stats h5 {
        margin: 0;
        font-weight: 700;
        color: #0a0e17;
        font-size: 1.1rem;
    }

    .search-stats p {
        color: #6c757d;
        margin: 5px 0 0;
        font-size: 14px;
        font-weight: 500;
    }

/* Sort Select */
#sortOrder {
    border-radius: 8px;
    border: 2px solid rgba(10, 119, 188, 0.15);
    padding: 10px 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 14px;
    min-width: 200px;
    font-weight: 500;
    color: #0a0e17;
    transition: all 0.3s ease;
}

#sortOrder:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 119, 188, 0.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .pagination a {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #555;
        margin: 0 5px;
        border-radius: 8px;
        background-color: white;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

        .pagination a:hover {
            background-color: #f5f5f5;
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .pagination a.active {
            background-color: var(--primary-color);
            color: white;
        }

/* No Products */
.no-products {
    text-align: center;
    padding: 50px 30px;
    background-color: white;
    border-radius: var(--border-radius);
    margin-top: 20px;
    box-shadow: var(--box-shadow);
}

    .no-products h4 {
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .no-products p {
        color: #777;
        font-size: 16px;
        margin-bottom: 20px;
    }

/* Active Filters */
.active-filters-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    border: 1px solid rgba(10, 119, 188, 0.12);
    box-shadow: 0 2px 10px rgba(10, 119, 188, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.active-filters-title {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.all-filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.filter-category {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.08) 0%, rgba(52, 144, 255, 0.08) 100%);
    border-radius: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(10, 119, 188, 0.15);
    box-shadow: 0 2px 6px rgba(10, 119, 188, 0.08);
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
}

    .filter-category:hover {
        background: linear-gradient(135deg, rgba(10, 119, 188, 0.12) 0%, rgba(52, 144, 255, 0.12) 100%);
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(10, 119, 188, 0.12);
        border-color: rgba(10, 119, 188, 0.25);
    }

.filter-category-icon {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a77bc;
}

.filter-category-name {
    font-size: 12px;
    font-weight: 600;
    color: #0a77bc;
    margin-right: 6px;
    letter-spacing: 0.2px;
}

.filter-values-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: center;
}

.filter-value-item {
    display: inline-flex;
    align-items: center;
    background-color: rgba(10, 119, 188, 0.15);
    border-radius: 4px;
    padding: 3px 7px;
    margin-right: 3px;
    transition: all 0.2s;
    border: 1px solid rgba(10, 119, 188, 0.2);
}

    .filter-value-item:hover {
        background-color: rgba(10, 119, 188, 0.25);
        border-color: rgba(10, 119, 188, 0.4);
        transform: translateY(-1px);
    }

.filter-value-text {
    font-size: 11px;
    color: #0a77bc;
    margin-right: 3px;
    font-weight: 500;
}

.filter-value-remove {
    width: 14px;
    height: 14px;
    background: rgba(10, 119, 188, 0.15);
    border: none;
    color: #0a77bc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    font-weight: 600;
}

    .filter-value-remove:hover {
        background-color: #0a77bc;
        color: white;
        transform: scale(1.1);
    }

.active-filters-container .btn-clear-all {
    color: #dc3545;
    font-size: 18px;
    padding: 3px;
    border-radius: 50%;
    border: none;
    background: transparent;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

    .active-filters-container .btn-clear-all:hover {
        background: rgba(220, 53, 69, 0.1);
        transform: scale(1.1);
        color: #c82333;
    }

/* Modern Toast Styles */
.modern-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 350px;
    max-width: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

    .modern-toast.show {
        transform: translateX(0);
    }

    .modern-toast.success {
        border-left: 4px solid #28a745;
    }

    .modern-toast.warning {
        border-left: 4px solid #ffc107;
    }

    .modern-toast.error {
        border-left: 4px solid #dc3545;
    }

.toast-header {
    padding: 15px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.modern-toast.success .toast-icon {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.modern-toast.warning .toast-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.modern-toast.error .toast-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}

    .toast-close:hover {
        background: rgba(108, 117, 125, 0.1);
        color: #495057;
    }

.toast-body {
    padding: 0 20px 15px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
}

.toast-actions {
    padding: 0 20px 15px;
    display: flex;
    gap: 10px;
}

    .toast-actions .btn {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 6px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
        border: none;
        cursor: pointer;
    }

    .toast-actions .btn-primary {
        background: var(--primary-color);
        color: white;
    }

        .toast-actions .btn-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-1px);
        }

    .toast-actions .btn-outline {
        background: transparent;
        color: #6c757d;
        border: 1px solid #dee2e6;
    }

        .toast-actions .btn-outline:hover {
            background: #f8f9fa;
            color: #495057;
        }

/* Loader Styles */
.list-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.list-loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--primary-color);
    border-bottom-color: transparent;
    border-radius: 50%;
    animation: premium-spin 1s linear infinite;
}
/* Stok durumu göstergeleri */
.store-item.out-of-stock {
    opacity: 0.6;
    background-color: #f8f9fa;
    border: 1px dashed #dc3545;
}

.store-item.low-stock {
    border-left: 4px solid #ffc107;
    background-color: #fff9e6;
}

.store-item.available {
    border-left: 4px solid #28a745;
}

.store-stock-info {
    font-size: 0.85em;
    margin-bottom: 4px;
}

.stock-message {
    font-weight: 500;
}

.store-item.out-of-stock .store-radio input {
    cursor: not-allowed;
}

.store-item.out-of-stock .store-name {
    color: #6c757d;
}

/* Stok badge'leri */
.stock-badge {
    font-size: 0.75em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

    .stock-badge.available {
        background-color: #d4edda;
        color: #155724;
    }

    .stock-badge.low-stock {
        background-color: #fff3cd;
        color: #856404;
    }

    .stock-badge.out-of-stock {
        background-color: #f8d7da;
        color: #721c24;
    }
/* Animations */
@keyframes premium-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Add rotation animation for bootstrap icons */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Sidebar gizle, mobilde offcanvas olarak göster */
    aside .filter-sidebar {
        display: none;
    }

    /* Offcanvas içindeki filtreler görünsün */
    .offcanvas-body .filter-sidebar,
    .offcanvas-body #mobileFilters {
        display: block !important;
    }

    .offcanvas-body #mobileFilters h5 {
        display: none; /* Başlık zaten offcanvas header'da var */
    }

    /* Mobil filtre butonu */
    .d-lg-none .btn-primary {
        font-size: 13px !important;
        padding: 8px 16px !important;
    }

    /* Product card mobil düzeni - daha kompakt */
    .product-card {
        border-radius: 8px !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }

    .product-card .card-body {
        flex-direction: column !important;
        padding: 10px !important;
        gap: 10px;
    }

    .product-card .d-flex {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Resim düzeni - daha küçük */
    .image-wrapper {
        width: 100% !important;
        max-width: 140px !important;
        margin: 0 auto 8px auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-wrapper .tire-container {
        height: 80px !important;
        width: 80px !important;
        margin: 0 auto;
    }

    .image-wrapper .tire-img {
        max-height: 80px !important;
        max-width: 80px !important;
    }

    .image-wrapper .brand-logo-container {
        margin-top: 6px;
        text-align: center;
    }

    .image-wrapper .brand-logo {
        max-height: 20px !important;
        max-width: 60px !important;
    }

    .image-wrapper .brand-text {
        font-size: 11px !important;
    }

    /* Ürün bilgisi - merkeze hizalı */
    .product-info {
        width: 100% !important;
        margin-bottom: 8px !important;
        text-align: center !important;
    }

    .product-info h5 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
        line-height: 1.3;
    }

    .product-info .stock-no {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }

    .product-info .d-flex {
        justify-content: center !important;
    }

    .product-info .season-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .product-info .fw-medium {
        font-size: 11px !important;
    }

    /* Spec badges mobilde tek satır */
    .spec-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 3px !important;
        justify-content: center !important;
    }

    .spec-badge {
        font-size: 9px !important;
        padding: 2px 5px !important;
    }

    .spec-badge i {
        font-size: 9px !important;
    }

    /* Fiyat ve buton kısmı */
    .product-card .text-end {
        width: 100% !important;
        text-align: center !important;
        min-width: auto !important;
    }

    .product-price {
        font-size: 16px !important;
        margin-bottom: 8px !important;
        font-weight: 700 !important;
    }

    /* Butonları mobilde yan yana ama daha küçük */
    .product-card .d-flex.gap-2 {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .btn-add-cart,
    .btn-detail {
        font-size: 10px !important;
        padding: 6px 10px !important;
        flex: 1;
        max-width: 120px;
    }

    .btn-add-cart i,
    .btn-detail i {
        font-size: 11px !important;
    }

    /* Search stats */
    .search-stats {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 12px !important;
    }

    .search-stats h5 {
        font-size: 16px !important;
    }

    .search-stats .form-select {
        width: 100% !important;
    }

    /* Pagination mobil */
    .pagination {
        gap: 4px !important;
        padding: 10px 5px !important;
    }

    .pagination a {
        padding: 6px 10px !important;
        font-size: 13px !important;
    }

    /* Container padding */
    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .price-section {
        text-align: center;
    }

    .quantity-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quantity-controls {
        margin: 0 auto;
    }

    .modern-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }

    .compact-year-container {
        justify-content: center;
    }

    .active-filters-container {
        padding: 10px 12px;
        margin-left: 5px;
        margin-right: 5px;
        gap: 8px;
    }

    /* Mobilde Tüm Filtreleri Temizle butonu küçült */
    .active-filters-container .btn-clear-all {
        font-size: 18px !important;
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0;
    }

    .filter-category {
        font-size: 11px;
        padding: 5px 8px;
    }

    .filter-value-item {
        padding: 1px 3px;
    }

    .filter-value-text {
        font-size: 10px;
    }

    /* Ürün kartı mobil optimizasyonu */
    .product-card {
        margin-bottom: 10px !important;
    }

    .product-card .card-body {
        padding: 10px !important;
    }

    /* Mobilde badge'leri küçült */
    .product-card .badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
    }

    /* Stok durumu mobilde küçük */
    .stock-available,
    .stock-low,
    .stock-out {
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
}

/* Tablet view (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .filter-sidebar {
        margin-bottom: 20px;
    }

    .product-card .card-body {
        padding: 15px;
    }

    .btn-add-cart,
    .btn-detail {
        font-size: 12px;
        padding: 9px 12px;
    }
}

/* ==========================================
   DETAIL PAGE SPECIFIC STYLES
   ========================================== */

/* Blue Button for Detail Page */
.btn-blue {
    background: linear-gradient(135deg, #0a77bc 0%, #3490ff 100%);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-blue::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 ease;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #3490ff 0%, #0a77bc 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(10, 119, 188, 0.4);
    color: white;
}

.btn-blue:hover::before {
    left: 100%;
}

.btn-blue:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.3);
}

/* Delivery Info Styles */
.delivery-info {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid rgba(10, 119, 188, 0.1);
}

.delivery-info .d-flex {
    padding: 18px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 119, 188, 0.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.delivery-info .d-flex:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.15);
    border-color: rgba(10, 119, 188, 0.2);
}

.delivery-info i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.delivery-info .d-flex:hover i {
    transform: scale(1.1) rotate(5deg);
}

.delivery-info h6 {
    color: #0a0e17;
    font-weight: 700;
    margin-bottom: 6px;
}

.delivery-info p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Detail Box Enhancement */
.detail-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 28px;
    border: 2px solid rgba(10, 119, 188, 0.08);
    transition: all 0.3s ease;
}

.detail-box:hover {
    box-shadow: 0 12px 35px rgba(10, 119, 188, 0.15);
    border-color: rgba(10, 119, 188, 0.15);
}

/* Technical Info Card Enhancement */
.lastik-bilgi-karti {
    transition: all 0.3s ease;
}

.lastik-bilgi-karti:hover {
    box-shadow: 0 8px 24px rgba(10, 119, 188, 0.12);
    transform: translateY(-3px);
}

.lastik-bilgi-karti .baslik {
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.05) 0%, rgba(52, 144, 255, 0.05) 100%);
    border-bottom: 2px solid rgba(10, 119, 188, 0.1) !important;
}

/* Store Item Enhancement */
.store-item {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-item:hover {
    border-color: rgba(10, 119, 188, 0.3);
    box-shadow: 0 6px 18px rgba(10, 119, 188, 0.12);
}

.store-item.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.08) 0%, rgba(52, 144, 255, 0.05) 100%);
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.15);
}

/* Image Gallery Enhancement */
.image-gallery {
    position: relative;
}

.thumb-image {
    border-radius: 10px;
    border: 2px solid rgba(10, 119, 188, 0.15);
    transition: all 0.3s ease;
}

.thumb-image:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(10, 119, 188, 0.2);
}

.thumb-image.active-thumb {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(10, 119, 188, 0.25);
}

/* Price Section Enhancement */
.price-section {
    background: linear-gradient(135deg, rgba(10, 119, 188, 0.05) 0%, rgba(52, 144, 255, 0.03) 100%);
    border-left-width: 5px !important;
    box-shadow: 0 4px 15px rgba(10, 119, 188, 0.12);
}

/* Store Stock Info */
.store-stock-info {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.store-stock-info .stock-message {
    font-size: 12px;
    font-weight: 500;
}

/* Override site.css btn-orange with blue theme */
.btn-orange {
    background: linear-gradient(135deg, #0a77bc 0%, #3490ff 100%) !important;
    color: white !important;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(10, 119, 188, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-orange:hover {
    background: linear-gradient(135deg, #3490ff 0%, #0a77bc 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(10, 119, 188, 0.4);
    color: white !important;
}
