/* ================================================================
   CUSTOM STYLESHEET - UD LINGGAR JATI (Professional Furniture)
   Design System: Premium, Modern, Consistent Across All Pages
   ================================================================ */

:root {
    /* Primary Color Palette - Premium Furniture Theme */
    --primary-navy: #0F172A;           /* Deep navy - main brand color */
    --primary-dark: #0a1019;           /* Even darker navy variant */
    --secondary-navy: #1E293B;         /* Soft navy for secondary elements */
    --accent-wood: #8B5E3C;            /* Wood highlight - use sparingly */
    --accent-wood-light: #A0724A;      /* Light wood variant */
    --accent-wood-pale: rgba(139,94,60,.12); /* Wood background for badges */
    
    /* Neutrals & Grays */
    --bg-light: #F8FAFC;               /* Main background */
    --bg-white: #FFFFFF;               /* Card backgrounds */
    --text-dark: #111827;              /* Primary text */
    --text-muted: #6B7280;             /* Secondary text */
    --border-light: #E5E7EB;           /* Borders & dividers */
    
    /* Semantic Colors */
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 8px 16px rgba(0,0,0,.1);
    --shadow-lg: 0 12px 24px rgba(0,0,0,.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-wood);
}

/* ================================================================
   NAVBAR STYLING
   ================================================================ */

.navbar {
    background-color: var(--primary-navy);
    box-shadow: var(--shadow-md);
    padding: 1rem 0 !important;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff !important;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-brand img {
    margin-right: 0.75rem;
    max-height: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link.active {
    color: var(--accent-wood) !important;
    border-bottom-color: var(--accent-wood);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid rgba(139, 94, 60, 0.5);
}

.dropdown-menu {
    background-color: var(--secondary-navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(139, 94, 60, 0.15);
    color: var(--accent-wood);
}

.btn-nav-cta {
    background-color: var(--accent-wood);
    color: #fff;
    border-radius: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.btn-nav-cta:hover {
    background-color: var(--accent-wood-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
    color: #fff;
}

/* ================================================================
   HERO SECTION
   ================================================================ */

.hero-section {
    padding: 30px 0 60px;
    padding-top: calc(60px + 30px);
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-navy), rgba(15, 23, 42, 0.05));
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    max-width: 600px;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.hero-buttons .btn-primary {
    background-color: var(--accent-wood);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--accent-wood-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
}

.hero-buttons .btn-accent {
    background-color: var(--accent-wood);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
}

.hero-buttons .btn-accent:hover {
    background-color: var(--accent-wood-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
}

.hero-buttons .btn-outline-navy {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background-color: transparent;
}

.hero-buttons .btn-outline-navy:hover {
    background-color: var(--primary-navy);
    color: #fff;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline-dark {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.hero-buttons .btn-outline-dark:hover {
    background-color: #fff;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: rgba(0, 0, 0, 0.2);
    font-size: 3rem;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ================================================================
   SECTION STYLING
   ================================================================ */

section {
    transition: all 0.3s ease;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--accent-wood) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 650px;
    margin: 2rem auto;
}

/* ================================================================
   SERVICES / PRODUCTS SECTION
   ================================================================ */

.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-navy);
}

.service-card h5 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin: 1rem 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    width: 100%;
    margin: 1rem 0 0 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0.5rem 0;
}

.service-features .bi {
    color: var(--accent-wood);
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.875rem;
    }
}

/* ================================================================
   ICON BADGE SYSTEM (Bootstrap Icons)
   ================================================================ */

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-badge .bi {
    color: var(--primary-navy);
    font-size: 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
}

.icon-badge:hover {
    background-color: var(--primary-navy);
    transform: scale(1.1);
}

.icon-badge:hover .bi {
    color: #fff;
}

/* Accent Wood Badge Variant */
.icon-badge.accent {
    background-color: var(--accent-wood-pale);
}

.icon-badge.accent .bi {
    color: var(--accent-wood);
}

.icon-badge.accent:hover {
    background-color: var(--accent-wood);
}

.icon-badge.accent:hover .bi {
    color: #fff;
}

/* Large Badge Variant */
.icon-badge.lg {
    width: 60px;
    height: 60px;
}

.icon-badge.lg .bi {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
}

/* ================================================================
   CARD DESIGN
   ================================================================ */

.card {
    border: 1px solid var(--border-light);
    background-color: var(--bg-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--border-light);
}

.card-title {
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 1.25rem;
}

.card-text {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-navy);
    color: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
}

.btn-accent {
    background-color: var(--accent-wood);
    color: #fff;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.15);
}

.btn-accent:hover {
    background-color: var(--accent-wood-light);
    box-shadow: 0 6px 16px rgba(139, 94, 60, 0.25);
}

.btn-outline-primary {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-navy);
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Button with icon */
.btn .bi {
    font-size: 1.1em;
}

/* ================================================================
   FORMS
   ================================================================ */

.form-control,
.form-select {
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
    outline: none;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

input::placeholder {
    color: var(--border-light);
}

/* ================================================================
   PRICE SUMMARY (Sticky Sidebar)
   ================================================================ */

.price-summary {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.price-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
}

.price-summary-item:last-of-type {
    border-bottom: none;
    padding-top: 1rem;
    padding-bottom: 0;
}

.price-summary-label {
    color: var(--text-dark);
    font-weight: 500;
}

.price-summary-value {
    color: var(--text-dark);
    font-weight: 600;
}

.price-summary-total {
    background-color: var(--accent-wood);
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    text-align: center;
}

.price-summary-total-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.price-summary-total-value {
    font-size: 2rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .price-summary {
        position: static;
        top: auto;
        margin-top: 2rem;
    }
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 1rem;
    margin-top: 5rem;
}

footer h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

footer .list-unstyled {
    list-style: none;
    padding: 0;
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

footer .list-unstyled a:hover {
    color: var(--accent-wood);
    padding-left: 0.25rem;
}

footer .list-unstyled .bi {
    color: var(--accent-wood);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1rem;
    }

    footer .col-md-4 {
        margin-bottom: 2rem;
    }

    footer h5 {
        font-size: 1rem;
    }
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */

.text-primary {
    color: var(--primary-navy) !important;
}

.text-accent {
    color: var(--accent-wood) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-primary {
    background-color: var(--primary-navy) !important;
    color: #fff;
}

.bg-primary-light {
    background-color: var(--bg-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-1 {
    border-radius: 0.5rem;
}

.rounded-2 {
    border-radius: 1rem;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ================================================================
   SCROLLBAR STYLING
   ================================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-wood);
}

/* ================================================================
   ACCESSIBILITY
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgb(255, 255, 255);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

footer h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

footer .list-unstyled li {
    margin-bottom: 0.75rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .list-unstyled a:hover {
    color: #0d6efd;
    padding-left: 0.25rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }

    footer .col-md-4 {
        margin-bottom: 2rem;
    }

    footer h5 {
        font-size: 1rem;
    }
}

/* ================================================================
   SCROLLBAR STYLING
   ================================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ================================================================
   ICON STYLING (Font Awesome 6)
   ================================================================ */

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #f0f7ff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-badge i,
.icon-badge svg {
    color: #2563eb;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.icon-badge:hover {
    background-color: #e0efff;
    transform: scale(1.08);
}

/* Untuk icon di tombol/link */
.btn i,
.btn-sm i {
    margin-right: 0.5rem;
}

.dropdown-item i {
    width: 16px;
    margin-right: 0.5rem;
    color: #2563eb;
}

.dropdown-item:hover i {
    color: #0d6efd;
}

/* Footer icon styling */
footer i {
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    min-width: 20px;
}

/* ================================================================
   UTILITIES
   ================================================================ */

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.section-spacing {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing {
        padding: 3rem 0;
    }
}

/* ================================================================
   ALERT TOAST NOTIFICATIONS - Modern Style
   ================================================================ */

/* Base Toast Styles */
.alert-toast {
    display: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
    overflow: hidden;
    border-left: 5px solid;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}

.alert-toast.show {
    display: block;
}

/* Toast Content Layout */
.alert-toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    width: 100%;
}

/* Toast Icon */
.alert-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.5rem;
}

/* Toast Text */
.alert-toast-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.alert-toast-title {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
}

.alert-toast-message {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

/* Toast Close Button */
.alert-toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.7;
}

.alert-toast-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

/* Success Toast */
.alert-success-toast {
    border-left-color: #10B981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #065f46;
}

.alert-success-toast .alert-toast-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.alert-success-toast .alert-toast-title {
    color: #065f46;
}

.alert-success-toast .alert-toast-message {
    color: #047857;
}

.alert-success-toast .alert-toast-close {
    color: #10B981;
}

.alert-success-toast .alert-toast-close:hover {
    background-color: rgba(16, 185, 129, 0.15);
}

/* Danger/Error Toast */
.alert-danger-toast {
    border-left-color: #EF4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #7f1d1d;
}

.alert-danger-toast .alert-toast-icon {
    background-color: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.alert-danger-toast .alert-toast-title {
    color: #7f1d1d;
}

.alert-danger-toast .alert-toast-message {
    color: #dc2626;
}

.alert-danger-toast .alert-toast-close {
    color: #EF4444;
}

.alert-danger-toast .alert-toast-close:hover {
    background-color: rgba(239, 68, 68, 0.15);
}

/* Slide Down Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Auto-dismiss after 5 seconds */
.alert-toast.show {
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Responsive - adjust for mobile */
@media (max-width: 576px) {
    .alert-toast-content {
        padding: 1rem 1.2rem;
    }
    
    .alert-toast-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .alert-toast-title {
        font-size: 0.9rem;
    }
    
    .alert-toast-message {
        font-size: 0.8rem;
    }
    
    .alert-toast-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}
