:root {
    --primary: #1B4332;
    --primary-dark: #142e24;
    --secondary: #2D6A4F;
    --accent: #D4A373;
    --accent-dark: #c4944f;
    --light: #FEFAE0;
    --cream: #FFF8E7;
    --text: #212529;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #f4f6f9;
    --border: #e2e8f0;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--primary); }
a { text-decoration: none; transition: var(--transition); color: inherit; }
img { max-width: 100%; height: auto; }

/* ========== TOP BAR ========== */
.gs-topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 8px 0;
    letter-spacing: 0.3px;
}
.gs-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.gs-topbar-left { display: flex; gap: 20px; }
.gs-topbar-left span, .gs-topbar-right span { display: flex; align-items: center; gap: 6px; }
.gs-topbar-left i, .gs-topbar-right i { color: var(--accent); font-size: 0.75rem; }

/* ========== HEADER ========== */
.gs-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.gs-header.gs-header-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.gs-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.gs-logo a { display: flex; align-items: baseline; gap: 2px; text-decoration: none; }
.gs-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.gs-logo-accent {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}
.gs-search { flex: 1; max-width: 420px; }
.gs-search-box {
    display: flex;
    border: 2px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--gray-light);
}
.gs-search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,163,115,0.15); }
.gs-search-box input {
    border: none;
    outline: none;
    padding: 10px 20px;
    flex: 1;
    font-size: 0.88rem;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}
.gs-search-box button {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.gs-search-box button:hover { background: var(--secondary); }
.gs-header-actions { display: flex; align-items: center; gap: 6px; }
.gs-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    white-space: nowrap;
}
.gs-action-btn:hover { background: var(--gray-light); color: var(--accent); }
.gs-action-btn i { font-size: 1.15rem; }
.gs-action-label { font-family: 'Poppins', sans-serif; }
.gs-cart-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.gs-user-dropdown { position: relative; }
.gs-dropdown-arrow { font-size: 0.6rem; margin-left: 2px; transition: var(--transition); }
.gs-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    border: 1px solid var(--border);
}
.gs-dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(5px); }
.gs-dropdown-header { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.gs-dropdown-header strong { display: block; color: var(--primary); font-size: 0.9rem; }
.gs-dropdown-header small { color: var(--gray); font-size: 0.8rem; }
.gs-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.88rem;
    transition: var(--transition);
}
.gs-dropdown-menu a:hover { background: var(--gray-light); color: var(--primary); padding-left: 22px; }
.gs-dropdown-menu a i { width: 18px; color: var(--gray); font-size: 0.85rem; }
.gs-dropdown-menu a:hover i { color: var(--accent); }
.gs-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }
.gs-dropdown-menu a.gs-logout { color: #dc3545; }
.gs-dropdown-menu a.gs-logout i { color: #dc3545; }
.gs-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 32px;
}
.gs-mobile-toggle span { display: block; width: 100%; height: 2.5px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ========== NAVIGATION BAR ========== */
.gs-nav-bar { background: var(--primary); position: relative; z-index: 999; }
.gs-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gs-nav-list::-webkit-scrollbar { display: none; }
.gs-nav-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.gs-nav-item a:hover, .gs-nav-item.active a { color: var(--white); background: rgba(255,255,255,0.1); }
.gs-nav-item.active a { background: rgba(255,255,255,0.15); border-bottom: 2px solid var(--accent); }
.gs-nav-item a i { font-size: 0.8rem; }

/* ========== MOBILE MENU ========== */
.gs-mobile-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.gs-mobile-overlay.active { opacity: 1; visibility: visible; }
.gs-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.gs-mobile-menu.active { right: 0; }
.gs-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    background: var(--primary);
}
.gs-mobile-menu-header .gs-logo-text { color: var(--white); }
.gs-mobile-menu-header .gs-logo-accent { color: var(--accent); }
.gs-mobile-close { background: none; border: none; color: var(--white); font-size: 1.2rem; cursor: pointer; padding: 5px; }
.gs-mobile-search { padding: 15px; border-bottom: 1px solid var(--border); }
.gs-mobile-search input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.gs-mobile-search input:focus { border-color: var(--accent); }
.gs-mobile-nav { list-style: none; padding: 0; margin: 0; }
.gs-mobile-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}
.gs-mobile-nav li a:hover { background: var(--gray-light); color: var(--primary); padding-left: 28px; }
.gs-mobile-nav li a i { width: 22px; color: var(--accent); text-align: center; }
.gs-mobile-nav-secondary { border-top: 8px solid var(--gray-light); }
.gs-mobile-nav li a.gs-logout { color: #dc3545; }
.gs-mobile-nav li a.gs-logout i { color: #dc3545; }
.gs-mobile-auth { display: flex; gap: 10px; padding: 20px; border-top: 8px solid var(--gray-light); }
.gs-btn {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-block;
}
.gs-btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gs-btn-primary:hover { background: var(--secondary); }
.gs-btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.gs-btn-outline:hover { background: var(--primary); color: var(--white); }

/* ========== ALERTS ========== */
.gs-alert { padding: 12px 0; font-size: 0.9rem; animation: slideDown 0.3s ease; }
.gs-alert .container { display: flex; align-items: center; gap: 10px; }
.gs-alert-success { background: #d4edda; color: #155724; border-bottom: 1px solid #c3e6cb; }
.gs-alert-danger { background: #f8d7da; color: #721c24; border-bottom: 1px solid #f5c6cb; }
.gs-alert button { margin-left: auto; background: none; border: none; cursor: pointer; opacity: 0.5; font-size: 0.9rem; }
.gs-alert button:hover { opacity: 1; }
@keyframes slideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ========== FOOTER ========== */
.gs-footer { background: var(--primary); color: var(--white); }
.gs-footer-main { padding: 60px 0 40px; }
.gs-footer-brand { margin-bottom: 16px; }
.gs-footer-brand .gs-logo-text { font-size: 1.6rem; }
.gs-footer-brand .gs-logo-accent { font-size: 1.6rem; }
.gs-footer-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.gs-social-links { display: flex; gap: 8px; }
.gs-social-links a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}
.gs-social-links a:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.gs-footer-title {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    font-family: 'Poppins', sans-serif;
}
.gs-footer-links { list-style: none; padding: 0; margin: 0; }
.gs-footer-links li { margin-bottom: 8px; }
.gs-footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); display: inline-block; }
.gs-footer-links a:hover { color: var(--accent); padding-left: 5px; }
.gs-footer-contact { list-style: none; padding: 0; margin: 0; }
.gs-footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.gs-footer-contact li i { color: var(--accent); margin-top: 4px; width: 16px; text-align: center; }
.gs-payment-icons { display: flex; gap: 12px; margin-top: 16px; }
.gs-payment-icons span { font-size: 1.8rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.gs-payment-icons span:hover { color: var(--white); }
.gs-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
.gs-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.gs-footer-bottom p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.gs-footer-bottom-links { display: flex; gap: 20px; }
.gs-footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.gs-footer-bottom-links a:hover { color: var(--accent); }

/* ========== BACK TO TOP ========== */
.gs-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212,163,115,0.4);
    transition: var(--transition);
}
.gs-back-top:hover { background: var(--accent-dark); transform: translateY(-3px); color: var(--white); }

/* ========== WHATSAPP ========== */
.gs-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.gs-whatsapp-btn:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ========== SECTION TITLES ========== */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.2rem; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--accent); border-radius: 2px; }
.section-title p { color: var(--gray); margin-top: 10px; }

/* ========== HERO SECTION ========== */
.hero-section { position: relative; height: 550px; overflow: hidden; }
.hero-section .swiper-slide { height: 550px; background-size: cover; background-position: center; position: relative; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.3) 100%); }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--white); z-index: 2; width: 80%; }
.hero-content h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 15px; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.15rem; margin-bottom: 30px; opacity: 0.9; }
.hero-content .btn { padding: 14px 40px; font-size: 1rem; }
.swiper-button-prev, .swiper-button-next { color: var(--accent) !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; }

/* ========== PRODUCT CARD ========== */
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); height: 100%; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-card .product-img { position: relative; overflow: hidden; height: 280px; background: var(--gray-light); }
.product-card .product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-card .discount-badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: var(--white); padding: 4px 12px; border-radius: 4px; font-size: 0.78rem; font-weight: 600; z-index: 2; }
.product-card .product-actions { position: absolute; right: 10px; top: 10px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(20px); transition: all 0.3s ease; z-index: 2; }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-card .product-actions a, .product-card .product-actions button { width: 38px; height: 38px; border-radius: 50%; background: var(--white); color: var(--primary); display: flex; align-items: center; justify-content: center; border: none; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: var(--transition); font-size: 0.85rem; cursor: pointer; }
.product-card .product-actions a:hover, .product-card .product-actions button:hover { background: var(--primary); color: var(--white); }
.product-card .product-info { padding: 18px; }
.product-card .product-name { font-size: 0.92rem; font-weight: 500; color: var(--text); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; }
.product-card .product-name a { color: var(--text); }
.product-card .product-name a:hover { color: var(--primary); }
.product-card .product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-card .price-current { font-size: 1.15rem; font-weight: 700; color: var(--accent); }
.product-card .price-original { font-size: 0.88rem; color: var(--gray); text-decoration: line-through; }
.product-card .add-to-cart-btn { width: 100%; padding: 10px; background: var(--primary); color: var(--white); border: none; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.product-card .add-to-cart-btn:hover { background: var(--secondary); }

/* ========== CATEGORY CARD ========== */
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 250px; cursor: pointer; transition: var(--transition); }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.1); }
.category-card .category-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(27,67,50,0.9)); color: var(--white); }
.category-card .category-overlay h5 { color: var(--white); margin: 0; font-size: 1.15rem; }

/* ========== PROMO ========== */
.promo-section { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 80px 0; color: var(--white); text-align: center; }
.promo-section h2 { color: var(--white); font-size: 2.5rem; }
.promo-section p { opacity: 0.9; font-size: 1.1rem; }

/* ========== FEATURES ========== */
.feature-card { text-align: center; padding: 40px 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.feature-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
.feature-card h5 { margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* ========== PRODUCT DETAIL ========== */
.product-detail-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.product-detail-img img { width: 100%; height: 500px; object-fit: cover; }
.thumb-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s; }
.thumb-img:hover, .thumb-img.active { border-color: var(--accent); }

/* ========== CART ========== */
.cart-table img { width: 70px; height: 70px; object-fit: cover; border-radius: var(--radius); }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); }
.qty-control button { background: none; border: none; padding: 8px 14px; cursor: pointer; font-size: 1rem; }
.qty-control input { width: 45px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 8px 0; }
.cart-summary { background: var(--gray-light); padding: 30px; border-radius: var(--radius-lg); }

/* ========== AUTH ========== */
.auth-wrapper { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 40px 0; }
.auth-card { width: 100%; max-width: 450px; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.auth-card h2 { text-align: center; margin-bottom: 30px; }
.auth-card .form-control { padding: 12px 15px; border-radius: var(--radius); margin-bottom: 15px; }
.auth-card .btn { width: 100%; padding: 12px; }

/* ========== ACCOUNT ========== */
.account-sidebar { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.account-sidebar .nav-link { color: var(--text); padding: 12px 20px; border-radius: var(--radius); margin-bottom: 4px; transition: var(--transition); }
.account-sidebar .nav-link:hover, .account-sidebar .nav-link.active { background: var(--primary); color: var(--white); }
.account-sidebar .nav-link i { width: 25px; }

/* ========== BREADCRUMB ========== */
.breadcrumb-section { background: var(--light); padding: 20px 0; }
.breadcrumb-section .breadcrumb { margin: 0; background: none; padding: 0; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--accent); }

/* ========== MISC ========== */
.section-padding { padding: 70px 0; }
.bg-light-custom { background: var(--light); }
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.checkout-steps { display: flex; justify-content: center; margin-bottom: 40px; }
.checkout-step { text-align: center; flex: 1; position: relative; }
.checkout-step .step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--border); color: var(--gray); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; margin-bottom: 8px; }
.checkout-step.active .step-num { background: var(--primary); color: var(--white); }
.checkout-step.completed .step-num { background: var(--accent); color: var(--white); }
.badge-pending { background: #ffc107; color: #000; }
.badge-processing { background: #17a2b8; }
.badge-shipped { background: #007bff; }
.badge-delivered { background: #28a745; }
.badge-cancelled { background: #dc3545; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 0.2rem rgba(212,163,115,0.25); }
.form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 0.2rem rgba(212,163,115,0.25); }
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 4rem; color: var(--border); margin-bottom: 20px; }
.empty-state h4 { margin-bottom: 15px; }
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; }
.custom-toast { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 15px 25px; display: flex; align-items: center; gap: 12px; margin-bottom: 10px; animation: slideIn 0.3s ease; min-width: 300px; }
.custom-toast.success { border-left: 4px solid #28a745; }
.custom-toast.error { border-left: 4px solid #dc3545; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
