.hero-banner{
height:50vh;
background:
linear-gradient(
rgba(255,255,255,0.4),
rgba(255,255,255,0.4)
),
url('/images/onion.jpg');

background-size:cover;
background-position:center;
position:relative;
}
.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background: linear-gradient(
rgba(0,0,0,0.6),
rgba(0,0,0,0.4)
);

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
text-align:center;
padding:20px;
}

.hero-overlay h1{
font-size:55px;
font-weight:700;
margin-top:120px;
}

.hero-overlay p{
font-size:20px;
margin-top:10px;
}

.breadcrumb-box{
margin-top:20px;
font-size:18px;
}

.breadcrumb-box a{
color:white;
text-decoration:none;
font-weight:600;
}

.breadcrumb-box span{
margin:0 8px;
}
.hero-banner h1{
    white-space: nowrap;
    text-align: center;
}

@media(max-width:768px){
    .hero-banner h1{
        font-size: 24px;
        white-space: normal;
    }
}
.onion-variety-section {
    padding: 60px 0;
    background-color: #fdfdfd;
}

.onion-variety-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.onion-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.onion-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.onion-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #444;
}

.onion-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.view-btn {
    padding: 8px 20px;
    border: none;
    background-color: #ff6600;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
	text-decoration: none;
}

.view-btn:hover {
    background-color: #e65c00;
}

.onion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.onion-variety-section .pagination {
    margin-top: 30px;
}

.onion-variety-section .page-item a {
    color: #ff6600;
    border-radius: 5px;
}

.onion-variety-section .page-item.active a {
    background-color: #ff6600;
    color: #fff;
}

.onion-variety-section .page-item.disabled a {
    color: #ccc;
    pointer-events: none;
}

@media (max-width: 767px) {
    .onion-card img {
        height: 180px;
    }
    .section-title {
        font-size: 1.75rem;
    }
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: white;
}

.whatsapp-btn i {
    font-size: 22px;
}