/* ========================================
   SARVA FOODS - PRODUCTS PAGE STYLES
   All class names prefixed with 'sarva-'
   ======================================== */

/* Products Page Intro Section */
.sarva-products-intro {
    padding: 60px 0 40px;
    background: #fff;
}

.sarva-section-heading {
    text-align: center;
}

.sarva-section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.sarva-section-heading p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Category Section */
.sarva-product-category-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.sarva-product-category-section:nth-child(even) {
    background: #fff;
}

/* Category Header */
.sarva-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid #28a745;
}

.sarva-category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sarva-category-icon i {
    font-size: 35px;
    color: #fff;
}

.sarva-category-title-wrapper {
    flex: 1;
}

.sarva-category-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.sarva-category-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Product Detail Card */
.sarva-product-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.sarva-product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #28a745;
}

.sarva-product-detail-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.sarva-product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sarva-product-detail-card:hover .sarva-product-detail-image img {
    transform: scale(1.1);
}

.sarva-product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.sarva-product-badge.sarva-fresh-badge {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
}

.sarva-product-badge.sarva-popular-badge {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.sarva-product-badge.sarva-bestseller-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.sarva-product-detail-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sarva-product-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sarva-product-detail-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
margin-bottom: 20px;
}
.sarva-product-features {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
}
.sarva-product-features li {
font-size: 14px;
color: #495057;
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
}
.sarva-product-features li:last-child {
margin-bottom: 0;
}
.sarva-product-features i {
color: #28a745;
font-size: 16px;
flex-shrink: 0;
}
.sarva-product-detail-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid #e9ecef;
margin-top: auto;
gap: 15px;
}
.sarva-product-price {
font-size: 18px;
font-weight: 700;
color: #28a745;
white-space: nowrap;
}
.sarva-product-enquiry-btn {
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: #fff;
border: none;
padding: 12px 25px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.sarva-product-enquiry-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}
.sarva-product-enquiry-btn i {
font-size: 14px;
}
/* Product CTA Section */
.sarva-product-cta-section {
padding: 80px 0;
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
position: relative;
overflow: hidden;
}
.sarva-product-cta-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
}
.sarva-cta-content {
text-align: center;
position: relative;
z-index: 1;
}
.sarva-cta-content h2 {
font-size: 36px;
font-weight: 700;
color: #fff;
margin-bottom: 20px;
line-height: 1.3;
}
.sarva-cta-content p {
font-size: 18px;
color: rgba(255,255,255,0.95);
margin-bottom: 30px;
line-height: 1.6;
}
.sarva-cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.sarva-cta-btn-primary {
background: #fff;
color: #28a745;
padding: 15px 40px;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
border: 2px solid #fff;
}
.sarva-cta-btn-primary:hover {
background: transparent;
color: #fff;
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}
.sarva-cta-btn-outline {
background: transparent;
color: #fff;
padding: 15px 40px;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 10px;
transition: all 0.3s ease;
border: 2px solid #fff;
}
.sarva-cta-btn-outline:hover {
background: #fff;
color: #28a745;
transform: translateY(-3px);
box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}
/* Responsive Design */
@media (max-width: 1199px) {
.sarva-category-title {
font-size: 28px;
}
.sarva-product-detail-image {
    height: 220px;
}

.sarva-product-detail-content h3 {
    font-size: 20px;
}
}
@media (max-width: 991px) {
.sarva-product-category-section {
padding: 50px 0;
}
.sarva-category-header {
    margin-bottom: 40px;
}

.sarva-product-detail-card {
    margin-bottom: 25px;
}
}
@media (max-width: 767px) {
.sarva-products-intro {
padding: 40px 0 30px;
}
.sarva-section-heading h2 {
    font-size: 28px;
}

.sarva-section-heading p {
    font-size: 15px;
}

.sarva-product-category-section {
    padding: 40px 0;
}

.sarva-category-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.sarva-category-icon {
    width: 60px;
    height: 60px;
}

.sarva-category-icon i {
    font-size: 30px;
}

.sarva-category-title {
    font-size: 24px;
}

.sarva-category-subtitle {
    font-size: 14px;
}

.sarva-product-detail-image {
    height: 200px;
}

.sarva-product-detail-content {
    padding: 20px;
}

.sarva-product-detail-content h3 {
    font-size: 19px;
}

.sarva-product-detail-desc {
    font-size: 14px;
}

.sarva-product-features li {
    font-size: 13px;
}

.sarva-product-detail-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.sarva-product-enquiry-btn {
    width: 100%;
    justify-content: center;
}

.sarva-product-cta-section {
    padding: 60px 0;
}

.sarva-cta-content h2 {
    font-size: 28px;
}

.sarva-cta-content p {
    font-size: 16px;
}

.sarva-cta-buttons {
    flex-direction: column;
    align-items: stretch;
}

.sarva-cta-btn-primary,
.sarva-cta-btn-outline {
    width: 100%;
    justify-content: center;
}
}
@media (max-width: 575px) {
.sarva-section-heading h2 {
font-size: 24px;
}
.sarva-category-title {
    font-size: 22px;
}

.sarva-product-badge {
    padding: 6px 15px;
    font-size: 12px;
}

.sarva-product-detail-content h3 {
    font-size: 18px;
}

.sarva-product-detail-content {
    padding: 18px;
}

.sarva-cta-content h2 {
    font-size: 24px;
}

.sarva-cta-content p {
    font-size: 15px;
}

.sarva-cta-btn-primary,
.sarva-cta-btn-outline {
    padding: 12px 30px;
    font-size: 15px;
}
}
@media (max-width: 400px) {
.sarva-product-detail-image {
height: 180px;
}
.sarva-product-enquiry-btn {
    padding: 10px 20px;
    font-size: 13px;
}
}