﻿/* Custom CSS for eStore - Bootstrap Theme Customization */

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
}

/* Header customization */
.header-top {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

    .header-top a {
        color: white;
        text-decoration: none;
    }

        .header-top a:hover {
            opacity: 0.8;
        }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

    .logo:hover {
        color: var(--primary-color);
    }

.header-action {
    position: relative;
    text-decoration: none;
    color: inherit;
}

    .header-action:hover {
        color: var(--primary-color);
    }

.header-action-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

/* Product Card */
.product-card {
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.product-card-img {
    height: 250px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    margin-top: 3rem;
}

    footer a {
        color: #adb5bd;
        text-decoration: none;
    }

        footer a:hover {
            color: white;
        }

/* Hero gradient */
.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.welcome-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

/* Sidebar menu active state */
.sidebar-menu .list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Sticky header */
.sticky-top-custom {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: white;
}

/* Social icons */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #495057;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .social-link:hover {
        background-color: var(--primary-color);
        color: white;
    }

/* Price styling */
.price-old {
    text-decoration: line-through;
    color: #6c757d;
}

/* Profile avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1rem;
}

/* Order item */
.order-item {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1.5rem;
}

/* Address card */
.address-card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    height: 100%;
}

    .address-card.default {
        border: 2px solid var(--primary-color);
    }

/* Connected account item */
.connected-account {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.account-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card-img {
        height: 200px;
    }
}

/* Mobile Drawer Navigation Styles */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 320px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.mobile-drawer-close:hover {
    color: #0d6efd;
}

.mobile-drawer-body {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
}

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

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.mobile-nav-link i:first-child {
    font-size: 1.1rem;
    width: 24px;
}

.mobile-nav-link i.bi-chevron-right {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.mobile-nav-link.expanded i.bi-chevron-right {
    transform: rotate(90deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 1000px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-submenu .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding: 0.5rem 0;
    display: block !important;
    margin: 0 !important;
}

.mobile-submenu .dropdown-item,
.mobile-submenu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-submenu .dropdown-item:hover,
.mobile-submenu-item:hover {
    background-color: #e9ecef;
    color: #0d6efd;
}

.mobile-submenu hr {
    margin: 0.5rem 1.5rem 0.5rem 3rem;
    border-color: #dee2e6;
}

/* Mobile menu button styling */
#mobileMenuToggle {
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobileMenuToggle i {
    line-height: 1;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
/*
 * CSS cho Navbar Hiện đại & Tối giản
 */

/* 1. Tùy chỉnh Navbar chính */
.navbar-modern {
    background-color: #ffffff !important; /* Nền trắng sạch sẽ (quan trọng hơn bg-light) */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Bóng đổ nhẹ, hiện đại để "nổi" lên */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

    /* 2. Tùy chỉnh các liên kết (nav-link) */
    .navbar-modern .nav-link {
        color: #333; /* Màu chữ tối, mềm mại hơn màu đen tuyền */
        font-weight: 500; /* Hơi đậm, dễ đọc hơn */
        font-size: 1rem; /* 16px */
        padding: 0.8rem 1.2rem !important; /* Tăng khoảng cách đệm */
        margin: 0 0.25rem; /* Khoảng cách giữa các mục */
        border-radius: 8px; /* Bo góc hiện đại */
        transition: all 0.3s ease; /* Hiệu ứng chuyển động mượt mà */
    }

        /* 3. Hiệu ứng khi rê chuột (hover) vào liên kết */
        .navbar-modern .nav-link:hover,
        .navbar-modern .nav-link:focus {
            color: #0d6efd; /* Màu xanh dương (màu primary của Bootstrap) */
            background-color: rgba(13, 110, 253, 0.07); /* Nền mờ rất nhẹ */
        }

        /* 4. Trạng thái "active" của liên kết */
        .navbar-modern .nav-link.active {
            color: #0d6efd;
            font-weight: 600; /* Đậm hơn để nhấn mạnh */
            background-color: rgba(13, 110, 253, 0.1); /* Nền rõ hơn hover một chút */
        }

    /* 5. Tùy chỉnh Menu Dropdown */
    .navbar-modern .dropdown-menu {
        border: none; /* Bỏ viền mặc định */
        border-radius: 12px; /* Bo góc nhiều hơn cho menu */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Đổ bóng rõ nét hơn */
        padding: 0.5rem; /* Thêm đệm xung quanh các mục */
        margin-top: 0.5rem !important; /* Khoảng cách với nút "Categories" */
    }

    /* 6. Tùy chỉnh các mục trong Dropdown (dropdown-item) */
    .navbar-modern .dropdown-item {
        color: #333;
        font-weight: 500;
        padding: 0.6rem 1rem;
        border-radius: 8px; /* Bo góc cho từng mục */
        transition: all 0.2s ease;
    }

        .navbar-modern .dropdown-item:hover,
        .navbar-modern .dropdown-item:focus {
            color: #0d6efd;
            background-color: rgba(13, 110, 253, 0.07); /* Đồng nhất hiệu ứng hover */
        }

        /* 7. Căn chỉnh các biểu tượng (icon) trong dropdown */
        .navbar-modern .dropdown-item i {
            width: 20px; /* Đặt chiều rộng cố định */
            text-align: center; /* Căn giữa icon */
            margin-right: 0.75rem; /* Khoảng cách với chữ */
            color: #555; /* Màu icon hơi nhạt hơn */
            transition: color 0.2s ease;
        }

        .navbar-modern .dropdown-item:hover i {
            color: #0d6efd; /* Đổi màu icon khi hover */
        }
/*
 * CSS cho tag chéo (Ribbon Tag)
 */

.product-card {
    overflow: hidden; /* Quan trọng: Đảm bảo tag chéo không bị tràn ra ngoài */
}

.product-tag-ribbon.new {
    background-color: #28a745; /* Màu xanh lá (success) của Bootstrap */
}

.product-tag-ribbon {
    position: absolute;
    top: 60px; /* Điều chỉnh khoảng cách từ đỉnh card */
    left: -25px; /* Điều chỉnh khoảng cách từ trái card */
    width: 120px; /* Chiều rộng của dải ribbon */
    background-color: #ffc107; /* Màu vàng của Bootstrap, có thể đổi thành #dc3545 (đỏ) hoặc #0d6efd (xanh) */
    color: #fff; /* Màu chữ */
    text-align: center;
    font-size: 0.75rem; /* Kích thước chữ */
    font-weight: bold;
    padding: 5px 0; /* Đệm trên dưới */
    transform: rotate(-45deg); /* Xoay 45 độ ngược chiều kim đồng hồ */
    transform-origin: 0% 0%; /* Điểm xoay tại góc trên bên trái */
    z-index: 10; /* Đảm bảo nó nằm trên ảnh */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Đổ bóng nhẹ cho đẹp */
}

    /* Optional: Nếu muốn tag có vẻ "nhọn" hơn ở cuối */
    .product-tag-ribbon::before {
        content: '';
        position: absolute;
        top: 100%; /* Đặt ở cuối ribbon */
        left: 0;
        border-top: 5px solid #a37f04; /* Màu đậm hơn màu nền ribbon */
        border-right: 5px solid transparent;
    }

    .product-tag-ribbon::after {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        border-top: 5px solid #a37f04; /* Màu đậm hơn màu nền ribbon */
        border-left: 5px solid transparent;
    }


    /* Các màu sắc khác nếu bạn muốn */
    .product-tag-ribbon.hot {
        background-color: #dc3545; /* Đỏ */
    }

        .product-tag-ribbon.hot::before,
        .product-tag-ribbon.hot::after {
            border-top-color: #a02834;
        }

    .product-tag-ribbon.new {
        background-color: #28a745; /* Xanh lá */
    }

        .product-tag-ribbon.new::before,
        .product-tag-ribbon.new::after {
            border-top-color: #1f7d34;
        }

    .product-tag-ribbon.deal {
        background-color: #17a2b8; /* Xanh dương nhạt */
    }

        .product-tag-ribbon.deal::before,
        .product-tag-ribbon.deal::after {
            border-top-color: #127a8a;
        }

.btn-link-border {
    border: 2px solid gray;
    padding: 2px 4px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2px;
}

.nav-pills .nav-link:not(.active) {
    color: #333;
}

/* Category horizontal scroll - hide scrollbar */
#category-horizontal-scroll {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

#category-horizontal-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
/* Style cho Logo */
.brand-logo {
    /* 1. Kích thước mặc định cho Mobile */
    height: 40px;
    width: auto; /* Tự động tính chiều rộng để không bị méo ảnh */
    /* 2. Đảm bảo ảnh luôn sắc nét và nằm gọn trong khung */
    object-fit: contain;
    /* 3. Hiệu ứng chuyển động mượt mà */
    transition: all 0.3s ease-in-out;
    /* (Tùy chọn) Thêm bóng nhẹ nếu logo bị chìm vào nền */
    /* filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); */
}

/* Màn hình Tablet trở lên (>= 768px) */
@media (min-width: 768px) {
    .brand-logo {
        height: 48px; /* Tăng kích thước một chút */
    }
}

/* Màn hình Desktop trở lên (>= 992px) */
@media (min-width: 992px) {
    .brand-logo {
        height: 55px; /* Kích thước chuẩn cho máy tính */
    }
}

/* Hiệu ứng khi di chuột vào (Hover) */
.brand-logo:hover {
    transform: scale(1.05); /* Phóng to nhẹ 5% tạo cảm giác tương tác */
    filter: brightness(1.1); /* Sáng hơn một chút */
}
