* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B9D;
    --secondary-color: #C44569;
    --accent-color: #FEC368;
    --dark-color: #2C3A47;
    --light-color: #F8F9FA;
    --text-color: #2C3A47;
    --border-color: #E1E8ED;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   BUTTON STYLES (GLOBAL SYSTEM)
   ========================================= */

/* Primary Action (filled) */
.btn-primary,
.btn-add-cart,
.btn-checkout,
.btn-confirm-order,
.btn-add-cart-large,
.whatsapp-btn-large {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover:not(:disabled),
.btn-add-cart:hover,
.btn-checkout:hover,
.btn-confirm-order:hover,
.btn-add-cart-large:hover,
.whatsapp-btn-large:hover {
    background-color: var(--secondary-color);
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Secondary Action (outlined) */
.btn-secondary,
.btn-outlined {
    background-color: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.category-btn {
    background-color: transparent;
    /* Fondo transparente/blanco */
    border: 2px solid rgba(255, 107, 157, 0.3);
    /* Borde rosado suave */
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    /* Más redondeados */
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary:hover:not(:disabled),
.btn-outlined:hover:not(:disabled) {
    background-color: var(--dark-color);
    color: white;
}

.category-btn:hover,
.category-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Destructive Action (outlined-danger) */
.btn-danger,
.btn-outline-danger {
    background-color: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-danger:hover:not(:disabled),
.btn-outline-danger:hover:not(:disabled) {
    background-color: #dc3545;
    color: white;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 0.3rem;
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-left: auto;
}

.btn-remove:hover {
    color: #a71d2a;
    transform: scale(1.1);
}

/* Special Action (outlined-primary) */
.btn-outlined-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outlined-primary:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: white;
}

/* Icon Buttons (icon-btn) */
.icon-btn,
.close-cart,
.close-modal {
    background: none !important;
    border: none !important;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--dark-color);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    position: relative;
}

.icon-btn:hover:not(:disabled),
.close-cart:hover,
.close-modal:hover {
    color: var(--primary-color) !important;
}

/* Disabled Buttons */
button:disabled,
.btn:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-danger:disabled,
.btn-outlined-primary:disabled,
.icon-btn:disabled,
[disabled],
.disabled {
    background-color: #cccccc !important;
    color: white !important;
    border-color: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
    transform: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
header {
    background: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-bar i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* User Profile Popover */
.user-menu-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-popover {
    position: absolute;
    top: 130%;
    right: -10px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border: 1px solid var(--border-color);
    transform: translateY(10px);
}

.user-popover.active {
    opacity: 1;
    visibility: visible;
    top: 110%;
    transform: translateY(0);
}

.user-popover::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

/* Auth State */
.popover-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.popover-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.popover-user-info {
    overflow: hidden;
    flex: 1;
}

.popover-user-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--dark-color);
}

.popover-user-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popover-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.btn-manage-account {
    text-align: center;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 100%;
}

.popover-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

.popover-links a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popover-links a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.popover-links a i {
    width: 20px;
    text-align: center;
    color: #888;
}

.popover-links a:hover i {
    color: var(--primary-color);
}

.popover-footer {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.btn-logout {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.95rem;
    border: 1px solid #eee;
    background: #f8f9fa;
    color: #dc3545;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-logout:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}



/* Categories */
.categories {
    padding: 2rem 0;
    background: var(--light-color);
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* Products Section */
.products {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--light-color);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--dark-color);
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}



/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-color);
}


.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: var(--light-color);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: var(--light-color);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cart-item-quantity {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.btn-remove {
    /* Styles migrated to global button system */
    margin-left: auto;
    padding: 0.3rem !important;
    /* Keep size small */
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-checkout {
    /* Specific overrides for checkout */
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}


.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-option {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(255, 107, 157, 0.1);
}

.payment-option input {
    margin-right: 0.5rem;
}

.order-summary {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 0.5rem;
    border-top: 2px solid var(--border-color);
    margin-top: 0.5rem;
}

.btn-confirm-order {
    /* Styles migrated to global button system */
    width: 100%;
    padding: 1rem;
}



.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
        margin-top: 1rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal {
        width: 95%;
    }
}

/* =========================================
   PRODUCT DETAIL PAGE (PDP) STYLES
   ========================================= */

.product-detail {
    padding: 3rem 0;
    min-height: 80vh;
}

.breadcrumbs {
    margin-bottom: 2rem;
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    /* Ensure clean wrapping on small screens */
    gap: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    align-items: flex-start;
    /* Align top */
}

/* Gallery Left */
.product-gallery {
    flex: 1 1 500px;
    /* Basis of 500px, can grow/shrink */
    max-width: 600px;
    /* Don't get too huge */
    /* If images are tall, stick to the column width */
}

.main-image-container {
    width: 100%;
    height: 500px;
    /* ESTANDARIZADO: Alto fijo */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ajusta la imagen sin recortar */
    padding: 10px;
    transition: transform 0.3s;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail-list {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: center;
    /* Center thumbnails */
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* Also contain thumbnails */
    border-radius: 12px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Info Right */
.product-info-detail {
    flex: 1 1 400px;
    /* Info takes remaining space, min 400px */
    display: flex;
    flex-direction: column;
}

/* Make sure info is "under" images on mobile, "side" on desktop is handled by flex-wrap logic above */

.product-tag {
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title-large {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--dark-color);
    font-weight: 700;
}

.product-price-large {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.stock-status {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.product-description-full {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.product-specs {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #eee;
}

.product-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    /* Pill shape */
    overflow: hidden;
    height: 54px;
    /* Match button height */
}

.qty-btn-detail {
    background: white;
    border: none;
    width: 45px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-color);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-detail:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.quantity-selector input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.btn-add-cart-large {
    /* Size adjustments keeping global button system colors */
    flex: 2;
    height: 54px;
    font-size: 1.1rem;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.btn-add-cart-large i {
    font-size: 1.2rem;
}


/* Star Rating Styles - Enhanced */
.star-rating-input {
    display: inline-flex;
    flex-direction: row;
    gap: 5px;
    font-size: 2rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.star-rating-input i {
    color: #e4e5e9;
    transition: color 0.3s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 5px;
}

.star-rating-input i.hovered,
.star-rating-input i.active {
    color: #ffc107;
    /* Yellow */
    transform: scale(1.2);
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
    /* Glow effect */
}

/* Responsive PDP */
@media (max-width: 900px) {
    .product-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 2rem;
    }

    .product-gallery,
    .product-info-detail {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .main-image-container {
        height: 350px;
        /* Smaller on mobile but still fixed */
    }

    .product-title-large {
        font-size: 1.8rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        justify-content: center;
        width: 100%;
    }

    .btn-add-cart-large {
        width: 100%;
    }
}

/* Toast Notification (Custom Alert) */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: white;
    color: var(--dark-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.success {
    border-left: 5px solid #2ecc71;
}

.toast-notification.error {
    border-left: 5px solid #e74c3c;
}

.toast-notification i {
    font-size: 1.4rem;
}

.toast-notification.success i {
    color: #2ecc71;
}

.toast-notification.error i {
    color: #e74c3c;
}