.banner-section {
    background-color: #f3f4f6;
    /* gray-100 */
}

.card-img-top {
    height: 200px;
    object-fit: cover;

}




/* Hiệu ứng vệt sáng chạy chéo qua khi hover cho hero-section và section-2 */
.hero-section .img-container,
.section-2 .img-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.4s, transform 0.4s;
}

.hero-section .img-container img,
.section-2 .img-container img {
    transition: transform 0.5s cubic-bezier(.4, 2, .6, .9), filter 0.4s;
    will-change: transform, filter;
}

.hero-section .img-container::before,
.section-2 .img-container::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 60%;
    height: 250%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.08) 100%);
    transform: skewX(-25deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 2;
}

.hero-section .img-container:hover::before,
.section-2 .img-container:hover::before {
    animation: shine-diagonal 0.8s forwards;
    opacity: 1;
}

@keyframes shine-diagonal {
    0% {
        left: -75%;
        opacity: 0.2;
    }

    40% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

.hero-section .img-container:hover img,
.section-2 .img-container:hover img {
    transform: scale(1.03);
    filter: brightness(0.97) saturate(1.08);
}



/* Hiệu ứng hover hiện đại cho ảnh Hero Section 1 */
.hero-section .img-fluid {
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: box-shadow 0.4s, transform 0.4s, filter 0.4s;
    overflow: hidden;
    z-index: 1;
    display: block;
}

.hero-section .img-fluid:hover {
    box-shadow: 0 12px 32px rgba(217, 83, 79, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px) scale(1.05) rotate(-1deg);
}

.hero-section .img-fluid::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0.12) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border-radius: 16px;
    z-index: 2;
}

.hero-section .img-fluid:hover::after {
    animation: hero1-shine 0.8s forwards;
    opacity: 1;
}

.hero-section .no-hero-style {
    box-shadow: none !important;
    transform: none !important;
    filter: none !important;
    position: static !important;
    transition: none !important;
    overflow: visible !important;
    z-index: auto !important;
}

.hero-section .no-hero-style:hover {
    box-shadow: none !important;
    transform: none !important;
}

.hero-section .no-hero-style::after {
    content: none !important;
    display: none !important;
}

@keyframes hero1-shine {
    0% {
        left: -70%;
        opacity: 0.2;
    }

    40% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}



.lead {
    font-size: 18px;
}


/* Banner Carousel Styles */
.banner-section {
    background-color: #f3f4f6;
    /* gray-100 */
    padding-top: 0;
    padding-bottom: 5rem;
}

.carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for text readability */
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.carousel-caption h1 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.carousel-caption p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators button {
    background-color: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #ff0000;
    /* Red to match navigation underlines */
}



/* Responsive Banner Adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-item img {
        height: 400px;
    }

    .carousel-caption {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item img {
        height: 300px;
    }

    .carousel-caption {
        padding: 0.75rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        height: 100%;
    }
}



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

.slider-container {
    width: 100%;
    margin: 0 auto;
    height: 87vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    background: #fff;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .slider-container {
        margin-top: 0;
        padding: 0;
    }
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    flex: 0 0 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    transition: background-size 0.7s;
}

/* Slider Content Styles */
.content-slider-home {
    position: absolute;
    bottom: 15%;
    left: 8%;
    color: #fff;
    text-align: left;
    z-index: 10;
}

.content-slider-home span {
    font-size: 4rem;
    /* Kích thước chữ "Vị" */
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    /* Màu chữ trắng */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Đổ bóng chữ */
    margin-bottom: 0.5rem;
    font-family: 'NewsreaderItalic', serif;
    /* Font chữ đẹp */
}

.content-slider-home h2 {
    font-size: 4rem;
    /* Kích thước chữ "ngon" và "sẵn sàng" */
    font-weight: normal;
    font-style: italic;
    line-height: 1.35;
    color: #fff;
    /* Màu chữ trắng */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Đổ bóng chữ */
    margin: 0;
    font-family: 'Newsreader', serif;
    /* Font chữ đẹp */
}

.content-slider-home h2:nth-child(2) {
    margin-bottom: 0.2rem;
    /* Khoảng cách giữa "ngon" và "sẵn sàng" */
}

.content-slider-home button {
    background-color: #AA2233;
    /* Màu nền đỏ */
    color: #fff;
    /* Màu chữ trắng */
    font-size: 1rem;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: 'Roboto', sans-serif;
    /* Font chữ nút */
}

.content-slider-home button:hover {
    background-color: #d9534f;
    /* Màu nền khi hover */
    transform: translateY(-2px);
    /* Hiệu ứng hover */
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .slider-container {
        height: 70vh;
        /* Giảm chiều cao slider trên màn hình lớn */
    }

    .content-slider-home span {
        font-size: 3rem;
        /* Giảm kích thước chữ */
    }

    .content-slider-home h2 {
        font-size: 3rem;
        /* Giảm kích thước chữ */
    }

    .content-slider-home button {
        font-size: 0.95rem;
        padding: 8px 16px;
    }

    .content-slider-home h2:nth-child(2) {
        margin-bottom: 0.2rem;
        /* Khoảng cách giữa "ngon" và "sẵn sàng" */
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 60vh;
        /* Giảm chiều cao slider trên tablet */
    }

    .content-slider-home span {
        font-size: 2rem;
        /* Giảm kích thước chữ trên tablet */
    }

    .content-slider-home h2 {
        font-size: 2rem;
        /* Giảm kích thước chữ trên tablet */
    }

    .content-slider-home button {
        font-size: 0.9rem;
        /* Giảm kích thước nút trên tablet */
        padding: 8px 16px;
    }

    .content-slider-home h2:nth-child(2) {
        margin-bottom: 0.3rem;
        margin-left: 10px !important;

        /* Khoảng cách giữa "ngon" và "sẵn sàng" */
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 50vh;
        /* Giảm chiều cao slider trên mobile */
    }

    .content-slider-home {
        bottom: 10%;
        /* Điều chỉnh vị trí nội dung */
        left: 5%;
        /* Điều chỉnh vị trí nội dung */
    }

    .content-slider-home span {
        font-size: 1.5rem;
        /* Giảm kích thước chữ trên mobile */
    }

    .content-slider-home h2 {
        font-size: 1.5rem;
        line-height: 1.4;
        /* Giảm kích thước chữ trên mobile */
    }

    .content-slider-home button {
        font-size: 0.8rem;
        /* Giảm kích thước nút trên mobile */
        padding: 6px 12px;
    }

    .content-slider-home h2:nth-child(2) {
        margin-bottom: 0.3rem;
        margin-left: 7px !important;
        /* Khoảng cách giữa "ngon" và "sẵn sàng" */
    }
}

/* Xóa ảnh cũ */
.slide-item img {
    display: none;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

.slide-caption h5 {
    font-family: 'Lobster', cursive !important;
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin: 10px 0 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-control-prev,
.slider-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-control-prev:hover,
.slider-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-control-prev {
    left: 10px;
}

.slider-control-next {
    right: 10px;
}

.slider-control-prev::after,
.slider-control-next::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.slider-control-next::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-indicators button.active {
    background: white;
}

@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }

    .slide-caption h5 {
        font-size: 1.8rem;
    }

    .slide-caption p {
        font-size: 1rem;
    }

    .slider-control-prev,
    .slider-control-next {
        width: 40px;
        height: 40px;
    }

    .freeship-banner h3 {
        font-size: 32px;
    }

    .freeship-banner ul {
        font-size: 15px;
    }

    .d-flex.flex-column.flex-md-row {
        flex-direction: column !important;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 200px;
    }

    .slide-caption {
        padding: 10px;
    }

    .slide-caption h5 {
        font-size: 1.4rem;
    }

    .slide-caption p {
        font-size: 0.9rem;
    }

    .slider-control-prev,
    .slider-control-next {
        width: 30px;
        height: 30px;
    }

    .slider-control-prev::after,
    .slider-control-next::after {
        width: 10px;
        height: 10px;
        border-width: 0 2px 2px 0;
    }

    .freeship-banner {
        padding: 1rem !important;
    }

    .freeship-banner h3 {
        font-size: 24px !important;
        margin: 0 !important;
    }


    .content-promotion {
        display: none !important;
    }
}



/* Hero Section */
.hero-section {
    padding: 50px 0;
}

.tagline {
    font-size: 2.5rem;
    /* Kích thước chữ lớn */
    font-weight: bold;
    color: #d9534f;
    /* Màu đỏ */
}

.hero-section .img-fluid {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 334px;
    object-fit: cover;
    /* Giữ tỷ lệ hình, không méo */
}

/* Hero Section Text Styles */
.hero-text {
    font-family: 'Newsreader', serif;
    color: #AA2233;
    /* Màu đỏ chính */
}

.hero-text .title {
    color: #AA2233;
    font-size: 3rem;
    /* Kích thước chữ mặc định */
}

.text-danger1 {
    font-size: 3.2rem;
    /* Kích thước chữ lớn */
    color: #AA2233;
    /* Màu đỏ */
    font-style: normal;
    font-weight: bold;
}

.text-title2 {
    color: #c49a6c;
    /* Màu vàng nhạt */
    font-family: 'Newsreader', serif;
    font-size: 3.2rem;
    /* Kích thước chữ lớn */
    font-weight: normal;
    text-decoration: dotted;
    font-style: italic;
}

.hero-text .text-title-bottom {
    transform: translateY(25%);
}

.hero-text .logo-icon {
    display: inline-block;
    width: 40px;
    /* Kích thước logo */
    height: 40px;
    margin: 0 10px;
    vertical-align: middle;
}

.cta-btn {
    border-radius: 0 !important;
    background-color: #AA2233 !important;
    color: #FFF7E6 !important;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-text .title {
        font-size: 3rem;
        /* Giảm kích thước chữ trên màn hình lớn */
    }

    .text-danger1,
    .text-title2 {
        font-size: 3rem;
        /* Giảm kích thước chữ */
        margin-bottom: 20px;
    }

    .hero-text .logo-icon {
        width: 35px;
        /* Giảm kích thước logo */
        height: 35px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }

    .tagline {
        font-size: 2.5rem;
        /* Giảm kích thước tagline */
    }

    .hero-text .title {
        font-size: 2.5rem;
        /* Giảm kích thước tiêu đề trên tablet */
    }

    .text-danger1,
    .text-title2 {
        font-size: 2.5rem;
        /* Giảm kích thước chữ */
        padding: 0 !important;
        margin: 0 !important;
        font-family: 'Newsreader', serif;
    }

    .hero-text .logo-icon {
        width: 30px;
        /* Giảm kích thước logo */
        height: 30px;
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 20px 0;
    }

    .tagline {
        font-size: 2rem;
        /* Giảm kích thước tagline trên mobile */
    }

    .hero-text .title {
        font-size: 2rem;
        /* Giảm kích thước tiêu đề trên mobile */
    }

    .hero-text .text-danger1,
    .hero-text .text-title2 {
        font-size: 2rem;
        /* Giảm kích thước chữ */
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero-text .logo-icon {
        width: 25px;
        /* Giảm kích thước logo */
        height: 25px;
        transform: translateY(-3px);

    }
}








/* Section 2 */
.section-2 {
    min-height: 400px;
    padding: 50px 0;
}

/* .title {
  font-size: 2rem;
  font-weight: bold;
  color: #d9534f;
} */

.img-container {
    position: relative;
    padding-bottom: 56.25%;
    /* Tỷ lệ 16:9 */
    height: 0;
    overflow: hidden;
}

.section-2 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn {
    background-color: #d9534f;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #c9302c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: white;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .section-2 {
        padding: 30px 0;
    }

    .title {
        font-size: 1.5rem;
    }

    .img-container {
        /* padding-bottom: 75%; */
        /* Tỷ lệ 4:3 cho mobile */
    }

    .right-col {
        text-align: center;
    }
}



/* === COVER IMAGE === */
.cover-image {
    height: 758px;
    background-size: cover; /* Hoặc thử contain/100% 100% */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Thay fixed bằng scroll */
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .cover-image {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .cover-image {
        height: 400px;
        margin-top: 20%;
    }
}

@media (max-width: 576px) {
    .cover-image {
        height: 300px;
        margin-top: 10%;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.section-title .italic {
    font-style: italic;
}





/* Ngập tràn vourcher và chương trình khuyến mãi */
/* Màu nền toàn section */
.sesstion-vourcher {
    background-color: #AA2233;
}

/* Card background */
.sesstion-vourcher .voucher-card {
    background-color: #FFF7E6;
    height: 100%;
}

/* Tiêu đề */
.sesstion-vourcher .card-title {
    color: #AA2233;
    font-size: 27px !important;
    line-height: 1.5;
    font-family: 'Newsreader', serif;
}


.sesstion-vourcher img {
    height: 192px;
    width: 100%;
    object-fit: cover;
    background-color: #AA2233;
}


/* Nút */
.btn-voucher-card {
    display: inline-block;
    background-color: #C79451 !important;
    color: #FFF7E6 !important;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}


.voucher-card {
  background: #fffaf5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  transform: scale(1);
}

.voucher-card:hover {
  transform: translateY(-3px) scale(1.01);
  background: #fff3ea;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .sesstion-vourcher .card-title {
        font-size: 20px;
    }

    .sesstion-vourcher img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .sesstion-vourcher .card-title {
        font-size: 18px;
    }

    .btn-voucher-card {
        font-size: 13px;
        padding: 8px 16px;
    }

    .sesstion-vourcher img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .sesstion-vourcher .card-title {
        font-size: 24px !important;
    }

    .btn-voucher-card {
        font-size: 12px;
        padding: 7px 14px;
    }

    .sesstion-vourcher img {
        height: 140px;
    }

    .sesstion-vourcher .voucher-card {
        padding: 15px;
    }
    .sesstion-vourcher h2{
        font-size: 35px !important;
    }
}


/* === VÙNG SẢN PHẨM YÊU THÍCH === */
.section-favorite {
    background-color: #FFF7E6;
}

.section-favorite h2 {
    color: #AA2233 !important;
}

@media (max-width: 767.98px) {
    .section-favorite h2 {
        font-size: 30px !important;
    }
}

/* === DẤU GẠCH TIÊU ĐỀ === */
.line-title {
    flex: 1;
    height: 1px;
    background-color: #AA2233;
    max-width: 100%;
}

/* === LƯỚI SẢN PHẨM === */
.product-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(5, 1fr);
}
.product-img img {
    transition: transform 0.4s ease;
}

.product-img:hover img {
    transform: scale(1.05) rotate(-1.5deg);
}


@media (max-width: 1199.98px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (max-width: 767.98px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === ẨN SẢN PHẨM CUỐI CÙNG KHI LẺ (Responsive) === */
@media (max-width: 1199.98px) {
    .product-grid > .product-item:last-of-type:nth-child(4n + 1) {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .product-grid > .product-item:last-of-type:nth-child(3n + 1) {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .product-grid > .product-item:last-of-type:nth-child(2n + 1) {
        display: none;
    }
}

/* === HÌNH ẢNH SẢN PHẨM === */
.product-img {
    width: 100%;
    height: 199px !important;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === TÊN, GIÁ SẢN PHẨM === */
.product-name {
    font-family: 'Newsreader', serif;
    font-size: 16px;
    color: #AA2233;
    font-weight: 500;
    text-overflow: ellipsis;
    max-width: 250px; 
    overflow: hidden;
    white-space: nowrap;
     display: -webkit-box;
    -webkit-line-clamp: 1; /* tối đa 2 dòng */
    -webkit-box-orient: vertical;
}

@media (max-width: 575.98px) {
    .product-name {
        max-width: 200px  !important;
    }
}
.text-muted,
.product-price div {
    font-size: 12px !important;
    color: #C79451 !important;
    font-weight: 500;
}

.product-price div {
    font-size: 15px !important;
}

del {
    text-decoration-color: red;
    font-weight: 500;
}

/* === NÚT TRONG LƯỚI SẢN PHẨM === */
.product-grid button {
    font-size: 12px !important;
    font-weight: 500;
}

/* === RESPONSIVE NÚT MUA HÀNG === */
@media (max-width: 575.98px) {
    .product-actions {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .product-actions button {
        width: 100% !important;
        padding: 5px !important;
    }
}

/* === NÚT XEM TẤT CẢ === */
.btn-vew-all {
    background-color: #FFF7E6 !important;
    border: 1px solid #AA2233 !important;
    padding: 5px 10px !important;
    color: #AA2233 !important;
    font-size: 14px !important;
    font-weight: 500;
    height: 40px;
    justify-self: center;
    width: 100%;
    grid-column: 3;
}

@media (max-width: 1199.98px),
       (max-width: 991.98px) {
    .btn-vew-all {
        grid-column: 2;
    }
}

@media (max-width: 767.98px) {
    .btn-vew-all {
        grid-column: span 2;
    }
}


/* Blog */
/* Section Styles */
.news-section {
    background-color: #FFF7E6;
    /* Màu nền vàng nhạt */
    color: #AA2233;
    /* Màu chữ đỏ */
}

.section-title .italic {
    font-style: italic;
}

/* Card Styles */
/* News Card Styles */
.news-card {
    background-color: transparent;
    /* Không có màu nền */
    text-align: center;
}

.news-card:hover img {
    transform: scale(1.05);
    /* Hiệu ứng phóng to khi hover */
    transition: transform 0.3s ease;
    /* Hiệu ứng chuyển tiếp mượt mà */
    transform: rotate(2deg);
}


.news-image-placeholder {
    width: 100%;
    height: 434px;
    /* Chiều cao placeholder */
    background-color: #d3d3d3;
    /* Màu xám nhạt */
    margin-bottom: 15px;
}

.news-image-placeholder img {
    width: 100%;
    height: 100%;
    /* Chiều cao placeholder */
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Hiệu ứng chuyển tiếp mượt mà */


}

.news-title {
    font-size: 1.25rem;
    color: #AA2233;
    /* Màu đỏ */
    margin-bottom: 10px;
    font-family: 'Newsreader', serif;
    font-weight: 600;
    text-align: start;
}

.news-title .italic {
    font-style: italic;

}

.news-description {
    font-size: 0.9rem;
    color: #000000;
    /* Màu chữ xám nhạt */
    margin-bottom: 0;
    text-align: start;

}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .news-image-placeholder {
        height: 300px;
        /* Giảm chiều cao placeholder trên tablet */
    }

    .news-title {
        font-size: 1rem;
    }

    .news-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .news-image-placeholder {
        height: 250px;
        /* Giảm chiều cao placeholder trên mobile */
    }

    .news-title {
        font-size: 0.9rem;
    }

    .news-description {
        font-size: 0.75rem;
    }
}



.logo-move {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeScaleIn 2s ease-out forwards;
  opacity: 0;
}

.logo-move img {
  width: 400px;
  display: block;
}

@keyframes fadeScaleIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/*@keyframes moveLogo {*/
/*  0% {*/
/*    left: -150px;*/
/*  }*/
/*  30% {*/
    /*left: calc(50% - 200px);  giữa màn hình - 1/2 width */
/*  }*/
/*  50% {*/
/*    left: calc(50% - 200px);*/
/*  }*/
/*  100% {*/
/*    left: 110%;*/
/*  }*/
/*}*/
/*@keyframes flipInCenter {*/
/*  0%, 24% {*/
/*    transform: rotateY(0deg);*/
/*  }*/
/*  25% {*/
/*    transform: rotateY(90deg);*/
/*  }*/
/*  30% {*/
/*    transform: rotateY(180deg);*/
/*  }*/
/*  35% {*/
/*    transform: rotateY(270deg);*/
/*  }*/
/*  40% {*/
/*    transform: rotateY(360deg);*/
/*  }*/
/*  45% {*/
/*    transform: rotateY(450deg);*/
/*  }*/
/*  50% {*/
/*    transform: rotateY(540deg);*/
/*  }*/
/*  55% {*/
/*    transform: rotateY(630deg);*/
/*  }*/
/*  60% {*/
/*    transform: rotateY(720deg);*/
/*  }*/
/*  61%, 100% {*/
/*    transform: rotateY(720deg);*/
/*  }*/
/*}*/
