body-display{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container-display{
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.decription{
    color: #000000;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-header h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.product-rating {
    color: #f5c518;
    margin-right: 20px;
}

.product-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 80%;
    border-radius: 5px;
}


.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnails img {
    width: 80px;
    height: 70px;
    margin: 0 6px;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}

.thumbnails img:hover {
    border: 2px solid #007bff;
}

.product-info {
    flex: 1;
    padding: 0 20px;
    margin-left: 40px;
}

.product-price {
    font-size: 25px;
    color: #fa2408;
    margin-top: 30px;
    margin-bottom: 30px;
}

.product-actions
{
    font-size: 20px;
    color: #131313;
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

.product-variants {
    margin-bottom: 20px;
}

.variant-btn {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
}

.variant-btn.active {
    background-color: #007bff;
    color: #fff;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
}

.buy-now {
    background-color: #e74c3c;
}

.more-products {
    background-color: #007bff;
}

.decription li{
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.product-warranty h2,
.product-details h2,
.product-advantages h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.product-warranty p,
.product-details ul,
.product-advantages ul {
    font-size: 16px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.product-details ul li,
.product-advantages ul li {
    margin-bottom: 10px;
}

.product-advantages ul li {
    display: flex;
    align-items: center;
}

.product-advantages ul li::before {
    content: "✔";
    color: #27ae60;
    margin-right: 10px;
}

.hidden {
    display: none;
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features a {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
}

.features a:hover {
    text-decoration: underline;
}

.warranty-status {
    color: #1536f5; 
    font-size: 14px; /* Cỡ chữ */
    font-weight: bold; /* Độ đậm của chữ */
    margin-top: 5px; /* Khoảng cách từ trên xuống */
}

.feature-images {
   
    display: flex;
    justify-content: space-around; 
    margin-top: 20px;
   
}

.feature-images img {
    width: 350px; 
    height: 300px;
    margin-right: 10px; 
}

/* Slide load ảnh*/
.swiper-container {
    width: 100%;
    height: 100px;
    margin: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: auto;
    height: 100%;
}


/* Style the Image Used to Trigger the Modal */
.clickable {
    cursor: pointer;
    transition: 0.3s;
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Add Animation - Zoom in the Modal */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.activation-link:hover {
    text-decoration: underline; /* Underline on hover */
}