@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #f7fafc;
    color: #102a43;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e8eef3;
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #087f8c;
    color: white;
    font-weight: 800;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    color: #52606d;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.menu a:hover {
    color: #087f8c;
}

.nav-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 12px;
    background: #087f8c;
    color: white;
    font-weight: 700;
    transition: 0.25s;
}

.nav-button:hover,
.primary-button:hover {
    background: #066b75;
    transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 80% 20%, rgba(8, 127, 140, 0.08), transparent 30%),
        #f7fafc;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.25;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #087f8c;
    display: block;
}

.hero-text > p {
    max-width: 610px;
    color: #627d98;
    font-size: 17px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.secondary-button {
    padding: 12px 20px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    color: #243b53;
    font-weight: 700;
    background: white;
    transition: 0.25s;
}

.secondary-button:hover {
    border-color: #087f8c;
    color: #087f8c;
}

/* ================= HERO VISUAL ================= */

.hero-visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
}

.medical-card {
    width: 330px;
    height: 410px;
    border-radius: 32px;
    padding: 28px;
    color: white;
    background:
        linear-gradient(145deg, rgba(8,127,140,0.98), rgba(16,42,67,0.98));
    box-shadow: 0 35px 70px rgba(16, 42, 67, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(-5deg);
}

.card-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #5eead4;
    border-radius: 50%;
}

.medical-symbol {
    width: 150px;
    height: 150px;
    margin: auto;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 100px;
    font-weight: 300;
}

.card-bottom {
    display: flex;
    flex-direction: column;
}

.card-bottom strong {
    font-size: 22px;
}

.card-bottom span {
    opacity: 0.7;
    font-size: 12px;
}

.floating-card {
    position: absolute;
    left: 5%;
    bottom: 35px;
    background: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(16, 42, 67, 0.13);
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: #087f8c;
}

.floating-card span {
    color: #829ab1;
    font-size: 12px;
}

/* ================= FEATURES ================= */

.features {
    background: white;
    border-top: 1px solid #e8eef3;
    border-bottom: 1px solid #e8eef3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature {
    padding: 32px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid #e8eef3;
}

.feature:last-child {
    border-left: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #e7f7f8;
    color: #087f8c;
    font-size: 20px;
    font-weight: 800;
}

.feature h3 {
    font-size: 15px;
}

.feature p {
    color: #829ab1;
    font-size: 12px;
}

/* ================= SECTIONS ================= */

.products-section,
.about-section,
.contact-section {
    padding: 110px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.section-heading h2,
.about-text h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.35;
}

.section-heading > p {
    max-width: 430px;
    color: #829ab1;
}

/* ================= PRODUCTS ================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    overflow: hidden;
    background: white;
    border: 1px solid #e8eef3;
    border-radius: 22px;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(16, 42, 67, 0.1);
}

.product-image {
    height: 250px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(8,127,140,0.15), transparent 55%),
        #eef7f8;
    color: #087f8c;
    font-size: 20px;
    font-weight: 800;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 7px 0;
    font-size: 20px;
}

.product-info p {
    color: #829ab1;
    font-size: 13px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
}

.product-footer button {
    border: 0;
    padding: 9px 15px;
    border-radius: 10px;
    background: #e7f7f8;
    color: #087f8c;
    font-weight: 700;
    cursor: pointer;
}

/* ================= ABOUT ================= */

.about-section {
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    min-height: 450px;
    display: grid;
    place-items: center;
}

.about-box {
    width: 360px;
    height: 360px;
    border-radius: 40px;
    background:
        linear-gradient(145deg, #e7f7f8, #d8f0f2);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(8,127,140,0.08);
}

.about-box span {
    font-size: 100px;
    font-weight: 900;
    color: #087f8c;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text h2 span {
    color: #087f8c;
}

.about-text p {
    color: #627d98;
    margin-bottom: 15px;
}

/* ================= CTA ================= */

.cta-section {
    padding: 35px 0;
    background: #102a43;
    color: white;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta span {
    color: #5eead4;
    font-size: 13px;
    font-weight: 800;
}

.cta h2 {
    margin-top: 5px;
    font-size: 24px;
}

.cta-button {
    padding: 13px 22px;
    border-radius: 12px;
    background: white;
    color: #102a43;
    font-weight: 800;
    white-space: nowrap;
}

/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-item > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #e7f7f8;
    color: #087f8c;
}

.contact-item strong {
    font-size: 14px;
}

.contact-item p {
    color: #829ab1;
    font-size: 13px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    background: white;
    outline: none;
    transition: 0.2s;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8,127,140,0.08);
}

.contact-form button {
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: #087f8c;
    color: white;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

/* ================= FOOTER ================= */

.footer {
    background: #071c2c;
    color: white;
    padding-top: 55px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 45px;
}

.footer p {
    margin-top: 15px;
    color: #829ab1;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
    color: #bcccdc;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #627d98;
    font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .hero-content,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        min-height: auto;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        border-left: none;
        border-bottom: 1px solid #e8eef3;
    }

    .feature:last-child {
        border-bottom: none;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }

    .about-visual {
        order: 2;
    }

    .cta {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {

    .nav {
        min-height: 68px;
    }

    .nav-button {
        display: none;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .medical-card {
        width: 270px;
        height: 340px;
    }

    .medical-symbol {
        width: 110px;
        height: 110px;
        font-size: 70px;
    }

    .floating-card {
        left: 0;
        bottom: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-box {
        width: 280px;
        height: 280px;
    }

    .about-box span {
        font-size: 75px;
    }

    .products-section,
    .about-section,
    .contact-section {
        padding: 75px 0;
    }
}/* ================= CART ================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-button {
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    font-size: 19px;
    transition: 0.25s;
}

.cart-button:hover {
    border-color: #087f8c;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    background: #087f8c;
    color: white;
    font-size: 10px;
    font-weight: 800;
}

/* Overlay */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 1998;
    background: rgba(7, 28, 44, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1999;

    width: min(430px, 92vw);
    height: 100vh;

    background: white;

    display: flex;
    flex-direction: column;

    transform: translateX(105%);
    transition: transform 0.35s ease;

    box-shadow: -20px 0 60px rgba(16, 42, 67, 0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

/* Cart Header */

.cart-header {
    padding: 28px;
    border-bottom: 1px solid #e8eef3;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header span {
    color: #087f8c;
    font-size: 12px;
    font-weight: 800;
}

.cart-header h2 {
    font-size: 24px;
    margin-top: 3px;
}

.cart-close {
    width: 42px;
    height: 42px;

    border: 1px solid #d9e2ec;
    border-radius: 12px;

    background: white;
    color: #52606d;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}

/* Cart Items */

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
}

.empty-cart-icon {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    border-radius: 25px;
    background: #e7f7f8;

    font-size: 32px;
    margin-bottom: 20px;
}

.empty-cart h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.empty-cart p {
    max-width: 290px;
    color: #829ab1;
    font-size: 13px;
}

/* Cart Footer */

.cart-footer {
    padding: 25px;
    border-top: 1px solid #e8eef3;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.cart-total span {
    color: #627d98;
    font-size: 14px;
}

.cart-total strong {
    color: #102a43;
    font-size: 18px;
}

.checkout-button {
    width: 100%;
    padding: 15px;

    border: none;
    border-radius: 13px;

    background: #087f8c;
    color: white;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;
    transition: 0.25s;
}

.checkout-button:hover {
    background: #066b75;
}

@media (max-width: 600px) {

    .nav-actions .nav-button {
        display: none;
    }

    .cart-sidebar {
        width: 100%;
    }
}/* ================= CART PRODUCTS ================= */

.cart-product {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #e8eef3;
}

.cart-product-image {
    width: 65px;
    height: 65px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #e7f7f8;
    color: #087f8c;

    font-size: 11px;
    font-weight: 800;
}

.cart-product-info {
    flex: 1;
    min-width: 0;
}

.cart-product-info h3 {
    font-size: 14px;
    margin-bottom: 3px;
}

.cart-product-info > span {
    color: #087f8c;
    font-size: 12px;
    font-weight: 700;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 9px;
}

.quantity-controls button {
    width: 27px;
    height: 27px;

    border: 1px solid #d9e2ec;
    border-radius: 8px;

    background: white;

    cursor: pointer;
    font-weight: 800;
}

.quantity-controls strong {
    font-size: 12px;
}

.remove-product {
    position: absolute;
    top: 12px;
    left: 0;

    border: none;
    background: transparent;

    color: #9fb3c8;

    font-size: 20px;

    cursor: pointer;
}

.remove-product:hover {
    color: #d64545;
}/* ================= COMPANY LOGO ================= */

.company-logo {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}.company-logo {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}.about-logo {
    width: 75%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
}/* ================= EMPTY PRODUCTS ================= */

.products-empty {
    min-height: 300px;
    padding: 50px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: white;
    border: 1px solid #e8eef3;
    border-radius: 24px;
}

.products-empty-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 20px;

    background: #e7f7f8;
    color: #087f8c;

    font-size: 32px;
    font-weight: 400;
}

.products-empty h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.products-empty p {
    color: #829ab1;
    font-size: 13px;
    margin-bottom: 22px;
}/* ================= ORDER PAGE ================= */

.order-page {
    min-height: 80vh;
    padding: 90px 0;
    background: #f7fafc;
}

.order-heading {
    text-align: center;
    margin-bottom: 45px;
}

.order-heading h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 10px;
}

.order-heading p {
    color: #829ab1;
}

.order-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 25px;
    align-items: start;
}

.order-card {
    background: white;
    border: 1px solid #e8eef3;
    border-radius: 22px;
    padding: 30px;
}

.order-card h2 {
    font-size: 21px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d9e2ec;
    border-radius: 11px;
    outline: none;
    background: white;
    font-family: inherit;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8,127,140,0.08);
}

.form-group textarea {
    resize: vertical;
}

.order-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: #087f8c;
    color: white;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s;
}

.order-submit:hover {
    background: #066b75;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.order-empty {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #829ab1;
}

.order-empty span {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #e7f7f8;
    font-size: 27px;
    margin-bottom: 15px;
}

.order-empty p {
    font-size: 13px;
    max-width: 250px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e8eef3;
    padding-top: 20px;
    margin-top: 20px;
}

.summary-total span {
    color: #627d98;
}

.summary-total strong {
    color: #102a43;
    font-size: 18px;
}

@media (max-width: 800px) {

    .order-layout {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }

}

@media (max-width: 550px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .order-card {
        padding: 22px;
    }

    .order-page {
        padding: 60px 0;
    }

}/* ================= ORDER PRODUCTS ================= */

.order-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #e8eef3;
}

.order-product-image {
    width: 55px;
    height: 55px;
    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;
    background: #e7f7f8;
    color: #087f8c;

    font-size: 10px;
    font-weight: 800;
}

.order-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.order-product-info strong {
    font-size: 13px;
}

.order-product-info span {
    color: #829ab1;
    font-size: 11px;
}

.order-product > strong {
    font-size: 12px;
    white-space: nowrap;
}
/* ================= MOBILE FINAL FIX ================= */

@media (max-width: 600px) {

    /* Container */
    .container {
        width: min(92%, 100% - 24px);
    }

    /* Header */
    .nav {
        min-height: 64px;
        gap: 10px;
    }

    .company-logo {
        width: 125px;
        max-width: 40vw;
    }

    .nav-actions {
        gap: 7px;
    }

    .cart-button {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    /* Hero */
    .hero-content {
        padding: 50px 0 65px;
        gap: 35px;
    }

    .eyebrow {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .hero h1 {
        font-size: clamp(32px, 10vw, 40px);
        line-height: 1.4;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero-text > p {
        font-size: 14px;
        line-height: 2;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons a {
        width: 100%;
        padding: 11px 16px;
    }

    /* Hero Visual */
    .hero-visual {
        min-height: 390px;
        width: 100%;
    }

    .medical-card {
        width: min(270px, 75vw);
        height: 330px;
        padding: 22px;
        border-radius: 26px;
    }

    .medical-symbol {
        width: 105px;
        height: 105px;
        font-size: 65px;
    }

    .card-bottom strong {
        font-size: 19px;
    }

    .floating-card {
        left: 2%;
        bottom: 5px;
        padding: 13px 16px;
        border-radius: 15px;
        font-size: 12px;
    }

    /* Features */
    .feature {
        padding: 22px 10px;
    }

    .feature-icon {
        width: 43px;
        height: 43px;
    }

    /* Sections */
    .products-section,
    .about-section,
    .contact-section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 30px;
        gap: 10px;
    }

    .section-heading h2,
    .about-text h2 {
        font-size: 30px;
    }

    .section-heading > p {
        font-size: 13px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-image {
        height: 210px;
    }

    .product-content {
        padding: 20px;
    }

    .product-bottom {
        gap: 10px;
        flex-wrap: wrap;
    }

    .product-bottom .primary-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    /* About */
    .about-grid {
        gap: 35px;
    }

    .about-visual {
        min-height: auto;
    }

    .about-box {
        width: min(280px, 78vw);
        height: min(280px, 78vw);
        border-radius: 30px;
    }

    .about-logo {
        width: 75%;
        max-width: 220px;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        font-size: 13px;
        line-height: 2;
    }

    /* About stats */
    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 25px 0;
    }

    .stat-box {
        padding: 14px 8px;
        background: #f7fafc;
        border: 1px solid #e8eef3;
        border-radius: 14px;
        text-align: center;
    }

    .stat-box h3 {
        margin-bottom: 3px;
    }

    .stat-box p {
        margin: 0;
        font-size: 11px;
    }

    /* CTA */
    .cta-section {
        padding: 30px 0;
    }

    .cta {
        gap: 20px;
    }

    .cta h2 {
        font-size: 19px;
        line-height: 1.7;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        gap: 35px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        align-items: flex-start;
        gap: 12px;
    }

    .contact-item > span {
        width: 43px;
        height: 43px;
        flex-shrink: 0;
    }

    .contact-item p {
        font-size: 12px;
        word-break: break-word;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    .footer-content {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer .company-logo {
        width: 140px;
    }

    .footer-links {
        gap: 12px 20px;
        font-size: 12px;
    }

    /* Cart */
    .cart-sidebar {
        width: 100%;
    }

    .cart-header {
        padding: 20px;
    }

    .cart-items {
        padding: 20px;
    }

    .cart-footer {
        padding: 20px;
    }

    .cart-product {
        gap: 10px;
    }

    .cart-product-image {
        width: 58px;
        height: 58px;
    }

    /* Order page */
    .order-page {
        padding: 55px 0;
    }

    .order-heading h1 {
        font-size: 32px;
    }

    .order-card {
        padding: 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Prevent horizontal overflow */
    img {
        max-width: 100%;
        height: auto;
    }

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }
}


/* ================= SMALL PHONES ================= */

@media (max-width: 380px) {

    .company-logo {
        width: 110px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-text > p {
        font-size: 13px;
    }

    .medical-card {
        width: 235px;
        height: 300px;
    }

    .medical-symbol {
        width: 90px;
        height: 90px;
        font-size: 55px;
    }

    .floating-card {
        font-size: 10px;
        padding: 10px 12px;
    }

    .section-heading h2,
    .about-text h2 {
        font-size: 27px;
    }

    .about-stats {
        gap: 7px;
    }
}