﻿/* ===============================
   🌌 THEME TÍM SANG TRỌNG
   =============================== */

/* Toàn trang */
body {
    background-color: #ede7f6 !important; /* tím nhạt thanh nhã */
    color: #2e004f !important; /* chữ tím đậm */
    font-family: 'Segoe UI', sans-serif;
}

/* Header & Navbar */
header, .header, nav, .navbar {
    background-color: #6a1b9a !important; /* tím đậm */
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(106, 27, 154, 0.3);
}

    .navbar a, nav a {
        color: #fff !important;
        font-weight: 500;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

        .navbar a:hover, nav a:hover {
            color: #ffca28 !important;
            background-color: transparent !important;
            text-shadow: 0 0 6px rgba(255, 202, 40, 0.7);
        }

/* Dropdown menu (Shop, Linh kiện, ...) */
.dropdown-menu, .sub-menu, .mega-menu {
    background-color: #7e57c2 !important;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(126, 87, 194, 0.4);
}

    .dropdown-menu a {
        color: #fff !important;
    }

        .dropdown-menu a:hover {
            background-color: #9575cd !important;
            color: #ffeb3b !important;
        }

/* Nút bấm (Button) */
button, .btn {
    background: linear-gradient(135deg, #7b1fa2, #9c27b0);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(123, 31, 162, 0.3);
    cursor: pointer;
}

    button:hover, .btn:hover {
        background: linear-gradient(135deg, #9c27b0, #ba68c8);
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(156, 39, 176, 0.4);
    }

    button:active, .btn:active {
        transform: translateY(1px);
        box-shadow: 0 2px 6px rgba(123, 31, 162, 0.2);
    }

/* Nút phụ (vàng ánh kim) */
.btn-secondary {
    background: linear-gradient(135deg, #ffca28, #ffd54f);
    color: #4a148c;
}

    .btn-secondary:hover {
        background: linear-gradient(135deg, #ffd54f, #ffe082);
        box-shadow: 0 6px 15px rgba(255, 202, 40, 0.4);
    }

/* Card, Container, Khung nội dung */
.container, .card, .content, .section {
    background-color: #f5f0ff !important;
    border: 2px solid #7b1fa2 !important;
    color: #2e004f !important;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(123, 31, 162, 0.15);
    padding: 20px;
}

/* Tiêu đề, Section title */
.section-title, .breadcrumb-area {
    background-color: #6a1b9a !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

    .section-title h1, .breadcrumb-area h1 {
        color: #fff !important;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }

    .section-title p, .breadcrumb-area p {
        color: #ffca28 !important;
    }

/* Footer */
footer {
    background-color: #4a148c !important;
    color: #fff !important;
    padding: 40px 0;
    font-size: 15px;
    line-height: 1.8;
}

    footer a {
        color: #ffca28 !important;
        text-decoration: none;
    }

        footer a:hover {
            color: #fff !important;
        }

    footer .footer-bottom {
        background-color: #311b92 !important;
        padding: 15px;
        text-align: center;
        font-size: 14px;
    }

/* Các khối feature như Free Shipping */
.single-feature.feature-style-2 {
    background-color: #7e57c2 !important;
    border: 2px solid #ffca28 !important;
    border-radius: 12px;
    text-align: center;
    color: #fff !important;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 202, 40, 0.2);
}

    .single-feature.feature-style-2:hover {
        background-color: #9575cd !important;
        color: #ffeb3b !important;
        transform: translateY(-5px);
    }

    .single-feature.feature-style-2 .icon i {
        font-size: 48px;
        color: #ffeb3b;
        margin-bottom: 10px;
    }

/* Input & Form */
input, select, textarea {
    border: 1px solid #7b1fa2 !important;
    border-radius: 6px;
    padding: 8px 12px;
    color: #2e004f !important;
    background-color: #fff !important;
}

    input:focus, select:focus, textarea:focus {
        border-color: #9c27b0 !important;
        box-shadow: 0 0 6px rgba(156, 39, 176, 0.4);
    }

/* Scrollbar tím */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: #7b1fa2;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #9c27b0;
    }
