/* ============================================================
   OVANIE PREMIUM PRODUCT DETAIL VIEW STYLESHEET (JUMIA STYLE)
   ============================================================ */

/* Main Container Layout */
.product-container {
    max-width: 1540px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-main-grid {
    display: grid;
    grid-template-columns: minmax(360px, 460px) 1fr 340px;
    gap: 24px;
    align-items: start;
}

/* ══════════════════════════════════════
   COLUMN 1: IMAGES & GALLERY
   ══════════════════════════════════════ */
.product-images-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(3, 10, 30, 0.04);
}

.main-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.product-thumbnails::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.thumbnail-btn {
    width: 66px;
    height: 66px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #f8fafc;
    flex-shrink: 0;
    padding: 0;
    transition: all 0.2s ease;
}

.thumbnail-btn.active,
.thumbnail-btn:hover {
    border-color: #024fc8;
    box-shadow: 0 4px 10px rgba(2, 79, 200, 0.15);
}

.thumbnail-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Share Section */
.share-product-section {
    border-top: 1px solid #f1f5f9;
    margin-top: 20px;
    padding-top: 16px;
}

.share-title {
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #000000; }
.share-btn.wa { background: #25d366; }

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ══════════════════════════════════════
   COLUMN 2: PRODUCT CORE DETAILS
   ══════════════════════════════════════ */
.product-details-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(3, 10, 30, 0.04);
}

.product-category-brand {
    font-size: 12px;
    font-weight: 800;
    color: #0797df;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

.product-details-card h1 {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-merchant-reference {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-merchant-reference strong {
    color: #0f172a;
}

.merchant-badge {
    background: #eff6ff;
    color: #0255d6;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Rating block */
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.rating-stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.rating-count {
    font-size: 13px;
    font-weight: 600;
    color: #024fc8;
    cursor: pointer;
}

.rating-count:hover {
    text-decoration: underline;
}

/* Price & Promo */
.product-price-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #f1f5f9;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.current-price {
    font-size: 32px;
    font-weight: 950;
    color: #0f172a;
}

.old-price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-tag {
    background: #fee2e2;
    color: #ef4444;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
}

.urgency-alert {
    font-size: 13px;
    font-weight: 700;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.delivery-price-note {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.delivery-price-note strong {
    color: #0f172a;
}

/* Form Actions */
.buy-actions-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector label {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
}

.quantity-selector select {
    padding: 10px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
    cursor: pointer;
    background: white;
}

.btn-buy-now {
    background: linear-gradient(135deg, #0797df, #024fc8);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(2, 79, 200, 0.25);
    transition: all 0.2s ease;
    width: 100%;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #0686c6, #0243aa);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(2, 79, 200, 0.35);
}

/* Surprise Negotiate Button */
.deal-surprise-btn {
    background: linear-gradient(135deg, #024fc8, #0797df);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 800;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(2, 79, 200, 0.2);
    transition: all 0.2s ease;
}

.deal-surprise-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(2, 79, 200, 0.3);
}

/* Promotions and banners block */
.promotions-card {
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.promo-row .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #024fc8;
}

.promo-row.blue .icon-box {
    background: #f0f5ff;
    color: #024fc8;
}

.promo-row p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

.promo-row p strong {
    color: #0f172a;
}

.promo-row a {
    color: #024fc8;
    text-decoration: underline;
    font-weight: 600;
}

/* ══════════════════════════════════════
   COLUMN 3: SIDEBAR (SHIPPING & MERCHANT)
   ══════════════════════════════════════ */
.product-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(3, 10, 30, 0.03);
}

.sidebar-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Location Selector Simulator */
.location-simulator-box {
    margin-bottom: 16px;
}

.location-simulator-box label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    display: block;
    margin-bottom: 6px;
}

.location-dropdown {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    outline: none;
    background: #f8fafc;
}

/* Shipping rows */
.shipping-option-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
}

.shipping-option-row:last-of-type {
    border-bottom: none;
}

.shipping-option-row .ico {
    color: #64748b;
    margin-top: 2px;
    flex-shrink: 0;
}

.shipping-details {
    flex: 1;
}

.shipping-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.shipping-header h4 {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.shipping-header .price-tag {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}

.shipping-details p {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.shipping-details a {
    color: #024fc8;
    font-weight: 700;
    margin-left: 6px;
}

/* Vendor rating */
.vendor-info-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vendor-info-row h4 {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vendor-score-box {
    background: #ecfdf5;
    color: #059669;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    margin-top: 6px;
    display: inline-block;
    width: fit-content;
}

.vendor-info-row p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 4px 0 0 0;
}

/* ══════════════════════════════════════
   BOTTOM SECTION: FULL-WIDTH SPECIFICATIONS
   ══════════════════════════════════════ */
.product-info-bottom {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(3, 10, 30, 0.04);
}

.product-info-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 24px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.tab-btn:hover {
    color: #024fc8;
}

.tab-btn.active {
    color: #024fc8;
    border-bottom-color: #024fc8;
    font-weight: 800;
}

.tab-pane {
    display: none;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    padding: 10px 6px;
    animation: fadeInTab 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════ */
@media (max-width: 1200px) {
    .product-main-grid {
        grid-template-columns: minmax(320px, 420px) 1fr;
    }
    .product-sidebar {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }
    .product-sidebar {
        grid-template-columns: 1fr;
    }
    .product-images-card {
        padding: 15px;
    }
    .product-details-card {
        padding: 20px;
    }
    .product-info-bottom {
        padding: 20px;
    }
    .current-price {
        font-size: 26px;
    }
}

/* ══════════════════════════════════════
   SIMILAR PRODUCTS SECTION (JUMIA STYLE)
   ══════════════════════════════════════ */
.similar-products-section {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(3, 10, 30, 0.04);
    margin-top: 10px;
}

.similar-title-row {
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.similar-title-row h2 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.similar-rail {
    position: relative;
    display: flex;
    align-items: center;
}

.similar-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    padding: 6px 0;
    width: 100%;
}

.similar-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.similar-card {
    min-width: 180px;
    max-width: 180px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(3, 10, 30, 0.03);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.similar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(3, 10, 30, 0.08);
    border-color: rgba(2, 79, 200, 0.2);
}

.sim-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #0797df, #024fc8);
    color: white;
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 8px;
    font-weight: 800;
    z-index: 5;
    text-transform: uppercase;
}

.sim-img-wrap {
    height: 120px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.sim-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-card:hover .sim-img-wrap img {
    transform: scale(1.04);
}

.sim-info {
    padding: 12px;
}

.sim-title {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 6px 0;
    height: 36px;
    overflow: hidden;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sim-price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sim-current-price {
    font-size: 14px;
    font-weight: 900;
    color: #024fc8;
}

.sim-old-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.similar-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 44px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.similar-nav-btn:hover {
    background: #f8fafc;
    color: #024fc8;
    border-color: #cbd5e1;
}

.similar-nav-btn.prev {
    left: -12px;
}

.similar-nav-btn.next {
    right: -12px;
}

/* ══════════════════════════════════════
   PRODUCT DESCRIPTION — PREMIUM STYLING
   ══════════════════════════════════════ */

/* Tab buttons: add icon alignment */
.tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Intro badge */
.desc-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #024fc8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
    border: 1px solid #bfdbfe;
}

.desc-intro-badge--tech {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #059669;
    border-color: #bbf7d0;
}

/* Product title in description */
.desc-product-title {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.35;
    border-left: 4px solid #024fc8;
    padding-left: 16px;
}

/* Description body */
.desc-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.desc-paragraph {
    font-size: 15px;
    color: #334155;
    line-height: 1.85;
    margin: 0;
    padding: 0;
    position: relative;
    padding-left: 18px;
}

.desc-paragraph::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #024fc8;
    opacity: 0.4;
    flex-shrink: 0;
}

.desc-empty {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 28px;
}

/* Advantages grid */
.desc-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .desc-advantages-grid {
        grid-template-columns: 1fr;
    }
}

.desc-advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.desc-advantage-item:hover {
    box-shadow: 0 6px 20px rgba(3, 10, 30, 0.06);
    transform: translateY(-2px);
}

.desc-advantage-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.desc-advantage-item strong {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.desc-advantage-item span {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Colored icon boxes */
.adv-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-icon--blue   { background: #eff6ff; color: #024fc8; }
.adv-icon--green  { background: #f0fdf4; color: #059669; }
.adv-icon--orange { background: #fff7ed; color: #ea580c; }
.adv-icon--purple { background: #faf5ff; color: #7c3aed; }

/* Highlighted note box */
.desc-note-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, #fefce8, #fef9c3);
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 13px;
    color: #78350f;
    line-height: 1.55;
}

.desc-note-box svg {
    color: #d97706;
    flex-shrink: 0;
    margin-top: 1px;
}

.desc-note-box strong {
    color: #92400e;
}

/* ══════════════════════════════════════
   FICHE TECHNIQUE — SPEC TABLE
   ══════════════════════════════════════ */
.spec-table-wrapper {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tbody tr {
    transition: background 0.15s ease;
}

.spec-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.spec-table tbody tr:nth-child(even) {
    background: #ffffff;
}

.spec-table tbody tr:hover {
    background: #eff6ff;
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

.spec-key {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #f1f5f9;
    width: 36%;
    vertical-align: middle;
}

.spec-val {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

/* Empty state for tech tab */
.spec-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px 20px;
    text-align: center;
}

.spec-empty-state p {
    font-size: 15px;
    font-weight: 700;
    color: #94a3b8;
    margin: 0;
}

.spec-empty-state span {
    font-size: 13px;
    color: #cbd5e1;
}

/* =====================================================
   OVANIE ULTRA PREMIUM PRODUCT PAGE
   AJOUT A LA FIN DU product.css
   ===================================================== */

/* Fond général */
body {
    background: #f5f7fb;
}

/* Cartes premium */
.product-images-card,
.product-details-card,
.sidebar-box,
.product-info-bottom,
.similar-products-section {
    border: 1px solid rgba(2,79,200,.08);
    box-shadow:
        0 10px 40px rgba(2,79,200,.04),
        0 2px 8px rgba(0,0,0,.03);
    transition: all .25s ease;
}

.product-images-card:hover,
.product-details-card:hover,
.sidebar-box:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 50px rgba(2,79,200,.08),
        0 8px 20px rgba(0,0,0,.04);
}

/* Image principale */
.main-image-wrapper {
    background:
        radial-gradient(circle at center,
        #ffffff,
        #f8fafc);
}

.main-image {
    transition: transform .4s ease;
}

.main-image:hover {
    transform: scale(1.08);
}

/* Nom produit */
.product-details-card h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.3;
    color: #0f172a;
}

/* Prix principal */
.current-price {
    font-size: 42px;
    font-weight: 900;
    color: #024fc8;
    letter-spacing: -.5px;
}

.old-price {
    font-size: 18px;
}

/* Badge réduction */
.discount-tag {
    background: linear-gradient(
        135deg,
        #ef4444,
        #dc2626
    );

    color: white;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 999px;
}

/* Stock faible */
.urgency-alert {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    padding: 10px 14px;
    border-radius: 12px;
}

/* Bouton achat */
.btn-buy-now {
    height: 60px;
    font-size: 18px;
    font-weight: 900;

    background:
        linear-gradient(
            135deg,
            #024fc8,
            #0797df
        );

    box-shadow:
        0 12px 30px rgba(2,79,200,.30);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
}

/* Livraison */
.shipping-option-row {
    border-radius: 12px;
    transition: all .2s;
    padding: 14px;
}

.shipping-option-row:hover {
    background: #f8fafc;
}

/* Vendeur */
.vendor-score-box {
    font-size: 13px;
    font-weight: 900;
}

/* Onglets */
.tab-btn {
    border-radius: 12px 12px 0 0;
    transition: all .2s;
}

.tab-btn.active {
    background: #eff6ff;
}

/* Description */
.desc-product-title {
    font-size: 24px;
}

.desc-paragraph {
    font-size: 16px;
}

/* Produits similaires */
.similar-card {
    min-width: 220px;
    max-width: 220px;
}

.sim-img-wrap {
    height: 180px;
}

.sim-current-price {
    font-size: 17px;
    font-weight: 900;
}

.sim-title {
    font-size: 14px;
    font-weight: 800;
}

/* Effet premium */
.similar-card:hover {
    transform: translateY(-6px);
}

/* Navigation carousel */
.similar-nav-btn {
    width: 44px;
    height: 54px;
    border-radius: 14px;
}

/* Mobile */
@media(max-width:768px){

    .current-price{
        font-size:32px;
    }

    .product-details-card h1{
        font-size:24px;
    }

    .sim-img-wrap{
        height:140px;
    }

    .similar-card{
        min-width:180px;
        max-width:180px;
    }
}