
/* ========================================
   TOOLBAR — SELECT + SEARCH UNIFIED BAR
   ======================================== */
.cat-toolbar {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1.5px solid #e8ecf4;
}

.cat-toolbar-select {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1.5px solid #e8ecf4;
    min-width: 240px;
    flex-shrink: 0;
}

.cat-toolbar-icon {
    position: absolute;
    left: 18px;
    color: var(--primary-green);
    font-size: .9rem;
    pointer-events: none;
    z-index: 1;
}

.cat-toolbar-select select {
    width: 100%;
    padding: 16px 18px 16px 44px;
    border: none;
    background: transparent;
    font-size: .92rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231B3C87' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.cat-toolbar-select select:focus { outline: none; background-color: rgba(27,60,135,.03); }

.cat-toolbar-search {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.cat-search-icon {
    position: absolute;
    left: 18px;
    color: #aab0c0;
    font-size: .9rem;
    pointer-events: none;
}

.cat-toolbar-search input {
    width: 100%;
    padding: 16px 48px 16px 44px;
    border: none;
    background: transparent;
    font-size: .92rem;
    color: var(--text-dark);
}

.cat-toolbar-search input::placeholder { color: #b0b8c8; font-weight: 400; }
.cat-toolbar-search input:focus { outline: none; background: rgba(27,60,135,.02); }

.cat-search-clear {
    position: absolute;
    right: 14px;
    width: 30px;
    height: 30px;
    border: none;
    background: #eef0f5;
    border-radius: 50%;
    color: #7a8299;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: all .2s;
}
.cat-search-clear:hover { background: #dde0e8; color: var(--text-dark); }

/* Results bar */
.cat-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.cat-results-bar #results-count {
    font-size: .88rem;
    color: var(--text-light);
}
.cat-results-bar #results-count strong { color: var(--text-dark); }
.cat-results-bar #results-count em { font-style: normal; color: var(--primary-green); font-weight: 600; }

.cat-sort select {
    padding: 8px 32px 8px 12px;
    border: 1.5px solid #e2e6ef;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-dark);
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.cat-sort select:focus { outline: none; border-color: var(--primary-green); }

/* ========================================
   FILTRE CATÉGORIES DESKTOP — CHIPS
   ======================================== */
.catalog-filters { 
    display: flex; 
    gap: 8px; 
    overflow-x: auto; 
    padding: 4px 0 14px; 
    margin-bottom: 4px; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) transparent;
}

.catalog-filters::-webkit-scrollbar { height: 3px; }
.catalog-filters::-webkit-scrollbar-thumb { background: var(--primary-green); border-radius: 10px; }

.filter-btn { 
    padding: 8px 18px; 
    background: #fff; 
    border: 1.5px solid #e2e6ef; 
    border-radius: 50px; 
    font-size: .82rem; 
    font-weight: 600; 
    color: #5a6170;
    cursor: pointer; 
    white-space: nowrap; 
    flex-shrink: 0; 
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn i { font-size: .78rem; opacity: .55; }
.filter-btn:hover { border-color: var(--primary-green); color: var(--primary-green); background: rgba(27,60,135,.03); }
.filter-btn.active { background: var(--primary-green); color: #fff; border-color: var(--primary-green); box-shadow: 0 3px 12px rgba(27,60,135,.2); }
.filter-btn.active i { opacity: 1; }

.product-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: all 0.3s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.product-image-container { position: relative; height: 200px; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-image { transform: scale(1.05); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.product-badge.populaire { background: var(--primary-green); color: white; }
.product-badge.promo { background: #ef4444; color: white; }
.product-badge.nouveau { background: var(--primary-orange); color: white; }
.product-wishlist { position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.15); transition: all 0.3s ease; border: none; z-index: 5; }
.product-wishlist:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.product-wishlist i { font-size: 1.1rem; color: #9ca3af; transition: all 0.3s ease; }
.product-wishlist:hover i { color: #ef4444; }
.product-wishlist.active { background: #ef4444; animation: heartPulse 0.4s ease; }
.product-wishlist.active i { color: white; }
@keyframes heartPulse { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-category { color: var(--text-light); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.product-grossiste { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: linear-gradient(135deg, rgba(30,127,66,0.08) 0%, rgba(30,127,66,0.03) 100%); border-radius: 10px; margin-bottom: 15px; border-left: 3px solid var(--primary-green); }
.product-grossiste-icon { width: 32px; height: 32px; background: var(--primary-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; flex-shrink: 0; }
.product-grossiste-info { flex: 1; min-width: 0; }
.product-grossiste-name { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-grossiste-location { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; }

.product-prices { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.product-price { display: flex; justify-content: space-between; font-size: 0.85rem; }
.product-price .price-label { color: var(--text-light); }
.product-price .price-value { font-weight: 600; }
.product-price.gros .price-value { color: var(--primary-green); }
.product-price.demi-gros .price-value { color: var(--primary-orange); }

.product-actions { display: flex; gap: 10px; margin-top: auto; }
.product-actions .btn { flex: 1; padding: 10px; font-size: 0.9rem; }
.product-actions .btn-view { flex: 0; width: 44px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.stock-indicator { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; padding: 4px 10px; border-radius: 20px; margin-bottom: 10px; }
.stock-indicator.in-stock { background: rgba(30,127,66,0.1); color: var(--primary-green); }
.stock-indicator.low-stock { background: rgba(247,126,0,0.1); color: var(--primary-orange); }
.stock-indicator.out-of-stock { background: rgba(239,68,68,0.1); color: #ef4444; }

@media (max-width: 1200px) { 
    .product-grid { grid-template-columns: repeat(3, 1fr); } 
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .catalog-filters { display: flex !important; flex-wrap: nowrap; padding: 4px 0 12px; gap: 8px; }
    .filter-btn { padding: 7px 14px; font-size: .78rem; }
    .cat-toolbar { flex-direction: column; }
    .cat-toolbar-select { border-right: none; border-bottom: 1.5px solid #e8ecf4; min-width: auto; }
    .cat-toolbar-select select { padding: 14px 18px 14px 44px; }
    .cat-toolbar-search input { padding: 14px 48px 14px 44px; }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-image-container { height: 150px; }
    .product-info { padding: 12px; }
    .product-name { font-size: 0.9rem; margin-bottom: 6px; -webkit-line-clamp: 1; }
    .product-category { font-size: .72rem; margin-bottom: 5px; }
    .product-prices { gap: 3px; margin-bottom: 8px; }
    .product-price { font-size: 0.78rem; }
    .product-grossiste { padding: 7px 10px; margin-bottom: 8px; }
    .product-grossiste-icon { width: 26px; height: 26px; font-size: 0.65rem; }
    .product-grossiste-name { font-size: 0.78rem; }
    .product-grossiste-location { font-size: 0.68rem; }
    .product-actions .btn { padding: 8px; font-size: 0.82rem; }
    .product-actions .btn-view { width: 38px; }
    .product-badge { padding: 4px 8px; font-size: .65rem; top: 8px; left: 8px; }
    .product-wishlist { width: 34px; height: 34px; top: 8px; right: 8px; }
    .product-wishlist i { font-size: .9rem; }
    .catalog-filters { display: none !important; }
    .cat-results-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 576px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-image-container { height: 130px; }
    .product-info { padding: 10px; }
    .product-name { font-size: 0.82rem; margin-bottom: 5px; }
    .product-category { font-size: .68rem; margin-bottom: 4px; }
    .product-prices { gap: 2px; margin-bottom: 6px; }
    .product-price { font-size: 0.72rem; }
    .product-price .price-label { display: none; }
    .product-grossiste { display: none; }
    .stock-indicator { font-size: .65rem; padding: 2px 7px; margin-bottom: 6px; }
    .product-actions { gap: 6px; }
    .product-actions .btn { padding: 7px 6px; font-size: .75rem; }
    .product-actions .btn-view { width: 34px; min-width: 34px; }
    .cat-toolbar-select select { font-size: .85rem; padding: 12px 16px 12px 40px; }
    .cat-toolbar-search input { font-size: .85rem; padding: 12px 42px 12px 40px; }
    .cat-toolbar-icon { left: 14px; font-size: .82rem; }
    .cat-search-icon { left: 14px; font-size: .82rem; }
}


     /* Styles pour les boutons radio de type de prix */
 .price-type-label {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 15px 10px;
     border: 2px solid var(--gray-medium);
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.3s ease;
     background: white;
     position: relative;
 }

.price-type-label:hover {
    border-color: var(--primary-green);
    background: rgba(27, 60, 135, 0.05);
}

.price-type-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.price-type-label input[type="radio"]:checked + span {
    color: var(--primary-green) !important;
}

.price-type-label:has(input:checked) {
    border-color: var(--primary-green);
    background: rgba(27, 60, 135, 0.08);
    box-shadow: 0 0 0 3px rgba(27, 60, 135, 0.15);
}

.price-type-label:has(input:checked)::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.price-type-label span:first-of-type {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.price-type-label span:last-of-type {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Boutons de quantité */
.quantity-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gray-medium);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(27, 60, 135, 0.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

/* Modal de confirmation d'ajout au panier */
.cart-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.cart-success-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cart-success-modal {
    background: white;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 480px;
    padding: 30px 25px;
    transform: translateY(100%);
    animation: slideUp 0.4s ease forwards;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cart-success-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2d8f4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease 0.2s both;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.cart-success-icon i {
    font-size: 2rem;
    color: white;
}

.cart-success-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.cart-success-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 20px;
}

.cart-success-product img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.cart-success-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-success-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cart-success-summary {
    background: linear-gradient(135deg, rgba(27, 60, 135, 0.08) 0%, rgba(27, 60, 135, 0.03) 100%);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px dashed var(--gray-medium);
    margin-top: 8px;
    padding-top: 12px;
}

.summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-row.total .summary-value {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.cart-success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-view-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #2d8f4e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 60, 135, 0.3);
}

.btn-view-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 60, 135, 0.4);
    color: white;
}

.btn-view-cart i {
    font-size: 1.1rem;
}

.btn-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(27, 60, 135, 0.05);
}

/* Responsive pour desktop */
@media (min-width: 769px) {
    .cart-success-overlay {
        align-items: center;
    }

    .cart-success-modal {
        border-radius: 24px;
        max-width: 420px;
    }

    .cart-success-actions {
        flex-direction: row;
    }

    .btn-view-cart, .btn-continue-shopping {
        flex: 1;
    }
}

 .favorite-toast {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%) translateY(100px);
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
     display: flex;
     align-items: center;
     gap: 15px;
     padding: 15px 20px;
     z-index: 10001;
     opacity: 0;
     transition: all 0.3s ease;
     max-width: 90%;
     width: 380px;
 }

.favorite-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.favorite-toast.added .favorite-toast-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.favorite-toast.removed .favorite-toast-icon {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
}

.favorite-toast.error .favorite-toast-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.favorite-toast-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.favorite-toast-icon i {
    font-size: 1.2rem;
    color: white;
}

.favorite-toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.favorite-toast-content strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.favorite-toast-content span {
    font-size: 0.85rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-toast-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.favorite-toast-close:hover {
    background: var(--gray-medium);
    color: var(--text-dark);
}

/* Modal des favoris */
.favorites-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.favorites-modal-overlay.active {
    display: flex;
}

.favorites-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.favorites-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.2rem;
}

.favorites-modal-header h3 i {
    color: #ef4444;
}

.favorites-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-light);
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.favorites-modal-close:hover {
    background: var(--gray-medium);
    color: var(--text-dark);
}

.favorites-modal-body {
    padding: 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.favorites-empty {
    text-align: center;
    padding: 40px 20px;
}

.favorites-empty i {
    font-size: 3rem;
    color: #fecaca;
    margin-bottom: 15px;
}

.favorites-empty h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.favorites-empty p {
    color: var(--text-light);
    margin: 0;
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.favorite-item:hover {
    background: #fef2f2;
}

.favorite-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.favorite-item-info {
    flex: 1;
    min-width: 0;
}

.favorite-item-info h5 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorite-item-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.favorite-item-info .price {
    color: var(--primary-green);
    font-weight: 600;
}

.favorite-item-actions {
    display: flex;
    gap: 8px;
}

.favorite-item-actions button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-add-fav {
    background: var(--primary-green);
    color: white;
}

.btn-add-fav:hover {
    background: #2d8f4e;
}

.btn-remove-fav {
    background: #fecaca;
    color: #ef4444;
}

.btn-remove-fav:hover {
    background: #ef4444;
    color: white;
}

.favorites-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray-medium);
    display: flex;
    gap: 10px;
}

.favorites-modal-footer .btn {
    flex: 1;
}

@media (max-width: 480px) {
    .favorite-toast {
        bottom: 20px;
        width: calc(100% - 40px);
        padding: 12px 15px;
    }

    .favorites-modal {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
    }
}
