/* Pooja Bestsellers Section */
.pooja-section-wrapper {
    position: relative;
    padding: 50px 0;
    background-color: #fff;
    /* overflow: hidden; */
}

/* Decorative Mandala */
.pooja-decoration-left {
    position: absolute;
    top: 10%;
    /* left: -50px; */
    width: 250px;
    height: 250px;
    /* background-image: url('../homeimage/mandala_decoration.png'); Placeholder */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

.pooja-decoration-left img {
    opacity: 0.1;
}

.pooja-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pooja-subtitle {
    color: #EC6221;
    /* Orange color */
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.pooja-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

/* Card Design Matching Reference */
.pooja-card {
    background: #fff;
    border-radius: 15px;
    /* More rounded */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 15px;
    /* Inset padding for the whole card content */
    height: 100%;
    border: 1px solid #f0f0f0;
}

.pooja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pooja-img-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 10px;
    /* Image itself is rounded */
}

.pooja-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pooja-card:hover .pooja-img-container img {
    transform: scale(1.05);
}

.pooja-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    /* Dark grey/black */
    margin-bottom: 5px;
    padding: 0 5px;
}

.pooja-card-price {
    font-size: 16px;
    font-weight: 800;
    /* Bold price */
    color: #000;
    margin-bottom: 15px;
    display: block;
}

/* Button Styles exact match */
.pooja-btn {
    display: block;
    /* Full width block behaviour */
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    /* Default grey border */
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
}

.pooja-btn i {
    margin-right: 8px;
    font-size: 13px;
}

.pooja-btn:hover {
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
}

/* Active Button (First item - Orange) */
.pooja-btn.active {
    background-color: #f36c21;
    /* Orange */
    color: #fff;
    border-color: #f36c21;
}

.pooja-btn.active:hover {
    background-color: #d8560e;
    color: #fff;
}

.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.view-more-btn-orange {
    background-color: #f36c21;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-more-btn-orange:hover {
    background-color: #d8560e;
    color: #fff;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pooja-title {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .pooja-card {
        padding: 10px;
        /* Slightly less padding on mobile */
        margin-bottom: 20px;
    }

    .pooja-img-container {
        height: 150px;
    }

    .pooja-btn {
        padding: 8px 5px;
        font-size: 12px;
    }

    .pooja-card-title {
        font-size: 13px;
    }

    .pooja-card-price {
        font-size: 14px;
        margin-bottom: 10px;
    }
}