/* ===== Accessories & Spare Parts Section ===== */
.accessories-spare-parts-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.accessories-spare-parts-section .section-title h2 {
    font-size: 48px;
}

.accessories-spare-parts-section .subtitle {
    color: #666;
    margin-top: 8px;
}

/* Tab Navigation */
.accessories-tab-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    gap: 0;
    border-bottom: 1px solid #ddd;
    justify-content: center;
}

.accessories-tab-item {
    padding: 10px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.accessories-tab-item:hover {
    color: #1a3a6b;
}

.accessories-tab-item.active {
    color: #1a1a1a;
    border-bottom: 3px solid #f0a500;
}

/* Tab panels */
.accessories-tab-panel {
    display: none;
}

.accessories-tab-panel.active {
    display: block;
}

/* Product grid */
.accessories-product-grid {
    margin: 0 -10px;
}

.accessories-product-grid > div {
    padding: 10px;
}

/* Product card */
.accessory-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.accessory-product-card:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    border-color: #f0a500;
}

.accessory-product-image {
    text-align: center;
    padding: 20px;
    background: #fff;
}

.accessory-product-image img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.accessory-product-info {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.accessory-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    flex: 1;
}

.accessory-product-name a {
    color: inherit;
    text-decoration: none;
}

.accessory-product-name a:hover {
    color: #f0a500;
}

.accessory-product-price {
    font-size: 0.88rem;
    color: #333;
    text-align: center;
    margin-bottom: 12px;
}

.accessory-product-price .excl-tax {
    font-size: 0.78rem;
    color: #777;
}

.btn-accessory-view {
    display: block;
    width: 100%;
    background: #f0a500;
    color: #fff;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    border-radius: 4px;
    padding: 9px 0;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
}

.btn-accessory-view:hover {
    background: #d4900a;
    color: #fff;
    text-decoration: none;
}

/* Spinner */
.accessory-spinner {
    font-size: 1.8rem;
    color: #f0a500;
}
