/* Custom styles for Pharma website - minimal overrides to maintain original template appearance */

/* Product image sizing */
.item img {
    height: 300px;
    object-fit: cover;
}

/* Sale tag styling to match original */
.item .tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #e86b00;
    color: #fff;
    padding: 7px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.2em;
    transform: rotate(-90deg) translateX(-100%) translateY(-70%);
    transform-origin: top left;
}

/* WhatsApp button styling */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-size: 60px;
    animation: pulse 2s infinite;
}

.whatsapp-float a {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: inline-block;
    transition: all 0.3s ease-in-out;
    padding: 15px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    line-height: 40px;
}

.whatsapp-float a:hover {
    background: linear-gradient(135deg, #20ba5d 0%, #0f7a6b 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a i {
    display: block;
    margin-top: 2px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer WhatsApp button */
.footer-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5d 0%, #0f7a6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.footer-whatsapp-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* Force WhatsApp buttons consistent everywhere */
.btn-whatsapp,
.btn-success,
.btn-outline-success,
a[href*="wa.me"].btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border-color: #1fa95a !important;
    color: #ffffff !important;
}

.btn-whatsapp:hover,
.btn-success:hover,
.btn-outline-success:hover,
a[href*="wa.me"].btn:hover {
    background: linear-gradient(135deg, #20ba5d 0%, #0f7a6b 100%) !important;
    border-color: #18874b !important;
    color: #ffffff !important;
}

.site-blocks-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.site-blocks-cover > .container {
    position: relative;
    z-index: 1;
}

.site-block-cover-content {
    color: #fff;
}

.site-block-cover-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.site-block-cover-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.site-block-cover-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

/* ============================================================
   4. Banner Styles
   ============================================================ */

.banner-wrap {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
    min-height: 200px;
}

.banner-wrap a {
    /* color: #fff !important; */
    text-decoration: none !important;
    display: block;
}

.banner-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.banner-wrap h5 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-wrap p {
    font-size: 14px;
    margin-bottom: 0;
}

.banner-wrap p strong {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
}



.banner-wrap:not(.bg-primary):not(.bg-warning) a {
    color: #333 !important;
}

.banner-wrap.bg-warning {
    background: #ffc107;
    color: #333;
}

.banner-wrap.bg-warning a {
    color: #333 !important;
}

.banner-1 {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    transition: all 0.3s ease;
    position: relative;
}

.banner-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner-1-inner {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 40px;
}

.banner-1-inner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-1-inner p {
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================================
   Testimonial Styles
   ============================================================ */

.testimony {
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    margin: 10px;
    transition: all 0.3s ease;
}

.testimony:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimony blockquote {
    margin-bottom: 20px;
}

.testimony blockquote img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimony blockquote p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimony p {
    font-size: 14px;
    color: #333;
    margin-bottom: 0;
}

/* ============================================================
   4. Banner Styles

/* ============================================================
   Section Styles
   ============================================================ */

.section-overlap {
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

/* ============================================================
   Owl Carousel Overrides
   ============================================================ */

.owl-carousel .owl-nav {
    margin-top: 10px;
}

.owl-carousel .owl-nav [class*='owl-'] {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav [class*='owl-']:hover {
    background: var(--primary-dark);
}

.owl-carousel .owl-dots .owl-dot span {
    background: var(--border-color);
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color);
}

.nonloop-block-3.owl-carousel {
    display: flex;
    align-items: center;
}

.nonloop-block-3.owl-carousel .item {
    margin: 10px;
}

/* ============================================================
   Footer WhatsApp Button
   ============================================================ */

.footer-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5d 0%, #0f7a6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.footer-whatsapp-btn i {
    margin-right: 8px;
    font-size: 16px;
}

/* ============================================================
   5. Section & Title Styles
   ============================================================ */

.site-section {
    padding: 60px 0;
}

.site-section.bg-light {
    background-color: var(--light-gray) !important;
}

.site-section.border-top {
    border-top: 1px solid var(--border-color);
}

.title-section {
    margin-bottom: 40px;
}

.title-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

/* ============================================================
   6. Product Listing Styles
   ============================================================ */

.item {
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
}

.item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.item img {
    width: 100%;
    height: 300px;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
    object-fit: cover;
}

.item h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.item h3 a {
    color: #333;
    text-decoration: none;
}

.item h3 a:hover {
    color: var(--primary-color);
}

.item .price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}

.item .price del {
    color: #999;
    font-size: 16px;
    margin-right: 5px;
}

.item .tag {
    position: absolute;
    top: 0;
    left: 0;
    background: #e86b00;
    color: #fff;
    padding: 7px 20px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 10;
    letter-spacing: 0.2em;
    transform: rotate(-90deg) translateX(-100%) translateY(-70%);
    transform-origin: top left;
}

/* ============================================================
   7. Product Card Styles (Block-4)
   ============================================================ */

.block-4 {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color) !important;
}

.block-4:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px);
}

.block-4-image {
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0 !important;
}

.block-4-image img {
    transition: all 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.block-4:hover .block-4-image img {
    transform: scale(1.1);
}

.block-4 h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 !important;
}

.block-4 h3 a {
    color: #333;
    text-decoration: none;
}

.block-4 h3 a:hover {
    color: var(--primary-color);
}

/* ============================================================
   8. Button Styles
   ============================================================ */

.btn {
    border-radius: 5px;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-primary {
    /* background: var(--primary-color); */
    border: 1px solid var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-light {
    background: #fff;
    border: 1px solid #fff;
    color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-weight: 600;
}

.btn-light:hover {
    background: var(--light-gray);
    border-color: var(--light-gray);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-color);
}

/* ============================================================
   9. WhatsApp Integration Styles
   ============================================================ */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20ba5c;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-button span {
    color: #fff;
    font-size: 28px;
}

/* ============================================================
   10. Breadcrumb Styles
   ============================================================ */

.site-blocks-cover ~ div .bg-light {
    background: var(--light-gray) !important;
    padding: 15px 0;
}

/* ============================================================
   11. Form Styles
   ============================================================ */

.form-control {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* ============================================================
   12. Badge Styles
   ============================================================ */

.badge {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.badge-primary {
    background: var(--primary-color);
    color: #fff;
}

.badge-info {
    background: var(--info-color);
    color: #fff;
}

/* ============================================================
   13. Card & Box Styles
   ============================================================ */

.card {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-service {
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card-service:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.block-18 {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.block-18:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2) !important;
}

/* ============================================================
   14. Shop Filter Styles
   ============================================================ */

#slider-range {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 5px;
    margin-bottom: 15px;
}

/* ============================================================
   15. Responsive Styles
   ============================================================ */

@media (max-width: 768px) {
    .site-block-cover-content h1 {
        font-size: 32px;
    }

    .site-block-cover-content h2 {
        font-size: 18px;
    }

    .banner-wrap {
        padding: 30px;
        min-height: 150px;
    }

    .banner-wrap h5 {
        font-size: 20px;
    }

    .title-section h2 {
        font-size: 28px;
    }

    .section-overlap {
        margin-top: -50px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .site-blocks-cover {
        min-height: 400px;
    }

    .site-block-cover-content h1 {
        font-size: 24px;
    }

    .site-block-cover-content h2 {
        font-size: 16px;
    }

    .banner-wrap {
        padding: 20px;
        min-height: 120px;
        margin-bottom: 15px;
    }

    .banner-wrap h5 {
        font-size: 16px;
    }

    .banner-wrap p {
        font-size: 12px;
    }

    .item {
        margin-bottom: 20px;
    }

    .title-section h2 {
        font-size: 22px;
    }
}

/* ============================================================
   16. Utility Classes
   ============================================================ */

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.overflow-hidden {
    overflow: hidden;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.gap-2 {
    gap: 0.5rem;
}

/* ============================================================
   17. Animation Styles
   ============================================================ */

[data-aos] {
    opacity: 0;
}

[data-aos="fade-up"] {
    animation: fadeUpAnim 0.6s ease-out forwards;
}

[data-aos="fade-down"] {
    animation: fadeDownAnim 0.6s ease-out forwards;
}

[data-aos="fade-left"] {
    animation: fadeLeftAnim 0.6s ease-out forwards;
}

[data-aos="fade-right"] {
    animation: fadeRightAnim 0.6s ease-out forwards;
}

[data-aos="zoom-in"] {
    animation: zoomInAnim 0.6s ease-out forwards;
}

@keyframes fadeUpAnim {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDownAnim {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeftAnim {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRightAnim {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomInAnim {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================================
   18. Additional Utility Styles
   ============================================================ */

.text-muted {
    color: #6c757d !important;
}

.text-black {
    color: #000 !important;
}

.text-dark {
    color: #333 !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 5px !important;
}

.h-100 {
    height: 100% !important;
}

.w-100 {
    width: 100% !important;
}

.flex-fill {
    flex: 1 !important;
}

/* ============================================================
   19. Home Catalog Enhancement
   ============================================================ */

.k-feature-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 28px 20px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.k-feature-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
}

.k-feature-card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 14px;
}

.k-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.k-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

/* Shop: header count + All details */
.k-shop-hero-actions .k-shop-details-btn {
    margin-left: 0.5rem;
    margin-top: 0.35rem;
}

@media (min-width: 768px) {
    .k-shop-hero-actions .k-shop-details-btn {
        margin-top: 0;
    }
}

/* Shop: filter bar — aligned labels, aligned inputs, hint full width */
.k-shop-filters {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: #fff;
}

.k-shop-filter-form {
    padding: 1.1rem 1.25rem 1rem;
}

/* Two columns: [label+input] | [label+input] — same baseline, equal width */
.k-shop-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
    align-items: start;
}

.k-shop-filter-pair {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    min-width: 0;
}

.k-shop-filter-lbl {
    color: #1f2d3d;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

.k-shop-filter-pair .form-control {
    min-height: 44px;
    height: 44px;
    border-radius: 8px;
    width: 100%;
}

/* Match select to text field height; custom chevron for alignment */
.k-shop-filter-pair select.form-control {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.25;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23495057' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    padding-right: 2.25rem;
}

/* Remove WebKit search cancel offset */
.k-shop-filter-pair input[type="search"]::-webkit-search-cancel-button {
    margin-top: 2px;
}

.k-shop-filter-hint {
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid #f0f2f5;
    line-height: 1.45;
}

@media (max-width: 575.98px) {
    .k-shop-filter-row {
        grid-template-columns: 1fr;
        gap: 0.9rem 0;
    }
}

.k-product-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.k-product-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f8f9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 8px 10px;
    box-sizing: border-box;
}

a.k-product-image-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.2s ease, opacity 0.2s ease;
}

a.k-product-image-link:hover {
    box-shadow: 0 0 0 1px rgba(74, 114, 201, 0.35);
}

a.k-product-image-link:focus {
    outline: 2px solid #4a72c9;
    outline-offset: 2px;
}

.k-product-image {
    max-width: 100%;
    max-height: 190px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.k-product-comp {
    font-size: 14px;
    color: #6c757d;
    min-height: 42px;
}

.k-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
}

.k-product-meta strong {
    font-size: 16px;
    color: #121212;
}

.k-product-table-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.k-product-table thead th {
    background: #273c75;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.k-product-table td {
    vertical-align: middle;
    font-size: 14px;
}

.k-table-product-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dfe3ea;
}

.k-cart-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dfe3ea;
}

/* ============================================================
   20. White Theme Polish
   ============================================================ */

body {
    background: #f3f7ff;
    color: #142033;
}

.site-section,
.site-section.bg-light {
    background: #f8fbff !important;
}

.site-navbar {
    background: #ffffff;
    border-bottom: 1px solid #d8e4f2;
    box-shadow: 0 4px 18px rgba(0, 70, 140, 0.06);
}

.site-menu > li > a {
    color: #12304f !important;
    font-weight: 600;
}

.site-menu > li.active > a {
    color: #0057b8 !important;
}

.k-feature-card,
.k-product-card,
.k-testimonial-card,
.card {
    background: #ffffff;
    border: 1px solid #d9e7f6;
    box-shadow: 0 10px 28px rgba(0, 88, 184, 0.08);
}

.k-testimonial-card {
    border-radius: 10px;
    padding: 22px;
}

.k-testimonial-card h5 {
    margin-bottom: 2px;
}

.k-testimonial-card small {
    color: #6b7280;
    display: block;
    margin-bottom: 10px;
}

.k-testimonial-card p {
    color: #374151;
    font-size: 14px;
    min-height: 85px;
}

.k-stars span {
    color: #f59e0b;
    font-size: 18px;
}

.k-cta-strip {
    background: #eaf3ff;
    color: #0f2138;
    border-top: 1px solid #cfe0f5;
    border-bottom: 1px solid #cfe0f5;
    padding: 55px 0;
}

.k-cta-strip h2 {
    color: #0f2138;
}

.k-product-table thead th {
    background: #f8fafc;
    color: #111827;
    border-color: #e5e7eb;
}

.btn-primary {
    background: #0057b8;
    border-color: #0057b8;
}

.btn-primary:hover {
    background: #004a9d;
    border-color: #004a9d;
}

.k-hero-clean .k-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    font-size: 13px;
}

.k-hero-clean .site-block-cover-content h1,
.k-hero-clean h1 {
    color: #ffffff !important;
}

.k-page-hero .site-block-cover-content h1,
.k-page-hero h1,
.k-page-hero .site-block-cover-content p {
    color: #ffffff !important;
}

.k-stat-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 10px;
}

.k-stat-box h3 {
    margin: 0;
    color: #0066cc;
}

.k-stat-box p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 13px;
}

.k-portfolio-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}

.k-portfolio-box h5 {
    margin-bottom: 6px;
    color: #1f2d3d;
}

.k-portfolio-box p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 14px;
}

.k-inline-form .form-control {
    border-radius: 6px;
}

/* ============================================================
   21. Home Animation + Color Contrast
   ============================================================ */

.k-animated-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 102, 204, 0.18), rgba(2, 132, 199, 0.12), rgba(14, 116, 144, 0.2));
    animation: kHeroShift 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes kHeroShift {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.k-section-soft-blue {
    background: linear-gradient(180deg, #e9f3ff 0%, #f8fbff 100%) !important;
}

.k-section-soft-mint {
    background: linear-gradient(180deg, #e9fff7 0%, #f7fffc 100%) !important;
}

.k-section-soft-purple {
    background: linear-gradient(180deg, #f0efff 0%, #faf9ff 100%) !important;
}

.k-section-soft-gold {
    background: linear-gradient(180deg, #fff7e8 0%, #fffdf8 100%) !important;
}

.k-feature-card,
.k-product-card,
.k-stat-box,
.k-portfolio-box,
.k-testimonial-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.k-feature-card:hover,
.k-product-card:hover,
.k-stat-box:hover,
.k-portfolio-box:hover,
.k-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(2, 132, 199, 0.13);
}

.k-testimonial-card {
    position: relative;
}

.k-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 44px;
    color: rgba(0, 102, 204, 0.12);
    font-weight: 700;
    line-height: 1;
}

.k-animated-cta {
    position: relative;
    overflow: hidden;
}

.k-animated-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.14) 0%, rgba(0, 102, 204, 0.02) 70%, transparent 100%);
    right: -110px;
    top: -120px;
    animation: kFloatBlob 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes kFloatBlob {
    0% { transform: translateY(0px); }
    50% { transform: translateY(12px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .k-product-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .k-product-comp {
        min-height: auto;
    }
}

/* ============================================================
   22. About + Contact Page Enhancements
   ============================================================ */

.k-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 33, 68, 0.58), rgba(0, 87, 184, 0.35));
}

.about-icon {
    font-size: 42px;
    color: #0057b8;
    margin-bottom: 12px;
}

.k-check-list p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #d9e7f6;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 88, 184, 0.06);
}

.k-check-list i {
    color: #0ea5e9;
    margin-top: 3px;
}

.k-contact-card {
    background: #fff;
    border: 1px solid #d9e7f6;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 12px 25px rgba(0, 88, 184, 0.07);
    height: 100%;
}

.k-contact-card h4 {
    margin-bottom: 8px;
}

.k-contact-card p,
.k-contact-card small,
.k-contact-card a {
    color: #4b5563;
    text-decoration: none;
}

.k-contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #e7f1ff;
    color: #0057b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
}

.k-form-card,
.k-contact-side-card {
    background: #fff;
    border: 1px solid #d9e7f6;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 14px 28px rgba(0, 88, 184, 0.08);
}

.k-contact-side-card {
    position: sticky;
    top: 105px;
}

/* ============================================================
   23. Light Theme Restore + Dynamic Details
   ============================================================ */

body {
    background: #f3f7ff !important;
    color: #142033 !important;
}

.site-wrap,
.site-section,
.site-section.bg-light,
.bg-light,
.site-footer,
.site-navbar {
    background: #ffffff !important;
}

.site-navbar {
    border-bottom: 1px solid #d8e4f2 !important;
    box-shadow: 0 4px 18px rgba(0, 70, 140, 0.06) !important;
}

.site-menu > li > a,
.text-black,
.text-dark,
h1, h2, h3, h4, h5, h6,
.site-footer .footer-heading {
    color: #12304f !important;
}

.text-muted,
p,
small,
label,
li,
a {
    color: #5f7394;
}

a:hover {
    color: #12304f;
}

.k-feature-card,
.k-product-card,
.k-testimonial-card,
.k-stat-box,
.k-portfolio-box,
.k-contact-card,
.k-form-card,
.k-contact-side-card,
.k-check-list p,
.card,
.k-highlight-pill {
    background: #ffffff !important;
    border: 1px solid #d9e7f6 !important;
    box-shadow: 0 10px 24px rgba(0, 88, 184, 0.08) !important;
}

.k-section-soft-blue {
    background: linear-gradient(180deg, #e9f3ff 0%, #f8fbff 100%) !important;
}

.k-section-soft-mint {
    background: linear-gradient(180deg, #e9fff7 0%, #f7fffc 100%) !important;
}

.k-section-soft-purple {
    background: linear-gradient(180deg, #f0efff 0%, #faf9ff 100%) !important;
}

.k-section-soft-gold {
    background: linear-gradient(180deg, #fff7e8 0%, #fffdf8 100%) !important;
}

.k-cta-strip,
.k-home-highlight-strip {
    background: transparent !important;
}

.form-control,
select.form-control,
textarea.form-control {
    background: #ffffff !important;
    border: 1px solid #b7cce8 !important;
    color: #12304f !important;
}

.form-control::placeholder {
    color: #7b91b3 !important;
}

.k-product-table-wrap,
.k-product-table thead th,
.k-product-table td,
.table,
.table tr,
.table td,
.table th {
    background: #ffffff !important;
    color: #12304f !important;
    border-color: #d6e2f2 !important;
}

.site-footer {
    padding-top: 30px !important;
    padding-bottom: 14px !important;
}

.site-footer .row.pt-3.mt-3 {
    padding-top: 10px !important;
    margin-top: 10px !important;
    border-top: 1px solid #d9e7f6 !important;
}

/* WhatsApp style locked globally */
.btn-whatsapp,
.btn-success,
.btn-outline-success,
a[href*="wa.me"].btn,
.footer-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    border-color: #1fa95a !important;
    color: #ffffff !important;
}

.btn-whatsapp:hover,
.btn-success:hover,
.btn-outline-success:hover,
a[href*="wa.me"].btn:hover,
.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5d 0%, #0f7a6b 100%) !important;
    border-color: #18874b !important;
    color: #ffffff !important;
}

.k-medicine-detail-card {
    background: #ffffff;
    border: 1px solid #d9e7f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 88, 184, 0.08);
}

.k-medicine-detail-card .col-md-4 {
    align-self: stretch;
    padding: 0;
}

.k-medicine-detail-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 180px;
    height: 100%;
    background: #f8f9fb;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.k-medicine-detail-image-link:hover {
    box-shadow: inset 0 0 0 1px rgba(74, 114, 201, 0.35);
}

.k-medicine-detail-image-link:focus {
    outline: 2px solid #4a72c9;
    outline-offset: 2px;
}

.k-medicine-detail-image {
    width: 100%;
    max-height: 240px;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.item img {
    transition: transform 0.45s ease;
}

.item:hover img {
    transform: scale(1.12);
}

/* ============================================================
   24. Full Responsive Optimization
   ============================================================ */

@media (max-width: 1199.98px) {
    .site-block-cover-content h1 {
        font-size: 42px;
    }

    .k-feature-card,
    .k-product-card,
    .k-testimonial-card,
    .k-portfolio-box,
    .k-form-card,
    .k-contact-side-card {
        padding: 18px;
    }
}

@media (max-width: 991.98px) {
    .site-section {
        padding: 52px 0 !important;
    }

    .site-blocks-cover {
        min-height: 520px !important;
    }

    .site-block-cover-content h1 {
        font-size: 36px;
    }

    .site-block-cover-content p {
        font-size: 15px;
    }

    .k-contact-side-card {
        position: static;
        top: auto;
    }

    .k-inline-form .btn,
    .k-contact-side-card .btn {
        width: 100%;
    }

    .site-footer .col-lg-3,
    .site-footer .col-md-6 {
        margin-bottom: 20px;
    }

    .k-medicine-detail-image {
        max-height: 200px;
    }
}

@media (max-width: 767.98px) {
    .site-section {
        padding: 42px 0 !important;
    }

    .site-blocks-cover {
        min-height: 460px !important;
        background-position: center center !important;
    }

    .site-block-cover-content h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .site-block-cover-content h2,
    .site-block-cover-content .sub-title {
        font-size: 18px;
    }

    .site-block-cover-content p {
        font-size: 14px;
    }

    .k-home-highlight-strip {
        padding: 12px 0 0;
    }

    .k-highlight-pill {
        border-radius: 12px;
        font-size: 13px;
        padding: 9px 12px;
    }

    .k-product-image-wrap {
        min-height: 175px;
    }

    .k-product-image {
        max-height: 175px;
    }

    .k-product-comp {
        min-height: auto;
    }

    .k-product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .k-check-list p {
        font-size: 14px;
    }

    .k-contact-card,
    .k-form-card,
    .k-contact-side-card {
        padding: 16px;
        border-radius: 10px;
    }

    .k-contact-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .k-medicine-detail-image {
        max-height: 190px;
    }

    .k-medicine-detail-card .p-3 {
        padding: 14px !important;
    }
}

@media (max-width: 575.98px) {
    .site-section {
        padding: 34px 0 !important;
    }

    .site-blocks-cover {
        min-height: 400px !important;
    }

    .site-block-cover-content h1 {
        font-size: 25px;
    }

    .site-block-cover-content p {
        font-size: 13px;
    }

    .btn {
        font-size: 13px;
        padding: 8px 14px;
    }

    .k-product-image-wrap {
        min-height: 160px;
    }

    .k-product-image {
        max-height: 160px;
    }

    .k-table-product-image {
        width: 44px;
        height: 44px;
    }

    .k-medicine-detail-image {
        max-height: 170px;
    }

    .k-product-image-wrap.k-product-detail-figure {
        min-height: 240px;
        padding: 12px;
    }

    .k-product-image-wrap.k-product-detail-figure .k-product-image.k-product-detail-img {
        max-height: 300px;
    }

    .k-highlight-pill {
        font-size: 12px;
    }

    .site-footer {
        padding-top: 22px !important;
        padding-bottom: 12px !important;
    }
}

/* Large desktop / ultrawide optimization */
@media (min-width: 1200px) {
    .container {
        max-width: 1160px;
    }

    .site-section {
        padding: 72px 0 !important;
    }

    .site-block-cover-content h1 {
        font-size: 50px;
    }

    .k-product-image-wrap {
        min-height: 220px;
    }

    .k-product-image {
        max-height: 220px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .site-section {
        padding: 82px 0 !important;
    }

    .site-blocks-cover {
        min-height: 640px !important;
    }

    .site-block-cover-content h1 {
        font-size: 56px;
    }

    .site-block-cover-content p {
        font-size: 18px;
    }

    .k-product-image-wrap {
        min-height: 235px;
    }

    .k-product-image {
        max-height: 235px;
    }

    .k-feature-card,
    .k-product-card,
    .k-testimonial-card,
    .k-portfolio-box,
    .k-form-card,
    .k-contact-side-card {
        padding: 24px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1480px;
    }

    .site-section {
        padding: 92px 0 !important;
    }

    .site-blocks-cover {
        min-height: 700px !important;
    }

    .site-block-cover-content h1 {
        font-size: 62px;
    }

    .k-product-image-wrap {
        min-height: 255px;
    }

    .k-product-image {
        max-height: 255px;
    }

    .k-highlight-pill {
        font-size: 15px;
        padding: 12px 18px;
    }
}

/* Product detail page: full product in frame (no crop) */
.k-product-image-wrap.k-product-detail-figure {
    min-height: 360px;
    padding: 16px 20px;
}

.k-product-image-wrap.k-product-detail-figure .k-product-image.k-product-detail-img {
    max-height: 420px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Related products on detail page */
.k-related-product-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: #f8f9fb;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 0;
}

.k-related-product-img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Override global .block-4-image img (cover + zoom) for related products */
.block-4-image.k-related-product-wrap img.k-related-product-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
}

.block-4:hover .block-4-image.k-related-product-wrap img.k-related-product-img {
    transform: none;
}

/* Related medicines section polish */
.k-related-title {
    color: #4a72c9;
    margin-bottom: 10px;
}

.k-related-card {
    border: 1px solid #d6e3f5 !important;
    border-radius: 12px !important;
}

.k-related-comp {
    font-size: 13px;
    color: #6b7f9e;
    min-height: 36px;
}

.k-related-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: #4f6383;
}

.k-related-stock {
    display: inline-block;
    background: #e9fff2;
    color: #118445;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 4px 10px;
}

.k-related-actions {
    gap: 8px;
}

.k-related-btn {
    font-size: 12px !important;
    padding: 6px 10px !important;
    line-height: 1.2 !important;
    min-width: 92px;
    text-align: center;
}

/* ============================================================
   25. Global Theme Polish (All Pages)
   ============================================================ */

body {
    background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 40%, #f3f8ff 100%) !important;
}

.site-wrap {
    background: transparent !important;
}

.site-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(233, 243, 255, 0.52) 0%, rgba(255, 255, 255, 0.96) 100%) !important;
    animation: kSectionFadeUp 0.55s ease both;
}

.site-section::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.07) 0%, rgba(0, 102, 204, 0.02) 55%, transparent 72%);
    right: -120px;
    top: -120px;
    pointer-events: none;
}

.site-section:nth-of-type(odd) {
    background: linear-gradient(180deg, rgba(232, 255, 247, 0.48) 0%, rgba(255, 255, 255, 0.96) 100%) !important;
}

.site-section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(239, 239, 255, 0.42) 0%, rgba(255, 255, 255, 0.97) 100%) !important;
}

.site-footer {
    background: linear-gradient(180deg, #eaf3ff 0%, #ddeeff 100%) !important;
}

.site-navbar {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #0b66d0 0%, #0052ad 100%) !important;
    border-color: #0052ad !important;
    color: #fff !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0a5abb 0%, #004796 100%) !important;
    border-color: #004796 !important;
}

.btn-outline-primary {
    border-color: #0b66d0 !important;
    color: #0b66d0 !important;
}

.btn-outline-primary:hover {
    background: #0b66d0 !important;
    color: #fff !important;
}

.k-feature-card,
.k-product-card,
.k-testimonial-card,
.k-portfolio-box,
.k-contact-card,
.k-form-card,
.k-contact-side-card,
.k-stat-box,
.k-medicine-detail-card {
    backdrop-filter: blur(2px);
}

.k-feature-card:hover,
.k-product-card:hover,
.k-testimonial-card:hover,
.k-portfolio-box:hover,
.k-contact-card:hover,
.k-stat-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(0, 102, 204, 0.16) !important;
}

@keyframes kSectionFadeUp {
    from {
        opacity: 0.96;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer compact fix */
.site-footer {
    padding-top: 48px !important;
    padding-bottom: 20px !important;
}

.site-footer .row.pt-3.mt-3 {
    padding-top: 16px !important;
    margin-top: 16px !important;
    border-top: 1px solid #37507a;
}

/* Home highlight strip */
.k-home-highlight-strip {
    padding: 18px 0 6px;
    background: transparent !important;
}

.k-highlight-pill {
    background: #ffffff;
    border: 1px solid #d9e7f6;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #12304f;
    box-shadow: 0 8px 20px rgba(0, 88, 184, 0.08);
}

.k-highlight-pill span {
    color: #0057b8;
    margin-right: 8px;
}

/* About page polish */
.k-check-list p {
    font-weight: 500;
}

/* About: Lottie in carousel (preventive health care) */
.k-about-lottie-carousel .k-about-carousel-inner {
    background: #f2f7fc;
    border: 1px solid #d9e7f6;
    overflow: hidden;
}

.k-about-lottie-wrap {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, #e8f2fb 0%, #f7fbff 50%, #eef6fd 100%);
    padding: 8px 4px 4px;
}

.k-about-lottie {
    width: 100%;
    max-width: 480px;
    min-height: 300px;
    margin: 0 auto;
}

.k-about-lottie svg {
    width: 100% !important;
    height: auto !important;
    max-height: 360px;
}

.k-about-slide-img {
    min-height: 320px;
    object-fit: cover;
}

.k-about-lottie-carousel .carousel-control-prev,
.k-about-lottie-carousel .carousel-control-next {
    width: 10%;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2));
}

.k-about-carousel-dots {
    margin-bottom: 0;
    bottom: 8px;
}

.k-about-carousel-dots li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-clip: padding-box;
}

/* Shared Lottie embeds (home + contact) */
.k-home-lottie-band {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    border-top: 1px solid #e6eef5;
    border-bottom: 1px solid #e6eef5;
}

.k-lottie-feature-card {
    text-align: center;
    padding: 1.25rem 0.75rem 1.5rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e3edf5;
    box-shadow: 0 10px 28px rgba(0, 65, 130, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.k-lottie-feature-card:hover {
    box-shadow: 0 14px 36px rgba(0, 65, 130, 0.1);
    transform: translateY(-2px);
}

.k-lottie-embed {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.k-lottie-embed--sm {
    min-height: 140px;
    max-width: 200px;
}

.k-lottie-embed--md {
    min-height: 200px;
    max-width: 320px;
}

.k-lottie-embed--lg {
    min-height: 280px;
    max-width: 100%;
}

.k-lottie-embed svg {
    width: 100% !important;
    height: auto !important;
    max-height: 280px;
}

.k-lottie-embed--sm svg {
    max-height: 160px;
}

.k-lottie-embed--md svg {
    max-height: 220px;
}

.k-lottie-about-panel {
    background: linear-gradient(160deg, #e8f2fb 0%, #f7fbff 100%);
    border: 1px solid #d9e7f6;
    padding: 0.5rem 0.25rem 0;
    box-shadow: 0 8px 24px rgba(0, 80, 160, 0.08);
    overflow: hidden;
}

.k-lottie-about-panel--pharma {
    padding: 0.35rem 0.2rem 0;
    background: linear-gradient(165deg, #e3f0fb 0%, #f5faff 45%, #eef6ff 100%);
}

.k-lottie-embed--pharma-hero {
    min-height: 300px;
    max-width: 100%;
}

.k-lottie-embed--pharma-hero svg {
    max-height: 400px;
}

.k-home-contact-lottie {
    border-top: 1px solid #e0eaf3;
}

.k-lottie-cta-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #f0f7ff 0%, #ffffff 100%);
    border: 1px solid #d9e7f6;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    min-height: 240px;
}

/* Contact page */
.k-contact-lottie-ribbon {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    background: #f8fbff;
    border-bottom: 1px solid #e3edf5;
}

.k-lottie-embed--contact-hero {
    min-height: 200px;
    max-width: 280px;
}

.k-lottie-embed--contact-hero svg {
    max-height: 220px;
}

.k-lottie-embed--contact-form {
    min-height: 120px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.k-lottie-embed--contact-form svg {
    max-height: 140px;
}

@media (max-width: 767.98px) {
    .k-lottie-embed--contact-hero {
        max-width: 220px;
        min-height: 160px;
    }

    .k-lottie-embed--lg {
        min-height: 220px;
    }
}

