/* Variables CSS */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --light-bg: #ecf0f1;
    --dark-bg: #34495e;
    --text-color: #2c3e50;
    --border-color: #bdc3c7;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --sidebar-width: 250px;
    --header-height: 60px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
}

/* Page de connexion */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #fff;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-box {
    background: #1A1A1A;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    max-width: 200px;
    height: auto;
}

.login-header h1 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 28px;
}

.login-header p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Formulaires */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-text {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #7f8c8d;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-block {
    width: 100%;
}

.btn-logout {
    background-color: var(--danger-color);
    color: white;
    padding: 8px 16px;
    font-size: 13px;
}

.btn-logout:hover {
    background-color: #c0392b;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-edit {
    background-color: var(--secondary-color);
    color: white;
}

.btn-edit:hover {
    background-color: #2980b9;
}

.btn-delete {
    background-color: var(--danger-color);
    color: white;
}

.btn-delete:hover {
    background-color: #c0392b;
}

/* Alertes */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Header admin */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: #1A1A1A;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 10px 15px;
}

.admin-logo {
    height: 40px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-size: 14px;
    color: white;
}

/* Sidebar */
.admin-sidebar {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background-color: var(--dark-bg);
    padding: 20px 0;
    overflow-y: auto;
    transition: transform 0.3s;
}

.sidebar-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #ecf0f1;
    text-decoration: none;
    transition: background-color 0.3s;
}

.sidebar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar-nav a.active {
    background-color: var(--secondary-color);
}

.sidebar-nav .icon {
    font-size: 20px;
    margin-right: 15px;
}

.sidebar-logout {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.sidebar-logout a {
    color: #e74c3c;
}

.sidebar-logout a:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

/* Conteneur admin */
.admin-container {
    display: flex;
    margin-top: var(--header-height);
}

.admin-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 30px;
    min-height: calc(100vh - var(--header-height));
}

/* En-tête de page */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-header h1 {
    font-size: 28px;
    color: var(--primary-color);
}

/* Dashboard */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 40px;
}

.stat-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-info p {
    color: #7f8c8d;
    font-size: 14px;
}

.quick-actions {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.quick-actions h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Tables */
.table-container {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

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

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.data-table tbody tr:hover {
    background-color: #f8f9fa;
}

.data-table .actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.no-image {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #7f8c8d;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-admin {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge-user {
    background-color: #e3f2fd;
    color: #1565c0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 22px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #7f8c8d;
    line-height: 1;
}

.close-btn:hover {
    color: var(--text-color);
}

.modal form {
    padding: 20px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.current-image-preview {
    margin-top: 10px;
}

.current-image-preview img {
    max-width: 200px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-header {
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    .header-left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .admin-sidebar {
        transform: translateX(-100%);
        z-index: 999;
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-content {
        margin-left: 0;
        padding: 15px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .data-table {
        font-size: 13px;
    }

    .data-table th,
    .data-table td {
        padding: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .user-name {
        display: none;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 20px;
    }

    .stat-card {
        padding: 15px;
    }

    .modal-content {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

/* ==================== INTERFACE CLIENT ==================== */

/* Header client */
.client-header {
    background: #1A1A1A;
    color: white;
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--secondary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-title-client {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.header-logo {
    height: 40px;
    width: auto;
}

.client-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    position: relative;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-link.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.cart-badge {
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
}

.user-name-client {
    color: white;
    font-weight: 500;
}

.btn-logout-client {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-logout-client:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Menu hamburger */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu mobile latéral */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #0d0d0d;
    padding: 80px 20px 20px 20px;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    left: 0;
}

/* Overlay pour fermer le menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.btn-logout-mobile {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.btn-logout-mobile:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Container client */
.client-container {
    min-height: calc(100vh - 80px);
    background-color: #f5f7fa;
}

.client-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

.page-header-client {
    text-align: center;
    margin-bottom: 40px;
}

.page-header-client h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-header-client p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Liste de produits B2B */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-row {
    background: white;
    display: grid;
    grid-template-columns: 100px 2fr 1.5fr 180px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.product-row:hover {
    background-color: #f8f9fa;
}

.product-row-image {
    width: 100px;
    height: 100px;
}

.product-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #adb5bd;
}

.product-row-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-row-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.product-row-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-row-specs {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    font-size: 13px;
    align-items: center;
}

.spec-label {
    color: #7f8c8d;
    font-weight: 500;
}

.spec-value {
    color: var(--text-color);
}

.product-row-price {
    display: none;
}

.product-row-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.btn-favorite-simple {
    background: white;
    border: 1px solid #ddd;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    color: #ddd;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite-simple:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-favorite-simple.active {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

.btn-compact {
    padding: 8px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Page panier */
.cart-order-section {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.cart-order-section .btn {
    min-width: 200px;
    padding: 12px 40px;
    font-size: 16px;
}

/* Actions du panier avec contrôles de quantité */
.cart-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-form-cart {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.qty-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 32px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.qty-btn:hover {
    background-color: #2980b9;
}

.qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Enlever les flèches des inputs number */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield;
}

.btn-remove-cart {
    background: white;
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-remove-cart:hover {
    background-color: var(--danger-color);
    color: white;
}


/* État vide */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empty-state p {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Notifications Toast */
.toast-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 12px 20px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
    color: var(--danger-color);
}

/* Products sections */
.products-section {
    margin-bottom: 60px;
}

/* Products columns layout for desktop */
.products-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Mobile: revert to single column */
@media (max-width: 1024px) {
    .products-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .toast-notification {
        top: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Responsive client */
@media (max-width: 1024px) {
    .product-row {
        grid-template-columns: 80px 1fr 140px;
        gap: 15px;
    }

    .product-row-specs {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        position: relative;
    }

    .hamburger-menu {
        order: -2;
        z-index: 10;
    }

    .header-left {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        order: -1;
    }

    .header-logo {
        height: 80px;
    }

    .client-nav {
        order: 0;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    /* Masquer les titres de page sur mobile */
    .page-header-client {
        display: none;
    }

    /* Layout mobile compact pour les produits */
    .product-row {
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
        padding: 12px;
        align-items: stretch;
    }

    .product-row-image {
        width: 50px;
        height: 100%;
        grid-row: 1 / -1;
        align-self: stretch;
    }

    .product-row-image img,
    .no-image-placeholder {
        height: 100%;
        min-height: 80px;
    }

    .product-row-info {
        grid-column: 2;
        grid-row: 1;
        padding-left: 12px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .product-row-name {
        font-size: 17px;
        margin: 0;
        line-height: 1.3;
    }

    .product-row-desc {
        display: none;
    }

    .product-row-specs {
        grid-column: 2;
        grid-row: 2;
        padding-left: 12px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        padding-top: 0;
        padding-bottom: 8px;
    }

    .spec-label {
        display: none;
    }

    .spec-value {
        font-size: 12px;
        background-color: #f8f9fa;
        padding: 2px 8px;
        border-radius: 3px;
        color: #6c757d;
    }

    .product-row-price {
        display: none;
    }

    .product-row-actions {
        grid-column: 2;
        grid-row: 3;
        padding-left: 12px;
        display: flex;
        gap: 8px;
        justify-content: flex-start;
    }

    .btn-favorite-simple {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .btn-compact {
        height: 36px;
        padding: 0 16px;
        font-size: 13px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Actions panier mobile */
    .cart-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .quantity-form-cart {
        flex: 1;
    }

    .qty-btn {
        width: 32px;
        height: 34px;
    }

    .qty-input {
        height: 34px;
        width: 50px;
    }

    .btn-remove-cart {
        width: 34px;
        height: 34px;
    }

    .user-name-client {
        display: none;
    }

    /* Afficher le menu hamburger sur mobile */
    .hamburger-menu {
        display: flex;
    }

    /* Cacher le bouton déconnexion desktop sur mobile */
    .header-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header-client h1 {
        font-size: 24px;
    }

    .product-row {
        grid-template-columns: 45px 1fr;
        padding: 10px;
    }

    .product-row-image {
        width: 45px;
    }

    .product-row-name {
        font-size: 14px;
    }

    .spec-value {
        font-size: 11px;
        padding: 2px 6px;
    }

    .btn-favorite-simple {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .btn-compact {
        height: 34px;
        font-size: 12px;
        padding: 0 12px;
    }

    .cart-order-section {
        padding: 15px 10px;
    }

    .cart-order-section .btn {
        width: 100%;
        min-width: 0;
    }
}
