
        body {
            font-family: 'Roboto', sans-serif;
            color: #495057;
        }
        .header-top {
            background-color: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;

        }
        .header-top .btn {
            color: #495057;
            border: none;
            font-size: 14px;
        }
        .search-input {
            border: 1px solid #ced4da;
            border-radius: 50px;
            padding: 5px 15px;
        }
        .search-btn {
            background-color: #f8f9fa;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border: 1px solid #ced4da;
            border-left: none;
        }
        .navbar-main {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 2px 5px rgba(0,0,0,.05);
        }
        .navbar-main .nav-link {
            text-transform: uppercase;
            font-weight: 500;
            font-size: 14px;
            color: #212529;
            padding: 15px 20px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .navbar-main .nav-link:hover {
            border-bottom-color: hsl(273, 77%, 88%);
            color: hsl(273, 77%, 88%);
        }
        .dropdown-menu {
            border-radius: 0;
            margin-top: 0;
        }
        .hero-content {
            z-index: 1;
            text-align: center;
            color: white;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
        }
        .banner img
        {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            object-fit: cover;

        }
        
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%; 
            max-width: 500px;
            z-index: 1;
        }
        .section-heading h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
        }
        .section-heading p {
            color: #6c757d;
        }
        .product-card {
            border: none;
            box-shadow: 0 0 15px rgba(0,0,0,.05);
            transition: transform .3s ease;
            text-align: center;
            background-color: #fff;
        }
        .product-card:hover {
            transform: translateY(-8px);
        }
        .product-card .card-img-top {
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
        }
        .product-card .card-body h5 {
            font-size: 1rem;
            font-weight: 500;
        }
        .product-card .card-body .price {
            color: hsl(273, 77%, 88%);
            font-weight: 700;
            font-size: 1.1rem;
        }
        .product-card .btn {
            background-color: hsl(273, 77%, 88%);
            color: #fff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-view-more {
            border: 1px solid #ced4da;
            color: #495057;
            transition: all 0.3s ease;
        }
        .btn-view-more:hover {
            background-color: hsl(273, 77%, 88%);
            color: #fff;
            border-color:hsl(273, 77%, 88%);
        }
        .order-section {
            background-image: url('/VONGUYENPHUONGUYEN-WEBBANHNGOT/image/strawberry.jfif');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            position: relative;
            
        }
        .order-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
        }
        .order-form-container {
            background-color: rgba(0, 0, 0, 0.7);
            padding: 30px;
            border-radius: 8px;
            color: #fff;
            z-index: 1;
        }
        .order-form-container h3, .order-form-container h4 {
            color: #fff;
        }
        .order-form-container .form-control {
            background-color: transparent;
            border: 1px solid #fff;
            color: #fff;
            border-radius: 0;
        }
        .order-form-container .form-control::placeholder {
            color: #e9ecef;
        }
        .order-form-container .btn-submit {
            background-color: hsl(273, 77%, 88%);
            border-color: hsl(273, 77%, 88%);
            color: #fff;
            border-radius: 0;
            padding: 10px 40px;
        }
        .news-card {
            border: none;
            border-radius: 0;
            transition: transform .3s ease;
            box-shadow: 0 0 15px rgba(0,0,0,.05);
        }
        .news-card:hover {
            transform: translateY(-5px);
        }
        .news-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .news-card .card-body {
            min-height: 150px;
        }
        .about-section img {
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,.1);
            border: 5px solid #fff;
            outline: 1px solid #e9ecef;
            outline-offset: -5px;
        }
        .footer {
            background-color: hsl(273, 77%, 88%);
            padding: 50px 0;
            border-top: 1px solid #e9ecef;
        }
        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer ul li a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer ul li a:hover {
            color:hsl(273, 77%, 88%);
        }
        .social-icons a {
            color: #6c757d;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: hsl(273, 77%, 88%);
        }

        .detail {
            min-height: 400px;
        }

        .detail-big{
            width: 100%;
            height: 500px;
            margin: 10PX;

        }
        .detail-small{
            width: 100%;
            height: 100px;

            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10PX;

        }
        .detail-big img {
            width: 100%;
            height: 100%;
        }

        .detail-text
        {
            width: 100%;
            min-height: 400px;
            padding: 30px;
            font-family: 'Roboto', sans-serif;
        }
        .detail-text h1
        {
            padding: 20px;
            text-align: left;

        }
        .detail-mua{
            width: 100%;
            height: 40px;

            display: flex;
            justify-content: right;

        }
        .mua
        {
        background-color:  hsl(273, 77%, 88%);
        }
        .container-mota
        {
                width: 100%;
                min-height: 100%;
                text-align: left;
                margin-top: 30px;
            }
        .text-center 
        {
            
            margin-top: 30px;
        }
        .lienquan
        {
            width: 100%;
            height: 100%;
            text-align: left;
            margin-top: 30px;

        }
        .box
        {
            min-width: 100px;
            min-height: 100px;


        }
        .video
        {
            min-height: 100px;
            width: 1000;
        }
        .news-card1
        {
            width: 100%;
            min-height: 100px;
            border-radius: 0;
            transition:.3s ease;
            box-shadow: 0 0 15px rgba(0,0,0,.05);
            object-fit: cover;
    
        }
        .news-card1:hover {
            transform: translateY(-5px);
        }
        .card-img-top1
        {
            width: 200px;
        }
        .filter-section h3 {
            text-align: center;
            background-color: hsl(273, 77%, 88%);
            color: rgb(41, 39, 39);
            padding: 8px 15px;
            margin: 0;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
        }
        .filter-section ul {
            list-style: none;
            padding: 5px 15px;
            margin: 0;
            margin-bottom: 20px;
            
        }
        .filter-section li {
            padding: 4px 0;
        }
        .filter-section label {
            display: flex; 
            align-items: center;
            cursor: pointer;
            font-size: 20px;
        }
        .filter-section input[type="checkbox"]
        .filter-section input[type="radio"] {
            margin-right: 8px;
        }
        .slider
        {
            float: left;
            margin-left: 10px;
            width: calc(80% - 10px);
            border: 1px solid hsl(273, 77%, 88%);
            padding: 5px;
            border-radius: 5px 5px 0 0;
        }
        .slidet img
        {
            width: 100%;
            border-radius: 5px 5px 0 0 ;
        }
        .banner1
        {
            display: inline-flex;
            align-items: center;
            justify-content: center;

        }
        input
        {
            width: 100%;
            height: 100%;
        }
        .button
        {
            text-align: center;
            margin: 5px 0 5px 0;
            padding: 10px;
            min-height: 50px;
            width: 75px;
            border: none;
            background-color: hsl(273, 77%, 88%);

        }
        .dm1:hover {
            transform: translateY(-8px);
        }
        .dmsp
        {
            border: none;
            background-color: hsl(273, 77%, 88%);
            border-radius: 5px;
            padding: 5px;

        }
        .th {
            border: none;
            background-color: hsl(273, 77%, 88%);
            border-radius: 5px;
            padding: 5px;

        }
        .color-option {
            width: 26px; 
            height: 26px; 
            border-radius: 4px; 
        }
        .keyword-tag {
            border: 1px solid #dee2e6; 
            color: #212529; 
            padding: .375rem .75rem; 
            margin-right: .5rem; 
            margin-bottom: .5rem;
            border-radius: .25rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none; 
            display: inline-block; 
        }
        
        .keyword-tag:hover {
            background-color: #f8f9fa;
            border-color: #adb5bd;
        }

        .hinh
        {
            position: relative;
            max-width: 500px;
            width: 100%;
            height: 650px;
            margin-left: 80px;
        }
        .hinh1
        {
            position:  absolute;
            box-shadow: 3px rgb(85, 83, 83);

        }
        .hinh1 img
        {
            width: 350px;
            height: 500px;
            position:  absolute;
            border-radius: 100px;
            left: 150px;
            border: 10px solid white;

        }
        .hinh2
        {
            bottom: 450px;
            position:  absolute;
        }

        .hinh2 img
        {
            width: 250px;
            height: 350px;
            position: absolute;
            border-radius: 100px;
            border: 10px solid white;
        }
        .hinhtren
        {
            position: relative;
            max-width: 500px;
            width: 100%;
            height: 650px;
            margin-left: 80px;
        }
        .hinh3
        {
            position:  absolute;
            box-shadow: 3px rgb(85, 83, 83);

        }
        .hinh3 img
        {
            width: 350px;
            height: 500px;
            position:  absolute;
            border-radius: 100px;
            left: 150px;
            border: 10px solid white;

        }
        .hinh4
        {
            bottom: 350px;
            position:  absolute;
            background-color: rgb(172, 156, 192);
            text-align: center;
            margin: 15px;
            padding: 35px;
            border-radius: 15px;
            width: 200px;
            height: 225px;
            color: aliceblue;

        }

        .hinhbanner
        {
            background: url(/image/banner6.jpg);
            height: 300px;
            width: 100%;
            text-align: center;
            color: white;
            background-size: cover;
        }

        .icon 
        {
            color: white;
        }
        .icon i
        {
            width: 90px;
            height: 40px;
            margin-bottom: 25px;
            color: rgb(255, 255, 255);
        }

        .card-img-top {
            height: 450px;
        }

        .card {
            margin-bottom: 50px;
        }

        .header-top {
            background-color: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #e9ecef;

        }

        .header-top .btn {
            color: #495057;
            border: none;
            font-size: 14px;
        }

        .search-input {
            border: 1px solid #ced4da;
            border-radius: 50px;
            padding: 5px 15px;
            margin-top: 15px;
        }

        .search-btn {
            background-color: #f8f9fa;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border: 1px solid #ced4da;
            border-left: none;
            margin-top: 15px;

        }

        .navbar-main {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
        }

        .navbar-main .nav-link {
            text-transform: uppercase;
            font-weight: 500;
            font-size: 14px;
            color: #212529;
            padding: 15px 20px;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .navbar-main .nav-link:hover {
            border-bottom-color: hsl(273, 77%, 88%);
            color: hsl(273, 77%, 88%);
        }

        .dropdown-menu {
            border-radius: 0;
            margin-top: 0;
        }

        .hero-content {
            z-index: 1;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        }

        .footer {
            background-color: hsl(273, 77%, 88%);
            padding: 50px 0;
            border-top: 1px solid #e9ecef;
        }

        .footer h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer ul li a {
            color: #6c757d;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: hsl(273, 77%, 88%);
        }

        .social-icons a {
            color: #6c757d;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: hsl(273, 77%, 88%);
        }

        .card1 img {
            width: 200px;
            height: 200px;

        }

        body {
            font-family: Arial, sans-serif;
            margin: 20px;
            background-color: #f5f5f5;
        }

        .section-title {
            font-size: 1.5em;
            font-weight: bold;
            color: #333;
            border-left: 5px solid hsl(273, 77%, 88%);
            padding-left: 10px;
            margin-bottom: 20px;
            line-height: 1;
        }

        .post-list {
            list-style: none;
            padding: 0;
            margin-bottom: 40px;
        }

        .post-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            background-color: #fff;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .post-image {
            width: 120px;
            height: 90px;
            margin-right: 15px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-content a {
            text-decoration: none;
            color: #000;
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
        }

        .post-date {
            color: hsl(273, 77%, 88%);
            font-size: 0.9em;
        }

        .keyword-list {
            margin-top: 20px;
        }

        .keyword-list a {
            display: inline-block;
            text-decoration: none;
            color: hsl(273, 28%, 44%);
            border: 1px solid hsl(273, 28%, 44%);
            padding: 5px 10px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9em;
            text-transform: uppercase;
            border-radius: 3px;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            text-decoration: none;
        }

        .category-item:last-child {
            border-bottom: none;
        }

        .category-name a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .category-name a:hover {
            color: hsl(272, 100%, 45%);
        }

        .category-count {
            color: #888;
            font-size: 0.9em;
        }
        .cm
        {
            margin-top: 30px;
        }
        .bvmn
        {
            margin-top: 30px;
        }
        .tkpb
        {
            margin-top: 30px;
        }
