:root{
  --common-font: 'Poppins', sans-serif;
}
body{
  font-family: 'Poppins', sans-serif;
}
.product-detail-card{
    max-width: 1300px;
    margin: 10px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    margin-bottom: 60px;
}
.img-section{
    flex: 0 0 400px;
    padding: 20px;
    background: #f8f9fa;
}
.img{
    max-width: 100%;
    height: 300px;
    background: linear-gradient(180deg, #ffffff 0%, #c3cfe242 100%);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img img{
    width: 95%;
}
.info-section{
    padding: 20px 30px;
}
.title{
    font-size: 23px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    font-family: var(--common-font);
}
.price{
    display: flex;
    align-items: center;
    gap: 4px 15px;
    margin-bottom: 25px;
}
.MRP{
    font-size: 18px;
    color: #999;
    font-family: var(--common-font);
}
.best-price{
    font-size: 26px;
    color: #303030;
    font-weight: bold;
    font-family: var(--common-font);
}
.save-amount{
    background: #00cd082b;
    color: #39ae3e;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
    font-family: var(--common-font);
    border: 1px solid #39ae3e;
}
.specifications{
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}
.specifications-heading{
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--common-font);
    font-weight: 600;
    color: #2c2c2c;
}
.spec-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.spec-row{
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    flex-direction: column;
    gap: 5px;
}
.spec-label{
    color: #3e3e3e;
    font-family: var(--common-font);
}
.spec-value{
    color: #000000;
    font-family: var(--common-font);
    font-size: 16px;
}
.content-button{
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 12px;
    max-width: 260px;
    margin-bottom: 24px;
}
.cot-btn{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    background: #E5F0FF;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
}
.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;
}
.info-section a{
    text-decoration: none;
    color: inherit;
}
.info-section a:hover{
    text-decoration: none;
}
.key-info{
    background: #E5F0FF;
    padding: 12px;
    border-radius: 6px;
    border-left: 4px solid #0B5ED7;
}
.key-points{
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #0B5ED7;
}
.key-point{
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--common-font);
}
.key-point::before{
    content: "✓";
    color: #0B5ED7;
    font-weight: bold;
}
/* Responsive Styles */
/* Tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px){
    .product-detail-card{
        max-width: 95%;
    }      
    .img-section{
        flex: 0 0 350px;
    }      
    .title{
        font-size: 20px;
    }     
    .info-section{
        padding: 20px;
    }
}
/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .product-detail-card{
        flex-direction: column;
        margin-bottom: 40px;
    }     
    .img-section{
        flex: 1;
        padding: 15px;
        order: -1;
    }        
    .img{
        height: 250px;
    }        
    .info-section{
        padding: 15px 20px;
    }        
    .title{
        font-size: 18px;
    }        
    .best-price{
        font-size: 24px;
    }        
    .MRP{
        font-size: 16px;
    }        
    .spec-grid{
        grid-template-columns: 1fr;
    }        
    .specifications-heading{
        font-size: 17px;
        margin-bottom: 15px;
    }
    .content-button{
        max-width: 100%;
    }
    .img img{
        width: 90%;
    }
}
@media (min-width: 630px) and (max-width: 768px){
    .img img{
        height: 90%;
        width: 85%;
    }
}     
/* Mobile devices (max-width: 480px) */
@media (max-width: 480px){
    .products-section{
        padding: 10px 0px;
    }      
    .product-detail-card{
        margin-bottom: 30px;
        border-radius: 6px;
    }    
    .img-section{
        padding: 10px;
    }        
    .img{
        height: 200px;
    }        
    .info-section{
        padding: 15px;
    }        
    .title{
        font-size: 16px;
        margin-bottom: 12px;
    }        
    .price{
        gap: 2px 10px;
    }        
    .best-price{
        font-size: 22px;
    }        
    .MRP{
        font-size: 15px;
    }        
    .save-amount{
        font-size: 10px;
        padding: 2px 5px;
    }        
    .specifications{
        padding: 12px;
    }        
    .specifications-heading{
        font-size: 17px;
    }        
    .spec-row{
        font-size: 13px;
        flex-direction: column;
        gap: 3px;
    }        
    .spec-label{
        font-size: 13px;
    }        
    .spec-value{
        font-size: 15px;
    }        
    .contact-us{
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }        
    .key-info{
        padding: 10px;
    }        
    .key-points{
        gap: 10px;
        font-size: 12px;
    }       
    .key-point{
        font-size: 12px;
    }
    .img img{
        width: 90%;
    }
}      
/* Extra small mobile devices (max-width: 360px) */
@media (max-width: 360px){
    .title{
        font-size: 15px;
    }        
    .best-price{
        font-size: 20px;
    }        
    .MRP{
        font-size: 14px;
    }        
    .spec-row{
        font-size: 12px;
    }        
    .key-points{
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 1322px){
    .product-detail-card{
        margin: 30px 25px;
    }        
}
@media (max-width: 520px){
    .product-detail-card{
        margin: 25px 20px;
    }        
}
@media (max-width: 400px){
    .product-detail-card{
        margin: 20px 13px;
    }        
}
@media (max-width: 850px){
    .price{
        flex-wrap: wrap;
    }
    .save-amount{
        margin-left: 0px;
    }
}
@media (min-width: 768px) and (max-width: 887px){
    .key-points{
        flex-wrap: wrap;
    }
}
@media (max-width: 455px){
    .key-points{
        flex-wrap: wrap;
    }
}