/* CSS Variables - Tema Sistemi */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --header-bg-color: #ffffff;
    --header-text-color: #333333;
    --header-link-color: #3498db;
    --nav-bg-color: #2c3e50;
    --nav-text-color: #ecf0f1;
    --nav-hover-bg-color: #34495e;
    --footer-bg-color: #2c3e50;
    --text-color: #333333;
    --link-color: #3498db;
    --button-color: #3498db;
    --button-text-color: #ffffff;
    --cart-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Üst Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-left span,
.top-bar-right a {
    margin-right: 20px;
    color: var(--nav-text-color);
    text-decoration: none;
}

.top-bar-left span i,
.top-bar-right a i {
    margin-right: 5px;
}

.top-bar-right {
    text-align: right;
}

.top-bar-right span {
    margin-right: 20px;
    color: var(--nav-text-color);
}

.top-bar-right a:hover {
    color: var(--header-link-color);
}

/* Header */
.main-header {
    background-color: var(--header-bg-color);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 50px;
}

.search-bar {
    margin-top: 10px;
}

.search-bar .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.header-actions {
    text-align: right;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.cart-widget {
    display: inline-block;
}

.cart-link {
    display: inline-block;
    background-color: var(--cart-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    transition: background-color 0.3s;
}

.cart-link:hover {
    background-color: #c0392b;
    color: #fff;
}

.cart-count {
    background-color: #fff;
    color: #e74c3c;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    position: absolute;
    top: -5px;
    right: -5px;
}

.cart-total {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}

/* Ana Navigasyon */
.main-nav {
    background-color: var(--nav-bg-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    color: var(--nav-text-color);
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

.nav-menu li:hover > a {
    background-color: var(--nav-hover-bg-color);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    color: var(--header-text-color);
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:hover a {
    background-color: #f8f9fa;
}

/* Mobil Menu */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1002;
    transition: right 0.3s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
}

.mobile-menu-content {
    padding: 60px 20px 20px;
}

.mobile-search {
    margin-bottom: 20px;
}

.mobile-search input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.mobile-nav-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--header-text-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-user-menu a {
    display: block;
    padding: 10px 0;
    color: var(--header-link-color);
    text-decoration: none;
}

/* Ana Sayfa */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: #fff;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: #fff;
}

/* Ürün Kartları */
.products-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
    text-decoration: none;
    display: block;
}

.product-title:hover {
    color: #3498db;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1rem;
    margin-right: 10px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-add-cart:hover {
    background-color: #229954;
}

.btn-quick-view {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-quick-view:hover {
    background-color: #2980b9;
}

/* Kategori Sayfası */
.category-header {
    background-color: #fff;
    padding: 40px 0;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.category-description {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Filtreler */
.filters-sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.filter-list {
    list-style: none;
    padding: 0;
}

.filter-list li {
    margin-bottom: 10px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-list input[type="checkbox"] {
    margin-right: 10px;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.price-range input {
    width: 100px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover {
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
}

.pagination span.active {
    background-color: #3498db;
    color: #fff;
    border-color: #3498db;
}

/* Ürün Detay */
.product-detail {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.product-detail-images {
    margin-bottom: 30px;
}

.main-image {
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: #3498db;
}

.product-detail-info h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 1.8rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-description-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-description-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-description-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #3a3f47;
    letter-spacing: 0.01em;
}

.product-description-content p {
    margin-bottom: 1.2rem;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1.2rem 0 1.2rem 1.5rem;
    padding-left: 0;
}

.product-description-content li {
    margin-bottom: 0.6rem;
}

.product-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.product-description-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1rem;
    margin: 1.8rem 0;
    color: #566573;
    font-style: italic;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: #27ae60;
    margin-right: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.btn-buy-now {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-right: 10px;
}

.btn-buy-now:hover {
    background-color: #c0392b;
}

/* Sepet */
.cart-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity input {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

.cart-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.cart-summary h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-summary-row:last-child {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #e74c3c;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: #3498db;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    width: 20px;
}

.footer-products {
    margin-top: 20px;
}

.footer-product {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-product a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdc3c7;
    text-decoration: none;
}

.footer-product img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.footer-product-info h5 {
    margin: 0;
    font-size: 0.9rem;
    color: #ecf0f1;
}

.footer-product-info .price {
    color: #e74c3c;
    font-weight: bold;
}

.copyright {
    background-color: #34495e;
    color: #bdc3c7;
    padding: 20px 0;
    border-top: 1px solid #4a5f7a;
}

.payment-methods img {
    height: 30px;
    margin-right: 10px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3498db;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #2980b9;
    color: #fff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Mesajlar */
.message-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Form Stilleri */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2c3e50;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #3498db;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-table {
        font-size: 0.9rem;
    }
    
    .cart-product {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    /* Mobil için kullanıcı widget'ı */
    .header-actions {
        gap: 10px;
    }
    
    .user-link {
        padding: 8px 12px !important;
        min-width: 38px;
        height: 38px;
    }
    
    .user-link i {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .user-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        padding: 20px;
    }
    
    .cart-section {
        padding: 20px;
    }
}

/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #25d366;
    color: #fff;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-button a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Butonu */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-button a {
        font-size: 28px;
    }
}

/* User Widget */
.user-widget {
    display: inline-block;
    position: relative;
}

.user-link {
    background-color: var(--button-color) !important;
    color: var(--button-text-color) !important;
    padding: 10px 14px !important;
    border-radius: 5px !important;
    border: none !important;
    font-size: 16px;
    transition: background-color 0.3s;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
}

.user-link:hover {
    filter: brightness(0.9);
    color: var(--button-text-color) !important;
}

.user-link:focus {
    box-shadow: none;
    outline: none;
}

.user-link i {
    font-size: 18px;
    margin-right: 8px;
}

.user-text {
    font-weight: 500;
    font-size: 14px;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1001;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.user-dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.user-dropdown-menu .dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
    border-bottom: 1px solid #ecf0f1;
}

.user-dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-menu .dropdown-item:hover {
    background-color: #ecf0f1;
    color: #2980b9;
}

.user-dropdown-menu .dropdown-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--primary-color);
}

/* Bootstrap renk overrides - Tema Sistemi */
.btn-primary {
    background-color: var(--button-color) !important;
    border-color: var(--button-color) !important;
    color: var(--button-text-color) !important;
}

.btn-primary:hover,
.btn-primary:active {
    filter: brightness(0.9);
}

.btn-success {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

.btn-danger {
    background-color: var(--danger-color) !important;
    border-color: var(--danger-color) !important;
}

.btn-warning {
    background-color: var(--warning-color) !important;
    border-color: var(--warning-color) !important;
}

a {
    color: var(--link-color);
}

a:hover {
    color: var(--link-color);
    filter: brightness(0.9);
}