/* ============================================================
   Scientific Sales Syndicate – Global Stylesheet
   Aesthetic: Pure Pharma White
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --white:   #ffffff;
    --off:     #ffffff;        /* was #f7f8fa — now pure white */
    --border:  #e4e7ec;
    --muted:   #8a95a3;
    --body:    #2c3340;
    --heading: #111620;
    --accent:  #1a56db;
    --accent2: #0e3a9e;
    --hover-bg:#f0f5ff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --radius:  8px;
    --radius-lg: 12px;
    --font-body: 'DM Sans', sans-serif;
    --font-display: 'DM Serif Display', serif;
    --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { margin-top: 0 !important; padding-top: 0 !important; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
    padding-top: 0 !important;
    margin-top: 0 !important;
    -webkit-font-smoothing: antialiased;
}

#wpadminbar { display: none !important; }

/* ── Header ────────────────────────────────────────────────── */
header {
    position: sticky !important;
    top: 0 !important;
    z-index: 900;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 8% !important;
    height: 80px !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

header .logo {
    display: flex !important;
    align-items: center !important;
    line-height: 1 !important;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
header .logo img {
    height: 68px !important;
    width: 68px !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 50% !important;
}

/* ── Nav ───────────────────────────────────────────────────── */
nav {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
}

nav a {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--body) !important;
    text-decoration: none !important;
    padding: 6px 14px !important;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
    margin-left: 0 !important;
}

nav a:hover { background: var(--hover-bg); color: var(--accent) !important; }

.nav-item { position: relative; }
.active { color: var(--accent) !important; font-weight: 600 !important; }

/* ── Products Mega-Menu ────────────────────────────────────── */
.product-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    width: 100vw;
    max-height: calc(100vh - 76px);
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 40px 8%;
    overflow-y: auto;
    z-index: 1000;
    pointer-events: auto;
    animation: slideDown 0.18s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.product-menu.active { display: block; }

.product-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.menu-header { display: flex; justify-content: flex-end; margin-bottom: 6px; }

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}
.close-btn:hover { color: var(--heading); background: var(--white); }

.menu-left a, .menu-left p {
    display: block;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--body);
    cursor: pointer;
    transition: color var(--transition), padding-left var(--transition);
}
.menu-left a:last-child, .menu-left p:last-child { border-bottom: none; }
.menu-left a:hover, .menu-left p:hover { color: var(--accent); padding-left: 6px; }

/* ── Dropdown Menus ────────────────────────────────────────── */
.app-menu, .tech-menu, .service-menu, .company-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--white);
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}
.app-menu.active, .tech-menu.active, .service-menu.active, .company-menu.active { display: block; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    color: var(--heading);
    text-align: center;
    padding: 90px 20px 80px;
    position: relative;
    overflow: hidden;
}
/* No dot-grid pattern, no gradient — pure white hero */
.hero::before { display: none; }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    position: relative;
    color: var(--heading);
}
.hero p {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    position: relative;
}

/* ── Buttons ───────────────────────────────────────────────── */
.buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

.buttons a {
    padding: 11px 26px;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white) !important;
    box-shadow: 0 2px 8px rgba(26,86,219,0.3);
}
.btn-primary:hover { background: var(--accent2); box-shadow: 0 4px 14px rgba(26,86,219,0.4); transform: translateY(-1px); }

.btn-secondary {
    background: var(--white);
    color: var(--heading) !important;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--white); border-color: #c0c8d4; transform: translateY(-1px); }

/* ── Sections ──────────────────────────────────────────────── */
.about, .products, .why { padding: 72px 8%; text-align: center; }

.about h2, .products h2, .why h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    color: var(--heading);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.about p, .why p {
    color: #4b5563;
    max-width: 680px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

/* ── Products Grid ─────────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 36px;
    text-align: left;
}

.product-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
    color: var(--heading);
    cursor: pointer;
    transition: box-shadow var(--transition), border-color var(--transition);
    line-height: 1.4;
}
/* No transform lift — no side effects */
.product-card:hover { box-shadow: var(--shadow-md); border-color: #c0c8d4; }

/* ── Why section ───────────────────────────────────────────── */
.why { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.why ul {
    list-style: none;
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    text-align: left;
}

.why li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    font-size: 14px;
    color: var(--body);
    font-weight: 500;
}
.why li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta { background: var(--white); color: var(--heading); padding: 72px 20px; text-align: center; border-top: 1px solid var(--border); }
.cta h2 { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 34px); font-weight: 400; margin-bottom: 12px; color: var(--heading); }
.cta p { color: #4b5563; font-size: 15px; margin-bottom: 28px; }

/* ── Footer ────────────────────────────────────────────────── */
footer { background: var(--white); color: var(--muted); text-align: center; padding: 28px 20px; font-size: 13px; border-top: 1px solid var(--border); }
footer a { color: var(--body); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 60px 8%;
    text-align: center;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; color: var(--heading); margin-bottom: 12px; letter-spacing: -0.02em; }
.page-hero p { font-size: 15px; color: #4b5563; max-width: 650px; margin: 0 auto; line-height: 1.75; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 60px 8%; text-align: center; }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; margin-bottom: 12px; color: var(--heading); }
.contact-hero p { font-size: 15px; color: #4b5563; max-width: 640px; margin: 0 auto; line-height: 1.75; }

.contact-section { padding: 60px 8%; background: var(--white); }
.contact-container { display: flex; gap: 40px; flex-wrap: wrap; }

.contact-form-box {
    flex: 1; min-width: 280px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.contact-form-box h2 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 28px; color: var(--heading); }

.input-group { position: relative; margin-bottom: 22px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--border); border-radius: var(--radius);
    outline: none; background: var(--white); color: var(--body);
    font-family: var(--font-body); font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.input-group label {
    position: absolute; left: 14px; top: 12px;
    color: var(--muted); background: var(--white);
    padding: 0 4px; font-size: 14px;
    transition: 0.2s ease; pointer-events: none;
}
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -9px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--accent);
}

.full-btn {
    width: 100%; padding: 12px;
    background: var(--accent); color: var(--white);
    border: none; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(26,86,219,0.25);
}
.full-btn:hover { background: var(--accent2); box-shadow: 0 4px 14px rgba(26,86,219,0.35); }

.contact-info-box {
    flex: 1; min-width: 260px;
    background: var(--white); color: var(--body);
    padding: 40px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-info-box h2 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 22px; color: var(--heading); }
.contact-info-box p { margin-bottom: 16px; font-size: 14px; color: var(--body); line-height: 1.7; }

/* ── About Page ────────────────────────────────────────────── */
.about-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 60px 8%; text-align: center; }
.about-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; margin-bottom: 12px; color: var(--heading); }
.about-hero p { font-size: 15px; color: #4b5563; }

.about-content { padding: 60px 8%; max-width: 860px; margin: 0 auto; }
.about-content p { font-size: 15px; line-height: 1.9; color: #374151; margin-bottom: 22px; text-align: justify; }

.about-values { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 8%; }
.about-values h2 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin-bottom: 32px; text-align: center; color: var(--heading); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; }
.value-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 30px 20px; text-align: center;
    transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-card .icon { font-size: 26px; margin-bottom: 12px; }
.value-card h3 { font-size: 13px; font-weight: 600; color: var(--heading); line-height: 1.4; }

/* ── Careers Page ──────────────────────────────────────────── */
.careers-hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 60px 8%; text-align: center; }
.careers-hero h1 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 400; color: var(--heading); margin-bottom: 14px; }
.careers-hero p { font-size: 15px; color: #4b5563; max-width: 800px; margin: 0 auto; line-height: 1.8; }

.careers-body { padding: 60px 8%; max-width: 960px; margin: 0 auto; box-sizing: border-box; }

.careers-intro, .careers-why, .careers-opportunities, .apply-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 40px;
    margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.careers-intro p { font-size: 15px; color: #374151; line-height: 1.9; margin: 0 0 16px; }
.careers-intro p:last-child { margin-bottom: 0; }

.careers-why h2, .careers-opportunities h2, .apply-card h2 {
    font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--heading); margin-bottom: 20px;
}
.careers-why ul { list-style: none; padding: 0; margin: 0; }
.careers-why ul li {
    font-size: 15px; color: #374151; padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 12px; line-height: 1.6;
}
.careers-why ul li:last-child { border-bottom: none; }
.careers-why ul li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.careers-opportunities p { font-size: 15px; color: #4b5563; margin: 0 0 24px; line-height: 1.7; }

.apply-card { background: var(--white); text-align: center; }
.apply-card p { font-size: 15px; color: #374151; margin: 0 0 20px; line-height: 1.7; }
.apply-card a.email-link {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white) !important;
    text-decoration: none; padding: 13px 32px;
    border-radius: var(--radius); font-size: 14px; font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(26,86,219,0.25);
    transition: background var(--transition), box-shadow var(--transition);
}
.apply-card a.email-link:hover { background: var(--accent2); box-shadow: 0 4px 14px rgba(26,86,219,0.35); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    header { padding: 0 5% !important; height: 68px !important; }
    header .logo img { height: 60px !important; width: 60px !important; border-radius: 50% !important; }
    nav { gap: 2px !important; }
    nav a { padding: 6px 10px !important; font-size: 13px !important; }
    .hero { padding: 60px 6%; }
    .about, .products, .why { padding: 50px 6%; }
    .contact-container { flex-direction: column; }
    .contact-form-box, .contact-info-box { padding: 28px; }
    .careers-body { padding: 40px 5%; }
    .careers-intro, .careers-why, .careers-opportunities, .apply-card { padding: 28px 24px; }
    .product-menu { top: 60px; padding: 28px 6%; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first additions
   Added for full responsiveness. Zero side-effects on desktop.
   ══════════════════════════════════════════════════════════════ */

/* ── Hamburger button (hidden on desktop) ────────────────────── */
.ham-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    flex-shrink: 0;
    z-index: 910;
    transition: background var(--transition);
}
.ham-btn:hover { background: var(--hover-bg); }
.ham-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
    transform-origin: center;
}
/* Animated X when open */
.ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ──────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;   /* matches mobile header height */
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 899;
    overflow-y: auto;
    padding: 16px 0 40px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    animation: mobileNavIn 0.22s ease;
}
.mobile-nav.open { display: block; }

@keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav a,
.mobile-nav .m-nav-toggle {
    display: block;
    padding: 14px 6%;
    font-size: 15px;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
}
.mobile-nav a:hover,
.mobile-nav .m-nav-toggle:hover { background: var(--hover-bg); color: var(--accent); }
.mobile-nav a.active { color: var(--accent); font-weight: 600; }

.mobile-nav .m-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
}
.mobile-nav .m-nav-toggle::after {
    content: '▾';
    font-size: 12px;
    transition: transform 0.2s ease;
}
.mobile-nav .m-nav-toggle.open::after { transform: rotate(180deg); }

.m-sub-menu {
    display: none;
    background: #f8faff;
    border-bottom: 1px solid var(--border);
}
.m-sub-menu.open { display: block; }
.m-sub-menu a {
    padding: 11px 10%;
    font-size: 14px;
    color: var(--body);
    border-bottom: 1px solid var(--border);
}
.m-sub-menu a:last-child { border-bottom: none; }

/* ── 900px — tablet / large phone ───────────────────────────── */
@media (max-width: 900px) {
    header {
        padding: 0 5% !important;
        height: 68px !important;
        justify-content: space-between !important;
    }
    header .logo img { height: 62px !important; width: 62px !important; border-radius: 50% !important; }

    /* Hide desktop nav, show hamburger */
    header nav { display: none !important; }
    .ham-btn { display: flex !important; }

    /* Sections */
    .about, .products, .why { padding: 48px 5%; }
    .cta { padding: 56px 5%; }
    .page-hero, .contact-hero, .about-hero,
    .careers-hero { padding: 44px 5%; }
    .contact-section { padding: 44px 5%; }
    .about-content { padding: 44px 5%; }
    .about-values { padding: 44px 5%; }
    .careers-body { padding: 36px 5%; }

    /* Product menu (desktop mega-menu) → hide on mobile, replaced by mobile-nav */
    .product-menu { display: none !important; }
    .app-menu, .tech-menu, .service-menu, .company-menu { display: none !important; }

    /* Footer */
    footer { padding: 24px 5%; font-size: 12px; }

    /* Trust strip */
    .trust-strip { padding: 14px 5%; gap: 16px; }
    .trust-sep { display: none; }

    /* Contact */
    .contact-container { flex-direction: column; gap: 20px; }
    .contact-form-box, .contact-info-box { padding: 24px; min-width: unset; }

    /* Values grid */
    .values-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

    /* Careers */
    .careers-intro, .careers-why,
    .careers-opportunities, .apply-card { padding: 24px 20px; }
}

/* ── 600px — phone ───────────────────────────────────────────── */
@media (max-width: 600px) {
    header { height: 64px !important; }
    header .logo img { height: 54px !important; width: 54px !important; border-radius: 50% !important; }

    /* Shrink or hide brand text on very small screens */
    .logo-brand-text { font-size: 13px !important; }
    .logo-since { display: none; }

    .about, .products, .why { padding: 40px 4%; }
    .cta { padding: 44px 4%; }
    .page-hero, .contact-hero, .about-hero,
    .careers-hero { padding: 36px 4%; }

    .product-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }

    .why ul { grid-template-columns: 1fr; }

    /* Hero slider */
    .hero-slider { height: auto; min-height: 480px; padding: 72px 0 60px; }
    .slider-content { padding: 0 5%; }
    .slider-content h1 { font-size: 24px; }
    .slider-content p { font-size: 14px; }
    .slider-content-inner { height: auto; min-height: 300px; }
    .slide-text { position: relative; }
    .slide-text:not(.active) { display: none; }
    .slide-buttons { flex-direction: column; gap: 10px; }
    .hero-slider .btn-primary,
    .hero-slider .btn-secondary { width: 100%; justify-content: center; padding: 12px 20px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 24px; }
    .arrow-prev { left: 10px; }
    .arrow-next { right: 10px; }

    /* WhatsApp button */
    .wa-float { bottom: 18px; right: 18px; }

    /* Contact form */
    .contact-form-box, .contact-info-box { padding: 20px 16px; }
    .contact-form-box h2, .contact-info-box h2 { font-size: 18px; }

    /* Careers body */
    .careers-body { padding: 24px 4%; }
    .careers-intro, .careers-why,
    .careers-opportunities, .apply-card { padding: 20px 16px; margin-bottom: 16px; }

    /* About */
    .about-content { padding: 32px 4%; }
    .about-values { padding: 32px 4%; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 400px — very small phone ────────────────────────────────── */
@media (max-width: 400px) {
    header .logo img { height: 48px !important; width: 48px !important; border-radius: 50% !important; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .hero-slider { min-height: 440px; }
}

/* ── Body scroll lock when mobile nav is open ────────────────── */
body.nav-open { overflow: hidden; }


/* ── Logo link & text (moved from inline styles) ────────────── */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo a img {
    height: 68px;
    width: 68px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}
.logo-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a2456;
    line-height: 1.25;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.logo-since {
    font-size: 11px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.06em;
    display: block;
    text-align: center;
    text-decoration: none;
}
