:root{
    --primary:#c40018;
    --primary-dark:#8f0012;
    --gold:#ffd700;
    --dark:#111111;
    --gray:#f5f5f5;
}

body{
    background:#fafafa;
    font-family:Segoe UI,sans-serif;
}

/* HEADER */

.topbar{
    background:linear-gradient(90deg,var(--primary-dark),var(--primary));
    color:#fff;
}

.logo{
    font-size:42px;
    font-weight:900;
    color:white;
    text-decoration:none;
}

.logo span{
    color:var(--gold);
}

.search-box{
    border-radius:5px;
    overflow:hidden;
}

.search-box input{
    border:none;
}

.search-box button{
    background:var(--gold);
    border:none;
}

/* MENU */

.main-menu{
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.main-menu a{
    color:#222;
    text-decoration:none;
    font-weight:600;
}

/* HERO */

.hero{
    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1516728778615-2d590ea1856e');
    background-size:cover;
    background-position:center;
    min-height:520px;
    color:white;
}

.hero h1{
    font-size:64px;
    font-weight:900;
}

.btn-gold{
    background:var(--gold);
    color:black;
    font-weight:700;
}

.btn-gold:hover{
    background:#ffea61;
}

/* CATEGORY */

.category-card{
    background:white;
    border-radius:15px;
    text-align:center;
    padding:20px;
    transition:.3s;
    height:100%;
}

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

.category-card img{
    height:70px;
    object-fit:contain;
}

/* SECTION */

.section-title{
    border-left:6px solid var(--primary);
    padding-left:12px;
    font-weight:500;
    margin-bottom:25px;
    font-size:18px;
}

/* PRODUCT */

.product-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.product-card img{
    height:220px;
    object-fit:cover;
}

.price{
    color:var(--primary);
    font-weight:400;
    font-size:16px;
}

.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:14px;
}

.sale-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:var(--primary);
    color:white;
    padding:5px 10px;
    border-radius:8px;
    font-size:13px;
}

/* CATEGORY BANNER */

.cat-banner{
    border-radius:20px;
    overflow:hidden;
    position:relative;
}

.cat-banner img{
    height:250px;
    width:100%;
    object-fit:cover;
}

.cat-banner-content{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:30px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
}

.footer-title{
    color:var(--gold);
    font-weight:700;
}
.category-link{
    text-decoration:none;
    color:inherit;
    display:block;
}

.category-card{
    width:160px;
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:20px;
    transition:.3s;
    border:1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-card:hover{
    transform:translateY(-5px);
    border-color:#c40018;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.category-card h6{
    margin-top:12px;
    margin-bottom:0;
    color:#222;
}
@media (max-width: 576px){
    .category-card{
    width:110px;
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:20px;
    transition:.3s;
    border:1px solid #eee;
}
    .category-card{
        padding:12px 8px;
        border-radius:12px;
    }

    .category-card img{
        width:42px;
        height:42px;
    }

    .category-card h6{
        font-size:13px;
        line-height:1.2;
    }

}
#page-loader{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;
}

.runway{
    position:relative;
    width:300px;
    height:60px;
    overflow:hidden;
}

/* đường bay */

.runway::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:50%;

    border-top:2px dashed #ddd;
}

/* máy bay */

.plane-flying{
    position:absolute;
    top:50%;

    color:#c40018;
    font-size:34px;

    transform:translateY(-50%);

    animation:fly 2s linear infinite;

    /* viền vàng */
    text-shadow:
        -1px -1px 0 #ffd700,
        1px -1px 0 #ffd700,
        -1px  1px 0 #ffd700,
        1px  1px 0 #ffd700;
}
.plane-flying{
    color:#c40018;
    -webkit-text-stroke: 1px #ffd700;
}
.plane-flying{
    color:#c40018;
    font-size:34px;

    text-shadow:
        -1px -1px 0 #ffd700,
        1px -1px 0 #ffd700,
        -1px  1px 0 #ffd700,
        1px  1px 0 #ffd700;
}

@keyframes fly{

    0%{
        left:-50px;
        transform:
            translateY(-50%)
            rotate(0deg);
    }

    100%{
        left:100%;
        transform:
            translateY(-50%)
            rotate(0deg);
    }
}
.plane-flying{
    animation:
        fly 2s linear infinite,
        blink .5s ease-in-out infinite;
}

@keyframes blink{
    50%{
        opacity:.6;
    }
}
.header-action{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.2s;
}

.header-action:hover{
    color:#ffd700;
}

.header-action i{
    font-size:22px;
}

.cart-link{
    position:relative;
}

.cart-icon{
    position:relative;
    display:flex;
    align-items:center;
}

.cart-count{
    position:absolute;
    top:-10px;
    right:-12px;

    min-width:20px;
    height:20px;

    border-radius:50%;

    background:#ffd700;
    color:#c40018;

    font-size:12px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0 4px;
}
.main-menu{
    background:#fff;
    border-bottom:1px solid #eee;
}

.menu-list{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:start;
    align-items:center;
    gap:40px;
}

.menu-list > li{
    position:relative;
}

.menu-list > li > a{
    display:flex;
    align-items:center;
    padding:16px 0;
    text-decoration:none;
    color:#222;
    font-weight:600;
    font-size:16px;
    transition:.2s;
}

.menu-list > li > a:hover{
    color:#c40018;
}

.dropdown-menu-custom{
    position:absolute;
    top:100%;
    left:0;

    min-width:280px;

    background:#fff;
    border-radius:0 0 10px 10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.12);

    padding:10px 0;

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:.25s;

    z-index:9999;
}

.has-dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu-custom li a{
    display:block;
    padding:12px 18px;
    text-decoration:none;
    color:#333;
    font-size:15px;
}

.dropdown-menu-custom li a:hover{
    background:#fff5f5;
    color:#c40018;
}
.menu-arrow{
    font-size: 12px;
    transition: all .25s ease-in-out;
}

.has-dropdown:hover .menu-arrow{
    transform: rotate(-180deg);
}
.hero-slider{
    overflow:hidden;
}

.hero-slide{
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    text-align:left;
    max-width:700px;
}

.hero-content h1{
    font-size:clamp(42px,7vw,80px);
    font-weight:900;
    letter-spacing:3px;
    margin-bottom:20px;
    text-shadow:0 4px 20px rgba(0,0,0,.5);
}

.hero-content h3{
    font-size:clamp(18px,2vw,28px);
    margin-bottom:25px;
    color:#f5f5f5;
}

.btn-gold{
    background:#ffd700;
    border-color:#ffd700;
    color:#000;
    font-weight:700;
}

.btn-gold:hover{
    background:#ffca00;
    border-color:#ffca00;
}

/* Smooth Zoom Effect */
.carousel-item.active .hero-slide{
    animation:zoomHero 8s linear forwards;
}

@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

/* Fade text */
.carousel-item.active .hero-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Arrow đẹp hơn */
.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:50px;
    height:50px;
    background-size:60%;
    border-radius:50%;
    background-color:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
}
}


.price-row{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:4px;
}

.price{
    color:#ee4d2d;
    font-size:16px;
    font-weight:400;
}

.discount-percent{
    background:#fff0ec;
    color:#ee4d2d;
    font-size:11px;
    font-weight:500;
    padding:2px 5px;
    border-radius:2px;
    line-height:1;
}

.old-price{
    color:#999;
    font-size:13px;
    text-decoration:line-through;
}
.skeleton-card {
    overflow: hidden;
}

.skeleton-image,
.skeleton-title,
.skeleton-price {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e6e6e6 50%,
        #f0f0f0 75%
    );

    background-size: 200% 100%;

    animation: skeleton-loading 1.2s infinite;
}

.skeleton-image {
    width: 100%;
    height: 220px;
}

.skeleton-title {
    height: 18px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.skeleton-price {
    width: 60%;
    height: 20px;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.category-header{
    background:#f8fafc;
    padding:20px 0 30px;
}

.breadcrumb{
    margin-bottom:15px;
}

.breadcrumb-item a{
    text-decoration:none;
    color:#666;
}

.breadcrumb-item.active{
    color:#ee4d2d;
    font-weight:600;
}

.category-banner{
    background: linear-gradient(
    135deg,
    #1e293b,
    #334155
);
    border-radius:16px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.category-banner::before{
    content:'✈';
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:80px;
    opacity:.08;
}

.category-label{
    display:inline-block;
    background:#ee4d2d;
    color:#fff;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    margin-bottom:10px;
}

.category-banner h1{
    font-size:38px;
    font-weight:800;
    margin-bottom:12px;
}

.category-banner p{
    max-width:700px;
    margin:0;
    color:#e2e8f0;
}
.pagination {
    gap: 8px;
}

.pagination .page-item .page-link {
    border: none;
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #374151;
    background: #fff;

    font-weight: 600;

    box-shadow: 0 2px 8px rgba(0,0,0,.05);

    transition: all .2s ease;
}

.pagination .page-item .page-link:hover {
    background: #fff5f3;
    color: #c40018;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: #c40018;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    opacity: .5;
    cursor: not-allowed;
}
.news-card{
    display:block;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    height:100%;
    transition:.25s;
    border:1px solid #eee;
}

.news-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.news-image-wrap{
    position:relative;
}

.news-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.news-content{
    padding:12px;
}

.news-content h6{
    font-size:15px;
    line-height:1.5;
    height:45px;
    overflow:hidden;
    margin-bottom:8px;
}

.news-content p{
    color:#666;
    font-size:13px;
    line-height:1.5;
    height:40px;
    overflow:hidden;
    margin-bottom:0;
}

.news-date{
    font-size:12px;
    color:#999;
    margin-bottom:8px;
}

.news-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#c40018;
    color:#fff;
    padding:4px 8px;
    border-radius:6px;
    font-size:11px;
    font-weight:600;
}
.news-banner{
    background:linear-gradient(
        135deg,
        #c40018,
        #e11d48
    );

    color:#fff;

    padding:40px;

    border-radius:18px;
}

.news-banner h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.news-banner p{
    margin:0;
    opacity:.9;
}

.featured-news{
    display:block;
    position:relative;
    overflow:hidden;
    border-radius:18px;
    text-decoration:none;
    color:#fff;
}

.featured-news img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.featured-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:30px;
}

.featured-badge{
    width:max-content;

    background:#c40018;

    padding:6px 12px;

    border-radius:8px;

    margin-bottom:15px;
}

.news-card{
    display:block;

    text-decoration:none;

    color:#111;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    transition:.25s;

    box-shadow:0 2px 10px rgba(0,0,0,.06);

    height:100%;
}

.news-card:hover{
    transform:translateY(-5px);
}

.news-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.news-body{
    padding:15px;
}

.news-meta{
    font-size:13px;
    color:#888;
    margin-bottom:10px;
}

.news-body h5{
    font-size:18px;
    line-height:1.5;
    min-height:54px;
}

.news-body p{
    color:#666;
    margin-bottom:0;
}
.news-detail-card{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.news-title{
    font-size:38px;
    line-height:1.4;
    font-weight:800;
    margin-bottom:10px;
}

.news-meta{
    color:#777;
    font-size:14px;
}

.news-cover{
    width:100%;
    border-radius:12px;
    margin-bottom:30px;
}

.news-content{
    font-size:17px;
    line-height:1.9;
}

.news-content img{
    max-width:100%;
    height:auto;
    border-radius:10px;
}

.news-content h2,
.news-content h3{
    margin-top:30px;
    margin-bottom:15px;
}

.related-box{
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.related-box h4{
    margin-bottom:20px;
    font-weight:700;
}

.related-item{
    display:flex;
    gap:12px;
    margin-bottom:15px;
    text-decoration:none;
    color:#111;
}

.related-item img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.related-title{
    font-size:14px;
    font-weight:600;
    line-height:1.5;
}
@media (max-width: 991px){

    .topbar{
        padding:10px 0;
    }

    .logo{
        font-size:24px;
    }

    .header-action-mobile{
        color:#fff;
        font-size:22px;
        text-decoration:none;
    }

    .cart-count{
        position:absolute;
        top:-8px;
        right:-10px;

        min-width:18px;
        height:18px;

        background:#c40018;
        color:#fff;

        border-radius:50%;

        display:flex;
        align-items:center;
        justify-content:center;

        font-size:10px;
        font-weight:700;
    }

    .topbar .container{
        max-width:100%;
    }

}
@media (max-width: 768px){

    .hero-slide{
        height:260px;
        background-position:center;
        background-size:cover;
    }

    .hero-content{
        text-align:center;
        padding:0 20px;
    }

    .hero-content h1{
        font-size:28px;
        font-weight:800;
        line-height:1.2;
        margin-bottom:8px;
    }

    .hero-content h3{
        font-size:14px;
        line-height:1.5;
        margin-bottom:15px;
    }

    .hero-content .btn{
        font-size:13px;
        padding:8px 14px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width:35px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon{
        width:20px;
        height:20px;
    }

    .product-card h6{
        font-size:14px;
    }

    .product-card .price {
    color: #ee4d2d;
    font-size: 14px;
    font-weight: 400;
}

}

.mobile-bottom-menu{

    position:fixed;

    bottom:0;

    left:0;

    width:100%;

    height:65px;

    background:#fff;

    border-top:1px solid #eee;

    display:flex;

    justify-content:space-around;

    align-items:center;

    z-index:9999;

    box-shadow:
        0 -3px 20px rgba(0,0,0,.08);
}

.mobile-bottom-menu a{

    flex:1;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#666;

    font-size:11px;

    position:relative;
}

.mobile-bottom-menu i{

    font-size:20px;

    margin-bottom:4px;
}

.mobile-bottom-menu a.active{

    color:#c40018;
}

.menu-badge{

    position:absolute;

    top:3px;

    right:25%;

    min-width:18px;

    height:18px;

    background:#c40018;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:10px;

    font-weight:700;
}

@media(min-width:768px){

    .mobile-bottom-menu{
        display:none;
    }

}

@media(max-width:767px){

    body{
        padding-bottom:75px;
    }

}
#mobileCategorySheet{

    position:fixed;

    inset:0;

    z-index:99999;

    visibility:hidden;
}

#mobileCategorySheet.show{
    visibility:visible;
}

.sheet-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.5);

    opacity:0;

    transition:.25s;
}

#mobileCategorySheet.show .sheet-overlay{
    opacity:1;
}

.sheet-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    background:#fff;

    border-radius:20px 20px 0 0;

    max-height:70vh;

    overflow:auto;

    transform:translateY(100%);

    transition:.3s;
}

#mobileCategorySheet.show .sheet-content{
    transform:translateY(0);
}

.sheet-header{

    padding:15px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid #eee;
}

.sheet-header h5{
    margin:0;
    font-weight:700;
}

.sheet-header button{

    border:none;

    background:none;

    font-size:20px;
}

.sheet-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 20px;

    color:#222;

    text-decoration:none;

    border-bottom:1px solid #f3f3f3;
}

.sheet-item:hover{
    background:#fafafa;
}
.main-image{
    height:500px;
    overflow:hidden;
}

.main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.thumb{
    width:80px;
    height:80px;
    object-fit:cover;
    cursor:pointer;
    border:2px solid transparent;
    transition:all .2s ease;
}

.thumb:hover{
    border-color:#ee4d2d;
}

.thumb.active{
    border-color:#ee4d2d;
}
.thumb{
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: all .2s ease;
    padding: 2px;
    background: #fff;
}

.thumb:hover{
    border-color: #ee4d2d;
}

.thumb.active{
    border: 2px solid #ee4d2d;
    box-shadow: 0 0 0 1px #ee4d2d;
}
.category-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:20px;
}

.category-link{
    text-decoration:none;
}

.category-card{
    height:180px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    transition:.3s;
}

.category-card:hover{
    border-color:#c40018;
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.category-card img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:12px;
}

.category-card h6{
    margin:0;
    font-size:16px;
    line-height:1.4;
    font-weight:500;

    /* giới hạn 2 dòng */
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

@media(max-width:992px){
    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:576px){
    .category-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

@media (max-width: 991px){
    .category-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width: 576px){
    .category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .category-card{
        height:60px;
        padding:6px;
    }

    .category-card img{
        width:50px;
        height:50px;
    }

    .category-card h6{
        font-size:14px;
        line-height:1.3;
    }
}
@media (max-width:576px){

    .category-grid{
        display:grid;
        grid-auto-flow:column;
        grid-auto-columns:48%;
        overflow-x:auto;
        gap:12px;
        padding-bottom:10px;
    }

    .category-grid::-webkit-scrollbar{
        display:none;
    }
}
  .success-card {
            background: #fff;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
            margin-bottom: 25px;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: auto;
            border-radius: 50%;
            background: #e8f8ee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 55px;
            color: #16a34a;
        }

        .success-card h1 {
            font-size: 34px;
            font-weight: 700;
            margin-top: 20px;
            margin-bottom: 15px;
        }

        .success-desc {
            color: #666;
            max-width: 700px;
            margin: auto;
            line-height: 1.8;
        }

        .order-code-box {
            margin-top: 25px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #fff7e6;
            border: 1px dashed #ffc107;
            border-radius: 12px;
            font-size: 18px;
        }

        .order-code-box strong {
            color: #c40018;
            font-size: 20px;
        }

        .order-details-page .detail-card {
            background: #fff;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
            height: 100%;
        }

       .order-details-page  .detail-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

       .order-details-page  .detail-card  .product-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 0;
            border-bottom: 1px solid #f0f0f0;
        }

       .order-details-page  .detail-card  .product-item:last-child {
            border-bottom: none;
        }

        .order-details-page  .detail-card  .product-item img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid #eee;
        }

        .order-details-page  .detail-card  .product-name {
            font-size: 15px;
            font-weight: 600;
            line-height: 1.6;
        }

        .order-details-page  .detail-card  .product-price {
            color: #c40018;
            font-size: 18px;
            font-weight: 700;
            white-space: nowrap;
        }

        .order-details-page  .detail-card  .info-row {
            margin-bottom: 18px;
        }

        .order-details-page  .detail-card  .info-row strong {
            display: block;
            color: #888;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .order-details-page  .detail-card  .info-row span {
            color: #222;
            line-height: 1.7;
        }

        .order-details-page  .detail-card  .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 14px;
            font-size: 15px;
        }

        .order-details-page  .detail-card  .total-row {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px dashed #ddd;
            font-size: 24px;
            color: #c40018;
            font-weight: 700;
        }

        .order-details-page  .detail-card  .status-box {
            background: #fff8e1;
            border: 1px solid #ffe082;
            border-radius: 12px;
            padding: 15px;
        }

        .order-details-page  .detail-card  .status-box .badge {
            font-size: 14px;
            padding: 8px 14px;
        }

        .order-details-page  .detail-card  .btn-danger {
            .btn-danger {
    background: #c40018;
    border: none;
    border-radius: 10px;
    height: 50px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
        }

        .btn-danger:hover {
            background: #a80015;
        }

        @media(max-width:768px) {

            .success-card {
                padding: 30px 20px;
            }

            .success-card h1 {
                font-size: 26px;
            }

            .product-item {
                flex-wrap: wrap;
            }

            .product-price {
                width: 100%;
                margin-left: 110px;
            }

            .detail-card {
                margin-bottom: 20px;
            }

            .total-row {
                font-size: 20px;
            }
        }
        @media (max-width: 768px) {
    .order-code-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    .order-code-box .label {
        font-size: 13px;
    }

    .order-code-box .code {
        font-size: 15px;
        word-break: break-all;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .product-item {
        align-items: flex-start;
        gap: 10px;
    }

    .product-item img {
        width: 70px;
        height: 70px;
    }

    .product-name {
        font-size: 14px;
        line-height: 1.4;
    }

    .product-price {
        font-size: 15px;
        margin-top: 6px;
    }

    .product-item .flex-grow-1 {
        min-width: 0;
    }
}


.header-action:hover {
    color: #ffd700;
}

.header-action.active {
    color: #ffd700;
    font-weight: 600;
}

.header-action.active i {
    color: #ffd700;
}

.header-action.active span {
    position: relative;
}

.header-action.active span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #ffd700;
    border-radius: 2px;
}
.wrap-detail-product {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
}

.wrap-detail-product .product-title {
    font-size: 20px;
    font-weight: 400;
}

.wrap-detail-product .price-box {
    background: #fafafa;
    padding: 15px;
    margin-top: 20px;
    font-size: 25px;
    color: #ee4d2d;
    font-weight: 500;
}
.review-summary {
    display: flex;
    gap: 30px;
    padding: 30px;
    border: 1px solid #eee;
    background: #fff8f5;
    border-radius: 10px;
}

.rating-score {
    width: 180px;
    text-align: center;
}

.score {
    font-size: 48px;
    font-weight: 700;
    color: #ee4d2d;
}

.score-text {
    color: #ee4d2d;
}

.stars {
    color: #ffb400;
    font-size: 22px;
}


.review-filters button {
    min-width: 120px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.review-filters button.active {
    border-color: #ee4d2d;
    color: #ee4d2d;
}
.review-item {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-user {
    font-weight: 600;
}

.review-stars {
    color: #ffb400;
}

.review-date {
    color: #999;
    font-size: 13px;
}

.review-content {
    margin-top: 15px;
    line-height: 1.7;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.review-images img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
}
.review-action {
    margin: 20px 0;
    text-align: right;
}

.btn-review-toggle {
    border: none;
    background: #e53935;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-review-toggle:hover {
    background: #c62828;
}

.review-form-card {
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.review-form-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.review-form-card label {
    font-weight: 600;
    margin-bottom: 6px;
}

.review-form-card .form-control,
.review-form-card .form-select {
    border-radius: 8px;
}

.review-form-card textarea {
    resize: vertical;
}
.review-filters a{
    margin-right:10px;
    text-decoration:none;
    color:#333;
}
.review-filter-btn {
    text-decoration:none;
    color:#333;
    border:1px solid #ddd;
    padding:8px 16px;
    border-radius:8px;
    background:#fff;
    transition:.2s;
}

.review-filter-btn:hover {
    border-color:#dc3545;
    color:#dc3545;
}

.review-filter-btn.active {
    background:#dc3545;
    border-color:#dc3545;
    color:#fff;
}
.section-title {
    background: #f5f5f5;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.product-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    display: block;
}
.hero-slider {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 500px;
}

/* Background Blur */
.hero-blur {
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:1;

    /* bỏ */
    /* transform:scale(1.15); */
    /* filter:blur(20px); */
}

/* Overlay tối nhẹ */
.hero-blur::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

/* Container */
.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Banner chính */
.hero-content {
    width: 100%;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        height: auto;
        padding: 10px 0;
    }

    .hero-banner {
        border-radius: 8px;
    }
}

.error-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.error-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 250px;
    height: 250px;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 50%;
}

.error-plane {
    max-width: 420px;
    width: 100%;
    margin-bottom: 25px;
    animation: floatPlane 3s ease-in-out infinite;
}

.error-code {
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: #0d6efd;
    margin-bottom: 10px;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-desc {
    max-width: 500px;
    margin: auto;
    color: #6c757d;
    font-size: 17px;
    line-height: 1.7;
}

.error-actions {
    margin-top: 30px;
}

.error-actions .btn {
    min-width: 180px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
}

@keyframes floatPlane {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .error-code {
        font-size: 70px;
    }

    .error-title {
        font-size: 24px;
    }

    .error-card {
        padding: 35px 20px;
    }

    .error-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ===== MOBILE REVIEW ===== */
@media (max-width: 768px) {

    .wrap-review {
        padding: 0 10px;
    }

    .wrap-detail-product {
        margin-top: 15px !important;
    }

    .section-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    /* Tổng quan đánh giá */
    .review-summary {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #eee;
    }

    .rating-score {
        text-align: center;
    }

    .rating-score .score {
        font-size: 38px;
        font-weight: 700;
        color: #ee4d2d;
        line-height: 1;
    }

    .score-text {
        font-size: 14px;
        color: #777;
        margin-top: 3px;
    }

    .stars {
        margin: 8px 0;
        color: #ffc107;
        font-size: 18px;
    }

    .total-review {
        font-size: 13px;
        color: #888;
    }

    /* Filter */
    .review-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .review-filter-btn {
        padding: 7px 14px;
        border-radius: 20px;
        background: #f5f5f5;
        text-decoration: none;
        color: #333;
        font-size: 13px;
        border: 1px solid #ddd;
    }

    .review-filter-btn.active {
        background: #ee4d2d;
        color: #fff;
        border-color: #ee4d2d;
    }

    /* Button viết review */
    .review-action {
        margin: 15px 0;
    }

    .btn-review-toggle {
        width: 100%;
        height: 45px;
        border: none;
        border-radius: 10px;
        background: #ee4d2d;
        color: #fff;
        font-weight: 600;
    }

    /* Form */
    .review-form-card {
        padding: 15px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #eee;
        margin-bottom: 20px;
    }

    .review-form-card h5 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .review-form-card label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    /* Item review */
    .review-item {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 12px;
        border: 1px solid #eee;
    }

    .review-header {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .review-header .avatar {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .review-user {
        font-size: 15px;
        font-weight: 600;
    }

    .review-stars {
        color: #ffc107;
        font-size: 14px;
        margin-top: 2px;
    }

    .review-date {
        font-size: 12px;
        color: #888;
        margin-top: 3px;
    }

    .review-content {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.6;
        color: #333;
    }

    /* Ảnh review */
    .review-images {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        margin-top: 12px;
        padding-bottom: 5px;
    }

    .review-images img {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        object-fit: cover;
        border: 1px solid #eee;
    }

    /* Input */
    .review-form-card .form-control,
    .review-form-card .form-select {
        height: 45px;
        border-radius: 10px;
    }

    .review-form-card textarea.form-control {
        min-height: 100px;
        height: auto;
    }

    .review-form-card .btn-danger {
        width: 100%;
        height: 45px;
        border-radius: 10px;
        font-weight: 600;
    }
}
.seo-card{
    display:block;
    height:100%;
    padding:20px;
    border:1px solid #eee;
    border-radius:12px;
    text-decoration:none;
    color:#222;
    background:#fff;
    transition:.25s;
}

.seo-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    color:#e60023;
}

.seo-card h3{
    font-size:18px;
    margin-bottom:10px;
    font-weight:700;
}

.seo-card p{
    font-size:14px;
    margin:0;
    color:#666;
}
.mobile-bottom-menu i {
    font-size: 20px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 60px;

    display: flex;
    align-items: center;

    background: #fff;
    border-top: 1px solid #e5e7eb;

    box-shadow: 0 -2px 10px rgba(0,0,0,.05);
}

.mobile-bottom-menu a {
    flex: 1;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #666;
    font-size: 13px;
    font-weight: 500;

    position: relative;

    transition: all .2s ease;
}

/* border ngăn giữa */
.mobile-bottom-menu a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
    height: 30px;
    background: #e5e7eb;
}

.mobile-bottom-menu a:hover {
    color: #d60000;
}

.mobile-bottom-menu a.active {
    color: #d60000;
    font-weight: 600;
}

.mobile-bottom-menu a.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 3px;
    background: #d60000;
    border-radius: 20px;
}
