/* ============================================
   FILE: assets/css/style.css (UI/UX Improved)
   Consolidated ALL styles - no more inline CSS
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary-color: #8B4789;
    --primary-hover: #D4AF37;
    --secondary-color: #D4AF37;
    --dark-color: #2C1A2E;
    --light-color: #F8F5F9;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --text-color: #333;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --transition: all 0.3s ease;
}

/* ---------- Base ---------- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    overflow-x: hidden;
}

html[lang="ar"] body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
}

/* KSA Riyal Font - Cairo for prices */
.price, .currency {
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    transition: var(--transition);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--dark-color); }

/* ---------- Navbar ---------- */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color)) !important;
    padding: 0.75rem 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-brand {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand img {
    height: 40px;
    border-radius: 6px;
}

html[dir="rtl"] .navbar-brand img {
    margin-left: 0;
    margin-right: 0;
}

.navbar-brand i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    transition: var(--transition);
    margin: 0 0.3rem;
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem !important;
    border-radius: var(--radius-sm);
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    background: rgba(255,255,255,0.08);
}

.nav-link .badge {
    font-size: 0.65rem;
    vertical-align: top;
    margin-left: 2px;
}

html[dir="rtl"] .nav-link .badge {
    margin-left: 0;
    margin-right: 2px;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    min-width: 160px;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--light-color);
}

.dropdown-item .flag-icon {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

html[dir="rtl"] .dropdown-item .flag-icon {
    margin-right: 0;
    margin-left: 8px;
}

/* Mobile navbar toggle */
.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark-color);
        border-radius: var(--radius-md);
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .nav-link {
        padding: 0.7rem 1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link:last-child {
        border-bottom: none;
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.store-logo {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    object-fit: cover;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 1.5rem !important;
    }
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    .store-logo {
        width: 70px;
        height: 70px;
    }
}

/* ---------- Product Cards ---------- */
.product-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
}

.product-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
    background-color: #f8f9fa;
}

.out-of-stock-overlay {
    opacity: 0.5;
}

.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.92);
    color: white;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: var(--radius-sm);
    z-index: 5;
    white-space: nowrap;
}

/* Favorite & Share buttons on product cards */
.favorite-btn, .share-btn {
    position: absolute;
    top: 10px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    color: #666;
    font-size: 0.9rem;
}

.favorite-btn { right: 10px; }
.share-btn { right: 50px; }

html[dir="rtl"] .favorite-btn { right: auto; left: 10px; }
html[dir="rtl"] .share-btn { right: auto; left: 50px; }

.favorite-btn:hover, .share-btn:hover {
    transform: scale(1.12);
}

.favorite-btn.active {
    color: var(--danger-color);
}

.favorite-btn:hover {
    color: var(--danger-color);
}

.share-btn:hover {
    color: var(--primary-color);
}

/* Favorite button on favorites page */
.favorite-btn-page {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--danger-color);
}

html[dir="rtl"] .favorite-btn-page {
    right: auto;
    left: 10px;
}

.favorite-btn-page:hover {
    transform: scale(1.1);
}

/* Discount badge on cards */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

html[dir="rtl"] .discount-badge {
    left: auto;
    right: 10px;
}

/* Product detail page buttons */
.product-image-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.product-detail-buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

html[dir="rtl"] .product-detail-buttons {
    right: auto;
    left: 15px;
}

.share-btn-detail, .favorite-btn-detail {
    background: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn-detail:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.favorite-btn-detail:hover {
    background: var(--danger-color);
    color: white;
    transform: scale(1.1);
}

.favorite-btn-detail.active {
    background: var(--danger-color);
    color: white;
}

@media (max-width: 576px) {
    .product-image {
        height: 200px;
    }
    .share-btn-detail, .favorite-btn-detail {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ---------- Price Display ---------- */
.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.rating {
    color: var(--secondary-color);
}

/* ---------- Buttons ---------- */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Touch-friendly button sizes for mobile */
@media (max-width: 576px) {
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .btn-lg {
        padding: 0.65rem 1.2rem;
        font-size: 1rem;
    }
}

/* ---------- Cards ---------- */
.card {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.card-header {
    background: white;
    border-bottom: 2px solid var(--light-color);
    font-weight: 600;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    padding: 1rem 1.25rem;
}

/* ---------- Alerts ---------- */
.alert {
    border-radius: var(--radius-md);
    border: none;
}

/* ---------- Footer ---------- */
.main-footer {
    background: linear-gradient(135deg, #2C1A2E 0%, #1a1a2e 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 60px;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.footer-brand h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-brand p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

html[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 8px;
}

html[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 8px;
}

.footer-links i {
    color: #667eea;
    font-size: 13px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 14px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 17px;
    margin-top: 3px;
}

.contact-info a {
    color: #c0c0c0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.social-icons a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: #b0b0b0;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .main-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    .footer-brand h3 {
        font-size: 1.3rem;
    }
}

/* ---------- Share Modal ---------- */
.share-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.share-modal.active {
    display: flex;
}

.share-content {
    background: white;
    padding: 28px;
    border-radius: var(--radius-xl);
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.share-option {
    padding: 14px 10px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: #333;
}

.share-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-option i {
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
}

.share-option small {
    font-size: 0.75rem;
}

.share-option.facebook { border-color: #1877f2; color: #1877f2; }
.share-option.twitter { border-color: #1da1f2; color: #1da1f2; }
.share-option.whatsapp { border-color: #25d366; color: #25d366; }
.share-option.email { border-color: #ea4335; color: #ea4335; }
.share-option.copy { border-color: #6c757d; color: #6c757d; }

.close-share {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
    line-height: 1;
}

html[dir="rtl"] .close-share {
    right: auto;
    left: 14px;
}

.close-share:hover {
    color: #333;
}

/* ---------- Rating ---------- */
.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-summary {
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

/* ---------- Orders ---------- */
.order-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.order-card:hover {
    border-color: #667eea;
    box-shadow: var(--shadow-md);
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

.status-pending { background: var(--warning-color); color: #000; }
.status-processing { background: var(--info-color); color: #fff; }
.status-completed { background: var(--success-color); color: #fff; }
.status-cancelled { background: var(--danger-color); color: #fff; }

/* ---------- Order Success ---------- */
.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.order-summary-box {
    background: var(--light-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

/* ---------- Pagination ---------- */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 4px;
    flex-wrap: wrap;
}

.pagination-wrapper a,
.pagination-wrapper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: white;
}

.pagination-wrapper a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.pagination-wrapper .active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination-wrapper .disabled {
    color: #ccc;
    pointer-events: none;
    background: var(--light-color);
}

.pagination-wrapper .pagination-dots {
    border: none;
    background: none;
    color: var(--text-muted);
    min-width: 30px;
}

@media (max-width: 576px) {
    .pagination-wrapper a,
    .pagination-wrapper span {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ---------- Flash Messages ---------- */
.flash-container {
    animation: flashSlideIn 0.4s ease;
}

@keyframes flashSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Form Improvements ---------- */
.form-control, .form-select {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 0.9rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 71, 137, 0.12);
}

/* ---------- Cart Items ---------- */
.cart-item-row {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    gap: 15px;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

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

.cart-item-price {
    text-align: right;
    flex-shrink: 0;
}

html[dir="rtl"] .cart-item-price {
    text-align: left;
}

.quantity-input {
    width: 65px;
    text-align: center;
}

@media (max-width: 768px) {
    .cart-item-row {
        flex-wrap: wrap;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* ---------- Search Bar ---------- */
.search-bar {
    position: relative;
}

.search-bar .form-control {
    border-radius: 25px;
    padding-right: 45px;
}

html[dir="rtl"] .search-bar .form-control {
    padding-right: 0.9rem;
    padding-left: 45px;
}

.search-bar .btn {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="rtl"] .search-bar .btn {
    right: auto;
    left: 4px;
}

/* ---------- Empty State ---------- */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* ---------- Loading Spinner ---------- */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

html[dir="rtl"] .back-to-top {
    right: auto;
    left: 25px;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: flex;
}

/* ---------- Sidebar / Account Menu ---------- */
.account-sidebar .list-group-item {
    border: none;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 4px;
    transition: var(--transition);
    padding: 0.75rem 1rem;
}

.account-sidebar .list-group-item:hover {
    background: var(--light-color);
    padding-left: 1.3rem;
}

html[dir="rtl"] .account-sidebar .list-group-item:hover {
    padding-left: 1rem;
    padding-right: 1.3rem;
}

.account-sidebar .list-group-item.active {
    background: var(--primary-color);
    color: white;
}

/* ---------- RTL Specific ---------- */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .navbar-nav {
    flex-direction: row;
}

@media (max-width: 991px) {
    html[dir="rtl"] .navbar-nav {
        flex-direction: column;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .product-image {
        height: 200px;
    }

    .hero-section {
        padding: 1.5rem !important;
    }

    .card-body {
        padding: 0.8rem;
    }

    .order-card {
        padding: 15px;
    }

    .order-card .row .col-md-8,
    .order-card .row .col-md-4 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 180px;
    }

    .share-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .share-option {
        padding: 10px 6px;
    }

    .share-option i {
        font-size: 18px;
    }
}

/* ---------- Utility Classes ---------- */
.text-primary { color: var(--primary-color) !important; }
.border-primary { border-color: var(--primary-color) !important; }

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: transform 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.toast-notification.visible {
    transform: translateX(-50%) translateY(0);
}
