.accessory-products-container {
    margin-top: 3rem;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.accessory-products-title {
    /* margin-bottom: 2rem !important; */
}

/* Accessory Products Grid */
.accessory-products-grid {
    padding: 10px 0;
}

.accessory-products-grid .accessory-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.accessory-products-grid .block-product {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Force 2 columns on all devices */
.accessory-products-grid .accessory-product-item {
    width: 50% !important;
    flex: 0 0 46% !important;
}

/* Force flex container for proper grid layout */
#accessory-products-section .bundle-offer-details-products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    overflow-x: visible !important;
}

/* Accessory Product Checkbox - Floats on image */
.accessory-checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessory-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color, #000);
    position: relative;
    z-index: 2;
}

.accessory-checkbox .checkmark {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.2s ease;
}

.accessory-checkbox:hover .checkmark {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* RTL support */
.rtl .accessory-checkbox {
    right: auto;
    left: 10px;
}