/* ============================================================
   Anmol Medicos — Public Website Stylesheet
   Covers: layout, components, homepage, brand page
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --ink: #11214f;
    --muted: #5c6687;
    --line: #e2e6f2;
    --soft: #f6f7fc;
    --brand: #1f4d9a;
    --accent: #d51b8c;
    --white: #fff;
}

/* ── Reset & Base ── */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--ink);
    background: #f8f9fe;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Navigation ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.nav {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.navlinks {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

/* ── Buttons ── */
.btn,
button {
    border: 0;
    border-radius: 6px;
    background: var(--brand);
    color: white;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.btn:hover,
button:hover {
    background: #173d82;
}

.btn.secondary {
    background: white;
    color: var(--brand);
    border: 1px solid var(--line);
}

.btn.danger {
    background: #b42318;
}

/* ── Hero Slider ── */
.hero {
    position: relative;
    min-height: 560px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: #11214f;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .55s ease;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 33, 79, .86) 0%, rgba(31, 77, 154, .62) 45%, rgba(213, 27, 140, .14) 100%);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    color: white;
    padding: 54px 0 70px;
}

.hero-copy .eyebrow {
    color: #f4a4d2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero h1 {
    margin: 8px 0 14px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    max-width: 690px;
}

.hero p {
    margin: 0;
    color: #dcefed;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-actions .btn.secondary {
    background: rgba(255, 255, 255, .92);
}

.hero-dots {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.hero-dot {
    width: 34px;
    height: 4px;
    min-height: 4px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .48);
}

.hero-dot.is-active {
    background: white;
}

/* ── Brand Swiper (homepage) ── */
.brand-section {
    padding: 60px 6px;
    background: #f8f9fe;
}

.section-title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
}

.brand-swiper {
    overflow: hidden;
    padding: 8px 0 20px;
}

.brand-swiper .swiper-slide {
    width: 130px;
    display: flex;
    justify-content: center;
}

.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    text-decoration: none;
    transition: transform .2s;
}

.brand-logo-card:hover {
    transform: translateY(-4px);
}

.brand-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px rgba(18, 52, 59, .08);
    color: var(--brand);
    font-size: 30px;
    font-weight: 800;
    padding: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo-card span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    max-width: 110px;
    color: var(--ink);
}

/* ── Shop by Category (homepage) ── */
.cat-section {
    padding: 52px 0 60px;
    background: var(--soft);
    border-top: 1px solid var(--line);
}

.cat-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}

.cat-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
    aspect-ratio: 3/4;
    transition: transform .25s,
        box-shadow .25s;
    box-shadow: 0 4px 18px rgba(17, 33, 79, .10);
}

.cat-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 52px rgba(17, 33, 79, .20);
}

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}

.cat-card:hover .cat-card-bg {
    transform: scale(1.06);
}

.cat-card[data-segment="pharma"] .cat-card-bg {
    background-color: #11214f;
}

.cat-card[data-segment="surgical"] .cat-card-bg {
    background-color: #0e3d36;
}

.cat-card[data-segment="healthcare"].cat-card-bg {
    background-color: #4a0e38;
}

.cat-card-scrim {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to top, rgba(0, 0, 0, .50) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .05) 100%);*/
}

.cat-card-emoji {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    opacity: .18;
    user-select: none;
    pointer-events: none;
}

.cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
    z-index: 2;
}

.cat-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .75;
    margin-bottom: 6px;
}

.cat-card-name {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
}

.cat-card-sub {
    font-size: 13px;
    opacity: .7;
    margin-bottom: 16px;
}

.cat-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .18);
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(6px);
    transition: background .2s, gap .2s;
}

.cat-card:hover .cat-card-btn {
    background: rgba(255, 255, 255, .28);
    gap: 12px;
}

.cat-card[data-segment="pharma"] .cat-card-btn {
    border-color: #93c5fd;
}

.cat-card[data-segment="surgical"] .cat-card-btn {
    border-color: #6ee7b7;
}

.cat-card[data-segment="healthcare"].cat-card-btn {
    border-color: #f9a8d4;
}

/* ── Trust Strip (homepage) ── */
.trust-section {
    background: white;
    padding: 34px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    color: var(--brand);
}

.trust-icon {
    width: 112px;
    height: 92px;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--brand);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item strong {
    color: var(--brand);
    font-size: 15px;
    letter-spacing: .02em;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
    max-width: 220px;
}

/* ── Brand Page ── */
.brand-hero {
    background: linear-gradient(135deg, #11214f 0%, #1f4d9a 60%, #d51b8c22 100%);
    padding: 52px 0 44px;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.brand-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(213, 27, 140, .15) 0%, transparent 65%);
    pointer-events: none;
}

.brand-hero-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.brand-hero-logo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    border-radius: 50%;
    background: white;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
    font-size: 38px;
    font-weight: 900;
    color: var(--brand);
    overflow: hidden;
    padding: 12px;
}

.brand-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-hero-text h1 {
    margin: 0 0 6px;
    font-size: clamp(26px, 4vw, 42px);
    color: white;
}

.brand-hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.brand-tag {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
}

.brand-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    line-height: 1.55;
    margin-top: 10px;
    max-width: 600px;
}

.brand-categories {
    background: white;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 68px;
    z-index: 15;
}

.brand-categories-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
}

.brand-categories-inner::-webkit-scrollbar {
    display: none;
}

.cat-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: 1.5px solid var(--line);
    color: var(--muted);
    background: white;
    text-decoration: none;
    transition: all .15s;
    flex-shrink: 0;
}

.cat-tab:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.cat-tab.is-active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}

.cat-tab .cat-count {
    background: rgba(0, 0, 0, .1);
    border-radius: 999px;
    padding: 1px 7px;
    font-size: 11px;
}

.cat-tab.is-active .cat-count {
    background: rgba(255, 255, 255, .25);
}

.brand-body {
    padding: 36px 0 60px;
}

.brand-body-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-body-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.result-count {
    font-size: 14px;
    color: var(--muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.pcard {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    color: var(--ink);
}

.pcard:hover {
    box-shadow: 0 12px 40px rgba(17, 33, 79, .12);
    transform: translateY(-3px);
}

.pcard-media {
    aspect-ratio: 4/3;
    background: var(--soft);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.pcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.pcard:hover .pcard-media img {
    transform: scale(1.04);
}

.pcard-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcard-eyebrow {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pcard-name {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
}

.pcard-composition {
    font-size: 13px;
    color: #283d7d;
    line-height: 1.4;
}

.pcard-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.pcard-chip {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: var(--soft);
}

.pcard-rate {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: auto;
}

.pcard-rate strong {
    color: var(--ink);
}

.pcard-actions {
    padding: 14px 16px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 8px;
    align-items: center;
}

.pcard-actions input[type="number"] {
    max-width: 72px;
    padding: 8px 10px;
    font-size: 13px;
}

.pcard-actions button {
    flex: 1;
    font-size: 13px;
    padding: 9px 12px;
}

.empty-state {
    text-align: center;
    padding: 64px 24px;
    color: var(--muted);
}

.empty-state .empty-icon {
    font-size: 52px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 8px;
}

.pagination-wrap {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

/* ── Shared Components ── */
.footer {
    background: #f3f5fc;
    color: #11214f;
    padding-top: 42px;
    border-top: 1px solid #e0e5f4;
}

.footer-main {
    padding: 34px 0 22px;
}

.footer-brand {
    margin-bottom: 34px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.footer-company {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 36px;
}

.footer h3 {
    color: #010719;
    font-size: 17px;
    margin: 0 0 16px;
    font-weight: 900;
}

.footer-links {
    display: grid;
    gap: 13px;
}

.footer-links a {
    color: #38446d;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr .95fr;
    gap: 38px;
    align-items: start;
    margin-bottom: 26px;
}

.footer-info {
    display: grid;
    gap: 8px;
    font-size: 14px;
    line-height: 1.48;
    color: #38446d;
}

.footer-info strong {
    color: #010719;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: white;
    border: 1px solid #d9deef;
    color: var(--accent);
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(17, 33, 79, .07);
}

.social-links a:last-child {
    font-size: 18px;
}

.footer-app {
    border-top: 1px solid #e0e5f4;
    padding: 26px 0 22px;
}

.footer-app h3 {
    margin-bottom: 8px;
}

.footer-app p {
    margin: 0;
    color: #38446d;
    font-size: 14px;
}

.panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.filters {
    margin: 22px 0;
    padding: 16px;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 12px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--ink);
    background: white;
    font: inherit;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 6px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product {
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-media {
    aspect-ratio: 4/3;
    background: var(--soft);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--line);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.eyebrow,
.meta {
    color: var(--muted);
    font-size: 13px;
}

.product h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

.salt {
    color: #283d7d;
    font-size: 14px;
    line-height: 1.35;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 12px;
    color: var(--muted);
    background: #fbfefe;
}

.card-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}

.content {
    padding: 26px 0 48px;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.table th {
    color: var(--muted);
    font-size: 13px;
    background: #f3faf9;
}

.notice {
    padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    margin: 16px 0;
    color: #9a3412;
}

.pagination {
    margin-top: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.full {
    grid-column: 1 / -1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cat-trio {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .cat-card {
        aspect-ratio: 4/5;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-hero-inner {
        gap: 18px;
    }

    .brand-hero-logo {
        width: 74px;
        height: 74px;
        font-size: 28px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links-grid,
    .footer-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .filters,
    .grid,
    .split,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: min(100% - 20px, 1180px);
    }

    .nav {
        height: auto;
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: row;
    }

    .logo img {
        height: 42px;
    }

    .hero {
        min-height: 540px;
    }

    .hero-slide {
        background-position: center;
    }

    .hero-copy {
        width: min(100% - 20px, 1180px);
        padding: 42px 0 66px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-icon {
        width: 88px;
        height: 74px;
    }

    .brand-logo {
        width: 82px;
        height: 82px;
        font-size: 26px;
    }

    .footer-links-grid,
    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo img {
        height: 62px;
    }

    .filters,
    .grid,
    .split,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .table {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .brand-hero {
        padding: 36px 0 30px;
    }

    .brand-hero-logo {
        width: 60px;
        height: 60px;
        font-size: 22px;
        padding: 8px;
    }
}

@media (max-width: 560px) {
    .cat-trio {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .cat-card {
        aspect-ratio: 4/5;
    }
}

/* -- Quantity Control -- */
.card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    width: 32px;
    height: 38px;

    display: grid;
    place-items: center;
    background: none;
    border: none;
    color: var(--brand);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background .2s;
    min-height: unset;
    padding: 0;
}

.qty-btn:hover {
    background: var(--soft);
}

.qty-control input {
    width: 40px;
    height: 38px;

    border: none;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: var(--ink);
    -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add {
    flex: 1;
    min-width: 110px;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 8px;
    height: 38px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    padding: 0 8px;
    cursor: pointer;
    transition: opacity .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}



.btn-add:hover {
    opacity: 0.9;
}

/* -- About Us Section -- */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--brand);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(31, 77, 154, 0.3);
}

.about-experience strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.about-experience span {
    font-size: 13px;
    opacity: 0.9;
}

.about-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 18px;
}

.about-features {
    margin-top: 32px;
    display: grid;
    gap: 20px;
}

.feat-item {
    display: flex;
    gap: 16px;
}

.feat-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

.feat-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.feat-item p {
    font-size: 14px;
    margin: 0;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* -- Why Choose Us Section -- */
.why-us-section {
    padding: 70px 0;
    background: var(--ink);
    color: white;
}

.why-us-section .section-title {
    color: white;
    margin-bottom: 44px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.why-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f4a4d2;
}

.why-card p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* -- FAQ Section -- */
.faq-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: background .2s;
}

.faq-question:hover {
    background: var(--soft);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    display: none;
}

.faq-item.is-active .faq-answer {
    display: block;
}

.faq-item.is-active .faq-question {
    color: var(--brand);
}

.faq-icon {
    font-size: 18px;
    transition: transform .3s;
}

.faq-item.is-active .faq-icon {
    transform: rotate(45deg);
}

/* -- Mega Menu -- */
.navlinks {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-item-mega {
    position: static;
}

.mega-trigger {
    font-weight: 600;
    padding: 10px 0;
    display: block;
    color: var(--muted);
}

.mega-trigger:hover {
    color: var(--brand);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
}

.mega-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--soft);
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
}

.mega-list li a {
    color: var(--ink);
    font-size: 15px;
    transition: color 0.2s;
    display: block;
}

.mega-list li a:hover {
    color: var(--brand);
}

.mega-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.mega-product-card {
    text-decoration: none;
    display: block;
    transition: transform 0.2s;
}

.mega-product-card:hover {
    transform: translateY(-5px);
}

.mega-product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    background: var(--soft);
    margin-bottom: 10px;
}

.mega-product-info h6 {
    margin: 0;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.3;
}

.mega-product-info span {
    font-size: 12px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .mega-menu {
        display: none;
    }
}

/* -- Quote Cart Menu Item -- */
.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--soft);
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--brand) !important;
    font-weight: 700;
    transition: all 0.2s;
    position: relative;
    margin-left: 10px;
}

.cart-link:hover {
    background: var(--brand);
    color: white !important;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid white;
    font-weight: 800;
    line-height: 1;
}

/* -- Top Strip -- */
.top-strip {
    background: var(--ink);
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

.top-strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts {
    display: flex;
    gap: 20px;
}

.top-contacts a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.top-contacts a:hover {
    color: white;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.top-socials a:hover {
    color: white;
}

@media (max-width: 600px) {
    .top-strip {
        display: none;
    }
}

/* -- Mobile Navigation -- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    padding: 8px;
    cursor: pointer;
    transition: background .2s;
    border-radius: 8px;
    min-height: unset;
}

.menu-toggle:hover {
    background: var(--soft);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .navlinks {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--line);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .navlinks.is-open {
        display: flex;
    }

    .navlinks a {
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid var(--soft);
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
    }

    .nav-item-mega .mega-menu {
        display: none !important;
    }

    .cart-text {
        display: none;
    }

    .cart-link {
        padding: 10px;
        margin: 0;
    }

    .logo img {
        height: 40px !important;
    }
}

/* -- Mobile Menu Refinements -- */
@media (max-width: 900px) {
    .navlinks {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .nav-item-mega {
        width: 100%;
    }

    .mega-trigger {
        width: 100%;
        padding: 15px 0 !important;
        border-bottom: 1px solid var(--soft);
        font-size: 16px !important;
        font-weight: 600 !important;
        color: var(--ink) !important;
        text-align: left !important;
    }

    .navlinks a:last-child {
        border-bottom: none;
    }
}

/* -- Mobile Menu Accordion -- */
@media (max-width: 900px) {
    .nav-item-mega.is-open-mobile .mega-menu {
        display: block !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0px;
        border: none;
        background: transparent;
        border-radius: 8px;
        margin-top: 5px;
    }

    .nav-item-mega.is-open-mobile .mega-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-item-mega.is-open-mobile .mega-col h4 {
        margin-bottom: 0px;
        font-size: 15px;
        margin-top: 0px;
        font-weight: 900;
    }

    .nav-item-mega.is-open-mobile .mega-featured {
        display: none;
    }

    .mega-trigger span {
        transition: transform 0.3s;
        display: inline-block;
    }

    .nav-item-mega.is-open-mobile .mega-trigger span {
        transform: rotate(180deg);
    }
}