/* Custom CSS cho Jiwon Cosmetic Website */

/* Reset và Variables */
:root {
    --primary-color: #F5F0ED;
;
    --secondary-color: #f8f9fa;
    --accent-color: #ffd93d;

    --text-color:  #5E5A54;
;
}

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

body {
    font-family:  'Inter';
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}
.container{
    width: 1280px;
}
/* header */
/* top banner */
.top-banner{
    width: 1280px;
    margin-top: 10px;
    height: 50px;
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.content{
    width: 541px;
    height: 19px;
}
.phone-number{
    color: var(--text-color);
    font-weight: 800;
    text-decoration: none;
}

/* menu */
.menu{
    width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    height: 80px;
    padding: 0 30px;
    border-radius: 10px 10px 0 0;
}
.left-menu{
    display: flex;
    align-items: center;
    gap: 40px;
}
.logo-center img{
    width: 201.33883666992188px;
    height: 65px;
}
.right-menu{
    display: flex;
    align-items: center;
    gap: 85px;
}
.nav-icon {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* header banner */
.banner{
    height: auto;
    width: 1280px;
    position: relative;
}
.banner .hero-content{
    width: 400px;
    height: 118px;
    position: absolute;
    padding-left: 30px;
    padding-top: 100px;
}
.hero-title{
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}
.hero-button{
    width: 236px;
    height: 47px;
    font-family: 'Roboto';
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4px;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--text-color);
    border-radius: 50px;
    padding: 12px 24px;
}

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #5E5A54;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.cart-icon img {
    width: 17px;
    height: 17px;
    filter: brightness(0) invert(1); /* Làm icon màu trắng */
}

/* Cart badge - hỗ trợ superscript */
.cart-badge {
    padding-left: 3px;
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #D92125;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    line-height: 1;
}

/* Style cho dấu + superscript */
.cart-badge sup {
    font-size: 6px;
    font-weight: 900;
    vertical-align: super;
    line-height: 0;
    position: relative;
    top: -3px;
}

/* Badge cho số lượng lớn hơn 9 */
.cart-badge.large {
    min-width: 20px;
    font-size: 9px;
    border-radius: 10px;
}

.cart-badge.large sup {
    font-size: 5px;
}


/* Shop Dropdown */
.shop-dropdown {
    position: relative;
}

.shop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -30px;
    width: 1280px;
    background: var(--primary-color);
    padding: 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 99999;
}
.icon-bar {
    display: none;
}

/* Hiện khi hover vào .shop-dropdown */
.shop-dropdown:hover .shop-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Categories - Interactive */
.dropdown-categories {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 20px 20px;
}

.category-tab {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    color: #acaaa5;
    cursor: pointer;
}

.category-tab.active,
.category-tab:hover {
    color: #333;
    text-decoration: underline;
}

/* Products Grid - Ẩn/hiện theo category */
.dropdown-products {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 60px;
}

.dropdown-products.active {
    display: grid;
}

/* Product Item - Ảnh full với text overlay */
.dropdown-product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-product-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Ảnh chiếm full item */
.dropdown-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Label NEW ở góc trên trái */
.product-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

/* Text overlay ở dưới */
.product-infor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--text-color);
    padding: 30px 15px 15px;
    text-align: left;
}

.product-infor h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-infor p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Bottom Button */
.dropdown-bottom {
    text-align: center;
    padding: 20px;
}

.shop-all-button {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.shop-all-button:hover {
    background: #333;
    color: white;
}
.mobile-menu-toggle {
    display: none;
}

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

/* header */



/* footer */
footer{
    margin-top: 60px;
    margin-bottom: 100px;
}
.footer-content{
    width: 1280px;
    display: flex;
    background-color: var(--primary-color);
    gap: 45px;
    border-radius: 10px;
}
.footer-left{
    padding-top: 60px;
    padding-left: 30px;
    width: 640px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    position: relative;
}
.footer-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 356px;
    background-color: #B3B3B3;
}
.footer-form{
    display: flex;
    height: 55px;
    width: 572px;
    margin-bottom: 20px;
    gap: 0;
}
.footer-input{
    width: 359px;
    height: 55px;
    padding-left: 30px;
    font-family: 'Inter';
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 140%;
    border: none;
    border-radius: 10px 0 0 10px;
    background: white;

}
.footer__btn{
    width: 165px;
    height: 55px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--text-color);
    border: none;
    border-radius: 0 10px 10px 0;
}
.footer__social{
    display: flex;
}
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-icons img {
    width: 30px;
    height: 30px;
}
/* Footer Right */
.footer-right{
    padding-top: 30px;
    padding-right: 10px;
}
.footer__logo img{
    width: 350.01983642578125px;
    height: 113px;
}
.footer-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-col-1 h4, .footer-col-2 h4 {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--text-color);
}
.footer-col-1 ul, .footer-col-2 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.footer-col-1 li, .footer-col-2 li {
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
}
.footer-col-1 li a, .footer-col-2 li a {
    text-decoration: none;
    color: var(--text-color);
}
.footer-col-1{
    width: 198px;
    
}
.footer-columns:nth-child(1) .footer-col-1{
    height: 175px;
}
.footer-columns:nth-child(2) .footer-col-1{
    height: 65px;
}
.footer-columns:nth-child(3) .footer-col-1{
    height: 77px;
}
.footer-col-2{
    flex: 1; 
}
.footer__link{
    color: #227CD0;
}
.phone-support{
    border: 2px solid #D9D9D9;
    display:inline-block;
    width: 200px;
    justify-items: center;
    padding-bottom: 15px;
}
.phone-support p{
    width: 140px;
    background: var(--primary-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: -10px;
    
}
.phone-support span{
    font-weight: 800;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
.phone-support span a {
    text-decoration: none;
    color: var(--text-color);
}
.company-info .title{
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
}
.company-info{
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
}
.company-info p {
    margin: 0 ; 
    text-align: left;
}
.certification-mobile{
    display: none;
}
/* footer */

/* Products Section */
.products-section {
    width: 1280px;
    margin: 60px auto;
    border-radius: 20px;
    padding: 30px 0;
    margin-bottom: 10px;
    position: block;
}
.carousel-container {
    position: relative;
    width: 100%;
    padding: 0; 
    overflow: visible;
}
.product-card {
    text-align: left;
    height: 100%;
     width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.product-image {
    width: 405px;
    height: 495px;
    aspect-ratio: 4/5;
    background: var(--primary-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    width: 100%;
}

.product-info {
    position: absolute;
    text-align: left;
    color: var(--text-color);
    bottom: 40px;
    left: 15px;
    right: 15px;
}
.product-info h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0;
}
.product-info p{
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
}
.product-card .product-price{
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
}
.add-to-cart{
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.add-to-cart img{
    width: 45px;
    height: 45px;
}
.product-image button{
    border: none;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #FFFFFFB2;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0px 0px 4px 0px #00000026;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}


/* Products Section */

/* Experience Section */
.experience-section {
    width: 1280px;
    padding: 30px 0;
}
.experience-content {
    display: flex;
    background-color: var(--primary-color);
    align-items: center;
    height: 650px;
    padding-left: 30px;
    border-radius: 10px;
}
.experience-text h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 0;
}
.experience-text p{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

.menu .nav-item a {
    color: var(--text-color);
    text-decoration: none;
}

.menu .nav-item {
    position: relative;
}
/* .dropdown-categories a {
    position: relative;
}
.dropdown-categories a:hover::after {
    position: absolute;
    content: '';
    height: 2px;
    background-color: var(--text-color);
    bottom: -5px;
    left: 0;
    right: 0;
}  */
.menu .nav-item:hover a::after {
    position: absolute;
    content: '';
    height: 2px;
    background-color: var(--text-color);
    bottom: -5px;
    left: 0;
    right: 0;
}
/* Experience Section */

/* Product-showcase-section */
.product-showcase-section{
    width: 1280px;
    padding: 30px 0;
}
.showcase-content{
    display: flex;
    background-color: var(--primary-color);
    align-items: center;
    height: 650px;
    
}
.showcase-text{
    padding-left: 30px;
}
.showcase-text .new{
    width: 92px;
    height: 47px;
    gap: 16px;
    opacity: 1;
    border-radius: 10px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    background: #D92125;
    margin: 0px;
    align-items: center;
    border: none;
}
.showcase-text .new p{
    margin: 0;
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFFFFF;
}
.showcase-text h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0;
}
.showcase-text .lorem{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 30px;
}

/* Product-showcase-section */

/* Promotion Section */
.promotion-section {
    width: 1280px;
    height: 614px;
    margin: 30px 0px;
    text-align: center;
}

.promotion-title {
    margin-bottom: 30px;
}

.promotion-title h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}

.promotion-content {
    display: flex;
    gap: 20px;
}
.promotion-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* Promotion Section */

/* Korean Beauty Section */
.korean-beauty-section {
    width: 1280px;
    height: 494px;
    margin: 30px 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.korean-beauty-section .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.korean-beauty-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 40px;
    text-align: center;
}
.korean-beauty-content .hero-button{
    border-color: #FFFFFF;
    background: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}
.korean-beauty-content h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
}
.korean-beauty-content .content-item{
    width: 720px;
    height: 66px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;

}

/* Korean Beauty Section */

/* Connect Section */
.connect-section {
    width: 1280px;
    height: 550px;
    margin: 30px auto;
    background: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    overflow: visible;
}

.connect-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.connect-header h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0;
}

.connect-header .social-icons {
    display: flex;
    gap: 15px;
}

.connect-header .social-icons img {
    width: 37.5px;
    height: 37.5px;
    object-fit: cover;
}
.connect-header .social-icons a:nth-child(2) img {
    width: 45px;
    height: 45px;
    object-fit: cover;

}
/* .connect-images {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: flex-start; 
    overflow: hidden;
    width: 1250px;
    position: relative;
} */

.connect-item {
    flex: none; 
    border-radius: 15px;
    overflow: hidden; 
    position: relative;
}
.connect-item .connect-title {
    position: absolute;
    bottom: -1000px;
    left:0px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    padding: 10px;
    width: 100%;
    text-align: justify;
    margin-bottom: 0px;
    /* only show three lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.connect-item:hover .connect-title {
    
    bottom: 0px; /* Hiện tiêu đề khi hover */
    transition: bottom 0.3s ease;
}

.connect-item {
    width: 350px;
    height: 350px;
    object-fit: cover;
}


.connect-item img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}

.connect-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 35px;
    border: none;
}

.connect-controls .carousel-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #FFFFFFB2;
    cursor: pointer;
    
}
.connect-controls .carousel-btn.prev-btn {
    left: 0; /* Đẩy nút trái ra ngoài */
}

.connect-controls .carousel-btn.next-btn {
    right: 0; /* Đẩy nút phải ra ngoài */
}
.connect-dots{
    border: none;
}
.carousel-indicators{
    margin-bottom: -10px;
}
/* .connect-controls .carousel-btn img {
    width: 12px;
    height: 12px;
    opacity: 1;
    border-width: 3px;
}

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

.carousel-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.carousel-indicators .dot.active {
    background: #D92125;
    width: 20px;
    border-radius: 10px;

} */
.owl-dots {
    text-align: center;
    margin-top: 10px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #ddd !important;  
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
     border: none !important; /* Thêm dòng này để bỏ viền đen */
    box-shadow: none !important; /* Đảm bảo không có shadow */
    outline: none !important;   
}

.owl-dot.active {
    background: #D92125 !important;  
    width: 20px;
    border-radius: 10px;
     border: none !important; /* Thêm dòng này để bỏ viền đen */
    box-shadow: none !important; /* Đảm bảo không có shadow */
    outline: none !important;   
}

/* Connect Section */
/* Certificate Section */
.certificate-owl-carousel .connect-item{
    width: 245px !important;
    height: 345px !important;
    object-fit: cover;
}
.certificate-owl-carousel .connect-item img{
    width: 245px;
    height: 345px;
    object-fit: cover;
}
.certificate-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 35px;
    border: none;
}
.certificate-controls .carousel-btn.prev-btn {
    left: 0; /* Đẩy nút trái ra ngoài */
}

.certificate-controls .carousel-btn.next-btn {
    right: 0; /* Đẩy nút phải ra ngoài */
}
.certificate-dots{
    border: none;
}
.certificate-indicators{
    margin-bottom: -10px;
}
/* Philosophy Section */
.philosophy-section {
    height: 650px;
    width: 1280px;
    background: var(--primary-color);
    border-radius: 10px;
    margin: 30px 0;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.philosophy-container {
    width: 960px;
    height: 204px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.philosophy-content {
    text-align: center;
}

.philosophy-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0%;
}

/* Brand Values Section */
.brand-values-section {
    width: 1280px;
    height: 650px;
    background: var(--primary-color);
    border-radius: 10px;
    margin: 30px auto;
    overflow: hidden;
}

.brand-values-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.brand-values-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

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

.brand-values-content {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-values-intro {
    margin-bottom: 30px;
}

.brand-values-intro p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 0;
}

.brand-values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 10px;
}

.value-item h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: justify;
    text-transform: uppercase;
    margin: 0;
}

.value-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #5F5F5F;
}

/* Manufacturing Section */
.manufacturing-section {
    width: 1280px;
    height: 650px;
    background: var(--primary-color);
    border-radius: 10px;
    margin: 30px 0;
}
.manufacturing-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.manufacturing-content{
    padding-left: 30px;
    padding-right: 20px;
    width: 100%;
}
.manufacturing-content h2{
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: justify;
    text-transform: uppercase;

}
.manufacturing-content2{
    display: flex;
    justify-content: space-between;
}
.manufacturing-content2 img{
    height: 375px;
    width: 256px;
}
.manufacturing-text{
    display: flex;
    background: #FFFFFF;
    width: 320px;
    height: 376px;
    border-radius: 15px;
    gap: 10px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    text-align: justify;
}
/* category-section */
.category-section{
    width: 1280px;
}
.category-section .products-carousel .products-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sản phẩm 1 dòng */
    gap: 30px;
    width: 100%;
    justify-content: flex-start; 
    align-items: flex-start;
}

/* Category Filter */
.category-filter1 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
    justify-content: center;
    padding: 20px;
}
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0;
    justify-content: center;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    padding: 20px;
}

.filter-button {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    border-radius: 50px;
    padding-top: 12px;
    padding-right: 24px;
    padding-bottom: 12px;
    padding-left: 24px;
    text-transform: uppercase;
    border: 1px solid #5E5A54;
    background: #FFFFFF;
    color:  #5E5A54;
    text-decoration: none;
}


.filter-button.active {
    background: #5E5A54;
    color: #FFFFFF;
}

/* banner-detail */
.banner-detail {
    padding: 30px 0;
}

.banner-detail img {
    width: auto;
}

#searchInputModal {
     border-color: var(--text-color);
}

#searchInputModal:focus {
    color: var(--bs-body-color);
    background-color: unset;
    border-color:none;
    outline: 0;
    box-shadow: none;
}

#btnSearchModal {
    background: #F5F0ED;
    color: var(--text-color);
    border-color: var(--text-color);
}

/* ingredient-section */
.ingredient-section{   /* Giới hạn tối đa nhưng cho phép co nhỏ */
    width: 1280px;
    background: var(--primary-color);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 50px 30px 30px;
    margin: 0 auto 30px auto;

}
.ingredient-section .hero-title{
    margin: 0;
    text-align: center;
}
.ingredient-section .content{
    width: 100%;
    height: auto;
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    word-wrap: break-word;
}
/* certificate-header */

/* Banner introduce */

.skin-banner {
    position: relative;
    width: 1280px;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: center;
    text-align: center;
}
.skin-banner img {
    position: absolute;
    height: 500px;
    width: 1280px;
}
.skin-banner .hero-content {
    padding: 0;
    position: absolute;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 750px;
}
.hero-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 140%;
    letter-spacing: 0%;
    margin-bottom: 20px;

}
.hero-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
}
/* Banner introduce */

/* statement-section */
.statement-section{
    display: flex;
    width: 1000px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary-color);
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    margin-top: -100px;
}
.statement-content{
    padding: 0 30px;
}
.statement-content .title{
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}
.logo img{
    width: 300px;
    height: 96.5px;
}
.tsunumi {
    display: flex;
    justify-content: center;
    margin: 0 auto;
     transform: rotate(-4.17deg);

    margin-top: -250px;
}

.tsunumi img{
    width: 552px;
}

/* product-detail-section */
.product-detail-section{
    width: 1280px;
    padding: 30px 0;
}
.main-image{
    margin-bottom: 10px;
}
.main-image img{
    width: 600px;
    height: 600px;
    object-fit: cover;
}
.thumbnail-carousel-container{
    width: 600px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding: 0 60px;
}
.thumbnail-owl-carousel.owl-carousel {
    width: 100%;
    display: flex;
    gap: 10px !important; 
}
.thumbnail {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumbnail-slider .slide-btn{
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #FFFFFFB2;
    cursor: pointer;
    border: 3px solid #B3B3B3;
    box-shadow: 0px 0px 4px 0px #00000026;
    z-index: 10;
}
.thumbnail.active {
    border: 2px solid #5E5A54; /* Màu border nổi bật */
}
.carousel-btn.prev-btn.thumbnail-prev{
    left: 0;
}
.carousel-btn.next-btn.thumbnail-next{
    right: 0;
}
.product-detail-content{
    padding: 0 30px;
}
.product-detail-content .product-description p{
    margin: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: justify;
}
.product-detail-content .product-features{
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 20px;
}
.product-detail-content .hero-title2{
    font-weight: 700;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0%;
}
.product-detail-content .product-price{
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #D92125;
    margin: 20px 0;
}
.product-benefits{
    margin-bottom: 30px;
}
.benefit-item{
    justify-content: space-between;
    align-items: center;
    width: 225px;
    margin-bottom: 10px;
}
.benefit-item img{
    width: 7px;
    height: 7px;
}
.benefit-item-detail span{
    margin-right: 20px;
}
.benefit-item-detail img{
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.product-actions .product-actions{
    width: 260;
    height: 55;
    border-radius: 5px;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    gap: 16px;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
}
.product-actions .form-control[type="number"] {
    text-align: center;
    padding-left: 21px;
    align-items: center;

    justify-content: center;
}
/* certificate-product */
.certificate-product{
    width: 1280px;
    height: 565px;
    background: var(--primary-color);
    padding: 50px 30px;
    margin: 30px 0;
}
.certificate-product .content{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
.certificate-product .content img{
    width: 255px;
    height: 345px;
    border-radius: 10px;

}
/* ===== MOBILE RESPONSIVE - COMPLETE HOME PAGE ===== */
@media (max-width: 768px) {
    /* Container */
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    /* ===== HEADER ===== */
    
    /* Top Banner */
    .top-banner {
        width: 100%;
        padding: 0 5px;
        margin-top: 5px;
    }
    
    .top-banner .content {
        width: 100%;
        height: auto;
        font-size: 12px;
        text-align: center;
    }
    
    /* Main Menu */
    .menu {
        width: 100%;
        height: auto;
        padding: 5px 10px 0px 5px;
        align-self: center;
        /* flex-direction: column; */
        gap: 5px;
        border-radius: 0;
    }
    
    /* Left Menu */
    .left-menu {
        order: 2;
        gap: 20px;
        font-size: 14px;
        justify-content: center;
        flex-wrap: wrap;
        display: none !important;
    }
    
    /* Logo */
    .logo-center {
        order: 1;
        margin-bottom: 5px;
    }
    
    .logo-center img {
        width: 150px;
        height: 48px;
    }
    
    /* Right Menu */
    .right-menu {
        order: 3;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
    
    .right-menu .nav-item {
        font-size: 14px;
    }

     .right-menu .nav-item:nth-child(1) {
        display: none;
    }
    .right-menu .nav-icon:nth-child(2) a:nth-child(1), .right-menu .nav-icon:nth-child(2) a:nth-child(2), .right-menu .nav-icon:nth-child(2) a:nth-child(3) {
        display: none;
    }
    /* Nav Icons */
    .nav-icon {
        gap: 10px;
    }
    
    .nav-icon img {
        width: 24px;
        height: 24px;
    }
    
    /* Cart Icon */
    .cart-icon {
        width: 24px;
        height: 24px;
    }
    
    .cart-icon img {
        width: 14px;
        height: 14px;
    }
    
    .cart-badge {
        width: 14px;
        height: 14px;
        font-size: 8px;
        top: -2px;
        right: -2px;
    }
    
    .cart-badge sup {
        font-size: 5px;
        top: -2px;
    }
    
    /* Hide Dropdown on Mobile */
    .shop-dropdown-menu {
        display: none !important;
    }
    
    /* ===== BANNER ===== */
    .banner {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
    }
    
    .banner img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .banner .hero-content {
        width: 60%;
        height: auto;
        padding: 0 10px;
        padding-top: 15px;
    }
    
    .hero-title {
        font-size: 22px;
        margin: 0;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-button {
        width: auto;
        font-size: 16px;
        padding: 5px 10px;
        line-height: 1.2;
    }
    
    /* ===== FOOTER ===== */
    footer {
        margin: 15px 0;
    }
    
    .footer-content {
        width: 100%;
        flex-direction: column;
        gap: 30px;
        padding: 15px 10px;
    }
    
    .footer-left {
        width: 100%;
        order: 1;
        padding: 0;
        text-align: center;
    }
    
    .footer-left::after {
        display: none;
    }
    
    .footer-left p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-form {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        height: auto;
    }
    
    .footer-input {
        width: 100%;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .footer__btn {
        width: 100%;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .footer__social .social-icons {
        font-size: 14px;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .footer__social .social-icons img {
        width: 30px;
        height: 30px;
    }
    
    .footer-right {
        width: 100%;
        order: 2;
        text-align: left;
        padding: 0;
    }
    
    .footer__logo img {
        width: 250px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 10px;
        text-align: left;
        margin-bottom: 0;
    }
    
    .footer-col-1,
    .footer-col-2 {
        width: 100%;
        height: auto !important;
    }
    
    .footer-col-1 h4,
    .footer-col-2 h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .footer-col-1 ul li,
    .footer-col-2 ul li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .phone-support {
        width: 50%;
        margin: 20px auto;
        padding-bottom: 20px;
    }
    
    .phone-support p {
        font-size: 16px;
        width: 80%;
    }
    
    .phone-support span {
        font-size: 20px;
    }
    
    .company-info {
        text-align: center;
        margin-top: 20px;
    }
    
    .company-info p {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .company-info .title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer-columns:nth-child(3) .footer-col-1{
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .footer-col-1 .certification img{
        display: none;
    }
    .certification-mobile{
        display: block;
    }
   /* ===== PRODUCTS SECTION ===== */
    .products-section {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 15px 0;
    }
    
    .products-carousel {
        width: 100%;
        height: auto;
        gap: 0;
        overflow: hidden;
    }
    
    .products-container {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        padding-bottom: 10px;
        gap: 10px;
    }
    
    /* Ẩn scrollbar cho Webkit browsers */
    .products-container::-webkit-scrollbar {
        display: none;
    }
    
    .product-card {
        width: 100%;
        height: auto;
         /* Giới hạn tối đa */
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .product-image {
        width: 100%;
        height: auto;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .product-image img {
        width: 100%;
        object-fit: cover;
    }
    
    .product-info {
         width: 100%;
        position: absolute;
        bottom: 30px;
        left: 10px;
        right: 5px;
       
    }
    
    .product-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .product-info p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .product-card .product-price {
        font-size: 16px;
    }
    
    .add-to-cart {
        position: absolute;
        bottom: 15px;
        right: 15px;
        border: none;
        background-color: transparent;
    }
    
    .add-to-cart img {
        width: 45px;
        height: 45px;
    }
    
    /* Ẩn nút carousel trên mobile */
    .carousel-btn {
        display: none;
    }
    
    /* Indicators */
    .carousel-indicators {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .carousel-indicators .dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-indicators .dot.active {
        width: 16px;
        border-radius: 8px;
    }
    
    /* ===== EXPERIENCE SECTION ===== */
    .experience-section {
        width: 100%;
        padding: 0;
    }
    
    .experience-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        margin: 15px 0;
        padding: 0;
    }
    
    .experience-text {
        width: 100%;
        order: 2;
        text-align: center;
        padding-bottom: 20px;
    }
    
    .experience-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .experience-text p {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: justify;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .experience-image {
        width: 100%;
        padding: 0;
        order: 1;
    }
    
    .experience-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* ===== PRODUCT SHOWCASE SECTION ===== */
    .product-showcase-section {
        width: 100%;
        padding: 0;
    }
    
    .showcase-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 0;
    }
    
    .showcase-image {
        width: 100%;
        order: 1;
    }
    
    .showcase-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .showcase-text {
        width: 100%;
        order: 2;
        text-align: center;
        padding: 0;
        padding-bottom: 20px;
    }
    
    .showcase-text .new {
        width: auto;
        height: auto;
        padding: 10px 25px;
        font-size: 16px;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .showcase-text .new p {
        font-size: 14px;
    }
    
    .showcase-text h2 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .showcase-text .lorem {
        font-size: 14px;
        margin-bottom: 15px;
        text-align: left;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    /* ===== PROMOTION SECTION ===== */
    .promotion-section {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 15px 0;
    }
    .promotion-title{
        margin-bottom: 0;
    }
    .promotion-title h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .promotion-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .promotion-card {
        width: 100%;
        gap: 10px;
    }
    
    .promotion-card img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    /* ===== KOREAN BEAUTY SECTION ===== */
    .korean-beauty-section {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 15px 0;
    }
    
    .korean-beauty-section .background-image {
        width: 100%;
        min-height: 300px;
        height: auto;
    }
    
    .korean-beauty-content {
        padding: 15px 10px;
        border-radius: 0;
        text-align: center;
    }
    
    .korean-beauty-content h2 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .korean-beauty-content .content-item {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    
    .korean-beauty-content .content-item p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0;
    }
    
    .korean-beauty-content .hero-button {
        width: auto;
        height: auto;
    }
    
    /* ===== CONNECT SECTION ===== */
    .connect-section {
        width: 100%;
        height: auto;
        padding: 15px 0;
        margin: 15px 0;
    }
    
    .connect-header {
        flex-direction: column;
        margin-bottom: 0;
        padding: 15px 0;
        text-align: center;
    }
    
    .connect-header h2 {
        font-size: 20px;
        margin: 0;
    }
    
    .connect-header .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .connect-header .social-icons .social-icons-item img {
        width: 30px;
        height: 30px;
    }
    
    .connect-header .social-icons .social-icons-item:nth-child(2) img {
        width: 40px;
        height: 40px;
    }
    
    .connect-images {
        width: 100%;
        gap: 10px;
        overflow-x: auto;
        margin: 0;
        padding: 0 5px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .connect-item {
        margin: 15px 0;
        min-width: 200px;
        height: 200px;
        scroll-snap-align: center;
    }
    .connect-item{
        height: auto;
    }
    .connect-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .connect-controls {
        margin-top: 15px;
        gap: 20px;
        justify-content: center;
    }
    
    .connect-controls .carousel-btn {
        width: 40px;
        height: 40px;
        display: none; /* Hide on mobile */
    }
    .owl-carousel.owl-drag .owl-item{
        justify-items: center;
    }
    /* introduce */
    
     /* ===== SKIN BANNER ===== */
    .skin-banner {
        width: 100%;
        height: 350px;
    }
    
    .skin-banner img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    
    .skin-banner .hero-content {
        width: 90%;
        padding: 20px;
    }
    
    .skin-banner .hero-title {
        font-size: 22px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .skin-banner .hero-description {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }
    
    /* ===== STATEMENT SECTION ===== */
    .statement-section {
        flex-direction: column;
        width: 95%;
        margin: 20px auto;
        margin-top: -60px;
        padding-top: 20px;
        padding-bottom: 0px;
        height: auto;
    }
    
    .statement-content {
        padding: 0 10px;
        text-align: center;
    }
    
    .statement-content .title {
        font-size: 14px;
        margin: 15px 0 10px;
        text-align: center;
    }
    
    .statement-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .logo img {
        width: 200px;
        height: 64px;
        margin-bottom: 15px;
    }
    
    .statement-image {
        width: 100%;
    }
    .statement-image img{
        width: 100%;
        border-radius: 10px !important;
    }
    /* ===== TSUNUMI ===== */
    .tsunumi {
        display: none;
    }
    
   
    
    /* ===== PHILOSOPHY SECTION ===== */
    .philosophy-section {
        width: 100%;
        height: auto;
        padding: 30px 15px;
        margin: 30px 0;
    }
    
    .philosophy-container {
        width: 100%;
        height: auto;
    }
    
    .philosophy-content {
        text-align: center;
    }
    
    .philosophy-text {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 0;
        text-align: left;
    }
    
    /* ===== BRAND VALUES SECTION ===== */
    .brand-values-section {
        width: 100%;
        height: auto;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .brand-values-container {
        flex-direction: column;
        height: auto;
    }
    
    .brand-values-image {
        width: 100%;
        height: 250px;
        order: 1;
    }
    
    .brand-values-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .brand-values-content {
        width: 100%;
        order: 2;
        padding: 25px 15px;
    }
    
    .brand-values-intro {
        margin-bottom: 0;
        text-align: center;
    }
    
    .brand-values-intro p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .brand-values-list {
        gap: 20px;
    }
    
    .value-item {
        padding: 10px;
        margin-bottom: 0;
    }
    
    .value-item h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .value-item p {
        font-size: 14px;
        text-align: center;
        line-height: 1.4;
    }
    
    /* ===== MANUFACTURING SECTION ===== */
    .manufacturing-section {
        width: 100%;
        height: auto;
        padding: 20px 10px;
        margin: 30px 0;
    }
    
    .manufacturing-container {
        flex-direction: column;
        gap: 10px;
        height: auto;
    }
    
    .manufacturing-content {
        width: 100%;
        padding: 0;
        text-align: center;
        order: 1;
    }
    
    .manufacturing-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    
    .manufacturing-content2 {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .manufacturing-content2 img {
        /* width: 100%;
        height: auto;
        order: 1; */
        display: none;
    }
    
    .manufacturing-text {
        width: 100%;
        max-width: none;
        height: auto;
        padding: 15px 10px;
        text-align: justify;
        font-size: 14px;
        line-height: 1.5;
        order: 2;
    }
    
    .manufacturing-image {
        width: 100%;
        height: auto;
        order: 3;
        margin-top: 15px;
    }
    
    .manufacturing-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    
    /* ===== CERTIFICATE SECTION (Connect Section structure) ===== */
    .connect-section .certificate-header {
        
        text-align: center;
        margin-bottom: 25px;
    }
    
    .connect-section .certificate-header .hero-title {
        font-size: 20px;
        margin: 20px 0;
        line-height: 1.3;
    }
    .carousel-indicators{
        margin-bottom: 0;
    }
    
    /* Certificate carousel items */
    #certificateCarousel .connect-item {
        min-width: 180px;
        width: 100%;
        height: 100%;
        margin: 0 5px;
        padding-bottom: 15px;
    }
    
    #certificateCarousel .connect-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    
    #certificateCarousel .connect-images {
        gap: 10px;
        padding: 0 10px;
    }
    
    /* Hide carousel controls on mobile */
    #certificateCarousel .carousel-btn {
        display: none;
    }
    
    /* Certificate indicators */
    #certificateCarousel .carousel-indicators {
        margin-top: 20px;
        gap: 8px;
    }
    
    #certificateCarousel .carousel-indicators .dot {
        width: 8px;
        height: 8px;
    }
    
    #certificateCarousel .carousel-indicators .dot.active {
        width: 16px;
        border-radius: 8px;
    }

    /* ===== CATEGORY PAGE RESPONSIVE ===== */

     .category-filter1 {
        width: 100%;
        display: flex;
        gap: 10px;
        padding: 0px 0px;
        margin: 20px 0;
        align-items: center;
        justify-content: center !important;
    }
    .category-filter{
        justify-content: center !important;
    }
    .filter-button{
        font-size: 14px;
        padding: 6px 10px;
    }

    .category-section {
        width: 100%;
        padding: 0 10px;
        margin: 0;
    }
    .category-section .products-carousel .products-container{
        padding: 15px 0;
        grid-template-columns: 1fr;
    }

    /* ===== PRODUCT DETAIL SECTION ===== */
    .product-detail-section {
        width: 100%;
        padding: 0;
        margin: 15px 0;
    }
    
    .product-detail-section .row {
        flex-direction: column;
        gap: 30px;
    }
    /* Product Gallery */
    .product-gallery {
        width: 100%;
        order: 1;
    }
    
    .main-image {
        width: 100%;
        min-height: 350px !important;
        height: auto !important;
        margin-bottom: 20px;
        /* border-radius: 15px; */
        overflow: hidden;
    }
    
    .main-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    
    .thumbnail-carousel-container {
        width: 100%;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .thumbnails {
        gap: 10px;
        justify-content: center;
        padding: 10px 0;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
        /* border-radius: 8px; */
        overflow: hidden;
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail-slider .carousel-btn {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }
    
    .thumbnail-slider .prev-btn {
        left: 0px;
    }
    
    .thumbnail-slider .next-btn {
        right: 0px;
    }
    
    .thumbnail-slider .carousel-btn img {
        width: 20px;
        height: 20px;
    }

    .product-description p{
        font-size: 14px;
    }
    .product-features{
        margin-bottom: 10px;
    }
    .product-features li{
        font-size: 14px;
    }
    .product-detail-content{
        padding: 0 10px;
    }
    .product-detail-content .hero-title,.hero-title2 p{
        text-align: left;
    }
    .product-detail-content .product-price{
        font-size: 20px;
        text-align: left;
    }
    .product-detail-content .product-benefits{
        font-size: 14px;
        display: grid;
        justify-content: flex-start;
        text-align: center;
    }
    .product-actions{
        justify-content: center;
    }
    .product-actions .form-control[type="number"] {
        padding-left: 12px;
         text-align: center;
    }
     /* ===== BANNER DETAIL ===== */
    .banner-detail {
        width: 100%;
        margin: 15px 0;
        padding: 15px 0;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .banner-detail img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }
   
    /* ===== INGREDIENT SECTION ===== */
    .ingredient-section {
        width: 100%;
        height: auto;
        padding: 15px 10px;
        margin: 15px 0;
    }
    .ingredient-section .content {
        font-size: 14px;
         height: auto;
         padding: 0;
    }
    .ingredient-section .hero-title {
        font-size: 20px;
        padding: 15px 0;
        text-align: center;
        margin: 15px 0;
    }
    /* ===== CERTIFICATE PRODUCT ===== */
    .certificate-product {
        width: 100%;
        height: 435px;
        padding: 15px 10px;
        margin: 30px 0;
        background: var(--primary-color);
        border-radius: 15px;
        overflow: hidden;
    }
    
    .certificate-product .hero-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 15px;
        padding: 0;
    }
    
    /* Horizontal Scroll Container */
    .certificate-product .content {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        margin: 0;
        width: 100%; 
        height: 400px;
    }
    
    /* Certificate Images */
    .certificate-product .content img {
        width: 255px; 
        height: 345px;
        border-radius: 10px;
        object-fit: cover;
        scroll-snap-align: center;
    }

    .icon-bar {
        display: flex;;
    }
    
    /* Hide desktop menu */
    /* .menu {
        display:none !important;
    } */
    /* Show mobile menu toggle */
        .mobile-menu-toggle {
        display:flex;
        margin-top:15px;
        padding:0 10px;
        position:relative;
        align-items:center;
        border-radius:10px;
        justify-content:space-between;
        background:var(--primary-color);
    }
    .mobile-menu-btn {
        border:none;
        padding:0px;
        border-radius:8px;
        font-size:18px;
        cursor:pointer;
        transition:all 0.3s ease;
    }
    .mobile-menu-btn i {
        font-size: 1.75rem;
    }
    /* Mobile Icons */
        .mobile-nav-icons {
        display:flex;
        justify-content:center;
        gap:20px;
    }
    .mobile-icon-btn {
        width:18px;
        height:18px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        font-size:18px;
        transition:all 0.3s ease;
    }
    /* Mobile Dropdown Menu */
        .mobile-dropdown-menu {
        position:fixed;
        top:120px;
        left:-1000px;
        width: calc(100vw - 20px);
        height:auto;
        background:var(--primary-color);
        z-index:1100;
        transition:all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
        overflow-y:auto;
        display:block;
    }
    .mobile-dropdown-menu.open {
        left:0;
        margin-left: 10px;
    }
    .mobile-menu-content {
        padding:10px;
        height:100%;
        display:flex;
        flex-direction:column;
    }
    /* Mobile Menu Header */
        .mobile-menu-header {
        display:flex;
        justify-content:space-between;
        align-items:center;
        margin-bottom:15px;
    }
    .mobile-logo {
        height:40px;
    }
    .mobile-close-btn {
        background:none;
        border:none;
        font-size:24px;
        color:#333;
        cursor:pointer;
        padding:8px;
        border-radius:50%;
        transition:all 0.3s ease;
    }
    /* Mobile Shop Section */
        .mobile-shop-section {
        flex:1;
        margin-bottom:30px;
    }
    /* Mobile Tabs - Text Style with Underline */
    .mobile-nav-tabs {
        display:flex;
        gap:15px;
        margin-bottom:25px;
        padding:0;
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        /* Firefox */
        -ms-overflow-style:none;
        /* IE/Edge */
        padding-bottom:5px;
        justify-content:flex-start;
    }
    /* Hide scrollbar cho Webkit browsers */
    .mobile-nav-tabs::-webkit-scrollbar {
        display:none;
    }

    .mobile-nav-tabs .category-tab {
        flex:none;
        padding:10px 0;
        font-size:14px;
        font-weight:500;
        color:var(--text-color);
        /* Màu giống PC */
        text-transform:uppercase;
        text-decoration:none;
        text-align:center;
        cursor:pointer;
        transition:all 0.3s ease;
        white-space:nowrap;
        scroll-snap-align:center;
        position:relative;
    }
    .mobile-nav-tabs .category-tab.active,.mobile-nav-tabs .category-tab:hover {
        text-decoration:underline;
    }
    /* Mobile Tab Content */
        .mobile-tab-content {
        margin-bottom:25px;
    }
    .mobile-tab-pane {
        display:none;
    }
    .mobile-tab-pane.active {
        display:block;
    }
    /* Mobile Product Cards */
        .mobile-product-card {
        background:white;
        border-radius:12px;
        padding:15px;
        margin-bottom:12px;
        display:flex;
        justify-content:space-between;
        align-items:center;
        box-shadow:0 2px 8px rgba(0,0,0,0.1);
        transition:all 0.3s ease;
    }
    .mobile-product-info {
        flex:1;
    }
    .mobile-product-name {
        font-weight:700;
        font-size:14px;
        color:var(--text-color);
        margin-bottom:4px;
    }
    .mobile-product-desc {
        font-size:12px;
        color:#666;
    }
    .mobile-product-tag {
        background:#333;
        color:white;
        font-size:10px;
        font-weight:600;
        padding:4px 8px;
        border-radius:12px;
        text-transform:uppercase;
    }
    /* Mobile Shop Button */
        .mobile-shop-btn {
        text-align:center;
    }
    .mobile-shop-btn button {
        padding:15px;
        background:none;
        border:2px solid #333;
        border-radius:25px;
        font-weight:700;
        font-size:14px;
        color:#333;
        text-transform:uppercase;
        cursor:pointer;
        transition:all 0.3s ease;
    }
    /* Mobile Navigation Links */
        .mobile-nav-links {
        margin-bottom:25px;
    }
    .mobile-nav-link-item {
        display:block;
        padding:15px 0;
        color:#333;
        text-decoration:none;
        font-weight:600;
        font-size:14px;
        text-transform:uppercase;
        border-top:1px solid #E5E5E5;
        transition:all 0.3s ease;
    }

}

/* ===== BLOG LIST SECTION ===== */
.blog-list-section {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 0;
}

/* Page Header */
.page-header {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: var(--text-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb-item {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.breadcrumb-item:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    opacity: 1;
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 300;
}

/* Blog Posts Section */
.blog-posts {
    padding: 0 0 60px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Post Card */
.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-category {
    background: var(--text-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.post-title {
    margin-bottom: 15px;
}

.post-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
}

.post-link:hover {
    color: #007bff;
}

.post-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.post-author {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}

.read-time {
    color: #6c757d;
    font-size: 0.85rem;
}

.read-time::before {
    content: '📖';
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    padding: 0px 25px;
    border-radius: 50px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.page-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.page-link:hover {
    background: #f8f9fa;
    color: #495057;
}

.page-link.active {
    background: var(--text-color);
    color: white;
    font-weight: 600;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.page-dots {
    color: #6c757d;
    padding: 10px 5px;
    font-weight: 500;
}


/* Blog List Mobile Responsive */
@media (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .post-link {
        font-size: 1.1rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pagination {
        padding: 12px 20px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .post-image {
        height: 180px;
    }
    
    .post-content {
        padding: 15px;
    }
    
    .post-link {
        font-size: 1rem;
    }
    
    .pagination {
        padding: 10px 15px;
        gap: 5px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
}

/* Animation for blog cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation for multiple cards */
.post-card:nth-child(1) { animation-delay: 0.1s; }
.post-card:nth-child(2) { animation-delay: 0.2s; }
.post-card:nth-child(3) { animation-delay: 0.3s; }
.post-card:nth-child(4) { animation-delay: 0.4s; }
.post-card:nth-child(5) { animation-delay: 0.5s; }
.post-card:nth-child(6) { animation-delay: 0.6s; }
.post-card:nth-child(7) { animation-delay: 0.7s; }
.post-card:nth-child(8) { animation-delay: 0.8s; }
.post-card:nth-child(9) { animation-delay: 0.9s; }

/* ===== CUSTOM PAGINATION STYLES ===== */
.custom-pagination {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: transparent;
}

.pagination-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
    padding: 0px 25px;
    border-radius: 50px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05); */
}

.page-item {
    display: inline-block;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-color);
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.page-link:hover::before {
    left: 100%;
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
    border-color: var(--text-color);
    color: white;
    cursor: default;
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-item.active .page-link::before {
    display: none;
}

.page-item.active .page-link:hover {
    transform: none;
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
}

.page-item.disabled .page-link {
    color: #bbb;
    cursor: not-allowed;
    background-color: transparent;
    border-color: transparent;
    opacity: 0.5;
}

.page-item.disabled .page-link:hover {
    background-color: transparent;
    border-color: transparent;
    color: #bbb;
    transform: none;
    box-shadow: none;
}

.page-item.disabled .page-link::before {
    display: none;
}

.page-item.dots .page-link {
    border: none;
    background: none;
    cursor: default;
    font-weight: bold;
    color: #999;
    font-size: 18px;
    min-width: 30px;
}

.page-item.dots .page-link:hover {
    background: none;
    color: #999;
    transform: none;
    box-shadow: none;
}

.page-item.dots .page-link::before {
    display: none;
}

.pagination-info {
    text-align: center;
    margin-top: 10px;
}

.pagination-text {
    color: var(--text-color);
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Navigation arrows styling */
.page-link i {
    font-size: 14px;
    font-weight: 900;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .custom-pagination {
        margin-top: 30px;
        padding: 20px 0;
        gap: 15px;
    }
    
    .pagination-list {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 25px;
    }
    
    .page-link {
        min-width: 38px;
        height: 38px;
        padding: 6px 10px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    .pagination-text {
        font-size: 13px;
    }
    
    /* Hide some pages on mobile to prevent overflow */
    .page-item:nth-child(n+7):nth-last-child(n+4) {
        display: none;
    }
    
    .page-item.dots {
        display: inline-block !important;
    }
}

@media (max-width: 480px) {
    .pagination-list {
        padding: 10px 15px;
        gap: 2px;
    }
    
    .page-link {
        min-width: 34px;
        height: 34px;
        padding: 4px 8px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    .page-link i {
        font-size: 12px;
    }
    
    /* Show even fewer pages on very small screens */
    .page-item:nth-child(n+5):nth-last-child(n+4) {
        display: none;
    }
}

/* Enhanced hover effects */
.page-link {
    position: relative;
    z-index: 1;
}

.page-link:hover {
    z-index: 2;
}

/* Pulse animation for active page */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.page-item.active .page-link {
    animation: pulse 2s infinite;
}

/* Focus styles for accessibility */
.page-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.page-link:focus:not(:focus-visible) {
    outline: none;
}

/* ===== AGENT PAGE STYLES ===== */
.agent-section {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Agent Intro Section */
.agent-intro {
    padding: 80px 0;
    background: white;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.intro-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    padding: 80px 0;
    background: white;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.requirements-list {
    margin-top: 30px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.requirement-item i {
    color: #28a745;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.requirement-item span {
    font-size: 1rem;
    color: #333;
}

.requirements-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Package Section */
.package-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.package-card.featured {
    border-color: var(--text-color);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 30px 0 15px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 30px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #28a745;
    font-size: 1rem;
}

.package-btn {
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--text-color));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 30px;
}

.step-content {
    flex: 1;
    max-width: 400px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666;
}

.form-checkbox a {
    color: var(--text-color);
    text-decoration: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--text-color), #2c3e50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

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

.contact-item i {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item div {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.story-text {
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.story-author strong {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.story-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-content,
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid,
    .package-grid,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .agent-intro,
    .benefits-section,
    .requirements-section,
    .package-section,
    .process-section,
    .contact-form-section,
    .success-stories {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-card,
    .package-card,
    .step-content,
    .story-card {
        padding: 20px;
    }
    
    .form-wrapper {
        padding: 20px;
    }
}
@media (max-width: 410px) {
    .top-banner .content{
        font-size: 10px;
    }
}