/* @itZEN-CONFIG SECURITY=strict VERSIONING=timestamp LOG=enable */
/* @itZEN-FILE FILE=panier.css | PATH=/assets/sections/panier/css/panier.css | VERSION=2025-04-20-1546 | STATUS=UNIFIED_LAYOUT_OK */

#panier {
    padding: 20px;
    background-color: #f9f9f9;
}

#panier h1 {
    font-size: 1.8em;
    text-align: center;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.cart-table th,
.cart-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.cart-table th {
    background-color: #f0f0f0;
    text-align: left;
}

.link-article {
    color: #007BFF;
    text-decoration: none;
}

.link-article:hover {
    text-decoration: underline;
}

.extras-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.95rem;
    color: #333;
}

.extra-removed {
    color: red;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.qty-display {
    min-width: 24px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
}

.decrease-qty,
.increase-qty {
    width: 30px;
    height: 30px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: #eee;
}

.remove-group {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.total-cell {
    font-weight: bold;
}

.cart-total-final {
    margin-top: 30px;
    text-align: right;
    font-size: 1.2em;
    font-weight: bold;
    color: #000;
}

.empty-text {
    text-align: center;
    color: gray;
    font-size: 1.1em;
    margin-top: 30px;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
    color: #333;
    font-weight: 600;
}

/* === ZENBLOCK BURGER BUTTON MOBILE === */
@media (max-width: 768px) {
  #mobile-burger-button {
    display: block !important;
    position: fixed;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    z-index: 9999;
    background: none;
    border: none;
    color: #333;
  }

  .cart-table th, .cart-table td {
    padding: 8px;
    font-size: 0.9rem;
  }

  .cart-total-final {
    font-size: 1em;
  }

  .decrease-qty,
  .increase-qty {
    width: 26px;
    height: 26px;
    font-size: 0.9em;
  }
}
