body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}p{
    font-size: 1.2rem;
}
h1, h2, h3,h4,h5, h6, span{
    font-size: 1.3rem;
}



/* Breadcrumb styles */
.pagination {
    padding: 15px 0;
    color: #787a80;
}

.pagination a {
    text-decoration: none;
    color: #787a80;
}

/* Product container layout */
.product-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

/* Image section styles */
.img-section {
    width: 60%;
    flex-shrink: 0;
}

.img-card {
    width: 100%;
}

.img-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.small-Card {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.small-Card img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.small-Card img:hover {
    transform: scale(1.05);
}

.small-Card img:active {
    border: 2px solid #17696a;
}

/* Product info styles */
.product-info {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.product-info h1 {
    font-size: 42px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.price {
    font-size: 28px;
    font-weight: 600;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #17696a;
    margin: 0;
}

/*Rating sections*/
.testimonial-text{
}

.big{
    font-size: 1.3rem;
    font-weight: 450;
    
}

.ratingtext{
    font-size: 1.5rem;
    margin-top: 50px;

}
.time small{
 opacity: 0.6;
}
.rating_views{
    height: 10px;
}
.rating_view {
    
    width: 150px;
    height: 100px;
    border-radius: 10px;
 
   color: #17696a;
   
}
article{
    margin-top: 80px;
}
.testimonial-text a{
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 450;
}


/* Button styles */
.submit-button {
    background: #17696a;
    color: white;
    font-size: 25px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;

    max-width: 350px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(23, 105, 106, 0.2);
}

.submit-button:hover {
    background: #155d5e;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(23, 105, 106, 0.3);
}

/* Description styles */
.description {
    width: 100%;
    margin-top: 40px;
    line-height: 1.8;
 

    clear: both;
}

/* Duration display */
.duration {
    color: #424551;
    font-size: 16px;
    font-weight: 500;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: 2rem auto;
}
.ratings-section {
    margin-top: 40px;
}

.ratingtext {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Each review card */
.testimonial-text {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: left;
}

/* Name */
.testimonial-text .big {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Stars row */
.time {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.time span i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 1.1rem;
}

/* Date */
.time small {
    color: #555;
    font-size: 0.9rem;
}

/* Review text */
.testimonial-text p {
    margin-top: 20px;
    line-height: 1.6;
    color: #333;
}

/* View Source */
.rating_views {
    margin-top: 20px;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Navigation buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover {
    background: white;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .product-container {
        flex-direction: column;
    }
*{
    font-size: 1rem;
}
    .img-section {
        width: 100%;
    }

    .product-info {
        width: 100%;
        padding: 20px 0;
    }

    .img-card img {
        height: 400px;
    }

    .submit-button {
        max-width: 100%;
    }
.small-Card img{
    height: 40%;

}
   
}

.duration-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 10px;
    height: 25px;
   
    border-radius: 4px;
}

.duration-label {
    margin-right: 12px;
}

.duration-value {
    font-weight: normal;
    font-size: 14px;
    color: #666;
}

.duration-container {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 10px;
   
    border-radius: 4px;
}

.duration-label {
    margin-right: 12px;
}

.duration-value {
    font-weight: normal;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .duration-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
    }

    .duration-label {
        margin-right: 0;
        margin-bottom: 6px;
    }
}
