{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
{% if product.image %} {{ product.name }} {% else %}
No image available
{% endif %}

{{ product.name }}

{% if product.featured %} Featured {% endif %}
⭐ {{ product.rating|default:0|floatformat:1 }}/5 Category: {{ product.category }} Stock: {{ product.stock|default:0 }} {% if product.discount_percent %}Save {{ product.discount_percent }}%{% endif %}
Rs. {{ product.display_price|floatformat:2 }} {% if product.discount_price %} Rs. {{ product.price|floatformat:2 }} Save Rs. {{ product.savings|floatformat:2 }} {% endif %}

{{ product.description }}

Fast delivery 2–4 business days
Secure checkout Wallet, COD, and verified payment flow
Easy return Clear order tracking and customer support
Smart purchase flow

Move from product to cart, checkout, payment, and order tracking with cleaner visual feedback.

Flexible payment

Choose eSewa, Khalti, or cash on delivery, then change payment before shipment when supported.

Order visibility

Review payment status, timeline, and next actions from a more advanced order dashboard.

Back to Products {% if user.is_authenticated %} {% if in_wishlist %}Saved to Wishlist{% else %}Save to Wishlist{% endif %} {% endif %} {% if product.stock > 0 %} Add to Cart Buy Now {% else %} Sold Out {% endif %}
{% if related_products %} {% endif %}
{% endblock %}