 :root {
            --primary-color: #e63946;
            --secondary-color: #1d3557;
            --light-color: #f1faee;
            --dark-color: #457b9d;
        }
        	.pore{position:relative;max-width:1240px;margin:0px auto;text-align:center;}
			.pore img{max-width:90%;margin-bottom:1rem;}
			.indexprev1,.indexnext1{position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -20px;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;}
    .indexprev1:after,.indexnext1:after{font-size:18px;}
    
   .indexprev1:hover,.indexnext1:hover {background-color: #e52a2a;}
			.product-swiper a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
}
a{text-decoration:none;}
        body {
            font-family: 'Arial', sans-serif;
            color: #333;
        }
	img{max-width:100%;}
        /* Navbar Styles */
        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 40px;
        }

        .navbar-nav .nav-link {
            color: #333;
            font-weight: 600;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        .search-btn, .lang-btn {
            margin-left: 10px;
            color: #333;
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .search-btn:hover, .lang-btn:hover {
            color: var(--primary-color);
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1050;
            justify-content: center;
            align-items: center;
        }

        .search-modal.show {
            display: flex;
        }

        .search-modal .modal-content {
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            overflow: hidden;
        }

        /* Product Section */
        .product-section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .view-all-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .view-all-btn:hover {
            background: #d62839;
        }

        /* Product Card */
        .product-card {
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.3s;
        }

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

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .product-specs {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
        }

        .product-specs p {
            margin: 5px 0;
        }

        .product-btns {
            display: flex;
            gap: 10px;
        }

        .product-btn {
            flex: 1;
            padding: 8px;
            border: none;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: background 0.3s;
        }

        .btn-price {
            background: var(--primary-color);
            color: white;
        }

        .btn-price:hover {
            background: #d62839;
        }

        .btn-chat {
            background: #e9ecef;
            color: #333;
        }

        .btn-chat:hover {
            background: #dee2e6;
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-link {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: white;
        }

        .contact-formb input, .contact-formb textarea {
            background: #2c3e50;
            border: none;
            color: white;
            border-radius: 5px;
            padding: 10px;
            margin-bottom: 15px;
        }

        .contact-formb input::placeholder, .contact-formb textarea::placeholder {
            color: #95a5a6;
        }

        .contact-formb .btn-submit {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .contact-formb .btn-submit:hover {
            background: #d62839;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            color: #95a5a6;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .product-section {
                padding: 30px 0;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .product-card {
                margin-bottom: 20px;
            }
        }
.remark-item {
    display: inline-block;
    color: #999;
    font-size: 14px;
    width: 48%;
    box-sizing: border-box;
    padding-right: 2%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.product-title a{font-size:1.2rem;color:#444;text-decoration:none;}
.product-title a:hover{color:rgb(11,110,253)}
.product_list_99703_118 table{width:100%;margin-bottom:30px}.product_list_99703_118 table th,.product_list_99703_118 table td{border:1px solid #f0f1f2;line-height:16px;white-space:nowrap;padding:16px 9px;max-width:200px;overflow:hidden;text-overflow:ellipsis}.product_list_99703_118 table th{word-break:break-all;width:35%;font-weight:bold;background-color:#f7f9fa}.product_list_99703_118 table td{width:65%}.product_list_99703_118 .operations{font-size:0}.product_list_99703_118 .button{display:inline-block;width:220px;margin-right:14px}.product_list_99703_118 .button:last-child{margin-right:0}
.product-buttons{margin-bottom:1rem;}
.product-item img{margin-top:1rem;}