/* মেইন কন্টেন্ট প্যাডিং */
.front-page-content {
    padding: 20px;
}

/* হিরো ব্যানার স্টাইল */
.hero-banner {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/1200x400?text=Orchard+Banner') center/cover no-repeat;
    height: 320px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
}

.banner-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.shop-now-btn {
    background-color: #27ae60;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.shop-now-btn:hover {
    background-color: #219150;
}

/* প্রোডাক্ট সেকশন */
.section-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 3px solid #27ae60;
    display: inline-block;
    padding-bottom: 5px;
}

/* প্রোডাক্ট গ্রিড */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

/* প্রোডাক্ট কার্ড */
.product-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #ffffff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.product-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.weight-tag {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.price-area {
    margin-bottom: 12px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #27ae60;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #1e824c;
}