/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito Sans", sans-serif !important;
    color: #0c0905;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none !important;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0 !important;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
}

.cl91 {
    color: #91908e;
}

.title-h4 {
    font-size: 18px;
    font-weight: 800;
    font-family: "Nunito Sans";
}

.f16 {
    font-size: 16px;
}

.nunito {
    font-family: "Nunito Sans";
}

.trocchi {
    font-family: "Trocchi", "Merriweather", serif;
}

.container {
    position: relative;
    width: 100%;
    max-width: 1440px !important;
    margin: 0 auto;
}

/* Section 1: Hero */
.section-hero {
    position: relative;
    /* height: 1080px; */
    /* background: url("/fe/assets/rectangle1.png") center/cover; */
    /* overflow: hidden; */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 1;
}

/* Header Top */
.header-top {
    position: relative;
    background: #f5f5f5;
    padding: 8px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 96px;
    height: 72px;
}

.logo svg {
    width: 100%;
    height: 100%;
    fill: #007f3d;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-info {
    font-size: 14px;
    font-weight: 600;
    color: #0c0905;
    white-space: nowrap;
}

.nav-info p {
    margin: 0;
}

.divider {
    width: 1px;
    height: 12px;
    background: rgba(0, 0, 0, 0.15);
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.number-cart {
    background: #ff9800;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -3px;
    right: -4px;
}

/* Main Navigation */
.main-nav {
    position: relative;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.nav-links a {
    font-size: 16px;
    color: #0c0905;
    transition: color 0.3s;
    text-decoration: none;
    font-family: "Trocchi", "Merriweather", serif;
    display: flex;
    gap: 12px;
}

.nav-links a.active {
    color: #ff9800;
}

.nav-links a.active img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(88%) saturate(3464%)
        hue-rotate(358deg) brightness(100%) contrast(103%);
}

.nav-links a:hover {
    color: #ff9800;
}

.submenu {
    display: none;
}

.nav-links li {
    position: relative;
    padding: 25px 0;
}

.nav-links li:hover .submenu {
    display: block;
    position: absolute;
    z-index: 99;
    background: #fff;
    width: 324px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    top: 65px;
    padding: 24px 32px;
}

.nav-links li:hover .submenu li {
    padding: 8px 0;
}

.btn-primary {
    background: #ff9800 !important;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #e68900;
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    max-width: 100%;
    position: relative;
}

.hero-content .carousel-caption {
    z-index: 9;
    right: 20%;
    top: 57%;
    left: 13%;
}

.hero-content .carousel-caption h3 {
    font-size: 80px;
    line-height: 92px;
    color: white;
    font-weight: 800;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 80px;
    line-height: 92px;
    color: white;
    position: absolute;
    top: -322px;
    font-weight: 800;
    z-index: 9;
    padding-right: 120px;
}

.hero-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    height: 10px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.indicator:first-child {
    width: 100px;
}

.indicator:not(:first-child) {
    width: 40px;
}

.indicator.active {
    background: white;
}

.carousel-inner,
.carousel-item {
    height: 917px;
}

.carousel-item img {
    object-fit: cover;
}

.slide .carousel-indicators {
    position: absolute;
    bottom: 395px;
    left: 13%;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    list-style: none;
    right: auto;
}

.slide .carousel-indicators .active {
    opacity: 1 !important;
    width: 100px !important;
}

.slide .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    width: 40px;
    height: 10px;
    padding: 0;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    border-radius: 20px;
    display: block;
    border: none;
}

/* Social Links */
.social-links {
    position: fixed;
    right: 5px;
    top: 65%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99999;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #ff9800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn img {
    max-height: 24px;
}

.social-btn:hover {
    background: #e68900;
    transform: scale(1.1);
}

/* Section 2: News */
.section-news {
    padding: 96px 0;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 32px;
}

.titles {
    font-size: 50px;
    color: #0c0905;
    font-weight: 800;
    margin-bottom: 0;
}

a.btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    color: #0c0905 !important;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.news-card-large {
    position: relative;
    height: 621px;
    border-radius: 40px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-large .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 64px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.news-content a.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #ffcf89;
    border-radius: 40px;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    color: #0c0905;
    margin-bottom: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s;
}

.news-content a.badge:hover,
a.product-badge:hover {
    background: #f19f26;
}

.news-card-large h3 a {
    font-size: 24px;
    line-height: 32px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #fff 0%, #fff 98%);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all 0.7s;
}

.news-card-large h3 a:hover {
    background-size: 100% 1px;
}

.news-card-large p {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    line-height: 22px;
    color: white;
    margin: 0;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-card-small {
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 24px;
}

.news-card-small img {
    width: 100%;
    height: 191px;
    object-fit: cover;
    border-radius: 40px;
    transition: transform 500ms ease-in-out;
}

.news-card-small h4 a {
    font-size: 20px;
    line-height: 28px;
    color: #0c0905;
    margin-bottom: 16px;
    font-weight: 800;
    text-decoration: none;
    background-image: linear-gradient(to bottom, #000 0%, #000 98%);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all 0.7s;
}

.news-card-small h4 a:hover {
    background-size: 100% 1px;
}

.news-card-small p {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    line-height: 22px;
    color: #0c0905;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

/* ecosystem */
.section-ecosystem {
    background: url(../image/ecosystem.jpg) no-repeat 0 0;
    width: 100%;
    height: 100%;
    display: block;
    height: 715px;
}

.ecos-img {
    display: flex;
    position: relative;
}

.ecos-img .img {
    max-width: 500px;
    height: 470px;
    overflow: hidden;
    display: block;
    border-radius: 0 0 40px 40px;
    z-index: 1;
}

.ecos-img .img:last-child {
    position: absolute;
    z-index: 0;
    right: -12px;
    bottom: -72px;
    border-radius: 40px;
}

.ecos-img .img img {
    width: 100%;
    object-fit: cover;
}

.section-ecosystem .content {
    padding: 100px 40px;
}

.list-ecos {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.list-ecos li {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 16px 36px;
}

.list-ecos li label {
    color: #0c0905;
    font-size: 18px;
    font-family: "Trocchi", "Merriweather", serif;
    display: block;
    margin-bottom: 8px;
}

.list-ecos li span {
    font-size: 32px;
    font-weight: 800;
}

/* Section 3: Animals */
.section-animals {
    padding: 96px 0;
    background: white;
}

.animal-item {
    position: relative;
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: 0.5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}

/* Section 4: Experience */
.section-experience {
    background: #f5f5f5;
    padding: 100px 0;
}

.video-slider {
    position: relative;
    padding: 0 60px;
}

.video-slide {
    padding: 0 15px;
    outline: none;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-card.playing img {
    display: none;
}

.video-card.playing video {
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 152, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-card.playing .play-button {
    display: none;
}

.play-button:hover {
    background: rgba(255, 152, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 5px;
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    font-size: 14px;
    line-height: 1.4;
}

.video-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.slick-prev,
.slick-next {
    width: 50px;
    height: 50px;
    z-index: 100;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev:before,
.slick-next:before {
    font-size: 50px;
    color: #ff9800;
    opacity: 1;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #f57c00;
}

.slick-dots {
    bottom: -60px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
}

.slick-dots li {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.slick-dots li button {
    width: 20px !important;
    height: 10px !important;
    margin: 0 !important;
}

.slick-dots li.slick-active button {
    width: 40px !important;
}

.slick-dots li button:before {
    content: "" !important;
    width: 40px !important;
    height: 10px !important;
    background: #d0d0d0 !important;
    border-radius: 2px;
    opacity: 1 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.slick-dots li button:before {
    width: 20px !important;
    border-radius: 30px;
}

.slick-dots li.slick-active button:before {
    background: #333 !important;
    width: 40px !important;
    height: 10px !important;
}

/* Center mode styling */
.slick-center .video-card {
    transform: scale(1);
}

.video-slide:not(.slick-center) .video-card {
    transform: scale(0.85);
    opacity: 0.6;
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .video-slider {
        padding: 0 40px;
    }

    .video-card {
        height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Section 5: Tickets */
.section-tickets {
    padding: 96px 0;
    background: white;
}

.ribbon-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    margin: 0 auto 96px;
}

.ribbon {
    position: relative;
    background: #ff9800;
    font-size: 40px;
    line-height: 78px;
    color: white;
    text-align: center;
    padding: 20px 100px;
    font-weight: 800;
    clip-path: polygon(0% 0%, 8% 50%, 0% 100%, 100% 100%, 92% 50%, 100% 0%);
    width: 80%;
    max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
    .ribbon {
        font-size: 32px;
        width: 100%;
        padding: 28px 70px;
        clip-path: polygon(
            0% 0%,
            10% 50%,
            0% 100%,
            100% 100%,
            90% 50%,
            100% 0%
        );
    }
}

@media (max-width: 480px) {
    .ribbon {
        font-size: 24px;
        line-height: normal;
        padding: 22px 50px;
        clip-path: polygon(
            0% 0%,
            12% 50%,
            0% 100%,
            100% 100%,
            88% 50%,
            100% 0%
        );
    }
}

@media (max-width: 360px) {
    .ribbon {
        font-size: 20px;
        padding: 18px 35px;
        clip-path: polygon(
            0% 0%,
            15% 50%,
            0% 100%,
            100% 100%,
            85% 50%,
            100% 0%
        );
    }
}

.tickets-header {
    position: relative;
    text-align: center;
    margin-bottom: 102px;
    display: block;
}

.tickets-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 838px;
    height: 142px;
    padding: 10px;
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ticket-card {
    position: relative;
    height: 539px;
    border-radius: 40px;
    overflow: hidden;
}

.ticket-overlay {
    position: relative;
    height: 556px;
}

.ticket-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ticket-overlay::after {
    content: "";
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
}

.ticket-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.ticket-content h3 {
    font-size: 40px;
    line-height: 56px;
    color: white;
    margin-bottom: 24px;
}

.ticket-price {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    line-height: 24px;
    color: white;
    margin-bottom: 24px;
}

.ticket-price p {
    margin: 8px 0;
}

/* Section 6: Courses */
.section-courses {
    padding: 96px 0;
    background: #f5f5f5;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.course-card {
    position: relative;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-card a {
    height: 100%;
}

.course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 40px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.8) 75%
    );
}

.course-overlay h3 {
    font-size: 32px;
    line-height: 44px;
    color: white;
    margin-bottom: 16px;
    font-weight: 800;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-info {
    display: flex;
    gap: 16px;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    line-height: 24px;
    color: white;
    margin-bottom: 16px;
}

.course-info span:not(:last-child)::after {
    content: "|";
    margin-left: 16px;
}

.course-price {
    font-size: 24px;
    line-height: 32px;
    color: white;
    font-weight: 800;
}

/* Section 7: Products */
.section-products {
    padding: 96px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: white;
}

.product-card img {
    width: 100%;
    height: 342px;
    object-fit: cover;
    border-radius: 40px;

    transition: transform 500ms ease-in-out;
}

a.product-badge {
    position: absolute;
    left: 20px;
    background: #ffcf89;
    border-radius: 40px;
    padding: 6px 12px;
    font-family: "Trocchi", "Merriweather", serif;
    bottom: 20px;
    color: #0c0905;
}

.product-content {
    padding: 24px;
}

.product-content h4 {
    font-size: 18px;
    line-height: 24px;
    color: #0c0905;
    margin-bottom: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
}

.product-card .position-relative {
    overflow: hidden;
    border-radius: 40px;
}

.product-card a {
    text-decoration: none;
    color: #0c0905 !important;
    background-image: linear-gradient(to bottom, #000 0%, #000 98%);
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: left 100%;
    transition: all 0.7s;
}

.product-card a:hover {
    background-size: 100% 1px;
}

.rating span {
    color: #ff9800;
    font-size: 22px;
}

.rating .star-default {
    font-size: 22px;
    display: inline-block;
    color: #ddd;
}

.rating .full {
    color: #f5a623;
}

/* sao đầy */
.rating .half {
    position: relative;
}

/* sao nửa */
.rating .half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #f5a623;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #0c0905;
}

/* Section 8: Map */
.section-map {
    padding: 96px 0;
    background: #f5f5f5;
    text-align: center;
}

.section-map h2 {
    font-size: 60px;
    line-height: 78px;
    color: #0c0905;
    margin-bottom: 60px;
}

.section-map h2 span {
    font-weight: 800;
}

.map-container {
    max-width: 1440px;
    margin: 0 auto 120px;
    border-radius: 40px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 732px;
    object-fit: cover;
}

.logo-slider {
    overflow: hidden;
    position: relative;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 0.8) 70%,
        rgba(245, 245, 252455, 0) 100%
    );
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(245, 245, 245, 1) 0%,
        rgba(245, 245, 245, 0.8) 70%,
        rgba(245, 245, 245, 0) 100%
    );
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 180px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.logo-item:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .logo-track {
        gap: 60px;
    }

    .logo-item {
        width: 140px;
        height: 60px;
    }
}

/* Footer */
.footer {
    position: relative;
    padding: 48px 0 24px 0;
    background: url(../image/bg-footer.jpg) center / cover;
    color: rgba(255, 255, 255, 0.85);
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.footer-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-company .logo {
    width: 119px;
    height: 120px;
}

.company-info h4 {
    font-size: 18px;
    line-height: 24px;
    color: white;
    margin-bottom: 12px;
    font-weight: 800;
}

.company-info p {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    line-height: 22px;
    margin: 4px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.3fr;
    gap: 20px;
}

.footer-col h4 {
    font-size: 18px;
    line-height: 24px;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Trocchi", "Merriweather", serif;
}

.footer-col a {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s;
    color: #fff;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.payment-img {
    margin-top: 24px;
    width: 201px;
    height: 76px;
}

.footer-bottom {
    position: relative;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    line-height: 22px;
}

/* top */
/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 62px;
    right: 2px;
    width: 46px;
    height: 41px;
    background: #ff9800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #cf6808;
    transform: translateY(-5px);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #3d3932;
}

/* Arrow icon */
.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
}

/* menu */
.hamburger {
    display: none;
}

.nav-is-toggled .nav-drill {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.nav-is-toggled::after {
    opacity: 1;
    visibility: visible;
}

body::after {
    content: "";
    position: absolute;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.45);
    height: 100%;
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    top: 0;
}

.nav-drill {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.nav-drill {
    display: block;
    position: fixed;
    z-index: 100;
    top: 64px;
    left: 0;
    width: 360px;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: 0.45s;
    transition: 0.45s;
}

.nav-drill .navbar-nav li a {
    font-size: 16px;
    color: #0c0905;
    font-weight: 600;
    display: block;
    padding: 16px;
    transition: all 0.3s;
    border-top: 1px solid #e9e9e9;
    position: relative;
    text-decoration: none;
}

.nav-drill .navbar-nav li a.active {
    color: #ff9800;
}

.nav-drill .navbar-nav li .dot {
    background: url(../image/down-l.svg) no-repeat 0 0;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: 16px;
    top: 22px;
}

.nav-drill .sub-menu,
.sub-menus {
    display: none;
}

.nav-drill .sub-menu a {
    border: none !important;
}

.nav-drill .sub-menu a img,
.nav-drill .sub-menus a img {
    width: 32px;
    height: 32px;
    margin-right: 14px;
}

.sub-menu.dropdown-sub,
.sub-menus.dropdown-sub {
    display: block;
    padding-left: 24px;
}

.nav-drill .navbar-nav li a.dropdown-icon .dot {
    top: 15px;
    transform: rotate(270deg);
}

.nav-drill .navbar-nav li a.item-download.dropdown-icon,
.nav-drill .navbar-nav li a.item-resource.dropdown-icon {
    border-bottom: none;
    font-weight: 800;
}

.nav-drill .navbar-acount {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 32px 0;
    background: #fff;
}

.nav-drill .navbar-acount .list li {
    width: 100%;
    margin: 0 8px;
}

.nav-drill .navbar-acount .list a {
    color: #252525;
    border: 1px solid #d9d9d9;
    width: 100%;
    margin: 0 !important;
}

.nav-drill .navbar-acount .list a.getvpn {
    color: #fff;
}

.nav-drill button.btn-primary {
    width: 94%;
    margin: 20px 10px 0;
}

.branding {
    padding: 16px;
    position: relative;
}

.branding .closemenu {
    position: absolute;
    right: 4px;
    top: 10px;
    padding: 20px;
}

.branding img {
    max-width: 80px;
}

/* cua hang */
.listproduct {
    padding: 96px 0;
}

.header-fluid {
    background: url(../image/bg-cuahang.jpg) no-repeat;
    width: 100%;
    height: 400px;
    display: block;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.header-fluid h2 {
    font-size: 102px;
    color: #fff;
    font-weight: 800;
    text-align: center;
}

.listproduct a.item {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    position: relative;
    height: 342px;
    display: block;
    margin-bottom: 24px;
    transition: all 0.3s;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}

.listproduct a.item:hover .news-content {
    background: #ff9800;
}

.item .news-image {
    width: 100%;
    height: 100%;
}

.item .news-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.item .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.95)
    );
    padding: 20px;
    border-radius: 0 0 40px 40px;
}

.item .news-content h3,
.tickets-price {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 0;
}

.item .news-content span {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 14px;
    font-weight: 400;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    position: relative;
    width: 18px;
    height: 31px;
}

.star input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.star label {
    cursor: pointer;
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star svg {
    width: 100%;
    height: 100%;
    fill: #e0e0e0;
    transition: fill 0.2s ease, transform 0.2s ease;
}

/* Default: 4 sao đầu được tô màu */
/* .star:nth-child(-n + 4) svg {
    fill: #ff9800;
} */

.star_active svg {
    fill: #ff9800;
}


/* Hover effect */
.star:hover svg {
    transform: scale(1.2);
}



.star:nth-child(1):hover ~ .star:nth-child(-n + 1) svg,
.star:nth-child(1):hover svg {
    fill: #ff9800;
}

.star:nth-child(2):hover ~ .star:nth-child(-n + 2) svg,
.star:nth-child(-n + 2):hover svg {
    fill: #ff9800;
}

.star:nth-child(3):hover ~ .star:nth-child(-n + 3) svg,
.star:nth-child(-n + 3):hover svg {
    fill: #ff9800;
}

.star:nth-child(4):hover ~ .star:nth-child(-n + 4) svg,
.star:nth-child(-n + 4):hover svg {
    fill: #ff9800;
}

.star:nth-child(5):hover ~ .star svg,
.stars:hover .star:nth-child(5):hover svg,
.star:nth-child(5):hover ~ .star svg,
.stars:hover .star:nth-child(-n + 5):has(~ .star:nth-child(5):hover) svg,
.star:nth-child(-n + 5):hover svg {
    fill: #ff9800;
}

/* Khi click vào sao thứ N, tô màu N sao đầu */
#star-1:checked ~ label svg {
    fill: #ff9800;
}

.stars:has(#star-1:checked) .star svg {
    fill: #e0e0e0;
}

.stars:has(#star-1:checked) .star:nth-child(1) svg {
    fill: #ff9800;
}

#star-2:checked ~ label svg,
.stars:has(#star-2:checked) .star:nth-child(-n + 2) svg {
    fill: #ff9800;
}

.stars:has(#star-2:checked) .star:nth-child(n + 3) svg {
    fill: #e0e0e0;
}

#star-3:checked ~ label svg,
.stars:has(#star-3:checked) .star:nth-child(-n + 3) svg {
    fill: #ff9800;
}

.stars:has(#star-3:checked) .star:nth-child(n + 4) svg {
    fill: #e0e0e0;
}

#star-4:checked ~ label svg,
.stars:has(#star-4:checked) .star:nth-child(-n + 4) svg {
    fill: #ff9800;
}

.stars:has(#star-4:checked) .star:nth-child(5) svg {
    fill: #e0e0e0;
}

#star-5:checked ~ label svg,
.stars:has(#star-5:checked) .star svg {
    fill: #ff9800;
}

.pro-propose {
    background: #f5f5f5;
}

.pro-propose .product-card {
    background: none;
}

.section-header .nav-tabs {
    background: #fff;
    border: none;
    border-radius: 40px;
    padding: 4px !important;
    gap: 20px;
}

.section-header .nav-tabs .nav-link {
    border: none;
    color: #0c0905;
    font-weight: 800;
    font-size: 18px;
    border-radius: 40px;
}

.section-header .nav-tabs .nav-link.active {
    background: #ff9800;
    color: #fff;
}

.out-stock {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 800;
    padding: 12px 32px;
    border-radius: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1em 0 0 -4em;
}

.sale,
.hot {
    background: #ef0000;
    color: #fff;
    font-family: "Trocchi", "Merriweather", serif;
    padding: 6px 12px;
    border-radius: 40px;
}

.hot {
    background: #01652f;
    text-transform: uppercase;
}

.tool .product-badge {
    position: initial;
}

.tool {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.old-price {
    text-decoration: line-through;
    color: #91908e;
    margin-right: 10px;
}

.sale-price {
    color: #ff9800;
    font-weight: 800;
}

.detail-listpro {
    padding: 0 0 100px;
}

.detail-listpro .product-card a:hover,
.listkh a:hover {
    background-size: 0;
}

.detail-listpro .product-card a:hover h4 {
    color: #ff9800;
}

/* chi tiết danh mục */
.breadcrumb {
    padding: 24px 0 !important;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.breadcrumb-item,
a.breadcrumb-item {
    color: #91908e !important;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #0c0905 !important;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 366px 1fr;
    gap: 24px;
}

/* Sidebar */
.sidebar {
    background: var(--bg-light);
    border-radius: 40px;
    padding: 24px 32px;
    height: fit-content;
    position: sticky;
    top: 20px;
    animation: slideInLeft 0.5s ease;
    background: #f5f5f5;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-section {
    margin-bottom: 24px;
    position: relative;
}

.sidebar-title {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 16px;
}

.category-list {
    list-style: none;
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px;
}

.category-item a {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    color: #0c0905;
    text-decoration: none;
}

.category-item a:hover {
    color: #ff9800;
}

.category-item:hover,
.category-item:hover a {
    transform: translateX(4px);
    color: #ff9800;
}

.category-item.active {
    color: #ff9800;
}

.category-item .count {
    font-weight: 600;
    font-size: 18px;
}

.sidebar-divider {
    height: 0.5px;
    background: rgba(0, 0, 0, 0.15);
    margin: 24px 0;
}

/* Price Range */
.price-range {
    margin: 24px 0 0;
}

.range-track {
    height: 8px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    position: relative;
}

.range-fill {
    position: absolute;
    height: 8px;
    background: #ff9800;
    border-radius: 4px;
    width: 50%;
}

.range-thumb {
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border: 3px solid #ff9800;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.range-thumb:hover {
    transform: translateY(-50%) scale(1.2);
}

.range-thumb-min {
    left: 0;
}

.range-thumb-max {
    left: 50%;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 32px 0 24px;
}

.price-input {
    padding: 12px 24px;
    border: 1px solid #fff;
    border-radius: 40px;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.btn-filter {
    width: 100%;
    background: #ff9800;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.3);
}

.category-list-mobile {
    position: relative;
    display: none;
}

.category-list-mobile .dropdown-button {
    width: 100%;
    padding: 16px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-weight: 800;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-list-mobile .dropdown-button:hover {
    border-color: #fb923c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-list-mobile .dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1a1a1a;
    transition: transform 0.3s;
}

.category-list-mobile .dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.category-list-mobile .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    display: block;
}

.category-list-mobile .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
}

.category-list-mobile .menu-item {
    padding: 18px 24px;
    font-size: 17px;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
}

.category-list-mobile .menu-item a {
    font-size: 16px;
    font-family: "Trocchi", "Merriweather", serif;
    text-decoration: none;
    color: #0c0905;
}

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

.menu-item:hover {
    background: #fff7ed;
    padding-left: 30px;
}

.menu-item.selected {
    color: #fb923c;
    background: #fff7ed;
}

.menu-item .icon {
    font-size: 18px;
    font-weight: 600;
}

.menu-item:hover .icon,
.menu-item.selected .icon {
    opacity: 1;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .dropdown-menu {
        width: 95%;
    }
}

/* Products Section */
.products-section {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    width: 522px;
    transition: all 0.3s ease;
}

.search-box:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.1);
}

.search-box .form-control {
    background-color: #fff !important;
    border: none;
    padding: 0;
}

.search-box .form-control::placeholder {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.form-control:focus {
    box-shadow: none !important;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.sort-dropdown:hover {
    border-color: #0c0905;
}

.sort-menu {
    position: absolute;
    top: 56px;
    right: 0;
    background: white;
    border-radius: 40px;
    padding: 24px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 266px;
    z-index: 10;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sort-menu.show {
    display: flex;
}

.sort-option {
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
}

a.sort-option {
    text-decoration: none !important;
    color: inherit;
    /* giữ màu chữ hiện tại */
}

.sort-option:hover,
.sort-option.active {
    color: #ff9800;
}

a.sort-option {
    color: #212529;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.product-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 326px;
    border-radius: 40px;
    overflow: hidden;
}

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

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

.badge-discount,
.badge-hot {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 40px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.badge-discount {
    background: var(--discount-red);
}

.badge-hot {
    background: var(--primary-dark);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.star {
    color: #ff9800;
}

.star.empty {
    color: #ffcf89;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 16px;
}

.price-old {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.price-current {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

a.page-btn,
a.page-number {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    color: #212529;
    font-family: "Nunito Sans", sans-serif;
    text-decoration: none;
}

.page-btn:hover,
.page-number:hover {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
    transform: translateY(-2px);
}

.page-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7481%)
        hue-rotate(263deg) brightness(104%) contrast(104%);
}

.page-number.active {
    background: #ff9800;
    color: white;
    border-color: #ff9800;
}

.pagination .page-btn.disabled,
.pagination .page-btn.disabled:hover,
.pagination .page-btn.disabled:focus,
.pagination .page-btn.disabled:active {
    color: #aaa;
    /* màu chữ mờ */
    cursor: not-allowed;
    /* không cho click */
    background-color: transparent !important;
    /* không đổi màu khi hover */
    border-color: #ddd !important;
    /* giữ border */
    box-shadow: none !important;
    /* bỏ hiệu ứng */
    pointer-events: none;
    /* chặn mọi event */
}

/* chi tiết sản phẩm */

.product-section,
.news-detail {
    padding-bottom: 48px;
}

.product-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* Gallery */
.gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery {
        flex-direction: row;
    }
}

.thumbnails {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .thumbnails {
        flex-direction: column;
        max-height: 542px;
        overflow-y: auto;
    }
}

.thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .thumbnail {
        width: 150px;
        height: 150px;
    }
}

.thumbnail.active {
    border-color: #ff9800;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image {
    flex: 1;
    aspect-ratio: 1;
    border-radius: 40px;
    overflow: hidden;
    background: #d9d9d9;
    position: relative;
    max-width: 542px;
    height: 542px;
}

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

.discount-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #ef0000;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 16px;
}

/* Product Info */
.txt-rating {
    color: #91908e;
    font-size: 16px;
    font-family: "Trocchi", "Merriweather", serif;
    margin-left: 12px;
}

.product-info .sale-price {
    font-size: 24px;
    font-weight: 800;
    color: #212529;
}

.product-grid .product-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.product-grid .product-info h1 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 800;
}

.review-count {
    color: #91908e;
}

.price-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.old-price {
    color: #91908e;
    text-decoration: line-through;
    font-size: 18px;
}

.current-price {
    color: #212529;
    font-size: 24px;
}

.product-info .divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
}

.quantity-cart {
    display: flex;
    gap: 8px;
}

@media only screen and (max-width: 640px) {
    .quantity-cart {
        flex-direction: inherit;
    }

    .add-to-cart,
    .quantity-cart .btn-primary {
        width: 100% !important;
    }

    .quantity-selector {
        justify-content: center;
    }
}

.quantity-selector {
    background: #f5f5f5;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.quantity-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.quantity-btn {
    width: 20px;
    height: 30px;
}

.quantity-btn:hover {
    opacity: 0.7;
}

.quantity-value {
    font-size: 18px;
    min-width: 20px;
    text-align: center;
    font-weight: 800;
}

.add-to-cart {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #0c0905;
    padding: 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    transition: all 0.3s;
    width: 246px;
}

.quantity-cart .btn-primary {
    width: 246px;
}

.add-to-cart:hover {
    transform: translateY(-2px);
}

/* ========== Product Tabs ========== */
.tab-buttons.nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    gap: 42px;
}

.tab-buttons.nav-tabs .nav-link {
    border: none;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #91908e;
    padding: 0px 0px 16px;
}

.tab-buttons.nav-tabs .nav-link.active {
    border-bottom: 4px solid #ff9800;
    color: #000;
}

.product-tabs-section .tab-content {
    padding: 32px 0;
}

.product-tabs-section .tab-pane,
.description {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.listrevew li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.listrevew li:last-child {
    margin-bottom: 0;
}

.listrevew .avartar {
    width: 56px;
    height: 56px;
    display: inline-block;
}

.listrevew .avartar img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.listrevew .content {
    font-family: "Trocchi", "Merriweather", serif;
}

.listrevew .name {
    font-size: 18px;
    font-weight: 800;
}

.listrevew .date {
    color: #91908e;
    font-size: 16px;
}

.listrevew .content .d-flex {
    gap: 12px;
    align-items: center;
}

.form-revew {
    background: #f5f5f5;
    border-radius: 40px;
    padding: 24px 32px;
    font-family: "Nunito Sans", sans-serif;
    margin-top: 32px;
}

.form-revew h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
}

.form-revew textarea.form-control {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 24px;
}

.form-revew textarea.form-control::placeholder {
    color: #000;
}

.form-revew .star {
    width: 34px;
}

.review-textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    color: #333;
    line-height: 1.6;
}

.review-textarea::placeholder {
    color: #bbb;
}

.review-textarea:focus {
    outline: none;
    border-color: #ffa726;
    box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.rating-section {
    margin: 0 0 25px;
    display: flex;
    gap: 8px;
}

.rating-section .star {
    font-size: 32px;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.rating-section .star:hover,
.rating-section .star.hover {
    color: #ffa726;
}

.rating-section .star.active {
    color: #ffa726;
}

.submit-btn,
a.submit-btn {
    background: #ffa726;
    color: white !important;
    border: none;
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 167, 38, 0.3);
    text-decoration: none;
}

.submit-btn:hover {
    background: #fb8c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 167, 38, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.success-message {
    display: none;
    background: #4caf50;
    color: white;
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.success-message.show {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.char-count {
    text-align: right;
    font-size: 13px;
    color: #999;
    margin-top: 8px;
}

.box-review {
    max-width: 800px;
}

.slide-item .product-card {
    margin: 0 10px;
}

.section-products .slick-track {
    margin-left: 0;
}

.section-products .slick-prev,
.section-products .slick-next {
    top: -50px;
    width: 56px;
    height: 56px;
}

.section-products .slick-next {
    right: 0;
}

.section-products .slick-prev {
    right: 66px;
    left: auto;
}

.section-products .slick-prev:before,
.section-products .slick-next:before {
    background: url(../image/btn-next.svg) no-repeat 0 0;
    width: 56px;
    height: 56px;
    content: "";
    display: block;
}

.section-products .slick-prev:before {
    transform: rotate(180deg);
}

/* giỏ hàng */
/* Cart Items */
.cart-wapper {
    display: grid;
    grid-template-columns: 1fr 453px;
    gap: 53px;
    position: relative;
    margin-top: 64px;
    padding-bottom: 96px;
}

.cart-header {
    display: grid;
    grid-template-columns: 1fr 160px 219px 160px;
    gap: 32px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    font-weight: 800;
    font-size: 24px;
}

.cart-header div {
    text-align: right;
}

.cart-header div:first-child {
    text-align: left;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr 160px 219px 160px;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
    align-items: center;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.item-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    object-fit: cover;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
}

.item-name {
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
}

.item-price {
    font-weight: 600;
    font-size: 18px;
    text-align: right;
}

.item-total {
    font-weight: 600;
    font-size: 18px;
    text-align: right;
}

/* Quantity Controls */
.quantity-controls {
    display: grid;
    gap: 8px;
    align-items: center;
    grid-template-columns: auto 1fr;
}

.quantity-btn-group {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #f5f5f5;
    padding: 16px 24px;
    border-radius: 40px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.quantity-btn:hover {
    transform: scale(1.2);
}

.quantity-btn:active {
    transform: scale(0.9);
}

.quantity-value {
    font-weight: 800;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.delete-btn {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    border-color: #ef0000;
    background: #fff0f0;
    transform: scale(1.1);
}

/* Order Summary */
.order-summary {
    background: #f5f5f5;
    border-radius: 40px;
    padding: 24px 32px 92px;
    height: fit-content;
    position: sticky;
    top: 76px;
}

.summary-title {
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

.promo-code {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.promo-input,
.promo-code input {
    flex: 1;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: "Trocchi", "Merriweather", serif;
}

.promo-input:focus,
.promo-code input:focus {
    border-color: #ff9800;
}

.promo-btn,
.btn-apply {
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    background: #fff;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-btn:hover,
.btn-apply:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.divider-line {
    display: flex;
    align-items: center;
    margin: 32px 0;
}

.divider-line::after {
    content: "";
    width: 100%;
    height: 0.5px;
    background: rgba(0, 0, 0, 0.15);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
}

.summary-row.total {
    font-size: 18px;
}

.summary-value {
    font-weight: 600;
    font-size: 18px;
}

.summary-value.total {
    font-weight: 800;
}

.checkout-btn {
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 16px 24px;
    border-radius: 40px;
    border: none;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 152, 0, 0.3);
}

@media (max-width: 1024px) {
    .main-content.cart-wapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-summary {
        position: static;
        margin-top: 32px;
        padding: 24px 18px 92px;
    }

    .cart-header,
    .cart-item {
        grid-template-columns: 1fr 120px 180px 120px;
        gap: 16px;
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-info {
        display: none;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .item-price,
    .item-total {
        text-align: left;
    }

    .quantity-controls {
        justify-content: space-between;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .promo-input {
        width: 180px;
    }

    .summary-title {
        font-size: 18px;
    }
}

/* end giỏ hàng */
/* thanh toán */
.steps-container {
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.steps {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #f5f5f5;
    padding: 16px 24px;
    border-radius: 40px;
    width: 100%;
    max-width: 1440px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    background-color: transparent;
    border: 1px solid #c2c1c0;
    color: #c2c1c0;
}

.step.active .step-number {
    background-color: #ff9800;
    border: none;
    color: white;
}

.step.active .step-label {
    color: #0c0905;
}

.step-label {
    font-size: 18px;
    font-weight: 800;
    color: #c2c1c0;
}

.step-divider {
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 453px;
    gap: 53px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    padding-bottom: 8px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    color: #0c0905;
    font-family: "Trocchi", "Merriweather", serif;
}

.required {
    color: #ef0000;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    font-size: 16px;
    background-color: white;
    color: #0c0905;
    font-family: "Trocchi", "Merriweather", serif;
    font-weight: 400;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #c2c1c0;
}

.form-group textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: none;
}

.account-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    cursor: pointer;
}

.account-option label {
    font-size: 16px;
    cursor: pointer;
    font-family: "Trocchi", "Merriweather", serif;
}

.divider-line {
    height: 1px;
    /* background-color: rgba(0, 0, 0, 0.15); */
}

/* Payment Method */
.payment-method {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-option input[type="radio"] {
    width: 24px;
    height: 24px;
    border: 1px solid #ffcf89;
    cursor: pointer;
}

.radio-option label {
    font-size: 16px;
    cursor: pointer;
    font-family: "Trocchi", "Merriweather", serif;
}

.payment-note {
    font-size: 18px;
    font-style: italic;
    color: #91908e;
}

/* Shipping Fees */
.shipping-fees {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 24px 32px;
}

.shipping-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}

.fee-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.15);
}

.fee-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fee-item span:first-child {
    font-family: "Trocchi", "Merriweather", serif;
}

.fee-item span:last-child {
    font-weight: 600;
}

/* Order Summary */
.promo-code {
    display: flex;
    gap: 8px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-item {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 16px;
    align-items: center;
}

.quantity {
    font-size: 18px;
    font-weight: 600;
}

.product-name {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: "Trocchi", "Merriweather", serif;
}

.price {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.summary-line span:last-child {
    font-weight: 600;
    font-size: 18px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.summary-total span:last-child {
    font-weight: 800;
    font-size: 18px;
}

/* Fixed Footer */
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #ffcf89 0%, #ffcf89 60%, white 60%);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.fixed-footer .footer-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 16px 240px;
    gap: 0;
}

.footer-payment {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
}

.footer-payment strong {
    font-weight: 800;
}

.footer-total {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 18px;
}

.footer-total strong {
    font-size: 24px;
    font-weight: 800;
    font-family: "Nunito Sans", sans-serif;
    margin-left: 20px;
}

.btn-checkout {
    background-color: #ff9800;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

/* Responsive Design */

@media screen and (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: relative;
        top: 0;
    }

    .nav-menu {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .header-info {
        flex-direction: column;
        gap: 8px;
        padding: 0;
    }

    .step {
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .steps-container {
        padding: 0;
    }

    .steps {
        padding: 12px;
        gap: 10px;
    }

    .header-info .divider {
        display: none;
    }

    .header-nav .container {
        flex-direction: column;
        gap: 16px;
    }

    .step-divider {
        height: 24px;
        width: 1px;
    }

    .steps .step-divider {
        height: 1px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .fixed-footer {
        background: #ffcf89;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 24px;
    }

    .footer-payment {
        justify-content: center;
    }

    .footer-total {
        flex-direction: column;
        width: 100%;
    }

    .btn-checkout {
        width: 100%;
        justify-content: center;
    }

    .form-column {
        gap: 0;
    }

    .payment-method {
        display: block;
    }

    .radio-option {
        margin-bottom: 10px;
    }

    .shipping-fees {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .step-label {
        font-size: 14px;
    }

    .footer-content {
        padding: 0;
    }

    .promo-input,
    .promo-code input {
        width: 100px;
    }
}

#accountOption {
    display: flex;
}

.user-logged-in #accountOption {
    display: none;
}

/* end thanh toán */
/* newss */
.order-success {
    max-width: 920px;
    margin: 0 auto 96px;
    font-family: "Trocchi", "Merriweather", serif;
}

.sucss-info {
    background: #d5ffe9;
    border-radius: 40px;
    text-align: center;
    padding: 40px 0;
    margin: 40px 0;
}

.sucss-info p {
    font-size: 24px;
    font-weight: 800;
}

.flex-1 {
    flex: 1 1 0%;
}

.w-8 {
    width: 2rem;
}

.order-success h3 {
    font-weight: 800;
    font-size: 18px;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 24px;
}

.order-success .promo-btn {
    display: flex;
    gap: 8px;
    font-family: "Nunito Sans";
}

.order-success ul.list {
    list-style: disc;
    padding-left: 18px !important;
}

.order-success .divider-line {
    height: 0px;
    margin: 18px 0;
}

.text-lg {
    font-weight: 800;
}

.header-fluid.banner-news {
    background: url(../image/bg-tintuc.png) no-repeat;
}

.news,
.plants-animals,
.contact,
.account {
    padding: 64px 0 96px;
}

.news .products-grid {
    grid-template-columns: repeat(2, 1fr);
}

.news .products-grid .decrip,
.related .product-content .decrip,
.course-list .product-content .decrip,
.plants-animals .product-content .decrip {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: "Trocchi", "Merriweather", serif;
    margin-bottom: 0;
}

.news .products-grid .decrip {
    -webkit-line-clamp: 3;
}

.entry-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Trocchi", "Merriweather", serif;
    color: #91908e;
    margin-top: 12px;
}

.entry-meta a {
    color: #0c0905;
}

.entry-meta a:hover {
    color: #ff9800 !important;
}

.news .sidebar {
    top: 76px;
}

.entry-thumbnail-area img {
    border-radius: 40px;
    width: 100%;
    margin-bottom: 24px;
}

.entry-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 48px 0 24px;
    gap: 12px;
}

.entry-categories a.product-badge {
    position: inherit;
    text-decoration: none;
    color: #0c0905;
}

.entry-title {
    font-size: 60px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
}

.news-detail .entry-meta {
    justify-content: center;
    gap: 24px;
}

.meta-share {
    display: flex;
}

.news-detail .entry-meta li {
    position: relative;
    padding-right: 12px;
}

.news-detail .entry-meta li::before {
    content: "";
    background: rgba(0, 0, 0, 0.15);
    width: 1px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: -7px;
    top: 4px;
}

.news-detail .entry-meta li:last-child:before {
    content: none;
}

.entry-header::before {
    content: "";
    background: rgba(0, 0, 0, 0.15);
    width: 960px;
    height: 1px;
    display: inline-block;
    position: absolute;
    bottom: -20px;
    left: 18%;
}

.entry-content {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.entry-content h3 {
    font-size: 40px;
    font-family: "Nunito Sans";
    font-weight: 800;
}

.box-review h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.related .product-card img {
    height: 257px;
}

/* end news */
/* khóa học */
.header-fluid.banner-course {
    background: url(../image/bg-khoahoc.png) no-repeat;
}

.testimonial {
    background: #f5f5f5;
    padding: 72px 0 96px;
}

.testimonial-slide {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-left: 80px;
    padding-top: 30px;
}

.testimonial-slide::before {
    content: "";
    background: url(../image/quocte.png) no-repeat 0 0;
    display: inline-block;
    width: 76px;
    height: 64px;
    position: absolute;
    top: 1px;
    left: 0;
}

.testimonial-slide p {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 24px;
}

.testimonial-slide .divider-line {
    width: 240px;
    justify-content: center;
    margin: 32px auto;
}

.designation {
    font-weight: 800;
    font-size: 18px;
}

.curriculum,
.faq {
    padding: 80px 0 120px;
}

.curriculum h3 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 50px;
}

.curriculum .decrip,
.detail-course .decrip {
    font-size: 16px;
    font-family: "Trocchi", "Merriweather", serif;
    text-align: justify;
}

.slide-item .img img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
}

.post-date {
    font-family: "Trocchi", "Merriweather", serif;
    display: flex;
}

.post-date img {
    width: 16px;
    height: auto !important;
    object-fit: fill;
}

.listkh {
    display: flex;
    align-items: center;
    margin: 16px 0;
    gap: 12px;
}

.listkh a {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 6px 12px;
    display: block;
}

.entry-content .price {
    font-family: "Nunito Sans";
}

.entry-content .divider-line {
    margin: 20px 0;
}

.product-card .bg-off {
    background: #ffcf89;
}

.product-card .bg-on {
    background: #01652f;
    color: #fff !important;
}

.course-list {
    padding: 96px 0;
}

.w200 {
    max-width: 200px;
}

.curriculum .form-group input,
.curriculum .form-group textarea,
.curriculum .form-group select {
    background: #fff;
}

.faq .accordion-item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    border-top: none;
    border-left: none;
    border-right: none;
}

.faq .accordion-item:last-child {
    border-bottom: none;
}

.faq .accordion {
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 40px;
    padding: 10px 32px;
}

.faq .accordion-button:not(.collapsed) {
    background: none;
    color: #0c0905;
    box-shadow: none;
    padding: 24px 0px 0;
}

.faq .accordion-button {
    background: none;
    color: #0c0905;
    font-weight: 800;
    padding: 24px 0px;
    font-size: 24px;
}

.faq .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.faq .accordion-body {
    padding: 24px 0;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.faq .accordion-body p {
    margin-bottom: 0;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url(../image/minus.svg);
    background-position: center;
}

.faq .accordion-button::after {
    background-image: url(../image/plus.svg);
}

/* chi tiết khóa học */
.detail-course {
    padding: 24px 0 48px;
}

.detail-course .infor {
    background: #f5f5f5;
    border-radius: 40px;
    padding: 24px 120px;
    margin-top: 24px;
    margin-bottom: 48px;
}

.detail-course .infor ul.list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.detail-course .infor ul.list li {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-course .infor ul.list label {
    color: #91908e;
    font-size: 16px;
}

.detail-course .slider-nav-thumbnails img {
    width: 160px !important;
    height: 120px !important;
    border-radius: 24px;
}

.detail-course .slider-nav-thumbnails .slick-slide.slick-current.slick-active {
    border: 3px solid #ff9800;
    border-radius: 24px;
}

.detail-course .slick-slide {
    margin-right: 16px;
}

.detail-course .slick-slider {
    margin-bottom: 24px;
}

.detail-course .slide-item .img img {
    height: 510px;
    object-fit: cover;
}

.detail-course h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.address {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
}

.detail-course .price {
    font-size: 24px;
    font-weight: 800;
}

.course-card {
    margin: 0 6px;
}

.plants {
    position: relative;
    width: 100%;
    height: 484px;
    overflow: hidden;
}

.hello-plants {
    height: 484px;
    position: relative;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.content-plant {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
    top: 50%;
}

.content-plant span {
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 24px;
    color: #fff;
    text-align: center;
    display: inline-block;
}

/* cây và loài vật */

.plants-animals .product-card:hover img {
    transform: none;
}

.plants-animals .product-content {
    padding: 24px 0;
}

.plants-animals .product-card {
    border-radius: 0;
}

.plants-animals .filter-bar {
    height: fit-content;
    position: sticky;
    top: 75px;
    z-index: 99999;
    background: #fff;
    padding: 10px 0;
}

.infor-animals {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 24px;
    margin: 24px 0;
}

.infor-animals ul.list {
    display: flex;
    gap: 32px;
}

.infor-animals ul.list li {
    width: 50%;
    font-size: 18px;
    color: #0c0905;
    font-weight: 600;
    position: relative;
}

.infor-animals ul.list li:first-child::before {
    content: "";
    background: rgba(0, 0, 0, 0.15);
    width: 1px;
    height: 66px;
    display: inline-block;
    position: absolute;
    right: 0;
}

.infor-animals .endangered,
.infor-animals .dangered {
    background: #ff9800;
    border-radius: 40px;
    padding: 6px 12px;
    font-family: "Trocchi", "Merriweather", serif;
    color: #fff;
    font-weight: 400;
}

.infor-animals .dangered {
    background: #ef0000;
}

.infor-animals label {
    color: #91908e;
    font-family: "Trocchi", "Merriweather", serif;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
}

.view360 img {
    border-radius: 40px;
}

/* vé tham quan */
.header-fluid.tickets-ad {
    background: url(../image/bg-vethamquan.png) no-repeat;
}

.admission-tic {
    background: #f5f5f5;
    border-radius: 40px;
    margin-bottom: 32px;
}

.admission-tic .img img {
    border-radius: 40px 40px 0 0;
}

.admission-tic .content {
    padding: 32px;
}

.admission-tic .divider-line {
    width: 200px;
    margin: 24px auto 24px;
}

.admission-tic ul.list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 24px;
}

.admission-tic .price {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
}

.admission-tic .titles a {
    font-size: 40px;
    text-decoration: none;
    color: #0c0905;
    transition: all 0.3s;
}

.admission-tic .titles a:hover {
    opacity: 0.5;
}

.admission-tic a.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.ticket-controls {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 24px;
}

.ticket-controls li {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.ticket-info .name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.listcheck li {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
}

/* Giới thiệu */
.about-us {
    background: url(../image/bg-gioithieu.png) no-repeat;
}

.introduction {
    padding: 64px 0;
    background: url(../image/bg-abous.png) no-repeat center top;
}

.introduction p {
    font-family: "Trocchi", "Merriweather", serif;
    line-height: 26px;
}

.contact .section {
    max-width: 960px;
    margin: 0 auto;
}

.info-contact {
    background: #f5f5f5;
    padding: 48px 0;
}

.info-contact ul.list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-contact ul.list li {
    text-align: center;
    font-size: 16px;
    font-family: "Trocchi", "Merriweather", serif;
}

.info-contact ul.list li a {
    color: #212529;
    text-decoration: none;
    word-wrap: break-word;
}

.info-contact ul.list li img {
    margin: 0 auto 16px;
}

/* đăng nhập,đăng ký,quên mk */
.popup-overlay {
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease; */
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-container {
    background: white;
    border-radius: 40px;
    padding: 64px;
    max-width: 656px;
    width: 100%;
    position: relative;
    margin: 90px auto;
}

.account-container {
    background: white;
    border-radius: 40px;
    padding: 64px;
    max-width: 656px;
    width: 100%;
    position: relative;
    margin: 90px auto;
    padding-top: 0;
    margin-top: 0;
}

.login-IFLxoY {
    align-items: center;
    padding-bottom: 1.4rem;
    padding-top: 1.4rem;
    display: flex;
}

.login-IFLxoY ._3svg61 {
    height: 0.5px;
    width: 100%;
    background-color: #dbdbdb;
    flex: 1;
}

.login-IFLxoY .or-link {
    color: #ccc;
    padding: 0 1.6rem;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.BnBJFp {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 1px;
}

.social-white-google-png {
    background-size: 516.6666666666666% 322.22222222222223%;
    background-position: 100% 100%;
}

.social-white-background {
    background-image: url(../image/google.png);
}

._30SGUu {
    width: 1.375rem;
    height: 1.375rem;
}

._1DQYn2 {
    flex: 1;
    align-items: center;
    padding-left: 20px;
}
._1hKScg {
    flex: 0 0 46%;
}
._1hKScg:hover {
    color: white;
}

._2Ct2Hr {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border: 0;
    padding: 0 2px;
    border-radius: 2px;
    width: 100%;
    height: 4rem;
    font-size: 1.4rem;
    box-shadow: 0 1px 1px rgb(0 0 0 / 9%);
}

._2Ct2Hr,
.BnBJFp {
    align-items: center;
    display: flex;
    justify-content: center;
}

._1rblAp {
    background-color: #4285f4;
    color: #fff;
}

._2P7qLN {
    padding-right: 1.1rem;
}
.BnBJFp i {
    color: #1777f2;
    border-radius: 50%;
    font-size: 16px;
}

.BnBJFp-gg {
    width: 2.6rem;
    height: 2.6rem;
    align-items: center;
    display: flex;
    justify-content: center;
    background: white;
    border-radius: 50%;
}

.social-icon-link {
    /* justify-content: space-between; */
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center; /* ✅ căn giữa ngang */
    gap: 12px;
}

.social-icon-link .link {
    flex: 0 0 46%;
    background-color: #1877f2;
    color: #fff;
    box-sizing: border-box;
    outline: none;
    border: 0;
    padding: 0 2px;
    border-radius: 2px;
    height: 4rem;
    font-size: 1.4rem;
    box-shadow: 0 1px 1px rgb(0 0 0 / 9%);
    cursor: pointer;
    align-items: center;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-title {
    font-weight: 800;
    font-size: 60px;
    line-height: 78px;
    color: #0c0905;
    text-align: center;
    margin-bottom: 48px;
}

.forgot-password-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 56px;
    color: #0c0905;
    margin-bottom: 24px;
}

.forgot-password-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
    margin-bottom: 48px;
    font-family: "Trocchi", "Merriweather", serif;
}

.form-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #ef0000;
    margin-right: 5px;
}

.custom-input {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 12px 24px;
    height: 48px;
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-input::placeholder {
    color: #c2c1c0;
}

.custom-input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.password-wrapper {
    position: relative;
}

.password-input {
    padding-right: 60px;
}

.eye-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.eye-icon:hover {
    opacity: 0.7;
}

.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 180px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.custom-checkbox.checked {
    background: #ff9800;
    border-color: #ff9800;
}

.custom-checkbox svg {
    width: 16px;
    height: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox.checked svg {
    opacity: 1;
}

.checkbox-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
}

.forgot-password-link {
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
    color: #0c0905;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.forgot-password-link:hover {
    color: #ff9800;
}

.btn-primary-custom {
    background: #ff9800;
    border: none;
    border-radius: 40px;
    padding: 16px 24px;
    width: 100%;
    font-weight: 800;
    font-size: 18px;
    line-height: 24px;
    color: white;
    margin-bottom: 48px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-primary-custom:active {
    transform: translateY(0);
}

.signup-text {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
}

.signup-text span:first-child {
    font-weight: 600;
    color: #0c0905;
}

.signup-text .link {
    font-weight: 800;
    color: #ff9800;
    cursor: pointer;
    text-decoration: none;
    margin-left: 12px;
}

.signup-text .link:hover {
    text-decoration: underline;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 16px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

.back-btn {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 16px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.back-btn:hover {
    background: #f5f5f5;
    transform: translateX(-5px);
}

.form-group {
    margin-bottom: 24px;
}

.info-box {
    background: #f5f5f5;
    border-radius: 24px;
    padding: 12px 24px;
    margin-bottom: 24px;
}

.info-box p {
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
    margin: 0;
    font-family: "Trocchi", "Merriweather", serif;
}

.privacy-text {
    font-size: 16px;
    line-height: 24px;
    color: #0c0905;
    margin-bottom: 48px;
    font-family: "Trocchi", "Merriweather", serif;
}

.privacy-text .link {
    color: #ff9800;
    cursor: pointer;
    text-decoration: none;
}

.privacy-text .link:hover {
    text-decoration: underline;
}

.popup-view {
    display: none;
}

.popup-view.active {
    display: block;
    position: relative;
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 32px;
    }

    .popup-container {
        padding: 32px;
    }

    .popup-title {
        font-size: 40px;
        line-height: 46px;
    }

    .forgot-password-title {
        font-size: 32px;
        line-height: 40px;
    }

    .close-btn {
        top: -13px;
        right: -19px;
        width: 46px;
        height: 46px;
    }

    .custom-checkbox-wrapper {
        gap: 16px;
    }

    .checkbox-label {
        min-width: auto;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.account .tab-buttons.nav-tabs {
    justify-content: center;
}

.controlpanel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.controlpanel li {
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 32px;
    border-radius: 40px;
}

.controlpanel li a {
    color: #212529;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    font-family: "Nunito Sans";
}

.controlpanel li a:hover {
    opacity: 0.8;
}

.checkbox-container {
    background-color: #f5f5f5;
    padding: 16px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.checkbox-container input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    cursor: pointer;
}

.table-container {
    font-family: "Nunito Sans";
    font-size: 18px;
    overflow-x: auto;
    margin-bottom: 40px;
    border-radius: 8px;
}

.table-container .table {
    white-space: nowrap;
}

.table-container .table th {
    padding: 16px;
    font-weight: 800;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
    position: relative;
}

.table-container .table th::before {
    content: "";
    background: rgba(0, 0, 0, 0.15);
    width: 0.5px;
    height: 22px;
    display: block;
    position: absolute;
    right: 0;
    top: 18px;
}

.table-container .table tbody th:first-child::before {
    content: none;
}

.table-container .table th:first-child {
    text-align: center;
}

.table-container .table td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-pending .status-dot {
    background-color: #ff9800;
}

.status-error .status-dot {
    background-color: #ef0000;
}

.status-sucsess .status-dot {
    background-color: #01652f;
}

.status-default .status-dot {
    background-color: #c2c1c0;
}

.badge-type-1 {
    background-color: #ffcf89;
    color: #0c0905;
}

.badge-type-2 {
    background-color: #f5f5f5;
    color: #0c0905;
}

.badge-type-3 {
    background-color: #d5ffe9;
    color: #0c0905;
}

.badge-type-4 {
    background-color: #ffc8c8;
    color: #0c0905;
}

.badge-type-5 {
    background-color: #ef0000;
    color: #fff;
}

.badge-type-6 {
    background-color: #ff9800;
    color: #fff;
}

.badge-type-7 {
    background-color: #01652f;
    color: #fff;
}

.badge-type-8 {
    background-color: #0c0905;
    color: #fff;
}

.badge-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
}

.account .titles {
    margin-bottom: 64px;
}

.dashboard,
.campaign-section {
    margin-top: 64px;
}

.campaign-section .titles {
    margin-bottom: 24px;
}

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

.title-h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    font-family: "Nunito Sans";
}

.info-cus {
    background: #f5f5f5;
    border-radius: 24px;
    padding: 24px;
}

a.btn-edit {
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 40px;
    padding: 16px;
    font-size: 18px;
    color: #0c0905 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    width: 260px;
    text-align: center;
}

a.btn-edit:hover {
    opacity: 0.6;
}

/* menu trang tin */

.sidebar-container {
    margin: 0 auto;
    height: fit-content;
    position: sticky;
    top: 76px;
    width: 100%;
}

/* Sidebar Menu */
.sidebar-menu {
    background: #f5f5f5;
    border-radius: 40px;
    padding: 24px 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Section Title */
.section-title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: #0c0905;
    margin-bottom: 16px;
    padding-bottom: 8px;
}

/* Menu List */
.menu-list {
    list-style: none;
}

.sidebar-menu .menu-item {
    margin-bottom: 0;
}

.sidebar-menu .menu-item:hover {
    background: none;
    padding: 0;
}

/* Menu Link */
.menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    text-decoration: none;
    color: #0c0905;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    font-family: "Trocchi", "Merriweather", serif;
}

.menu-link:hover {
    color: #ff9800;
}

.menu-link:hover .menu-icon {
    color: #ff9800;
}

/* Active State */
.menu-item.active > .menu-link {
    color: #ff9800;
}

.menu-item.active > .menu-link .menu-icon {
    color: #ff9800;
}

.menu-item.active > .menu-link .menu-count {
    color: #ff9800;
}

/* Menu Icon */
.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.icon-toggle {
    transition: transform 0.3s ease;
}

.menu-item.has-submenu.open .icon-toggle {
    transform: rotate(0deg);
}

.menu-item.has-submenu:not(.open) .icon-toggle {
    transform: rotate(-90deg);
}

/* Menu Text */
.menu-text {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Menu Count */
.menu-count,
.submenu-count {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-dark);
    margin-left: auto;
    transition: color 0.3s ease;
}

/* Submenu */
/* 
.main-nav .submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
} */

.menu-item.has-submenu.open .submenu {
    max-height: 300px;
    display: block;
}

.submenu-item {
    animation: slideIn 0.3s ease forwards;
    opacity: 0;
}

.menu-item.has-submenu.open .submenu-item {
    opacity: 1;
}

.menu-item.has-submenu.open .submenu-item:nth-child(1) {
    animation-delay: 0.05s;
}

.menu-item.has-submenu.open .submenu-item:nth-child(2) {
    animation-delay: 0.1s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Submenu Link */
.submenu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0 8px 46px;
    text-decoration: none;
    color: #0c0905;
    transition: all 0.3s ease;
    position: relative;
}

.submenu-link:hover {
    color: #0c0905;
    padding-left: 46px;
}

.submenu-link:hover .submenu-bar {
    background: rgba(0, 0, 0, 0.15) !important;
}

.submenu-link:hover .submenu-count {
    color: var(--primary-color);
}

/* Submenu Bar - Important! */
.submenu-bar {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
}

/* Active Submenu Item */

.submenu-item.active .submenu-bar {
    background: #ff9800 !important;
    width: 3px;
}

.submenu-item.active .submenu-text {
    color: #ff9800;
}

.submenu-item.active .submenu-count {
    color: #ff9800;
}

/* Submenu Text */
.submenu-text {
    flex: 1;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s ease;
}

/* Menu Divider */
.menu-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 32px 0;
    position: relative;
}

.menu-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.15);
    transition: width 0.5s ease;
}

.menu-divider:hover::before {
    width: 100%;
}

/* Menu Section Spacing */
.menu-section {
    margin-bottom: 16px;
}

.menu-section:last-child {
    margin-bottom: 0;
}

/* Hover Effect for Menu Items */
.menu-item:not(.has-submenu) .menu-link::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
}

.menu-item:not(.has-submenu) .menu-link:hover::before {
    height: 24px;
}

.menu-item.active:not(.has-submenu) .menu-link::before {
    height: 32px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar-container {
        max-width: 100%;
        position: inherit;
    }

    .sidebar-menu {
        padding: 20px 24px;
        border-radius: 24px;
    }

    .section-title {
        font-size: 20px;
        line-height: 28px;
    }

    .menu-text,
    .submenu-text {
        font-size: 14px;
    }

    .menu-count,
    .submenu-count {
        font-size: 16px;
    }

    .submenu-link {
        padding-left: 40px;
    }

    .submenu-bar {
        left: 24px;
    }
}

@media (max-width: 480px) {
    .sidebar-menu {
        padding: 16px 20px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .menu-divider {
        margin: 24px 0;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .sidebar-menu {
        box-shadow: none;
    }

    .menu-footer {
        display: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #ffffff;
        --text-gray: #cccccc;
        --bg-light: #2b2b2b;
        --bg-white: #1a1a1a;
    }

    body {
        background: #1a1a1a;
    }
}

/* Focus Styles for Accessibility */
.menu-link:focus,
.submenu-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.menu-item.loading .menu-link {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 152, 0, 0.1) 50%,
        transparent 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* end menu trang tin */

/* Responsive all*/
@media (max-width: 480px) {
    .star {
        width: 32px;
        height: 32px;
    }

    .stars {
        gap: 6px;
    }

    .rating-container {
        padding: 12px 0px;
    }
}

/* Responsive */

@media only screen and (max-width: 1024px) {
    .section-header h2,
    .section-map h2,
    .animals-promo h2,
    .section-experience h2,
    .tickets-header h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .animals-grid,
    .animals-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .tickets-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .entry-header::before {
        left: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .header-top {
        position: sticky;
        top: 0;
        z-index: 9999;
        box-shadow: 0 3px 16px rgb(0 0 0 / 20%);
    }

    .hamburger {
        display: block;
        margin-right: 20px;
    }

    .header-nav .nav-info,
    .header-nav .divider {
        display: none;
    }

    .header-content {
        justify-content: inherit;
    }

    .header-nav {
        margin-left: auto;
    }

    .logo {
        width: 50px;
        height: 44px;
    }

    .section-hero {
        height: auto;
    }

    .slide .carousel-indicators {
        bottom: 10px;
    }

    .carousel-inner {
        height: 550px;
    }

    .hero-content .carousel-caption h3 {
        font-size: 30px;
        line-height: 38px;
    }

    .hero-content .carousel-caption {
        top: 38%;
    }

    .titles,
    .curriculum h3 {
        font-size: 36px;
    }

    .list-ecos li {
        padding: 16px 18px;
    }

    .list-ecos li span {
        font-size: 28px;
    }

    .section-ecosystem {
        height: auto;
        background-size: cover;
    }

    .section-ecosystem h3.titles {
        color: #fff;
    }

    .ecos-img .img:last-child {
        right: 0;
    }

    .section-ecosystem .content {
        padding: 100px 16px;
    }

    .slick-next,
    .slick-prev {
        display: none !important;
    }

    .section-products .slick-next,
    .section-products .slick-prev {
        display: block !important;
    }

    .entry-title {
        font-size: 28px;
    }

    .entry-content h3 {
        font-size: 24px;
    }

    .related .product-card img {
        height: 200px;
    }

    .detail-course .infor {
        padding: 24px;
    }

    .detail-course .infor ul.list {
        display: grid;
        grid-template-columns: 2fr 48%;
        gap: 20px;
    }

    .detail-course .product-tabs-section,
    .curriculum .section {
        margin-top: 32px;
    }

    .header-fluid {
        height: 200px;
    }

    .header-fluid.hello-plants {
        height: 484px;
    }

    .content-plant {
        width: 100%;
    }

    .header-fluid h2 {
        font-size: 32px;
    }

    .info-cus .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 768px) {
    .section-hero {
        height: auto;
    }

    .course-overlay {
        padding: 32px 16px;
    }

    .course-overlay h3 {
        font-size: 20px;
        line-height: normal;
    }

    .news-sidebar {
        margin-top: 24px;
    }

    .carousel-item img.h-100 {
        height: auto !important;
    }

    .carousel-inner {
        height: auto;
    }

    .carousel-inner,
    .carousel-item {
        height: auto;
    }

    .hero-content .carousel-caption {
        top: 46%;
    }

    .section-ecosystem .content {
        padding: 100px 0 60px;
    }

    .list-ecos {
        display: block;
    }

    .list-ecos li {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-animals .img-fluid {
        width: 100%;
        object-fit: cover;
    }

    .section-experience h2.titles br {
        display: none;
    }

    .section-tickets,
    .section-products,
    .section-map,
    .section-courses {
        padding: 65px 0;
    }

    .course-info,
    .footer-content {
        display: block;
    }

    .footer .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .product-content {
        padding: 24px 24px 12px;
    }

    .main-content {
        display: block;
    }

    .category-list {
        display: none;
    }

    .sidebar {
        position: inherit;
        padding: 24px 18px;
    }

    .category-list-mobile {
        display: block;
    }

    .sidebar-section .sidebar-title {
        display: none;
    }

    .search-box {
        width: 60%;
    }

    .filter-bar {
        margin-top: 24px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .product-card {
        margin-bottom: 24px;
    }

    .product-grid {
        display: block;
    }

    .main-image {
        max-width: 100%;
        height: auto;
    }

    .product-grid .product-info {
        margin-top: 32px;
    }

    .info-contact ul.list li {
        margin-bottom: 16px;
    }

    .info-contact ul.list {
        grid-template-columns: 46% 46%;
        gap: 20px;
    }

    .info-cus .form-row {
        grid-template-columns: 1fr;
    }

    .tab-buttons.nav-tabs .nav-link {
        font-size: 18px;
    }

    .tab-buttons.nav-tabs {
        gap: 18px;
    }

    .tab-buttons.nav-tabs a {
        text-decoration: none;
    }
}

@media only screen and (max-width: 590px) {
    .section-header h2,
    .section-map h2,
    .animals-promo h2,
    .section-experience h2,
    .tickets-header h2,
    .product-grid .product-info h1 {
        font-size: 20px;
        line-height: normal;
    }

    .btn-outline {
        padding: 8px 14px;
        font-size: 14px;
    }

    .courses-grid,
    .products-grid {
        display: block;
    }

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

    .product-card img {
        height: 300px;
    }

    .map-container {
        margin-bottom: 64px;
    }

    .footer-links,
    .tickets-grid,
    .news-card-small {
        display: block;
    }

    .footer-col {
        margin-top: 30px;
    }

    .ticket-content h3 {
        font-size: 32px;
    }

    .ticket-card {
        height: 320px;
        margin-bottom: 20px;
    }

    .news-content {
        margin-top: 20px;
    }

    .ecos-img .img {
        max-width: 320px;
        height: 310px;
    }

    .news-card-large .news-content {
        padding: 40px 24px 24px;
    }

    .tab-buttons.nav-tabs .nav-link {
        font-size: 18px;
    }

    .listrevew .content .d-flex {
        flex-wrap: wrap;
    }

    .box-review .rating-container {
        padding: 0;
    }

    .listrevew .star {
        width: 23px;
        height: 22px;
    }

    .listrevew li {
        display: grid;
        grid-template-columns: 56px 1fr;
    }

    .section-products .slick-prev,
    .section-products .slick-next {
        top: -40px;
    }

    .product-content {
        padding: 24px 0 12px;
    }

    .news-detail .entry-meta {
        flex-wrap: wrap;
    }

    .detail-course .slide-item .img img {
        height: 420px;
    }

    .detail-course .slick-slide {
        margin-right: 0;
    }

    .detail-course .slider-nav-thumbnails .slick-slide {
        margin-right: 16px;
    }

    .ticket-controls li {
        display: block;
    }

    .ticket-info {
        margin-bottom: 12px;
    }

    .introduction {
        background-position: 0 top;
    }

    .tab-buttons.nav-tabs {
        gap: 16px;
    }

    .controlpanel li {
        padding: 14px;
    }

    .news,
    .plants-animals,
    .contact,
    .account {
        padding: 40px 0;
    }

    .controlpanel {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard,
    .campaign-section {
        margin-top: 12px;
    }

    .account .titles {
        margin-bottom: 40px;
    }

    .info-cus {
        padding: 16px;
    }

    .section-header {
        display: block;
    }

    .section-header .nav-tabs {
        margin-top: 12px;
    }

    .section-header .nav-tabs .nav-link {
        padding: 5px 10px;
        font-size: 14px;
    }

    .section-products .star {
        width: 26px;
        height: 26px;
    }

    .listproduct,
    .testimonial,
    .curriculum,
    .faq {
        padding: 64px 0;
    }

    .category-list-mobile .dropdown-button {
        font-size: 18px;
    }

    .testimonial-slide::before {
        background-size: 30px;
    }

    .testimonial-slide {
        padding-left: 12px;
    }

    .testimonial-slide p {
        font-size: 18px;
    }

    .curriculum .pe-5 {
        padding: 0 !important;
    }

    .titles,
    .curriculum h3 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .faq .accordion {
        padding: 10px 18px;
    }

    .faq .accordion-button {
        font-size: 18px;
    }

    .plants-animals .filter-bar {
        margin-top: 0;
    }
}

@media only screen and (max-width: 390px) {
    .sort-dropdown {
        font-size: 14px;
        padding: 12px;
    }

    a.btn-outline {
        font-size: 16px;
        padding: 12px 16px;
    }
}

input:disabled {
    background-color: #e9e9e9; /* Light gray background */
    cursor: not-allowed; /* Change cursor to "not allowed" symbol */
    opacity: 0.7; /* Reduce opacity for a faded look */
}

#show_all_error {
    width: 100%;
}

#show_all_error .alert {
    display: block;
}

/* khối lỗi (alert / invalid-feedback) được xuống dòng */
#show_all_error .alert,
.error.invalid-feedback,
.invalid-feedback {
    white-space: normal; /* cho phép xuống dòng */
    word-break: break-word; /* dài quá thì bẻ từ */
    line-height: 1.5;
}

#map {
    height: 100vh;
    width: 100%;
}

.view360 {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}
#viewer360 {
    width: 100%;
    height: 360px;
    background: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
}


/* Ẩn trước khi slick chạy */
.my-slider1,
.slider-nav-thumbnails,
.my-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}

/* Slick init xong tự có class slick-initialized */
.my-slider1.slick-initialized,
.slider-nav-thumbnails.slick-initialized,
.my-slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}


.note-payment {
    display: none;
}

.note-payment-active {
    display: block !important;
}

.color-red {
    display: block !important;
    color: #dc3545;
}

.cart-items:not(:first-child) {
    margin-top: 24px;
}


.form-select.is-invalid {     /* viền đỏ */
    background-image: none !important;  /* bỏ icon cảnh báo */
}

.eye-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
}

.eye-password .eye {
    width: 20px;
    height: 20px;
    display: block;
}


.input-group .btn-eye {
    background: transparent !important;
    box-shadow: none !important;
    color: #6c757d;
    border-left:none ;
    border: 1px solid #ced4da;
}

.input-group .btn-eye:hover,
.input-group .btn-eye:focus,
.input-group .btn-eye:active {
    background: transparent !important;
    box-shadow: none !important;
    color: #6c757d;
    border-color: #6c757d;
    border-left:none ;
    border: 1px solid #ced4da;
}

#loginModal .btn-primary {
    border:none;
}

.flag-icon {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* ===== FIX POPUP BỊ CHE / TRÀN ===== */

/* overlay tối */
.modal-backdrop.show {
  opacity: 0.6;
}

/* modal dialog: KHÔNG cho vượt viewport */
#notifyModalCenter .modal-dialog {
  max-width: 520px;
  width: calc(100% - 24px);
  margin: 0 auto;

  height: auto;
  max-height: 90vh; /* 🔥 mấu chốt */
}

/* bỏ khung trắng */
#notifyModalCenter .modal-content {
  background: transparent;
  border: 0;
  box-shadow: none;

  max-height: 90vh;
}

/* header nổi – không chiếm chiều cao */
#notifyModalCenter .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;

  height: _switch_;
  padding: 0;
  border: 0;

  z-index: 1062;
}

/* nút close luôn nhìn thấy */
#notifyModalCenter .modal-header .close {
  position: absolute;
  right: 12px;
  top: 12px;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: rgba(0,0,0,.45);
  border: 2px solid #fff;
  color: #fff;

  opacity: 1;
  z-index: 9999;
}

/* body KHÓA CHIỀU CAO + CUỘN */
#notifyModalCenter .modal-body {
  padding: 0;
  border-radius: 16px;
  overflow: auto;          /* 🔥 cho cuộn nếu cao */
  max-height: 90vh;        /* 🔥 cực quan trọng */

  position: relative;
  z-index: 1061;
}

/* ảnh trong popup */
#notifyModalCenter .modal-body img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 90vh;        /* 🔥 scale theo màn hình */
  object-fit: contain;     /* KHÔNG bị cắt */
}

/* mobile */
@media (max-width: 480px) {
  #notifyModalCenter .modal-dialog {
    max-width: 420px;
  }

  #notifyModalCenter .modal-header .close {
    right: 8px;
    top: 8px;
  }
}


