/**
 * DPC Cross-Sell & Upsell Styles
 * Cohérent avec le thème Flatsome - drone-parts-center.com
 */

/* === SECTION WRAPPER === */
.dpc-product-section {
    padding: 30px 0;
    margin: 20px 0;
    clear: both;
}

.dpc-section-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #11519B;
    color: #333;
    text-transform: none;
    letter-spacing: 0;
}

/* === PRODUCT GRID === */
.dpc-products-grid {
    position: relative;
}

.dpc-products-slider {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.dpc-products-grid[data-cols="1"] .dpc-products-slider { grid-template-columns: 1fr; }
.dpc-products-grid[data-cols="2"] .dpc-products-slider { grid-template-columns: repeat(2, 1fr); }
.dpc-products-grid[data-cols="3"] .dpc-products-slider { grid-template-columns: repeat(3, 1fr); }

/* === PRODUCT CARD === */
.dpc-product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dpc-product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Upsell cards: slightly larger */
.dpc-upsell-card {
    border-color: #11519B;
    border-width: 2px;
}

.dpc-upsell-card::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #11519B, #007784);
    border-radius: 3px 3px 0 0;
    margin: -15px -15px 15px -15px;
}

.dpc-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-grow: 1;
}

.dpc-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.dpc-card-image {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 4px;
}

.dpc-card-image img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.dpc-card-info {
    padding: 5px 0;
}

.dpc-card-title {
    font-size: 0.9em;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.dpc-card-price {
    display: block;
    font-size: 1em;
    font-weight: 700;
    color: #11519B;
    margin-bottom: 10px;
}

.dpc-card-price del {
    color: #999;
    font-weight: 400;
    font-size: 0.85em;
}

.dpc-card-price ins {
    text-decoration: none;
    color: #11519B;
}

/* === ADD TO CART BUTTON === */
.dpc-add-to-cart {
    display: inline-block;
    width: 100%;
    padding: 8px 16px !important;
    font-size: 0.85em !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    background-color: #11519B !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: background-color 0.2s ease !important;
    margin-top: 8px;
    text-align: center;
}

.dpc-add-to-cart:hover {
    background-color: #007784 !important;
    color: #fff !important;
}

.dpc-add-to-cart.dpc-adding {
    opacity: 0.7;
    pointer-events: none;
}

.dpc-add-to-cart.dpc-added {
    background-color: #28a745 !important;
    pointer-events: none;
}

.dpc-select-options {
    background-color: transparent !important;
    color: #11519B !important;
    border: 1px solid #11519B !important;
}

.dpc-select-options:hover {
    background-color: #11519B !important;
    color: #fff !important;
}

/* === SLIDER NAVIGATION === */
.dpc-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 1.4em;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.dpc-slider-btn:hover {
    background: #11519B;
    color: #fff;
    border-color: #11519B;
}

.dpc-slider-prev { left: -18px; }
.dpc-slider-next { right: -18px; }

/* === CART CROSS-SELL === */
.dpc-cart-cross-sell {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e8e8e8;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .dpc-products-slider {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .dpc-slider-prev { left: -10px; }
    .dpc-slider-next { right: -10px; }
}

@media (max-width: 767px) {
    .dpc-products-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .dpc-section-title {
        font-size: 1.2em;
    }
    .dpc-card-image img {
        max-height: 140px;
    }
    .dpc-card-title {
        font-size: 0.8em;
    }
    .dpc-slider-btn {
        display: none;
    }
    .dpc-product-section {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .dpc-products-slider {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }
    .dpc-product-card {
        padding: 10px;
    }
}
