body{
  font-family: 'Poppins', sans-serif!important;
}
.product-detail-page{
    padding: 80px 0px;
}
.product-section{
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
}
.main-image-container{
    border: 2px solid #e7e7e7;
    border-radius: 10px;
    padding: 40px;
    background: linear-gradient(180deg, #ffffff 0%, #c3cfe26b 100%);
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-image{
    max-width: 100%;
    max-height: 100%;
}
.product-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.product-title{
    font-size: 27px;
    font-weight: 500;
    color: #3c3c3c;
    line-height: 40px;
}
.price-section{
    display: flex;
    gap: 0px 15px;
    align-items: baseline;
    flex-wrap: wrap;
}
.best-price{
    display: flex;
    font-size: 32px;
    font-weight: 600;
}
.MRP{
    display: flex;
    font-size: 20px;
    color: #6a6a6a;
}
.discount{
    display: flex;
    border: 1px solid #39ae3e;
    background: #00cd082b;
    color: #39ae3e;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 12px;
}
.incl-tax{
    display: flex;
    flex-basis: 100%;
    gap: 10px;
    align-items: baseline;
    margin-top: 5px;
}
.incl-tax-text{
    font-weight: 400;
    color: #9d9b9b;
}
.incl-tax-symbole{
    background: #e1edfd;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}
.color-selector{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#colorname{
    font-weight: 500;
    color: #333;
}
.coloroptions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.coloroption{
    width: 60px;
    height: 60px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
}
.coloroption.active{
    border-color: #2d7a6e;
}
.coloroption:hover{
    border-color: #2d7a6e;
}
.content-button{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
}
.cot-btn{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    background: #E5F0FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
    height: 50px;
}
.cot-btn::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:0%;
    background: #0b5ed7;
    z-index:0;
    transition: height 600ms cubic-bezier(.2,.9,.3,1);
    transform-origin: bottom center;
}
.content-text{
    position:relative;
    z-index:1;
    color: #0B5ED7;
    font-weight: 600;
    font-size:20px;
    transition: color 600ms cubic-bezier(.2,.9,.3,1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cot-btn:hover::before{
    height:100%;
    z-index:0;
}
.cot-btn:hover .content-text{
    color: white;
    z-index:1;
}
.quick-icon{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}
.icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    flex: 1;
    min-width: 120px;
}
.icon-image{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #143b86;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-image img{
    width: 70%;
}
.icon-text{
    font-size: 16px;
    font-weight: 600;
    color: #143b86;
    line-height: 1.4;
    padding: 0px 10px;
} 
.key-specs-container{
    max-width: 80%;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.key-specs-text{
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}
.divider{
    height: 1px;
    background: #e0e0e0;
    margin-bottom: 30px;
}
.specs-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 50px;
}
.spec-item{
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
}
.spec-label{
    font-size: 13px;
    color: #666;
    font-weight: 400;
}
.spec-value{
    font-size: 16px;
    color: #000;
    font-weight: 400;
    line-height: 1.5;
}
/*RESPONSIVE MEDIA QUERIES*/
/* Tablets and Small Desktops (1024px and below) */
@media screen and (max-width: 1024px) {
    .product-section{
        max-width: 90%;
        gap: 40px;
    }
    
    .key-specs-container{
        max-width: 90%;
        padding: 40px 40px;
    }
    
    .icon-text{
        font-size: 14px;
        padding: 0px 5px;
    }
    
    .icon-image{
        width: 75px;
        height: 75px;
    }
}
/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
    .product-section{
        max-width: 95%;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }
    
    .main-image-key-specs-container{
        height: auto;
        min-height: 350px;
        padding: 30px;
    }
    
    .product-title{
        font-size: 22px;
        line-height: 32px;
    }
    
    .best-price{
        font-size: 28px;
    }
    
    .MRP{
        font-size: 18px;
    }
    
    .quick-icon{
        justify-content: space-between;
        gap: 15px;
    }
    
    .icon{
        min-width: 100px;
    }
    
    .icon-image{
        width: 70px;
        height: 70px;
    }
    
    .icon-text{
        font-size: 13px;
    }
    
    .key-specs-container{
        max-width: 90%;
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .key-specs-text{
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .specs-grid{
        gap: 20px 30px;
    }
}
/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
    .product-section{
        max-width: 95%;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 15px;
    }
    
    .main-image-container{
        min-height: 280px;
        padding: 20px;
        border-radius: 8px;
    }
    
    .product-info{
        gap: 20px;
    }
    
    .product-title{
        font-size: 22px;
        line-height: 28px;
    }
    
    .best-price{
        font-size: 26px;
    }
    
    .MRP{
        font-size: 16px;
    }
    
    .discount{
        font-size: 11px;
        padding: 2px 5px;
    }
    
    .incl-tax-text{
        font-size: 14px;
    }
    
    .coloroption{
        width: 50px;
        height: 50px;
    }
    
    .content-text{
        font-size: 16px;
    }
    
    .cot-btn{
        height: 45px;
    }
    
    .quick-icon{
        gap: 10px;
    }
    
    .icon{
        min-width: 80px;
        flex: 0 0 calc(50% - 10px);
    }
    
    .icon-image{
        width: 60px;
        height: 60px;
    }
    
    .icon-text{
        font-size: 12px;
        padding: 0px;
    }
    
    .key-specs-container{
        max-width: 92%;
        padding: 30px 20px;
        border-radius: 12px;
        margin: 30px auto;
    }
    
    .key-specs-text{
        font-size: 25px;
        margin-bottom: 15px;
    }
    
    .specs-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-label{
        font-size: 14px;
    }
    
    .spec-value{
        font-size: 16px;
    }
}
/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
    .product-title{
        font-size: 16px;
        line-height: 24px;
    }
    
    .best-price{
        font-size: 22px;
    }
    
    .MRP{
        font-size: 14px;
    }
    
    .coloroption{
        width: 45px;
        height: 45px;
    }
    
    .content-text{
        font-size: 14px;
    }
    
    .icon{
        min-width: 70px;
    }
    
    .icon-image{
        width: 55px;
        height: 55px;
    }
    
    .icon-text{
        font-size: 11px;
    }
    
    .key-specs-text{
        font-size: 20px;
    }
}
/* Extra Responsive Media Queries */
@media screen and (max-width: 1500px) {
    .main-image-container{
        height: 470px;
    }
}
@media screen and (max-width: 1200px) {
    .main-image-container{
        height: 420px;
    }
}
@media screen and (max-width: 1100px) {
    .main-image-container{
        height: 400px;
    }
}
@media screen and (max-width: 800px) {
    .main-image-container{
        height: 350px;
    }
}
@media screen and (max-width: 400px) {
    .product-title {
        font-size: 20px;
    }
    .best-price {
        font-size: 26px;
    }
    .coloroption {
        width: 45px;
        height: 46px;
    }
    .content-button {
        padding: 8px;
    }
    .cot-btn {
        height: 40px;
    }
    .spec-item {
        padding-bottom: 13px;
    }
    .divider {
        margin-bottom: 25px;
    }
}