/* ===================================
   ACCOMMODATIONS PAGE STYLES
   Jassistays - Authentic Moroccan Hospitality
   =================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C17956 0%, #8B7355 100%);
    background-image: url('../../assets/images/accommodations/hero\ accomm.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.7) 0%, rgba(139, 115, 85, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Filter Section */
.filter-section {
    padding: 1.25rem 0;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #C17956;
    color: #C17956;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #C17956 0%, #8B7355 100%);
    border-color: #C17956;
    color: white;
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.3);
}

.filter-btn i {
    font-size: 0.875rem;
}

.filter-sort select {
    padding: 0.5rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.filter-sort select:hover {
    border-color: #C17956;
}

.filter-sort select:focus {
    outline: none;
    border-color: #C17956;
}

/* Accommodations Section */
.accommodations-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    animation: fadeIn 0.6s ease-out;
}

/* Accommodation Cards - Artistic Asymmetric Layout */
.accommodation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Artistic varying widths */
.accommodation-card:nth-child(1) {
    grid-column: span 8;
}

.accommodation-card:nth-child(2) {
    grid-column: span 4;
}

.accommodation-card:nth-child(3) {
    grid-column: span 5;
}

.accommodation-card:nth-child(4) {
    grid-column: span 7;
}

.accommodation-card:nth-child(5) {
    grid-column: span 6;
}

.accommodation-card:nth-child(6) {
    grid-column: span 6;
}

.accommodation-card:nth-child(7) {
    grid-column: span 7;
}

.accommodation-card:nth-child(8) {
    grid-column: span 5;
}

/* Default for remaining cards */
.accommodation-card:nth-child(n+9) {
    grid-column: span 6;
}

.accommodation-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.15);
}

.accommodation-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C17956;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.accommodation-wishlist {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.accommodation-wishlist:hover {
    transform: scale(1.1);
    background: white;
}

.accommodation-wishlist i {
    color: #C17956;
    font-size: 1.25rem;
}

.accommodation-wishlist.active i {
    color: #e74c3c;
}

.accommodation-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.accommodation-location i {
    color: #C17956;
}

.accommodation-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.accommodation-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    /* Hide description to save space */
    display: none;
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

/* Hide features beyond the first 2 */
.accommodation-features .feature-tag:nth-child(n+3) {
    display: none;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #666;
    font-size: 0.85rem;
}

.feature-tag i {
    color: #C17956;
    font-size: 1rem;
}

.accommodation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.accommodation-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #C17956;
}

.price-period {
    font-size: 0.9rem;
    color: #999;
}

.btn-view-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C17956 0%, #8B7355 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 121, 86, 0.3);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: white;
}

.features-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.features-section .section-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    position: relative;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.03) 0%, rgba(139, 115, 85, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1), rgba(212, 165, 116, 0.15));
    border-radius: 40px;
    transform: rotate(25deg);
    transition: all 0.6s ease;
    z-index: 0;
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover::after {
    top: -40%;
    right: -40%;
    transform: rotate(45deg) scale(1.2);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 121, 86, 0.2);
}

.feature-icon {
    position: relative;
    z-index: 1;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #C17956 0%, #8B7355 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(193, 121, 86, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(193, 121, 86, 0.4);
}

.feature-icon i {
    font-size: 2.25rem;
    color: white;
}

.feature-item h3 {
    position: relative;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-item p {
    position: relative;
    z-index: 1;
    color: #666;
    line-height: 1.6;
    text-align: left;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2c2c2c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFB800;
    font-size: 1.25rem;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C17956 0%, #8B7355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #999;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('../../assets/images/accommodations/cta-accomondation.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.85) 0%, rgba(139, 115, 85, 0.85) 100%);
    z-index: 1;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    pointer-events: none;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: #C17956;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #25D366;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .accommodations-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .accommodation-card:nth-child(odd) {
        grid-column: span 6;
    }

    .accommodation-card:nth-child(even) {
        grid-column: span 6;
    }

    .accommodation-card:nth-child(n+1) {
        grid-column: span 6;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
    }

    .filter-sort {
        width: 100%;
    }

    .filter-sort select {
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .filter-section {
        padding: 1rem 0;
        position: relative;
    }

    .filter-container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .filter-group {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .filter-group::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
        border-radius: 12px;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .filter-btn[data-type="all"] {
        grid-column: 1 / -1;
    }

    .filter-btn i {
        font-size: 0.85rem;
    }
    
    .filter-btn span {
        font-size: 0.8rem;
    }

    .filter-sort {
        width: 100%;
    }

    .filter-sort select {
        width: 100%;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .accommodations-section {
        padding: 4rem 0;
    }

    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .accommodation-card {
        grid-column: span 1 !important;
    }

    .accommodation-image {
        height: 220px;
    }

    .accommodation-content {
        padding: 1.5rem;
    }

    .accommodation-content h3 {
        font-size: 1.25rem;
    }
    
    .accommodation-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .accommodation-meta {
        font-size: 0.8rem;
        gap: 1rem;
    }

    .accommodation-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .accommodation-price {
        font-size: 1.5rem;
    }

    .btn-view-details {
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .features-section,
    .testimonials-section {
        padding: 4rem 0;
    }

    .features-section .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
    }
    
    .feature-item h3 {
        font-size: 1.25rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }

    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    /* Mobile testimonials carousel */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .testimonial-card {
        flex: 0 0 85vw;
        max-width: 350px;
        scroll-snap-align: center;
        padding: 2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .filter-section {
        padding: 1rem 0;
    }

    .filter-group {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
        gap: 0.375rem;
    }

    .filter-btn i {
        font-size: 0.85rem;
    }

    .filter-sort select {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    /* 2 columns for mobile like reservation page */
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .accommodation-image {
        height: 140px;
    }
    
    /* Hide rating on mobile to save space */
    .accommodation-rating {
        display: none !important;
    }

    .accommodation-content {
        padding: 0.75rem;
    }

    .accommodation-location {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .accommodation-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .accommodation-features {
        gap: 0.4rem;
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .feature-tag {
        font-size: 0.7rem;
    }

    .feature-tag i {
        font-size: 0.75rem;
    }

    .accommodation-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-amount {
        font-size: 1.1rem;
    }

    .price-label,
    .price-period {
        font-size: 0.7rem;
    }

    .btn-view-details {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
        gap: 0.3rem;
        width: 100%;
        justify-content: center;
    }

    .btn-view-details i {
        font-size: 0.7rem;
    }

    /* Make badges smaller */
    .accommodation-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        top: 0.75rem;
        left: 0.75rem;
    }

    .accommodation-wishlist {
        width: 32px;
        height: 32px;
        top: 0.75rem;
        right: 0.75rem;
    }

    .accommodation-wishlist i {
        font-size: 0.9rem;
    }
    
    /* Keep 2 columns for features on small screens */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */

.toast {
    position: fixed;
    top: 100px;
    right: -400px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transition: right 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.toast.show {
    right: 20px;
}

.toast i {
    font-size: 1.5rem;
}

.toast-success {
    border-left: 4px solid #28a745;
}

.toast-success i {
    color: #28a745;
}

.toast-error {
    border-left: 4px solid #dc3545;
}

.toast-error i {
    color: #dc3545;
}

.toast-info {
    border-left: 4px solid #17a2b8;
}

.toast-info i {
    color: #17a2b8;
}

.toast span {
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}
