/* Medicines Page Styles */

/* Section Wrapper */
.medicines-section {
    padding: 40px 0;
    background-color: #fff;
    background-image: radial-gradient(#00B050 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    background-position: 0 0;
    background-color: rgba(255, 255, 255, 0.97);
    background-blend-mode: overlay;
}

.medicines-section-alt {
    background: #f8f9fa;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.section-title {
    font-size: 28px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.section-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #00B050, transparent);
    opacity: 0.3;
}

.medicines-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin-top: -20px;
    margin-bottom: 0;
}

/* Image + Text Layout */
.medicines-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.medicines-content-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
}

.medicines-text-content {
    flex: 1;
}

.medicines-badge {
    display: inline-block;
    font-size: 14px;
    color: #00B050;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background-color: #e8f5e9;
    padding: 5px 10px;
    border-radius: 4px;
}

.medicines-subtitle {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.medicines-text-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.medicines-text-content p:last-child {
    margin-bottom: 0;
}

/* Image Container */
.medicines-image-container {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 10px solid #fff;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #00B050;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 176, 80, 0.3);
    border: 5px solid #fff;
}

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Products Section */
.featured-products-section {
    padding: 40px 0;
    background-color: #fff;
}

.featured-products-section .products-grid {
    margin-bottom: 40px;
}

.products-error {
    text-align: center;
    color: #d32f2f;
    padding: 40px;
    font-size: 16px;
}

.view-shop-wrapper {
    text-align: center;
}

.view-shop-btn {
    display: inline-block;
    background-color: #00B050;
    color: #fff;
    padding: 14px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.view-shop-btn:hover {
    background-color: #008a3d;
}

/* Responsive */
@media (max-width: 992px) {
    .medicines-content,
    .medicines-content-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .medicines-image-container {
        max-width: 100%;
        order: -1;
    }

    .medicines-content-reverse .medicines-image-container {
        order: -1;
    }

    .medicines-text-content {
        flex: unset;
    }

    .experience-badge {
        bottom: -15px;
        right: -15px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 24px;
    }

    .medicines-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .medicines-section,
    .medicines-section-alt,
    .featured-products-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .medicines-section,
    .medicines-section-alt,
    .featured-products-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 18px;
    }

    .medicines-subtitle {
        font-size: 20px;
    }

    .experience-badge {
        bottom: -10px;
        right: -10px;
        padding: 10px;
    }

    .experience-badge .years {
        font-size: 20px;
    }

    .experience-badge .text {
        font-size: 10px;
    }
}
