* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
}
.item-price{
    margin:0;
    font-weight:600;
    white-space:nowrap;
}
.item-price .priceF{
    padding-left:11px;
    font-size:17px;
    color: #111827;
}
.product-page {
    width: min(1380px, 94%);
    margin: 55px auto;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 70px;
    align-items: start;
}

.product-image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-info {
    padding-top: 8px;
}

.product-title {
    margin: 0 0 18px;
    max-width: 830px;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.offer-box {
    margin: 10px 0 14px;
    padding: 11px 15px;
    border-left: 4px solid #d70000;
    background: #fafafa;
    font-size: 18px;
}

.offer-price {
    color: #d70000;
    font-weight: 700;
}

.product-meta {
    margin-top: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #4b5563;
}

.product-meta strong {
    color: #374151;
}

.quantity-label {
    display: block;
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #374151;
}

.quantity-box {
    display: inline-grid;
    grid-template-columns: 30px 30px 30px;
    height: 30px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
}

.quantity-box button,
.quantity-box input {
    width: 30px;
    height: 28px;
    border: 0;
    background: #fff;
    text-align: center;
    font-size: 14px;
}

.quantity-box button {
    cursor: pointer;
    color: #4b5563;
}

.quantity-box input {
    border-left: 1px solid #d1d5db;
    border-right: 1px solid #d1d5db;
    outline: none;
}

.add-cart-btn {
    display: block;
    padding: 12px 20px;
    border: 0;
    border-radius: 2px;
    background: linear-gradient(135deg, #0c6f54, #0b2c23);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.add-cart-btn:hover {
    background: #0c6f54;
}


.cart-row{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

.quantity-label{
    margin:0;
    font-weight:700;
    white-space:nowrap;
}

.quantity-box{
    margin:0;
    flex-shrink:0;
}

.add-cart-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:10px 22px;
}


/* Out of stock */
.quote-box{
    margin-top:-100px;
    padding:24px;
    border:1px solid #e5e7eb;
    border-radius:12px;
    background:#fafafa;
    max-width:420px;
    float:right;
}

.quote-message{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.quote-message i{
    font-size:32px;
    color:#d97706;
    margin-top:4px;
}

.quote-message h4{
    margin:0 0 6px;
    font-size:22px;
    color:#111827;
}

.quote-message p{
    margin:0;
    color:#6b7280;
    line-height:1.6;
}

.quote-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#005baa;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.quote-btn:hover{
    background:#00498a;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,91,170,.25);
}

.quote-btn i{
    font-size:18px;
}



@media (max-width: 768px) {
    .quote-box{
    margin-top:-10px; 
}
    .product-page {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 28px auto;
    }

    .product-image {
        max-width: 260px;
    }

    .product-title {
        font-size: 30px;
    }
    .cart-row{
        gap:10px;
    }

    .add-cart-btn{
        flex:1;
        min-width:160px;
    }
}