:root {
    --primary: #183d32;
    --primary-dark: #102b23;
    --primary-light: #edf2ee;
    --secondary: #6f8f7e;
    --secondary-dark: #4e7060;
    --secondary-light: #e8efea;
    --accent: #b99a64;
    --background: #faf9f5;
    --surface: #fffefa;
    --text: #202a25;
    --muted: #66716b;
    --border: #dedfd7;
    --danger: #a6464f;
    --shadow-sm: 0 1px 0 rgba(24, 61, 50, 0.05);
    --shadow: 0 18px 45px rgba(24, 61, 50, 0.08);
    --radius-sm: 3px;
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--background);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: inherit;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition), transform var(--transition), opacity var(--transition);
}

a:hover {
    color: var(--secondary);
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    color: #fff;
    background: var(--secondary);
}

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    color: #fff;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(255, 193, 7, 0.75);
    outline-offset: 3px;
}

.page-loader {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.page-loader.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.loader-mark {
    display: grid;
    width: 62px;
    height: 62px;
    color: #fff;
    background: var(--secondary);
    border-radius: 18px;
    box-shadow: 0 0 0 0 rgba(15, 138, 62, 0.35);
    place-items: center;
    animation: loaderPulse 1.2s infinite;
}

.loader-mark i {
    font-size: 26px;
}

@keyframes loaderPulse {
    70% { box-shadow: 0 0 0 20px rgba(15, 138, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 138, 62, 0); }
}

.top-strip {
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.88);
    background: var(--primary-dark);
    font-size: 0.82rem;
}

.top-strip a {
    color: #fff;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 45, 116, 0.08);
    box-shadow: 0 6px 25px rgba(10, 45, 116, 0.05);
    backdrop-filter: blur(16px);
}

.site-header .navbar {
    min-height: 82px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
}

.brand-lockup:hover {
    color: var(--primary);
}

.brand-lockup > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-lockup strong {
    font-size: 1.08rem;
    letter-spacing: 0.03em;
}

.brand-lockup small {
    margin-top: 5px;
    color: var(--secondary);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.brand-icon {
    position: relative;
    display: grid;
    width: 49px;
    height: 49px;
    color: #fff;
    background: var(--secondary);
    border-radius: 15px;
    place-items: center;
    box-shadow: 0 8px 18px rgba(15, 138, 62, 0.22);
}

.brand-icon i {
    font-size: 20px;
    transform: rotate(-20deg);
}

.brand-icon b {
    position: absolute;
    right: -4px;
    bottom: -6px;
    display: grid;
    width: 22px;
    height: 22px;
    color: var(--secondary);
    background: #fff;
    border: 2px solid var(--secondary);
    border-radius: 7px;
    font-size: 15px;
    line-height: 1;
    place-items: center;
}

.navbar-nav {
    gap: 2px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 10px 12px !important;
    color: #39445a;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 650;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.navbar-nav .nav-link.active::after {
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    content: "";
}

.navbar-nav .staff-login-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    background: rgba(10, 45, 116, 0.07);
}

.navbar-nav .staff-login-link i {
    color: var(--secondary);
}

.navbar-nav .staff-login-link:hover,
.navbar-nav .staff-login-link:focus {
    color: #fff;
    background: var(--primary);
}

.navbar-nav .staff-login-link:hover i,
.navbar-nav .staff-login-link:focus i {
    color: var(--accent);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.btn {
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 750;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(10, 45, 116, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-success {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 10px 24px rgba(15, 138, 62, 0.18);
}

.btn-success:hover,
.btn-success:focus {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-warning {
    color: var(--primary-dark);
    background: var(--accent);
    border-color: var(--accent);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: rgba(10, 45, 116, 0.35);
}

.btn-outline-primary:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-whatsapp {
    color: #fff;
    background: #18a956;
    border: 1px solid #18a956;
}

.btn-whatsapp:hover {
    color: #fff;
    background: #0c8c45;
    border-color: #0c8c45;
}

.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
}

.btn-link-arrow:hover i {
    transform: translateX(4px);
}

.btn-link-arrow i {
    transition: transform var(--transition);
}

.flash-stack {
    position: fixed;
    z-index: 1040;
    top: 112px;
    right: 0;
    left: 0;
    pointer-events: none;
}

.flash-stack .alert {
    max-width: 760px;
    margin: 0 auto 10px;
    border: 0;
    border-radius: 15px;
    pointer-events: auto;
}

.hero-section {
    position: relative;
    min-height: 730px;
    overflow: hidden;
    padding: 76px 0 94px;
    background:
        linear-gradient(115deg, rgba(239, 248, 244, 0.96), rgba(241, 246, 255, 0.92)),
        radial-gradient(circle at 15% 20%, rgba(15, 138, 62, 0.15), transparent 40%);
}

.hero-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image: linear-gradient(rgba(10, 45, 116, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 45, 116, 0.035) 1px, transparent 1px);
    background-size: 36px 36px;
    content: "";
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.hero-orb-one {
    top: -190px;
    right: -110px;
    width: 480px;
    height: 480px;
    background: rgba(15, 138, 62, 0.1);
}

.hero-orb-two {
    bottom: -210px;
    left: -120px;
    width: 390px;
    height: 390px;
    background: rgba(10, 45, 116, 0.08);
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 14px;
    color: var(--secondary-dark);
    background: #fff;
    border: 1px solid rgba(15, 138, 62, 0.16);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 800;
}

.hero-badge i {
    color: var(--accent);
}

.hero-kicker {
    margin-bottom: 6px;
    color: var(--primary);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-style: italic;
}

.hero-kicker strong {
    color: var(--secondary);
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 5px;
    font-size: clamp(3rem, 6vw, 5.25rem);
    letter-spacing: -0.065em;
}

.hero-copy h1 span {
    display: block;
    color: var(--secondary);
}

.hero-copy h2 {
    display: inline-block;
    margin-bottom: 21px;
    padding: 7px 15px;
    color: #fff;
    background: var(--primary);
    border-radius: 9px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.01em;
}

.hero-lead {
    max-width: 670px;
    margin-bottom: 27px;
    color: #4c5b70;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 34px;
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #556275;
    font-size: 0.85rem;
}

.hero-trust i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.hero-trust strong {
    display: block;
    color: var(--primary);
}

.hero-visual {
    position: relative;
    z-index: 2;
    max-width: 460px;
    margin-left: auto;
}

.hero-poster-shell {
    position: relative;
    width: 82%;
    margin-left: auto;
    overflow: hidden;
    background: #fff;
    border: 8px solid #fff;
    border-radius: 30px;
    box-shadow: 0 32px 75px rgba(10, 45, 116, 0.22);
    transform: rotate(2.5deg);
}

.hero-poster-shell::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 65%, rgba(10, 45, 116, 0.08));
    pointer-events: none;
    content: "";
}

.hero-poster-shell img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 2.85;
    object-fit: cover;
    object-position: top;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(10, 45, 116, 0.08);
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card .icon {
    display: grid;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--secondary);
    border-radius: 12px;
    place-items: center;
}

.hero-float-card strong,
.hero-float-card small {
    display: block;
    white-space: nowrap;
}

.hero-float-card strong {
    color: var(--primary);
    font-size: 0.86rem;
}

.hero-float-card small {
    color: var(--muted);
    font-size: 0.72rem;
}

.delivery-card {
    top: 13%;
    left: -10%;
}

.rating-card {
    right: -4%;
    bottom: 13%;
    animation-delay: -2s;
}

.rating-card .icon {
    color: var(--primary);
    background: var(--accent);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.search-panel-section {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.medicine-search-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    align-items: center;
    gap: 30px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid rgba(10, 45, 116, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.search-panel-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-panel-heading h2 {
    margin-bottom: 3px;
    font-size: 1.35rem;
}

.search-panel-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.search-icon {
    display: grid;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    color: #fff;
    background: var(--primary);
    border-radius: 16px;
    place-items: center;
}

.medicine-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.form-control,
.form-select,
.input-group-text {
    min-height: 50px;
    color: var(--text);
    background-color: #fff;
    border-color: #dce3ed;
    border-radius: 11px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15, 138, 62, 0.62);
    box-shadow: 0 0 0 0.25rem rgba(15, 138, 62, 0.12);
}

.input-group > .form-control {
    border-radius: 0 11px 11px 0;
}

.input-group-text {
    min-height: auto;
    color: var(--primary);
    background: #f3f6fb;
    border-radius: 11px 0 0 11px;
    font-weight: 700;
}

.live-search-results {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    max-height: 340px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.live-search-results.is-open {
    display: block;
}

.live-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 13px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.live-search-item:last-child {
    border-bottom: 0;
}

.live-search-item:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.live-search-item img {
    width: 42px;
    height: 46px;
    object-fit: cover;
    border-radius: 8px;
}

.live-search-item strong,
.live-search-item small {
    display: block;
}

.live-search-item small {
    color: var(--muted);
}

.live-search-empty {
    padding: 16px;
    color: var(--muted);
    text-align: center;
}

.section-padding {
    padding: 90px 0;
}

.bg-soft {
    background: #f0f5f9;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 28px;
}

.section-heading.text-center {
    max-width: 740px;
}

.section-heading h2 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 3.05rem);
}

.section-heading p {
    color: var(--muted);
    font-size: 1.04rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--secondary);
    font-size: 0.79rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 25px;
    height: 2px;
    background: currentColor;
    content: "";
}

.highlight-card,
.value-card {
    position: relative;
    height: 100%;
    padding: 27px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 45, 116, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.highlight-card:hover,
.value-card:hover {
    border-color: rgba(15, 138, 62, 0.22);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.highlight-card h3,
.value-card h2 {
    margin: 17px 0 8px;
    font-size: 1.2rem;
}

.highlight-card p,
.value-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.feature-icon {
    display: grid;
    width: 56px;
    height: 56px;
    border-radius: 17px;
    font-size: 1.35rem;
    place-items: center;
}

.feature-icon.green {
    color: var(--secondary);
    background: var(--secondary-light);
}

.feature-icon.blue {
    color: var(--primary);
    background: var(--primary-light);
}

.feature-icon.yellow {
    color: #bd8000;
    background: #fff7d7;
}

.feature-icon.pink {
    color: #d92d68;
    background: #fff0f5;
}

.feature-icon.whatsapp {
    color: #0c8c45;
    background: #e8f8ef;
}

.check-grid {
    display: grid;
    gap: 14px;
}

.check-grid > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #dfe9e4;
    border-radius: 13px;
}

.check-grid i {
    margin-top: 4px;
    color: var(--secondary);
}

.check-grid span {
    color: var(--muted);
    font-size: 0.92rem;
}

.check-grid strong {
    color: var(--text);
}

.why-visual {
    position: relative;
    max-width: 540px;
    margin-left: auto;
}

.why-visual > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 10px solid #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: -25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    color: #fff;
    background: var(--primary);
    border: 6px solid #f0f5f9;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.experience-badge strong,
.experience-badge .counter {
    font-size: 2.25rem;
    font-weight: 850;
}

.experience-badge small {
    line-height: 1.25;
}

.category-card {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 21px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
    color: var(--text);
    border-color: rgba(15, 138, 62, 0.28);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.category-image {
    height: 170px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.category-card:hover .category-image img {
    transform: scale(1.06);
}

.category-card > div:last-child {
    padding: 21px;
}

.category-icon {
    display: grid;
    width: 44px;
    height: 44px;
    margin-top: -42px;
    margin-bottom: 13px;
    color: #fff;
    background: var(--secondary);
    border: 5px solid #fff;
    border-radius: 14px;
    box-sizing: content-box;
    place-items: center;
}

.category-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.category-card p {
    min-height: 66px;
    color: var(--muted);
    font-size: 0.84rem;
}

.text-link {
    color: var(--primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.text-link i {
    margin-left: 5px;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.process-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle at 20% 20%, #fff 0, transparent 25%), radial-gradient(circle at 85% 80%, var(--secondary) 0, transparent 28%);
    content: "";
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.process-step {
    position: relative;
    padding: 27px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}

.process-step::after {
    position: absolute;
    top: 53px;
    right: -19px;
    color: rgba(255, 255, 255, 0.35);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f061";
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(255, 255, 255, 0.14);
    font-size: 2.6rem;
    font-weight: 900;
}

.step-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 21px;
    color: var(--primary);
    background: var(--accent);
    border-radius: 18px;
    font-size: 1.4rem;
    place-items: center;
}

.process-step h3 {
    color: #fff;
    font-size: 1.18rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.quote-mark {
    position: absolute;
    top: 22px;
    right: 25px;
    color: var(--primary-light);
    font-size: 2.8rem;
}

.stars {
    position: relative;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.85rem;
}

.testimonial-card blockquote {
    position: relative;
    min-height: 88px;
    margin-bottom: 22px;
    color: #49566a;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-person > span {
    display: grid;
    width: 43px;
    height: 43px;
    color: #fff;
    background: var(--secondary);
    border-radius: 50%;
    font-weight: 800;
    place-items: center;
}

.testimonial-person strong,
.testimonial-person small {
    display: block;
}

.testimonial-person strong {
    color: var(--primary);
    font-size: 0.93rem;
}

.testimonial-person small {
    color: var(--muted);
    font-size: 0.78rem;
}

.faq-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 15px !important;
}

.faq-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--primary);
    background: #fff;
    box-shadow: none;
    font-weight: 750;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary-dark);
    background: var(--secondary-light);
}

.faq-accordion .accordion-body {
    padding: 18px 21px 22px;
    color: var(--muted);
}

.map-section {
    padding: 70px 0 95px;
    background: linear-gradient(#f0f5f9 50%, #fff 50%);
}

.map-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: 410px;
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.map-details {
    padding: 45px;
}

.map-details h2 {
    font-size: 2rem;
}

.map-details p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
}

.map-details p i {
    margin-top: 5px;
    color: var(--secondary);
}

.map-embed iframe,
.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        linear-gradient(115deg, rgba(6, 30, 80, 0.98), rgba(10, 45, 116, 0.91)),
        url("../images/pharmacy-catalog-sheet.jpg") center / cover;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(circle at 80% 20%, var(--secondary) 0, transparent 30%), linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    content: "";
}

.page-hero.compact {
    padding: 75px 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.page-hero h1 {
    margin-bottom: 13px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.35rem);
}

.page-hero p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.page-hero nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
}

.page-hero nav a {
    color: #fff;
}

.page-hero nav i {
    font-size: 0.66rem;
}

.about-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    align-items: end;
    gap: 18px;
    max-width: 600px;
}

.about-main-image,
.about-secondary-image {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.about-main-image {
    height: 550px;
    object-position: top;
}

.about-secondary-image {
    height: 380px;
}

.about-image-label {
    position: absolute;
    right: 18px;
    bottom: -28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    color: #fff;
    background: var(--secondary);
    border: 6px solid #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-image-label i {
    font-size: 1.8rem;
}

.about-image-label strong,
.about-image-label span {
    display: block;
}

.about-image-label span {
    line-height: 1.2;
}

.about-promise-list {
    display: grid;
    gap: 15px;
}

.about-promise-list > div {
    display: flex;
    gap: 13px;
}

.about-promise-list > div > span {
    display: grid;
    flex: 0 0 auto;
    width: 35px;
    height: 35px;
    color: #fff;
    background: var(--secondary);
    border-radius: 50%;
    place-items: center;
}

.about-promise-list p {
    color: var(--muted);
}

.about-promise-list strong {
    display: block;
    color: var(--primary);
}

.value-card {
    padding-top: 34px;
}

.value-number {
    position: absolute;
    top: 16px;
    right: 20px;
    color: #edf1f7;
    font-size: 3.5rem;
    font-weight: 900;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trust-metrics > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.trust-metrics > div:last-child {
    border-right: 0;
}

.trust-metrics i {
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 1.8rem;
}

.trust-metrics strong {
    color: var(--primary);
    font-size: 2.6rem;
    line-height: 1;
}

.trust-metrics span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.85rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    margin: 0;
    overflow: hidden;
    border-radius: 21px;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
    grid-column: span 5;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(4) {
    grid-column: span 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    color: #fff;
    background: rgba(6, 30, 80, 0.82);
    border-radius: 11px;
    font-size: 0.86rem;
    font-weight: 750;
    backdrop-filter: blur(10px);
}

.service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    display: grid;
    width: 51px;
    height: 51px;
    margin: 18px 0 13px 22px;
    color: #fff;
    background: var(--secondary);
    border-radius: 15px;
    place-items: center;
}

.service-card h2,
.service-card > p,
.service-card > a {
    margin-right: 22px;
    margin-left: 22px;
}

.service-card h2 {
    margin-bottom: 9px;
    font-size: 1.2rem;
}

.service-card > p {
    min-height: 116px;
    color: var(--muted);
    font-size: 0.89rem;
}

.service-card > a {
    display: inline-block;
    margin-bottom: 23px;
    color: var(--primary);
    font-weight: 800;
}

.service-card > a i {
    margin-left: 6px;
}

.fulfilment-panel {
    padding: 48px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.fulfilment-panel h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.fulfilment-options {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.fulfilment-options > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px;
    background: var(--background);
    border-radius: 13px;
}

.fulfilment-options i {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--secondary);
    background: var(--secondary-light);
    border-radius: 12px;
    place-items: center;
}

.fulfilment-options strong,
.fulfilment-options span {
    display: block;
}

.fulfilment-options span {
    color: var(--muted);
    font-size: 0.87rem;
}

.notice-card {
    padding: 38px;
    color: rgba(255, 255, 255, 0.75);
    background: var(--primary);
    border-radius: var(--radius);
}

.notice-card > i {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 3rem;
}

.notice-card h3 {
    color: #fff;
    font-size: 1.7rem;
}

.catalog-toolbar {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-label {
    color: #304059;
    font-size: 0.88rem;
    font-weight: 750;
}

.catalog-summary {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 25px 0 18px;
    color: var(--muted);
}

.catalog-summary p {
    margin: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 21px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    border-color: rgba(15, 138, 62, 0.22);
    box-shadow: var(--shadow);
    transform: translateY(-7px);
}

.product-image {
    position: relative;
    height: 225px;
    overflow: hidden;
    background: #eff4fb;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.055);
}

.rx-label {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    color: #fff;
    background: var(--danger);
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 800;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.product-category {
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-body h2 {
    min-height: 46px;
    margin: 7px 0 2px;
    font-size: 1.08rem;
}

.product-brand {
    margin-bottom: 8px !important;
    color: var(--primary) !important;
    font-size: 0.8rem !important;
    font-weight: 700;
}

.product-body > p {
    min-height: 64px;
    color: var(--muted);
    font-size: 0.82rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 14px 0 17px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.availability {
    font-size: 0.79rem;
    font-weight: 800;
}

.availability i {
    margin-right: 7px;
    font-size: 0.54rem;
}

.availability.success { color: var(--secondary); }
.availability.warning { color: #b27600; }
.availability.danger { color: var(--danger); }

.public-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 8px;
    color: var(--secondary);
    background: #eaf8ef;
    border-radius: 8px;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    white-space: nowrap;
}

.public-stock.low {
    color: #926100;
    background: #fff6d6;
}

.public-stock.empty {
    color: var(--danger);
    background: #fff0f3;
}

.product-alternatives {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 11px;
}

.product-alternatives summary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 11px;
    cursor: pointer;
    color: var(--primary);
    background: #f7f9fd;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 800;
    list-style: none;
}

.product-alternatives summary::-webkit-details-marker {
    display: none;
}

.product-alternatives summary::after {
    margin-left: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f078";
    transition: transform var(--transition);
}

.product-alternatives[open] summary::after {
    transform: rotate(180deg);
}

.product-alternatives > div {
    padding: 6px 10px 10px;
}

.product-alternatives a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 2px;
    border-bottom: 1px solid var(--border);
}

.product-alternatives a strong,
.product-alternatives a small {
    display: block;
}

.product-alternatives a strong {
    color: var(--primary);
    font-size: 0.75rem;
}

.product-alternatives a small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
}

.product-alternatives a em {
    flex: 0 0 auto;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 800;
}

.product-alternatives a em.success {
    color: var(--secondary);
    background: #eaf8ef;
}

.product-alternatives a em.warning {
    color: #926100;
    background: #fff6d6;
}

.product-alternatives a em.danger {
    color: var(--danger);
    background: #fff0f3;
}

.product-alternatives > div > p {
    display: flex;
    gap: 6px;
    min-height: 0;
    margin: 8px 0 0;
    color: #7b5b00;
    font-size: 0.66rem;
    line-height: 1.4;
}

.product-alternatives > div > p i {
    margin-top: 2px;
    color: var(--accent-dark);
}

.alternative-empty {
    margin-bottom: 15px;
    padding: 9px 10px;
    color: var(--muted);
    background: #f8fafc;
    border-radius: 9px;
    font-size: 0.72rem;
}

.alternative-empty i {
    margin-right: 6px;
    color: var(--primary);
}

.product-request-button {
    margin-top: auto;
}

.empty-state {
    padding: 70px 25px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.empty-state > i {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 3rem;
}

.empty-state h2 {
    font-size: 1.7rem;
}

.empty-state p {
    max-width: 560px;
    margin: 0 auto 20px;
    color: var(--muted);
}

.catalog-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
    padding: 18px;
    color: #5f5633;
    background: #fff9df;
    border: 1px solid #f5e5a1;
    border-radius: 14px;
}

.catalog-disclaimer i {
    margin-top: 4px;
    color: #b47b00;
}

.catalog-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
}

.form-page {
    background: linear-gradient(135deg, #f8fafc, #eff5f3);
}

.form-card,
.sidebar-card {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.form-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--border);
}

.form-card-heading > span {
    display: grid;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    color: #fff;
    background: var(--primary);
    border-radius: 15px;
    font-size: 1.3rem;
    place-items: center;
}

.form-card-heading h2 {
    margin-bottom: 3px;
    font-size: 1.45rem;
}

.form-card-heading p {
    color: var(--muted);
    font-size: 0.88rem;
}

.choice-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.choice-card {
    position: relative;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.choice-card > span {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2px 11px;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 14px;
    transition: border-color var(--transition), background var(--transition);
}

.choice-card i {
    grid-row: span 2;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 12px;
    place-items: center;
}

.choice-card strong {
    color: var(--primary);
}

.choice-card small {
    color: var(--muted);
}

.choice-card input:checked + span {
    background: var(--secondary-light);
    border-color: var(--secondary);
}

.choice-card input:focus-visible + span {
    outline: 3px solid rgba(255, 193, 7, 0.65);
}

.choice-card input:checked + span i {
    color: #fff;
    background: var(--secondary);
}

.upload-zone {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    cursor: pointer;
    text-align: center;
    background: #f7fafc;
    border: 2px dashed #b9c6d7;
    border-radius: 18px;
    transition: background var(--transition), border-color var(--transition);
}

.upload-zone:hover,
.upload-zone.is-dragging {
    background: var(--secondary-light);
    border-color: var(--secondary);
}

.upload-zone input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.upload-zone > i {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 2.7rem;
}

.upload-zone strong {
    color: var(--primary);
}

.upload-zone span {
    color: var(--muted);
    font-size: 0.83rem;
}

.upload-zone em {
    margin-top: 10px;
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 750;
}

.consent-check {
    padding: 14px 14px 14px 42px;
    background: #f6f8fb;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.consent-check .form-check-input {
    margin-left: -26px;
}

.button-spinner {
    display: none;
}

button.is-loading .button-label {
    visibility: hidden;
}

button.is-loading .button-spinner {
    position: absolute;
    top: calc(50% - 0.5rem);
    left: calc(50% - 0.5rem);
    display: inline-block;
}

button.is-loading {
    position: relative;
}

.sidebar-card {
    position: sticky;
    top: 125px;
}

.sidebar-card h2 {
    margin: 17px 0;
    font-size: 1.5rem;
}

.sidebar-steps,
.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-steps {
    display: grid;
    gap: 15px;
}

.sidebar-steps li {
    display: flex;
    gap: 11px;
}

.sidebar-steps li > span {
    display: grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--primary);
    border-radius: 9px;
    font-size: 0.8rem;
    font-weight: 800;
    place-items: center;
}

.sidebar-steps p {
    color: var(--muted);
    font-size: 0.84rem;
}

.sidebar-steps strong {
    display: block;
    color: var(--primary);
}

.privacy-note {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    padding: 13px;
    color: #635b39;
    background: #fff9df;
    border-radius: 12px;
}

.privacy-note i {
    margin-top: 4px;
    color: #b47b00;
}

.privacy-note p {
    font-size: 0.8rem;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 17px;
    color: #fff;
    background: #0c8c45;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.support-card > i {
    font-size: 2rem;
}

.support-card div {
    flex: 1;
}

.support-card strong,
.support-card span {
    display: block;
}

.support-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
}

.support-card a {
    color: #fff;
}

.info-list {
    display: grid;
    gap: 12px;
    margin-bottom: 23px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 0.88rem;
}

.info-list i {
    margin-top: 4px;
    color: var(--secondary);
}

.contact-cards-section {
    position: relative;
    z-index: 3;
    margin-top: -30px;
}

.contact-info-card {
    display: block;
    height: 100%;
    padding: 24px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

a.contact-info-card:hover {
    color: var(--text);
    transform: translateY(-6px);
}

.contact-info-card small,
.contact-info-card strong {
    display: block;
}

.contact-info-card small {
    margin-top: 15px;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.contact-info-card strong {
    margin-top: 3px;
    color: var(--primary);
    font-size: 1.05rem;
}

.contact-info-card p {
    color: var(--muted);
    font-size: 0.87rem;
}

.contact-map-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-map-card iframe {
    min-height: 360px;
}

.contact-map-details {
    padding: 28px;
}

.contact-map-details h2 {
    font-size: 1.4rem;
}

.contact-map-details p {
    display: flex;
    gap: 9px;
    color: var(--muted);
}

.contact-map-details i {
    margin-top: 4px;
    color: var(--secondary);
}

.faq-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 27px;
}

.faq-filter button {
    padding: 9px 16px;
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 700;
}

.faq-filter button:hover,
.faq-filter button.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.faq-page-accordion {
    max-width: 930px;
}

.faq-page-accordion .accordion-button {
    flex-wrap: wrap;
    gap: 7px 12px;
}

.faq-category-label {
    padding: 4px 8px;
    color: var(--secondary-dark);
    background: var(--secondary-light);
    border-radius: 7px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-support-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    max-width: 930px;
    margin-top: 32px;
    padding: 25px;
    color: rgba(255, 255, 255, 0.75);
    background: var(--primary);
    border-radius: var(--radius);
}

.faq-support-card > span {
    display: grid;
    width: 55px;
    height: 55px;
    color: var(--primary);
    background: var(--accent);
    border-radius: 16px;
    font-size: 1.35rem;
    place-items: center;
}

.faq-support-card h2 {
    margin-bottom: 2px;
    color: #fff;
    font-size: 1.3rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
    gap: 50px;
}

.legal-nav {
    position: sticky;
    top: 125px;
    display: grid;
    gap: 8px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}

.legal-nav strong {
    margin-bottom: 5px;
    color: var(--primary);
}

.legal-nav a {
    padding: 5px 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.legal-nav a:hover {
    color: var(--secondary);
}

.legal-content {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.legal-content h2 {
    margin-top: 32px;
    font-size: 1.35rem;
}

.legal-content h2:first-of-type {
    margin-top: 12px;
}

.legal-content p {
    color: #556275;
}

.legal-updated {
    display: inline-block;
    padding: 6px 11px;
    color: var(--primary) !important;
    background: var(--primary-light);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-band {
    padding: 55px 0;
    background: linear-gradient(#fff 50%, var(--primary-dark) 50%);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 40px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--secondary);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(15, 138, 62, 0.25);
}

.cta-band-inner h2 {
    margin-bottom: 7px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.site-footer {
    padding: 70px 0 24px;
    color: rgba(255, 255, 255, 0.65);
    background: var(--primary-dark);
}

.footer-brand {
    color: #fff;
}

.footer-brand:hover {
    color: #fff;
}

.site-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 19px;
}

.trust-row span {
    padding: 7px 10px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    font-size: 0.75rem;
}

.trust-row i {
    margin-right: 5px;
    color: var(--accent);
}

.footer-links,
.contact-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.contact-list a {
    color: rgba(255, 255, 255, 0.67);
}

.footer-links a:hover,
.contact-list a:hover {
    color: #fff;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    width: 18px;
    margin-top: 5px;
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
}

.floating-actions {
    position: fixed;
    z-index: 100;
    right: 17px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 122px;
    padding: 11px 14px;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(13, 31, 59, 0.23);
    font-size: 0.82rem;
    font-weight: 800;
}

.float-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.float-whatsapp { background: #18a956; }
.float-call { background: var(--primary); }
.float-btn i { font-size: 1.05rem; }

.back-to-top {
    position: fixed;
    z-index: 99;
    right: 22px;
    bottom: 142px;
    display: grid;
    width: 41px;
    height: 41px;
    visibility: hidden;
    color: var(--primary);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    place-items: center;
}

.back-to-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.maintenance-body {
    min-height: 100vh;
    background: var(--primary-dark);
}

.maintenance-page {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    padding: 40px 20px;
    background:
        linear-gradient(135deg, rgba(6, 30, 80, 0.97), rgba(10, 45, 116, 0.91)),
        url("../images/pharmacy-catalog-sheet.jpg") center / cover;
    place-items: center;
}

.maintenance-page::before {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
}

.maintenance-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.maintenance-orb-one {
    top: -160px;
    right: -120px;
    width: 430px;
    height: 430px;
    background: rgba(15, 138, 62, 0.28);
}

.maintenance-orb-two {
    bottom: -180px;
    left: -130px;
    width: 380px;
    height: 380px;
    background: rgba(255, 193, 7, 0.14);
}

.maintenance-card {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    padding: clamp(30px, 6vw, 58px);
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.maintenance-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 28px;
    text-align: left;
}

.maintenance-brand > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.maintenance-brand strong {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.04em;
}

.maintenance-brand small {
    margin-top: 5px;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.maintenance-illustration {
    position: relative;
    width: 150px;
    height: 118px;
    margin: 0 auto 20px;
}

.maintenance-cross {
    position: absolute;
    top: 0;
    left: calc(50% - 48px);
    display: grid;
    width: 96px;
    height: 96px;
    color: #fff;
    background: var(--secondary);
    border-radius: 28px;
    box-shadow: 0 16px 32px rgba(15, 138, 62, 0.24);
    place-items: center;
}

.maintenance-cross i {
    font-size: 39px;
}

.maintenance-tool {
    position: absolute;
    display: grid;
    width: 42px;
    height: 42px;
    border: 4px solid #fff;
    border-radius: 13px;
    box-sizing: content-box;
    box-shadow: var(--shadow-sm);
    place-items: center;
}

.tool-one {
    right: 4px;
    bottom: 0;
    color: var(--primary);
    background: var(--accent);
}

.tool-two {
    bottom: 0;
    left: 4px;
    color: #fff;
    background: var(--primary);
}

.maintenance-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    padding: 7px 11px;
    color: var(--secondary-dark);
    background: var(--secondary-light);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.maintenance-card h1 {
    margin-bottom: 15px;
    font-size: clamp(2.35rem, 7vw, 4.5rem);
}

.maintenance-card > p {
    max-width: 590px;
    margin: 0 auto 21px;
    color: var(--muted);
    font-size: 1rem;
}

.maintenance-return {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 9px 13px;
    color: #7d5900;
    background: #fff7d8;
    border: 1px solid #f4df8b;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 750;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.maintenance-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.82rem;
}

.maintenance-location i {
    color: var(--secondary);
}

.maintenance-footnote {
    display: block;
    margin-top: 9px;
    color: #98a2b3;
    font-size: 0.7rem;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .site-header .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 15px;
        box-shadow: var(--shadow-sm);
    }

    .navbar-nav .staff-login-link {
        display: flex;
        margin-top: 5px;
    }

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

    .process-step:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-visual {
        max-width: 520px;
        margin: 25px auto 0;
    }

    .hero-poster-shell {
        width: 70%;
        margin: auto;
    }

    .medicine-search-panel {
        grid-template-columns: 1fr;
    }

    .map-card {
        grid-template-columns: 1fr;
    }

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

    .trust-metrics > div:nth-child(2) {
        border-right: 0;
    }

    .trust-metrics > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: span 6;
    }

    .sidebar-card {
        position: static;
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .legal-nav {
        position: static;
        grid-template-columns: repeat(3, 1fr);
    }

    .legal-nav strong {
        grid-column: 1 / -1;
    }

    .cta-band-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .top-strip .container {
        justify-content: center !important;
        text-align: center;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .brand-icon {
        width: 43px;
        height: 43px;
    }

    .brand-lockup strong {
        font-size: 0.93rem;
    }

    .brand-lockup small {
        font-size: 0.7rem;
    }

    .hero-section {
        min-height: auto;
        padding: 48px 0 88px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy h1 {
        font-size: clamp(2.75rem, 13vw, 4.2rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-actions .btn:not(.btn-link-arrow) {
        flex: 1 1 calc(50% - 12px);
    }

    .hero-poster-shell {
        width: 75%;
    }

    .hero-float-card {
        padding: 9px 11px;
    }

    .hero-float-card .icon {
        width: 35px;
        height: 35px;
    }

    .medicine-search-panel {
        padding: 22px;
    }

    .medicine-search-form {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 68px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .page-hero,
    .page-hero.compact {
        padding: 62px 0;
    }

    .about-image-grid {
        grid-template-columns: 1fr 0.72fr;
    }

    .about-main-image {
        height: 430px;
    }

    .about-secondary-image {
        height: 280px;
    }

    .gallery-grid {
        grid-auto-rows: 210px;
    }

    .fulfilment-panel,
    .form-card,
    .sidebar-card,
    .legal-content {
        padding: 25px;
    }

    .choice-cards {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        grid-template-columns: auto 1fr;
    }

    .faq-support-card .btn {
        grid-column: 1 / -1;
    }

    .legal-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-band-inner {
        padding: 29px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 3px;
    }

    .float-btn {
        min-width: 48px;
        width: 48px;
        height: 48px;
        justify-content: center;
        padding: 0;
    }

    .float-btn span {
        display: none;
    }

    .back-to-top {
        right: 21px;
        bottom: 132px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-actions .btn:not(.btn-link-arrow) {
        flex-basis: 100%;
    }

    .hero-visual {
        margin-top: 35px;
    }

    .hero-poster-shell {
        width: 78%;
    }

    .delivery-card {
        left: 0;
    }

    .rating-card {
        right: 0;
    }

    .hero-float-card strong {
        font-size: 0.75rem;
    }

    .hero-float-card small {
        display: none;
    }

    .search-panel-heading {
        align-items: flex-start;
    }

    .search-icon {
        width: 45px;
        height: 45px;
    }

    .map-details {
        padding: 28px;
    }

    .trust-metrics {
        grid-template-columns: 1fr;
    }

    .trust-metrics > div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-metrics > div:last-child {
        border-bottom: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: auto;
    }

    .catalog-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-card-heading {
        align-items: flex-start;
    }

    .legal-nav {
        grid-template-columns: 1fr;
    }

    .legal-content {
        padding: 21px;
    }

    .cta-band-inner .btn {
        width: 100%;
    }

    .maintenance-page {
        padding: 18px 12px;
    }

    .maintenance-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .maintenance-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Minimal editorial pharmacy theme
   Inspired by the calm spacing and product focus of premium skincare sites. */

body {
    background: var(--background);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.005em;
}

h1,
h2,
h3,
h4,
.brand-lockup strong,
.brand-lockup small {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.top-strip {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.76);
    background: var(--primary-dark);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.site-header {
    background: rgba(250, 249, 245, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
}

.site-header .navbar {
    min-height: 88px;
}

.brand-lockup {
    gap: 13px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: none;
}

.brand-icon b {
    right: -6px;
    bottom: -5px;
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 50%;
}

.brand-lockup strong {
    font-size: 1.04rem;
    letter-spacing: 0.08em;
}

.brand-lockup small {
    margin-top: 6px;
    color: var(--secondary-dark);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
}

.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    padding: 10px 9px !important;
    color: #425048;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: transparent;
}

.navbar-nav .nav-link.active::after {
    right: 9px;
    bottom: 4px;
    left: 9px;
    height: 1px;
    background: var(--primary);
}

.navbar-nav .staff-login-link {
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--border);
}

.navbar-nav .staff-login-link:hover,
.navbar-nav .staff-login-link:focus {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn {
    min-height: 46px;
    padding: 11px 20px;
    border-radius: 2px;
    box-shadow: none !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.btn:hover {
    transform: none;
}

.btn-primary,
.btn-success,
.btn-whatsapp {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus,
.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

.btn-warning {
    color: var(--primary-dark);
    background: #d8c7a5;
    border-color: #d8c7a5;
}

.btn-outline-primary {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}

.hero-section {
    min-height: auto;
    padding: 105px 0 115px;
    background: #f1efe8;
}

.hero-section::before,
.hero-orb {
    display: none;
}

.hero-section .row {
    --bs-gutter-x: 6rem;
}

.hero-badge {
    margin-bottom: 28px;
    padding: 0;
    color: var(--secondary-dark);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-kicker {
    margin-bottom: 12px;
    color: var(--primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    font-style: normal;
    letter-spacing: 0.03em;
}

.hero-copy h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--primary-dark);
    font-size: clamp(3.35rem, 5.4vw, 5.9rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.hero-copy h1 span {
    margin-top: 7px;
    color: var(--secondary-dark);
}

.hero-copy h2 {
    margin-bottom: 25px;
    padding: 0 0 10px;
    color: var(--primary);
    background: transparent;
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    gap: 10px;
}

.hero-actions .btn-link-arrow {
    min-height: auto;
    padding: 8px 4px;
    font-size: 0.75rem;
}

.hero-trust {
    gap: 18px 30px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-trust > div {
    font-size: 0.75rem;
}

.hero-visual {
    max-width: 430px;
}

.hero-poster-shell {
    width: 90%;
    overflow: hidden;
    background: #e6e8e1;
    border: 1px solid rgba(24, 61, 50, 0.12);
    border-radius: 2px;
    box-shadow: none;
    transform: none;
}

.hero-poster-shell::after,
.hero-float-card {
    display: none;
}

.hero-poster-shell img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 42%;
    filter: saturate(0.82) contrast(0.96);
}

.search-panel-section {
    margin-top: 0;
    padding: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.medicine-search-panel {
    gap: 50px;
    padding: 38px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.search-icon {
    width: 46px;
    height: 46px;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 50%;
}

.search-panel-heading h2 {
    font-size: 1.35rem;
}

.form-control,
.form-select,
.input-group-text {
    min-height: 52px;
    background-color: var(--surface);
    border-color: var(--border);
    border-radius: 2px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-dark);
    box-shadow: 0 0 0 2px rgba(111, 143, 126, 0.12);
}

.input-group > .form-control {
    border-radius: 0 2px 2px 0;
}

.input-group-text {
    background: #f2f0ea;
    border-radius: 2px 0 0 2px;
}

.section-padding {
    padding: 108px 0;
}

.bg-soft,
.form-page {
    background: #f1efe8;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading.text-center {
    max-width: 780px;
}

.section-heading h2 {
    margin-bottom: 19px;
    font-size: clamp(2.35rem, 4.3vw, 4rem);
    font-weight: 400;
    line-height: 1.06;
}

.section-heading p {
    font-size: 0.98rem;
    line-height: 1.8;
}

.eyebrow {
    margin-bottom: 17px;
    color: var(--secondary-dark);
    font-size: 0.67rem;
    letter-spacing: 0.18em;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
}

.highlight-card,
.value-card,
.service-card,
.category-card,
.testimonial-card,
.product-card,
.contact-info-card,
.contact-map-card,
.form-card,
.sidebar-card,
.legal-content,
.legal-nav,
.catalog-toolbar,
.fulfilment-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
}

.highlight-card,
.value-card {
    padding: 32px 28px;
}

.highlight-card:hover,
.value-card:hover,
.service-card:hover,
.category-card:hover,
.product-card:hover,
.testimonial-card:hover,
a.contact-info-card:hover {
    border-color: var(--secondary);
    box-shadow: none;
    transform: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1rem;
}

.check-grid > div {
    padding: 16px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
}

.why-visual > img,
.about-main-image,
.about-secondary-image {
    border: 0;
    border-radius: 2px;
    box-shadow: none;
    filter: saturate(0.8);
}

.experience-badge,
.about-image-label {
    border: 0;
    border-radius: 2px;
    box-shadow: none;
}

.category-card,
.service-card,
.product-card {
    border-radius: 3px;
}

.category-image,
.service-image,
.product-image {
    background: #efeee8;
}

.category-image img,
.service-image img,
.product-image img {
    filter: saturate(0.76) contrast(0.97);
}

.category-card:hover .category-image img,
.service-card:hover .service-image img,
.product-card:hover .product-image img {
    transform: scale(1.015);
}

.category-icon,
.service-icon {
    width: 42px;
    height: 42px;
    margin: 18px 0 14px 21px;
    color: var(--primary);
    background: var(--secondary-light);
    border: 0;
    border-radius: 50%;
    box-sizing: border-box;
}

.service-card > p,
.category-card p {
    color: var(--muted);
}

.process-section {
    background: var(--primary-dark);
}

.process-section::before {
    display: none;
}

.process-step {
    padding: 30px 24px;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    backdrop-filter: none;
}

.step-icon {
    width: 48px;
    height: 48px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
}

.step-number {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.faq-accordion .accordion-item {
    border-radius: 2px !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--secondary-light);
}

.map-section {
    background: #f1efe8;
}

.map-card {
    border: 1px solid var(--border);
    border-radius: 3px;
    box-shadow: none;
}

.page-hero,
.page-hero.compact {
    padding: 96px 0;
    background: #f1efe8;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    display: none;
}

.page-hero-content {
    max-width: 900px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 400;
}

.page-hero p {
    color: var(--muted);
}

.page-hero nav {
    color: var(--muted);
}

.page-hero nav a {
    color: var(--primary);
}

.page-hero .text-warning {
    color: var(--secondary-dark) !important;
}

.service-card > a,
.text-link {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.notice-card,
.faq-support-card {
    background: var(--primary-dark);
    border-radius: 3px;
}

.fulfilment-options > div,
.choice-card > span,
.consent-check,
.privacy-note,
.alternative-empty {
    border-radius: 2px;
}

.catalog-toolbar {
    padding: 30px;
}

.product-image {
    height: 285px;
}

.product-body {
    padding: 24px;
}

.product-category {
    color: var(--secondary-dark);
    font-size: 0.65rem;
    letter-spacing: 0.13em;
}

.product-body h2 {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 400;
}

.product-meta {
    padding-top: 15px;
}

.rx-label,
.public-stock,
.product-alternatives,
.product-alternatives summary {
    border-radius: 2px;
}

.product-alternatives summary {
    background: #f2f1eb;
}

.form-card,
.sidebar-card {
    padding: 38px;
}

.form-card-heading > span,
.choice-card i,
.sidebar-steps li > span {
    border-radius: 50%;
}

.upload-zone {
    background: #f5f3ed;
    border-color: #c9cec6;
    border-radius: 3px;
}

.support-card {
    background: var(--primary);
    border-radius: 2px;
    box-shadow: none;
}

.cta-band {
    padding: 0;
    background: var(--primary-dark);
}

.cta-band-inner {
    padding: 62px 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.cta-band-inner h2 {
    font-weight: 400;
}

.site-footer {
    padding-top: 84px;
    background: var(--primary-dark);
}

.trust-row span {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;
}

.floating-actions {
    right: 18px;
    bottom: 20px;
}

.float-btn {
    justify-content: center;
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(16, 43, 35, 0.16);
}

.float-btn span {
    display: none;
}

.float-whatsapp {
    background: var(--secondary-dark);
}

.float-call {
    background: var(--primary-dark);
}

.back-to-top {
    right: 23px;
    bottom: 138px;
    border-radius: 50%;
    box-shadow: none;
}

.js .reveal {
    transform: translateY(14px);
    transition: opacity 480ms ease, transform 480ms ease;
}

@media (max-width: 1199.98px) {
    .site-header .navbar-collapse {
        background: var(--surface);
        border-radius: 2px;
        box-shadow: none;
    }

    .navbar-nav .nav-link {
        padding: 11px 10px !important;
    }

    .hero-section .row {
        --bs-gutter-x: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 82px 0 96px;
    }

    .hero-section .row {
        --bs-gutter-x: 1.5rem;
    }

    .hero-poster-shell {
        width: 64%;
    }

    .medicine-search-panel {
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .top-strip {
        font-size: 0.67rem;
    }

    .site-header .navbar {
        min-height: 74px;
    }

    .hero-section {
        padding: 68px 0 82px;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.4rem);
    }

    .hero-trust {
        justify-content: flex-start;
        text-align: left;
    }

    .section-padding {
        padding: 82px 0;
    }

    .page-hero,
    .page-hero.compact {
        padding: 76px 0;
    }

    .page-hero h1 {
        font-size: clamp(2.75rem, 12vw, 4rem);
    }

    .medicine-search-panel,
    .catalog-toolbar,
    .form-card,
    .sidebar-card {
        padding: 28px 0;
    }

    .catalog-toolbar,
    .form-card,
    .sidebar-card {
        padding-right: 22px;
        padding-left: 22px;
    }

    .cta-band-inner {
        padding: 52px 0;
    }
}

@media (max-width: 575.98px) {
    main .row,
    .site-footer .row {
        margin-right: 0;
        margin-left: 0;
    }

    main .row > *,
    .site-footer .row > * {
        padding-right: 0;
        padding-left: 0;
    }

    .hero-poster-shell {
        width: 82%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 2.6rem;
    }

    .product-image {
        height: 315px;
    }
}

/* Reduced-content refinement */

.site-header .navbar {
    min-height: 78px;
}

.hero-section {
    padding: 88px 0 96px;
}

.hero-copy > .eyebrow {
    margin-bottom: 24px;
}

.hero-copy .hero-lead {
    max-width: 510px;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.hero-poster-shell {
    width: 100%;
}

.medicine-search-panel {
    grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
    gap: 34px;
}

.search-panel-heading {
    display: flex;
    align-items: center;
}

.search-panel-heading h2 {
    margin: 0;
}

.section-padding {
    padding: 92px 0;
}

.category-image {
    height: 260px;
}

.category-card > div:last-child {
    padding: 20px;
}

.category-card h3 {
    margin: 0;
    font-size: 1.15rem;
}

.minimal-process-section {
    background: #f1efe8;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.minimal-process-section .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid var(--border);
}

.minimal-process-section .process-step {
    min-height: 210px;
    padding: 32px 34px;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--border);
    border-radius: 0;
}

.minimal-process-section .process-step:last-child {
    border-right: 0;
}

.minimal-process-section .process-step::after {
    display: none;
}

.minimal-process-section .step-number {
    position: static;
    display: block;
    margin-bottom: 44px;
    color: var(--secondary-dark);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.minimal-process-section .process-step h3 {
    color: var(--primary-dark);
    font-size: 1.45rem;
    font-weight: 400;
}

.minimal-process-section .process-step p {
    max-width: 260px;
    color: var(--muted);
}

.page-hero,
.page-hero.compact {
    padding: 78px 0;
}

.site-footer {
    padding-top: 64px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.68);
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 991.98px) {
    .hero-poster-shell {
        width: 68%;
    }

    .minimal-process-section .process-grid {
        grid-template-columns: 1fr;
    }

    .minimal-process-section .process-step {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .minimal-process-section .process-step:last-child {
        border-bottom: 0;
    }

    .minimal-process-section .step-number {
        margin-bottom: 22px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 62px 0 76px;
    }

    .medicine-search-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-padding {
        padding: 72px 0;
    }

    .category-image {
        height: 240px;
    }

    .page-hero,
    .page-hero.compact {
        padding: 64px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-poster-shell {
        width: 100%;
    }

    .minimal-process-section .process-step {
        padding-right: 0;
        padding-left: 0;
    }
}
