.product_page{
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 70px;
}

/* Quick Info Icons */
.quick-info-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
}
.quick-info-icons div {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.95rem;
}
.quick-info-icons i {
    color: #007bff;
    font-size: 1.2rem;
    margin-right: 0.6rem;
}

.quick-info-icons-item-label{
    margin-right:3px;
    font-weight: 500;
    color: #00aff2;
}





/* Full Details List */
.full-details-list {
    margin-top: 2rem;
}

.full-details-list h3 {
    margin-bottom: 1rem;
    font-size:1.3rem;
}





/* Description & Guarantee */
.description-section {
    padding-top: 1rem;
}
.description-section h3 {
    margin-bottom: 1rem;
}
.description-section p {
    color: #4b5563;
    line-height: 1.55rem;
}
.guarantee-box {
    background-color: #e6f7ff; /* Light blue */
    border: 1px solid #91d5ff; /* Blue border */
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    margin-top: 1.5rem;
}
.guarantee-box i {
    color: #1890ff; /* Deeper blue icon */
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}
.guarantee-box .content h3 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    color: #262626;
}
.guarantee-box .content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #595959;
}




.product-container-main{
    display: flex;
    margin-bottom:2rem;
}
.product_container_upper{
    flex:1;
}
.product-container-main-right{
    max-width: 30%;
    margin-right:2rem;
}









/* Right Column: Purchase Card */
.purchase-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    position: sticky; /* Make it sticky */
    top: 75px; /* Space from top */
    align-self: start; /* Align to the start of the grid cell */
    border:1px solid lightgray;
    transition: all 0.3s ease;
}

.purchase-card:hover{
    border-color: #00aff2;
}
@media (max-width: 767px) {
    .purchase-card {
        position: static; /* No sticky on mobile */
        margin-top: 2rem;
    }
}

.purchase-card .price-display {
    margin-bottom: 1rem;
    text-align: center;
}
.purchase-card .price-display .price {
    font-size: 3rem; /* Larger price */
    font-weight: 700;
    color: #222;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}
.purchase-card .price-display .unit {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 0.2rem;
    display: block;
}

.purchase-card .add-to-cart-btn {
    width: 100%;
    background-color: #28a745; /* Green for add to cart */
    color: #fff;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
}
.purchase-card .add-to-cart-btn:hover {
    background-color: #218838;
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}
.purchase-card .add-to-cart-btn i {
    margin-right: 0.8rem;
    font-size: 1.5rem;
}

.purchase-card .stock-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: #00aff2; /* Green for stock */
    font-weight: 600;
    font-size: 1rem;
}
.purchase-card .stock-info i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}


.product-features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 15px;
    margin: 0;
    margin-top:15px;
}




.section-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 600; /* font-semibold */
    margin-top: 2.5rem; /* mt-10 */
    margin-bottom: 1.25rem; /* mb-5 */
    padding-bottom: 0.5rem; /* pb-2 */
    border-bottom: 1px solid #e2e8f0; /* border-b border-gray-200 */
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem; /* gap-4 */
}
.info-block {
    display:flex;
    justify-content: space-between;
    background-color: #f7fafc; /* bg-gray-50 */
    padding: 1rem; /* p-4 */
    border-radius: 0.5rem; /* rounded-lg */
    border: 1px solid #00aff2; /* border border-gray-200 */
}
.info-label {
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    color: #00aff2; /* text-gray-500 */
    margin-bottom: 0.25rem; /* mb-1 */
}
.info-value {
    font-size: 1rem; /* text-md */
}

@media (min-width: 768px) { /* md: */
    .info-grid {
        grid-template-columns: 1fr 1fr; /* md:grid-cols-2 */
    }
}


.feature_item.product-view {
    margin-top:15px;
}
.feature_item h4{
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.2rem;
}


.product_price_wrap{
    font-size: 1.3rem;
    font-weight: bold;
    color: #00aff2;
}

.purchase-card.mob{
    display:none;
}

@media (max-width:960px){
    .product-container-main{
        flex-direction: column;
    }
    .product-container-main-right{
        display:none;
    }
    .purchase-card.mob{
        display: block;
        position: static;
        margin-top: 2rem;
    }
    .product_container_upper{
        margin: 0 1rem;
    }

}
