/* Product Details Premium Redesign */
.single-product-details h1 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.old-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #f1c40f;
}

.rating-text {
    color: #666;
    font-size: 14px;
}

.see-reviews {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 10px;
}

.sku-badge {
    background: #518e1a;
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    margin-bottom: 20px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.brand-text {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    border: 1px solid #000;
    width: fit-content;
    margin-bottom: 20px;
}

.qty-btn {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #f0f0f0;
}

.quantity-selector input {
    width: 50px;
    border: none;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-add-cart {
    background: #518e1a;
    color: #fff;
    flex: 1;
    min-width: 200px;
    padding: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 18px;
}

.btn-order-now {
    background: #ffcc00;
    color: #000;
    flex: 1;
    min-width: 200px;
    padding: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 18px;
}

.btn-call-now {
    background: #007bff;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

.btn-whatsapp {
    background: #1b8e4e;
    color: #fff;
    width: 100%;
    padding: 12px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

/* Delivery Table */
.delivery-table-container {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.delivery-table-header {
    background: #f8f8f8;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
}

.delivery-table {
    width: 100%;
    border-collapse: collapse;
}

.delivery-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.delivery-table tr:last-child td {
    border-bottom: none;
}

.delivery-table td:last-child {
    text-align: right;
    font-weight: 600;
}

/* Responsive Overrides for Mobile */
@media (max-width: 768px) {
    .single-product-details h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .new-price {
        font-size: 26px;
    }

    .old-price {
        font-size: 20px;
    }

    .btn-add-cart,
    .btn-order-now {
        min-width: 100%;
        /* Force stacking on mobile for cleaner look */
        padding: 10px;
        font-size: 16px;
    }

    .btn-call-now,
    .btn-whatsapp {
        padding: 10px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .single-product-details h1 {
        font-size: 18px;
    }

    .brand-text,
    .sku-badge {
        font-size: 14px;
        margin-bottom: 10px;
    }
}