﻿/* =========================================================
   VIGNHARTA MEDICAL
   COMPLETE WEBSITE CSS
   ========================================================= */

:root {
    --primary: #0d6efd;
    --primary-dark: #084298;
    --green: #16a34a;
    --green-dark: #12813d;
    --dark: #172033;
    --text: #475569;
    --muted: #64748b;
    --light: #f8fafc;
    --blue-light: #eff6ff;
    --green-light: #ecfdf5;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
    --radius: 18px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--dark);
    line-height: 1.6;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 23px;
    font-weight: 800;
    white-space: nowrap;
}

    .brand:hover {
        color: var(--primary-dark);
    }

.brand-icon {
    font-size: 29px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-menu a {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 10px;
        color: #334155;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.25s ease;
    }

        .nav-menu a:hover {
            background: var(--blue-light);
            color: var(--primary);
        }

        .nav-menu a.active {
            background: var(--primary);
            color: #ffffff;
        }


/* =========================================================
   MEDICINE REQUEST NAV BUTTON
   ========================================================= */

.order-medicine-link {
    background: var(--green) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 9px 17px !important;
    margin-left: 7px;
    font-weight: 700 !important;
}

    .order-medicine-link:hover {
        background: var(--green-dark) !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 7px 20px rgba(22, 163, 74, 0.25);
    }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    padding: 95px 20px 85px;
    background: radial-gradient(circle at 10% 20%, #dbeafe 0, transparent 28%), radial-gradient(circle at 90% 80%, #dcfce7 0, transparent 28%), linear-gradient(135deg, #f8fbff, #ffffff);
}

.hero-container {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 55px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
    padding: 9px 17px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

    .hero h1 span {
        color: var(--primary);
    }

.hero p {
    max-width: 650px;
    margin: 0 0 30px;
    color: var(--text);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 23px;
    border-radius: 11px;
    font-weight: 700;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}

    .btn-primary:hover {
        background: #0b5ed7;
        color: white;
        transform: translateY(-2px);
    }

.btn-outline {
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
}

    .btn-outline:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }


/* =========================================================
   TRUST LIST
   ========================================================= */

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
}

    .trust-item span {
        color: #059669;
        font-size: 20px;
    }


/* =========================================================
   OWNER CARD
   ========================================================= */

.owner-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border);
    border-radius: 25px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.owner-photo {
    width: 155px;
    height: 155px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #e0f2fe;
    margin-bottom: 18px;
}

.owner-card h2 {
    margin: 5px 0;
    font-size: 23px;
}

.owner-card .qualification {
    color: var(--primary);
    font-weight: 700;
}

.owner-card .phone {
    display: inline-flex;
    margin-top: 15px;
    padding: 10px 18px;
    background: var(--green-light);
    color: #047857;
    border-radius: 10px;
    font-weight: 700;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 80px 20px;
}

.section-light {
    background: #f8fafc;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

    .section-heading .small-title {
        color: var(--primary);
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .section-heading h2 {
        margin: 8px 0 12px;
        font-size: 38px;
    }

    .section-heading p {
        color: var(--text);
        font-size: 17px;
    }


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.card-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.feature-card {
    padding: 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(15,23,42,0.04);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow);
        border-color: #bfdbfe;
    }

.feature-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-light);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
}

.feature-card p {
    margin: 0;
    color: var(--text);
}


/* =========================================================
   PAGE BANNER
   ========================================================= */

.page-banner {
    padding: 75px 20px;
    text-align: center;
    background: linear-gradient(135deg,#eff6ff,#ecfdf5);
}

    .page-banner h1 {
        margin: 0 0 10px;
        font-size: 45px;
        font-weight: 800;
    }

    .page-banner p {
        max-width: 650px;
        margin: auto;
        color: var(--text);
        font-size: 17px;
    }


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.product-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.product-image {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    font-size: 65px;
}

.product-content {
    padding: 22px;
}

    .product-content h3 {
        margin: 0 0 8px;
    }

    .product-content p {
        color: var(--text);
    }

.product-price {
    color: var(--primary);
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-wrapper {
    max-width: 1000px;
    margin: auto;
}

.about-box {
    padding: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

    .about-box h2 {
        margin-top: 0;
        font-size: 30px;
    }

    .about-box p {
        color: var(--text);
        font-size: 16px;
    }


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    min-height: 100vh;
    background: linear-gradient(180deg,#f3faff 0%,#ffffff 100%);
}

.contact-header {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg,#eaf8ff,#f4fff9);
}

.contact-header-content {
    max-width: 800px;
    margin: auto;
}

.contact-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: white;
    color: #087f5b;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,80,120,0.08);
}

.contact-header h1 {
    margin: 18px 0 10px;
    color: #102a43;
    font-size: 46px;
    font-weight: 800;
}

.contact-header p {
    margin: 0;
    color: #667085;
    font-size: 17px;
}

.contact-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.contact-main-card {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 38% 62%;
    overflow: hidden;
    background: white;
    border-radius: 28px;
    border: 1px solid #dce8f3;
    box-shadow: var(--shadow-lg);
}


/* =========================================================
   OWNER CONTACT SECTION
   ========================================================= */

.contact-owner-section {
    padding: 45px 35px;
    text-align: center;
    background: linear-gradient(160deg,#eaf8ff,#f0fff9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-owner-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 7px solid white;
    box-shadow: 0 12px 35px rgba(0,80,120,0.15);
    margin-bottom: 25px;
}

    .contact-owner-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.owner-designation {
    color: #087f5b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-owner-section h2 {
    margin: 10px 0 7px;
    color: #102a43;
    font-size: 23px;
}

.qualification {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 50px;
    background: white;
    color: #087f5b;
    font-size: 14px;
    font-weight: 700;
}

.owner-description {
    max-width: 310px;
    margin: 22px auto 0;
    color: #667085;
    font-size: 14px;
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-information {
    padding: 42px;
}

.contact-section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid #edf2f7;
}

    .contact-section-title > span {
        width: 60px;
        height: 60px;
        min-width: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: #eaf6ff;
        font-size: 28px;
    }

    .contact-section-title h3 {
        margin: 0 0 5px;
        color: #102a43;
        font-size: 25px;
        font-weight: 800;
    }

    .contact-section-title p {
        margin: 0;
        color: #667085;
        font-size: 13px;
    }

.contact-info-row {
    display: flex;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f0f8ff;
    font-size: 19px;
}

.contact-info-content {
    min-width: 0;
}

    .contact-info-content > span {
        display: block;
        margin-bottom: 5px;
        color: #344054;
        font-size: 13px;
        font-weight: 800;
    }

    .contact-info-content p {
        margin: 0;
        color: #667085;
        font-size: 14px;
    }

    .contact-info-content strong {
        color: #087f5b;
    }

    .contact-info-content a {
        color: #087f5b;
        font-size: 14px;
        font-weight: 700;
        word-break: break-word;
    }

        .contact-info-content a:hover {
            text-decoration: underline;
        }


/* =========================================================
   CONTACT BUTTONS
   ========================================================= */

.contact-buttons {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 25px;
}

.contact-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s;
}

.call-btn {
    background: #eaf8f3;
    color: #087f5b;
}

    .call-btn:hover {
        background: #087f5b;
        color: white;
    }

.email-btn {
    background: #eaf6ff;
    color: #0870a8;
}

    .email-btn:hover {
        background: #0870a8;
        color: white;
    }

.whatsapp-btn {
    background: #eaf8f3;
    color: #087f5b;
}

    .whatsapp-btn:hover {
        background: #087f5b;
        color: white;
    }


/* =========================================================
   MEDICINE REQUEST PAGE
   ========================================================= */

.medicine-page {
    min-height: 100vh;
    background: linear-gradient(180deg,#f3faff,#ffffff);
}

.request-header {
    padding: 80px 20px;
    text-align: center;
    background: radial-gradient(circle at 20% 30%,#dbeafe,transparent 30%), radial-gradient(circle at 80% 70%,#dcfce7,transparent 30%), linear-gradient(135deg,#f7fbff,#ffffff);
}

.header-content {
    max-width: 850px;
    margin: auto;
}

.small-title {
    display: inline-block;
    padding: 8px 17px;
    border-radius: 50px;
    background: #e0f2fe;
    color: #075985;
    font-weight: 800;
    font-size: 13px;
}

.request-header h1 {
    margin: 20px 0 12px;
    color: #102a43;
    font-size: clamp(38px,5vw,58px);
    line-height: 1.1;
    font-weight: 800;
}

    .request-header h1 span {
        color: var(--primary);
    }

.request-header p {
    max-width: 700px;
    margin: auto;
    color: var(--text);
    font-size: 17px;
}


/* =========================================================
   STORE + OWNER
   ========================================================= */

.store-section {
    padding: 70px 20px;
}

.store-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.store-photo-card,
.owner-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.shop-photo {
    width: 100%;
    height: 360px;
    display: block;
    object-fit: cover;
}

.photo-caption {
    padding: 22px;
}

    .photo-caption h3 {
        margin: 0 0 5px;
    }

    .photo-caption p {
        margin: 0;
        color: var(--muted);
    }

.owner-card {
    padding: 35px;
}

.owner-image-container {
    text-align: center;
}

.owner-card .owner-photo {
    width: 175px;
    height: 175px;
}

.owner-details {
    text-align: center;
}

    .owner-details > span {
        color: #087f5b;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .owner-details h2 {
        margin: 10px 0 6px;
        font-size: 24px;
    }

    .owner-details strong {
        color: var(--primary);
    }

    .owner-details p {
        color: var(--text);
    }

.owner-phone {
    display: inline-flex;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--green-light);
    color: #047857;
    font-weight: 800;
}


/* =========================================================
   MEDICINE REQUEST FORM
   ========================================================= */

.request-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.form-container {
    max-width: 800px;
    margin: auto;
    padding: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-heading {
    text-align: center;
    margin-bottom: 35px;
}

    .form-heading > span {
        font-size: 35px;
    }

    .form-heading h2 {
        margin: 8px 0;
        font-size: 32px;
    }

    .form-heading p {
        color: var(--text);
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 7px;
        color: #334155;
        font-weight: 700;
    }

.form-control {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 11px;
    font-size: 15px;
    outline: none;
    background: white;
    transition: all 0.2s;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(13,110,253,0.10);
    }

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.validation {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 13px;
}


/* =========================================================
   PRESCRIPTION
   ========================================================= */

.prescription-box {
    margin: 25px 0;
    padding: 22px;
    background: #f8fbff;
    border: 1px dashed #93c5fd;
    border-radius: 17px;
}

.prescription-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.prescription-box h4 {
    margin: 0 0 5px;
}

.prescription-box p {
    color: var(--text);
    margin: 0 0 15px;
}

.prescription-box small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.whatsapp-button {
    width: 100%;
    min-height: 55px;
    border: 0;
    border-radius: 13px;
    background: #16a34a;
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .whatsapp-button:hover {
        background: #12813d;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(22,163,74,0.25);
    }

.privacy-text {
    margin: 15px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}


/* =========================================================
   BOTTOM CONTACT CARD
   ========================================================= */

.contact-bottom-card {
    max-width: 1050px;
    margin: 30px auto 0;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border: 1px solid #dce8f3;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0,70,130,0.07);
}

.bottom-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eaf6ff;
    font-size: 25px;
}

.contact-bottom-card h3 {
    margin: 0 0 5px;
}

.contact-bottom-card p {
    margin: 0;
    color: var(--muted);
}

.medicine-request-button {
    margin-left: auto;
    padding: 13px 20px;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.25s;
}

    .medicine-request-button:hover {
        background: var(--green-dark);
        color: white;
        transform: translateY(-2px);
    }


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 60px;
    padding: 60px 20px 20px;
    background: #172033;
    color: #cbd5e1;
}

.footer-grid {
    max-width: 1180px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 45px;
}

.footer-brand {
    margin-bottom: 15px;
    color: white;
    font-size: 23px;
    font-weight: 800;
}

.footer-title {
    margin-bottom: 15px;
    color: white;
    font-size: 17px;
    font-weight: 800;
}

.site-footer p {
    color: #cbd5e1;
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
    color: #cbd5e1;
}

    .site-footer a:hover {
        color: white;
    }

.footer-whatsapp {
    display: inline-block !important;
    margin-top: 8px;
    padding: 9px 15px;
    border-radius: 20px;
    background: #16a34a;
    color: white !important;
    font-weight: 700;
}

    .footer-whatsapp:hover {
        background: #12813d;
    }

.footer-bottom {
    max-width: 1180px;
    margin: 35px auto 0;
    padding-top: 20px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}


/* =========================================================
   OWNER PROFILE PAGE
   ========================================================= */

.owner-section {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.owner-large-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.owner-info h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.owner-info .degree {
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
}

.owner-info .mobile {
    display: inline-flex;
    margin-top: 18px;
    padding: 11px 17px;
    border-radius: 10px;
    background: var(--green-light);
    color: #047857;
    font-weight: 700;
}


/* =========================================================
   COMMON BUTTONS
   ========================================================= */

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    margin-top: 20px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    transition: 0.25s;
}

    .main-btn:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
    }


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.owner-card,
.feature-card,
.product-card,
.contact-main-card,
.form-container {
    animation: fadeUp 0.7s ease both;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #64748b;
    }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-list {
        justify-content: center;
    }

    .store-container {
        grid-template-columns: 1fr;
    }

    .contact-main-card {
        grid-template-columns: 1fr;
    }

    .contact-owner-section {
        padding: 50px 25px;
    }

    .card-grid,
    .product-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .owner-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .owner-large-photo {
        margin: auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar {
        min-height: 65px;
        flex-direction: column;
        padding: 12px 0;
        gap: 8px;
    }

    .brand {
        font-size: 19px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px;
    }

        .nav-menu a {
            padding: 7px 9px;
            font-size: 12px;
        }

    .order-medicine-link {
        margin-left: 0;
    }

    .hero {
        padding: 60px 15px;
    }

        .hero h1 {
            font-size: 39px;
        }

        .hero p {
            font-size: 16px;
        }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .owner-card {
        padding: 25px 18px;
    }

    .card-grid,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 55px 15px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .page-banner {
        padding: 55px 15px;
    }

        .page-banner h1 {
            font-size: 34px;
        }

    .about-box {
        padding: 25px;
    }

    .contact-header {
        padding: 60px 20px;
    }

        .contact-header h1 {
            font-size: 34px;
        }

    .contact-container {
        padding: 35px 15px 60px;
    }

    .contact-information {
        padding: 25px 20px;
    }

    .contact-section-title h3 {
        font-size: 21px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .contact-bottom-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .medicine-request-button {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .request-header {
        padding: 60px 15px;
    }

        .request-header h1 {
            font-size: 38px;
        }

    .store-section,
    .request-section {
        padding: 55px 15px;
    }

    .shop-photo {
        height: 260px;
    }

    .form-container {
        padding: 25px 18px;
    }

    .form-heading h2 {
        font-size: 27px;
    }

    .contact-owner-image {
        width: 155px;
        height: 155px;
    }

    .owner-info h2 {
        font-size: 28px;
    }

    .owner-large-photo {
        width: 230px;
        height: 230px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .brand {
        font-size: 17px;
    }

    .brand-icon {
        font-size: 23px;
    }

    .nav-menu a {
        padding: 6px 7px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .request-header h1 {
        font-size: 32px;
    }

    .owner-card h2 {
        font-size: 20px;
    }

    .contact-info-row {
        gap: 10px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}
