/* HERO SECTION */
.zeeni-buy-hero {
    background-color: #B7A3E3;      /* Purple background */
    color: #fff;
    padding: 160px 20px;             /* vertical padding */
    display: flex;
    justify-content: center;         /* center horizontally */
    align-items: center;             /* center vertically if enough height */
    text-align: center;
    flex-direction: column;          /* stack heading + subtitle */
    position: relative;
}

.zeeni-buy-hero h1 {
    font-size: 72px;
    margin: 0 0 20px;                /* margin bottom for spacing */
    font-weight: 800;
    line-height: 1.1;
	    color: #fff;

}

.zeeni-buy-hero p {
    font-size: 24px;
    opacity: 0.9;
    margin: 0;
}

/* CATEGORIES GRID */
.zeeni-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.zeeni-category-card {
    background: #fff;
    border: 2px solid #B7A3E3;
    color: #222;
    text-align: center;
    padding: 40px 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zeeni-category-card:hover {
    background-color: #B7A3E3;
    color: #fff;
    transform: translateY(-3px);
}

/* DELIVERY / PROMO BAR */
.zeeni-promo-bar {
    background-color: #9a7edc;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-weight: 600;
    margin: 60px 0;                  /* spacing above and below */
}

/* PRODUCTS GRID */
.zeeni-buy-products {
    padding: 60px 20px;
}

.zeeni-buy-products .products .product {
    border: 2px solid #B7A3E3;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.zeeni-buy-products .products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.zeeni-buy-products .products .button {
    background-color: #B7A3E3;
    color: #fff;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.zeeni-buy-products .products .button:hover {
    background-color: #9a7edc;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:767px){
    .zeeni-buy-hero h1 {
        font-size: 36px;
    }
    .zeeni-buy-hero p {
        font-size: 16px;
    }
    .zeeni-category-grid {
        gap: 15px;
    }
}
