/**
 * YASHODA ORGANIC - Prefixed CSS
 * This file contains prefixed versions of all CSS classes to avoid conflicts with other libraries
 * Prefix: yo-
 */

/* ====== Base Element Styles ====== */
.yo-body {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #666666;
    overflow-x: hidden;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.yo-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* ====== Header Styles ====== */
.yo-header-area {
    position: relative;
    z-index: 100;
}

.yo-header-top {
    background-color: #f2f2f2;
    padding: 8px 0;
}

.yo-header-middle {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: relative;
}

.yo-header-bottom {
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
}

/* ====== Logo Styles ====== */
.yo-logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.yo-logo:hover {
    transform: scale(1.05);
}

/* ====== Navigation Styles ====== */
.yo-primary-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.yo-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 10px;
}

.yo-menu-item {
    position: relative;
    margin: 0;
    flex: 0 1 auto;
}

.yo-menu-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
}

/* ====== Cart Styles ====== */
.yo-cart-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.yo-minicart-block {
    position: relative;
}

.yo-minicart-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.yo-minicart-content {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.yo-minicart-content.yo-show {
    display: block;
}

/* ====== Product Styles ====== */
.yo-product-item {
    position: relative;
    margin-bottom: 30px;
}

.yo-product-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.yo-product-info {
    padding: 15px;
}

.yo-product-title {
    margin-top: 10px;
    margin-bottom: 5px;
}

.yo-price {
    font-weight: 600;
    color: #219150;
    font-size: 16px;
}

.yo-price del {
    color: #999;
    font-weight: 400;
    margin-right: 5px;
}

.yo-add-to-cart-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #219150;
    color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ====== Form Elements ====== */
.yo-form-control {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.yo-form-group {
    margin-bottom: 15px;
}

.yo-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.yo-btn-primary {
    background-color: #219150;
    color: #fff;
}

/* ====== Footer Styles ====== */
.yo-footer {
    background-color: #f8f8f8;
    padding-top: 60px;
}

.yo-footer-item {
    margin-bottom: 30px;
}

.yo-section-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.yo-contact-info {
    margin-bottom: 20px;
}

.yo-copy-right {
    background: #f2f2f2;
    padding: 15px 0;
    text-align: center;
}

/* ====== Helper Classes ====== */
.yo-margin-top-30 {
    margin-top: 30px;
}

.yo-margin-bottom-30 {
    margin-bottom: 30px;
}

.yo-padding-top-30 {
    padding-top: 30px;
}

.yo-padding-bottom-30 {
    padding-bottom: 30px;
}

/* ====== Class Transformation Guide ====== */
/* 
To use these prefixed classes in your HTML:
1. Replace all "biolife-" with "yo-"
2. Replace all other classes with "yo-" prefix
3. For example:
   - biolife-cart-info -> yo-cart-info
   - header-area -> yo-header-area
   - product-item -> yo-product-item
*/ 

/* Organic Wellness Section Styles */
.yo-organic-wellness-section {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
    background-image: url('../images/wheat-bg.jpg');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: cover;
}

.yo-wellness-content {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    border-radius: 10px;
}

.yo-wellness-illustration {
    margin-bottom: 30px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.yo-wellness-heading {
    font-family: 'Playfair Display', serif;
    color: #6a4c34;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
}

.yo-wellness-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-width: 1000px;
    margin: 0 auto 30px;
    text-align: center;
}

.yo-wellness-quote {
    margin-top: 40px;
}

.yo-wellness-quote p {
    font-style: italic;
    font-size: 20px;
    color: #6a4c34;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .yo-wellness-heading {
        font-size: 24px;
    }
    
    .yo-wellness-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .yo-wellness-quote p {
        font-size: 16px;
    }
} 

/* Organic Lifestyle Banner Styles */
.yo-organic-lifestyle-banner {
    background-image: url('../images/organic-lifestyle-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    margin: 40px 0;
}

.yo-organic-lifestyle-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.yo-organic-lifestyle-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.yo-organic-lifestyle-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #fff;
}

.yo-organic-lifestyle-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #fff;
}

.yo-btn-go-organic {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s ease;
}

.yo-btn-go-organic:hover {
    background-color: #e0a800;
    color: #333;
    text-decoration: none;
}

@media (max-width: 767px) {
    .yo-organic-lifestyle-heading {
        font-size: 32px;
    }
    
    .yo-organic-lifestyle-text {
        font-size: 16px;
    }
    
    .yo-organic-lifestyle-banner {
        padding: 60px 0;
    }
} 

/* Why Daivik Section Styles */
.yo-why-daivik-section {
    padding: 80px 0;
    position: relative;
    background-color: #f5fff0; /* Lighter parrot green background */
    border-radius: 10px;
    overflow: hidden;
    margin: 40px 0;
    border: 2px solid #36b526; /* Parrot green border */
    box-shadow: 0 5px 20px rgba(30, 140, 14, 0.15); /* Green shadow */
}

.yo-certified-organic {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.yo-certified-organic img {
    max-width: 220px;
    height: auto;
}

.yo-spices-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/spices-background.jpg');
    background-size: cover;
    background-position: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 1;
}

.yo-spices-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 140, 14, 0.2), transparent); /* Green overlay */
    z-index: 1;
}

.yo-why-daivik-content {
    padding: 30px;
    background-color: #f5fff0; /* Lighter parrot green background */
    border-radius: 10px;
}

.yo-why-daivik-heading {
    font-size: 42px;
    font-weight: 700;
    color: #1e8c0e; /* Parrot green */
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(30, 140, 14, 0.1); /* Subtle green text shadow */
}

.yo-why-daivik-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #36b526; /* Parrot green underline */
    margin-top: 10px;
}

.yo-why-daivik-subheading {
    font-size: 18px;
    color: #2a6e20; /* Darker parrot green */
    margin-bottom: 40px;
}

.yo-benefits-icons {
    margin-top: 30px;
}

.yo-benefit-item {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.yo-benefit-item:hover {
    transform: translateY(-5px);
}

.yo-benefit-icon {
    margin-bottom: 15px;
    background-color: rgba(30, 140, 14, 0.05); /* Very light green background */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(30, 140, 14, 0.2); /* Light green border */
    transition: all 0.3s ease;
}

.yo-benefit-icon i {
    font-size: 32px;
    color: #36b526; /* Parrot green */
    transition: all 0.3s ease;
}

.yo-benefit-item:hover .yo-benefit-icon {
    background-color: rgba(30, 140, 14, 0.1);
    border-color: #36b526;
    box-shadow: 0 5px 15px rgba(30, 140, 14, 0.2);
}

.yo-benefit-item:hover .yo-benefit-icon i {
    color: #1e8c0e;
    transform: scale(1.1);
}

.yo-benefit-text {
    font-size: 16px;
    color: #2a6e20; /* Darker parrot green */
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .yo-why-daivik-section {
        padding: 60px 0;
    }
    
    .yo-spices-background {
        position: relative;
        height: 300px;
        border-radius: 10px;
        margin-bottom: 30px;
        border: 1px solid #36b526; /* Parrot green border */
    }
    
    .yo-certified-organic {
        position: absolute;
        top: 30px;
        left: 30px;
    }
    
    .yo-why-daivik-heading {
        font-size: 36px;
    }
    
    .yo-why-daivik-content {
        background-color: rgba(245, 255, 240, 0.9); /* Semi-transparent light green */
    }
}

@media (max-width: 767px) {
    .yo-why-daivik-section {
        padding: 40px 0;
        border-width: 1px; /* Thinner border on mobile */
    }
    
    .yo-spices-background {
        height: 250px;
    }
    
    .yo-why-daivik-heading {
        font-size: 32px;
    }
    
    .yo-why-daivik-heading::after {
        width: 50px;
        height: 2px;
    }
    
    .yo-why-daivik-subheading {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .yo-benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .yo-benefit-icon i {
        font-size: 28px;
    }
    
    .yo-benefit-text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .yo-benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .yo-benefit-icon i {
        font-size: 24px;
    }
    
    .yo-benefit-text {
        font-size: 13px;
    }
} 