.price-page {
    padding: 40px 20px;
}

.price-header {
    background: linear-gradient(135deg,#ff6a00,#ee0979,#8e2de2);
    color: white;
    padding: 50px 20px;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.price-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
}

.price-subtitle {
    font-size: 18px;
    opacity: .95;
    margin-bottom: 25px;
}

.download-btn {
    display: inline-block;
    background: white;
    color: #e91e63;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: .3s;
}

    .download-btn:hover {
        transform: translateY(-3px);
        color: #e91e63;
    }

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.category-header {
    color: white;
    font-size: 32px;
    font-weight: 800;
    padding: 22px 30px;
}

/* Category Colors */

.bombs {
    background: linear-gradient(135deg,#ff416c,#ff4b2b);
}

.rockets {
    background: linear-gradient(135deg,#36d1dc,#5b86e5);
}

.bijili {
    background: linear-gradient(135deg,#11998e,#38ef7d);
}

.lakshmiseries {
    background: linear-gradient(135deg,#ff9a44,#fc6076);
}

.sparklers {
    background: linear-gradient(135deg,#f7971e,#ffd200);
}

.flowerpots {
    background: linear-gradient(135deg,#ff758c,#ff7eb3);
}

.chakkars {
    background: linear-gradient(135deg,#00c9ff,#92fe9d);
}

.fancyitems {
    background: linear-gradient(135deg,#4facfe,#00f2fe);
}

.kidsspecial {
    background: linear-gradient(135deg,#f953c6,#b91d73);
}

.garlands {
    background: linear-gradient(135deg,#ffb347,#ffcc33);
}

.giftboxes {
    background: linear-gradient(135deg,#7f00ff,#e100ff);
}

/* Table Header */

.table thead th {
    background: #fff1f5;
    color: #1e293b;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: 18px;
    border-bottom: 3px solid #ffd1dc;
}

/* Table Rows */

.table tbody td {
    padding: 22px 18px;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
    border-color: #edf2f7;
}

/* Product Column */

.price-page .product-name {
    text-align: left !important;
    padding-left: 35px !important;
    font-weight: 700;
    width: 45%;
    color: #1e293b;
}

/* MRP Column */

.table del {
    color: #64748b;
    font-weight: 600;
}

/* Offer Price */

.offer-price {
    color: #e91e63;
    font-size: 22px;
    font-weight: 800;
    min-width: 100px;
}

/* Save Column */

.save-price {
    color: #16a34a;
    font-size: 20px;
    font-weight: 800;
}

.discount-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 12px;
    background: #28a745;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* Column Widths */

.table th:nth-child(2),
.table td:nth-child(2) {
    width: 15%;
}

.table th:nth-child(3),
.table td:nth-child(3) {
    width: 18%;
}

.table th:nth-child(4),
.table td:nth-child(4) {
    width: 22%;
}

/* Mobile */

@media (max-width:768px) {

    .price-page {
        padding: 20px 10px;
    }

    .price-title {
        font-size: 34px;
    }

    .price-subtitle {
        font-size: 14px;
    }

    .download-btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .category-header {
        font-size: 24px;
        padding: 18px 20px;
    }

    .table thead th {
        font-size: 12px;
        padding: 10px 5px;
    }

    .table tbody td {
        font-size: 12px;
        padding: 12px 5px;
    }

    .price-page .product-name {
        padding-left: 10px !important;
        width: auto;
    }

    .offer-price {
        font-size: 16px;
    }

    .save-price {
        font-size: 14px;
    }

    .discount-badge {
        display: block;
        margin-top: 5px;
        margin-left: 0;
        font-size: 10px;
    }
}
