:root {
    --vs-primary: #2D6A4F;
    --vs-primary-hover: #21513C;
    --vs-primary-light: #EAF4EE;
    --vs-secondary: #52B788;
    --vs-accent: #E76F51;
    --vs-accent-light: #FDF2EF;
    --vs-neutral-dark: #1B2E24;
    --vs-neutral-muted: #5A7365;
    --vs-neutral-light: #F8FAF8;
    --vs-surface-white: #FFFFFF;
    --vs-surface-subtle: #F2F6F3;
    --vs-border-subtle: #E2ECE5;
    --vs-border-medium: #CFDFD4;
    --vs-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --vs-font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--vs-font-main);
    background-color: var(--vs-surface-white);
    color: var(--vs-neutral-dark);
    margin: 0;
    padding: 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: var(--vs-neutral-muted) !important;
}

.vs-btn-primary {
    background-color: var(--vs-primary);
    color: #FFFFFF;
    border: 1px solid var(--vs-primary);
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

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

.vs-btn-secondary {
    background-color: var(--vs-primary-light);
    color: var(--vs-primary);
    border: 1px solid var(--vs-border-medium);
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.vs-btn-secondary:hover {
    background-color: #DCECE2;
    border-color: var(--vs-primary);
    color: var(--vs-neutral-dark);
}

.vs-form-control {
    background-color: var(--vs-surface-white);
    border: 1px solid var(--vs-border-medium);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--vs-neutral-dark);
    min-height: 48px;
    width: 100%;
}

.vs-form-control:focus {
    border-color: var(--vs-primary);
    outline: none;
    box-shadow: none;
}

/* ===== header ===== */
.virseeting-header {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(27, 46, 36, 0.04), 0 1px 2px rgba(27, 46, 36, 0.02);
    z-index: 1030;
}

.virseeting-header .virseeting-topbar {
    background-color: #F2F6F3;
    border-bottom: 1px solid #E2ECE5;
    font-size: 0.75rem;
    color: #5A7365;
    font-weight: 500;
}

.virseeting-header .virseeting-topbar-inner {
    padding: 0.5rem 0;
}

.virseeting-header .virseeting-topbar-item {
    color: #1B2E24;
}

.virseeting-header .virseeting-topbar-icon {
    color: #2D6A4F;
    font-size: 0.95rem;
}

.virseeting-header .virseeting-top-link {
    color: #5A7365;
    text-decoration: none;
}

.virseeting-header .virseeting-top-link:hover {
    color: #2D6A4F;
}

.virseeting-header .virseeting-navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2ECE5;
    padding: 0.75rem 0;
}

.virseeting-header .virseeting-brand {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.virseeting-header .virseeting-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.virseeting-header .virseeting-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1B2E24;
}

.virseeting-header .virseeting-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1B2E24;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
}

.virseeting-header .virseeting-nav-link:hover,
.virseeting-header .virseeting-nav-link:focus {
    color: #2D6A4F;
    background-color: #F8FAF8;
}

.virseeting-header .virseeting-toggler {
    border: 1px solid #CFDFD4;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    background-color: #F8FAF8;
    color: #1B2E24;
}

.virseeting-header .virseeting-toggler:focus {
    box-shadow: none;
    outline: none;
    border-color: #2D6A4F;
}

.virseeting-header .virseeting-toggler-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.virseeting-header .virseeting-cart-btn {
    background-color: #EAF4EE;
    border: 1px solid #CFDFD4;
    color: #2D6A4F;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 9999px;
    padding: 0.5rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.virseeting-header .virseeting-cart-btn:hover {
    background-color: #DCECE2;
    border-color: #2D6A4F;
    color: #1B2E24;
}

.virseeting-header .virseeting-cart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.virseeting-header .virseeting-cart-label {
    font-size: 0.9rem;
}

.virseeting-header .virseeting-cart-badge {
    background-color: #2D6A4F !important;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3em 0.55em;
    margin-left: 0.4rem;
}

@media (max-width: 991.98px) {
    .virseeting-header .virseeting-topbar {
        display: none;
    }

    .virseeting-header .virseeting-nav-link {
        padding: 0.65rem 1rem;
        border-bottom: 1px solid #F2F6F3;
    }

    .virseeting-header .virseeting-nav-right-wrapper {
        border-top: 1px solid #E2ECE5;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}

/* ===== hero_section ===== */
.vs-hero-section {
    background-color: #F8FAF8;
    border-bottom: 1px solid #E2ECE5;
    min-height: 520px;
}

.vs-hero-section .vs-hero-glow-1 {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.22) 0%, rgba(248, 250, 248, 0) 70%);
    top: -80px;
    left: -80px;
    pointer-events: none;
}

.vs-hero-section .vs-hero-glow-2 {
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.15) 0%, rgba(248, 250, 248, 0) 70%);
    bottom: -100px;
    right: -60px;
    pointer-events: none;
}

.vs-hero-section .vs-hero-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    border: 1px solid #CFDFD4;
    letter-spacing: 0.01em;
}

.vs-hero-section .vs-hero-title {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    line-height: 1.18;
    font-weight: 800;
    color: #1B2E24;
    letter-spacing: -0.025em;
    hyphens: auto;
}

.vs-hero-section .vs-hero-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5A7365;
    max-width: 580px;
}

.vs-hero-section .vs-hero-btn-primary {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px;
}

.vs-hero-section .vs-hero-btn-primary:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.vs-hero-section .vs-hero-btn-secondary {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 48px;
}

.vs-hero-section .vs-hero-btn-secondary:hover {
    background-color: #DCECE2;
    border-color: #2D6A4F;
    color: #1B2E24;
}

.vs-hero-section .vs-hero-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
}

.vs-hero-section .vs-feature-icon-box {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background-color: #F2F6F3;
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.vs-hero-section .vs-feature-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1B2E24;
    line-height: 1.2;
}

.vs-hero-section .vs-feature-desc {
    font-size: 0.75rem;
    color: #5A7365;
    line-height: 1.3;
}

.vs-hero-section .vs-hero-media-wrapper {
    padding: 1.5rem 0.5rem;
    min-height: 380px;
}

.vs-hero-section .vs-media-backdrop-circle {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EAF4EE 0%, #D8EADB 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.vs-hero-section .vs-media-backdrop-pill {
    position: absolute;
    width: 180px;
    height: 70px;
    border-radius: 9999px;
    background: rgba(82, 183, 136, 0.15);
    filter: blur(20px);
    top: 20%;
    right: 10%;
    z-index: 0;
}

.vs-hero-section .vs-hero-main-img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
}

.vs-hero-section .vs-hero-floating-card {
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid #E2ECE5;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.vs-hero-section .vs-card-top {
    top: 8%;
    left: -10px;
}

.vs-hero-section .vs-floating-icon {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
}

.vs-hero-section .vs-floating-title {
    font-size: 0.8125rem;
    color: #1B2E24;
}

.vs-hero-section .vs-floating-sub {
    font-size: 0.7rem;
    color: #5A7365;
}

.vs-hero-section .vs-card-bottom {
    bottom: 0;
    right: 0;
    width: 230px;
}

.vs-hero-section .vs-pill-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.vs-hero-section .vs-card-price {
    font-weight: 700;
    color: #1B2E24;
    font-size: 0.95rem;
}

.vs-hero-section .vs-card-link {
    color: inherit;
}

.vs-hero-section .vs-card-item-title {
    font-size: 0.9rem;
    color: #1B2E24;
}

.vs-hero-section .vs-card-item-desc {
    font-size: 0.75rem;
    color: #5A7365;
    line-height: 1.3;
}

.vs-hero-section .vs-btn-add-mini {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 8px;
    font-size: 0.775rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vs-hero-section .vs-btn-add-mini:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .vs-hero-section .vs-hero-title {
        font-size: 2.1rem;
    }

    .vs-hero-section .vs-card-top {
        left: 10px;
        top: 0;
    }

    .vs-hero-section .vs-card-bottom {
        right: 10px;
        bottom: 0;
    }
}

@media (max-width: 767.98px) {
    .vs-hero-section .vs-hero-title {
        font-size: 18px;
        line-height: 1.25;
    }

    .vs-hero-section .vs-hero-lead {
        font-size: 0.95rem;
    }

    .vs-hero-section .vs-media-backdrop-circle {
        width: 250px;
        height: 250px;
    }

    .vs-hero-section .vs-hero-main-img {
        max-height: 260px;
    }

    .vs-hero-section .vs-card-bottom {
        width: 200px;
        padding: 0.75rem !important;
    }
}

/* ===== ready_made_solutions ===== */
.ready-made-solutions-block {
    background-color: #F8FAF8;
}

.ready-made-solutions-block .solutions-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
}

.ready-made-solutions-block .solutions-heading {
    color: #1B2E24;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ready-made-solutions-block .solutions-subheading {
    color: #5A7365;
    font-size: 1rem;
    line-height: 1.6;
}

.ready-made-solutions-block .btn-solutions-view-all {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.ready-made-solutions-block .btn-solutions-view-all:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.ready-made-solutions-block .solutions-filter-btn {
    background-color: #FFFFFF;
    color: #1B2E24;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.ready-made-solutions-block .solutions-filter-btn:hover {
    background-color: #F2F6F3;
    border-color: #2D6A4F;
    color: #2D6A4F;
}

.ready-made-solutions-block .solutions-filter-btn.active {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
}

.ready-made-solutions-block .solution-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
    overflow: hidden;
}

.ready-made-solutions-block .solution-card-img-wrap {
    height: 220px;
    overflow: hidden;
    background-color: #F2F6F3;
}

.ready-made-solutions-block .solution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready-made-solutions-block .solution-tag {
    background-color: #1B2E24;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.ready-made-solutions-block .solution-meta-spec {
    color: #5A7365;
    font-size: 0.8125rem;
    font-weight: 500;
}

.ready-made-solutions-block .solution-meta-rating {
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
}

.ready-made-solutions-block .solution-card-title {
    color: #1B2E24;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
}

.ready-made-solutions-block .solution-card-desc {
    color: #5A7365;
    font-size: 0.875rem;
    line-height: 1.5;
}

.ready-made-solutions-block .solution-item-row {
    font-size: 0.8125rem;
    color: #1B2E24;
}

.ready-made-solutions-block .solution-check-icon {
    color: #52B788;
    font-size: 1rem;
    flex-shrink: 0;
}

.ready-made-solutions-block .nutri-pill {
    background-color: #F2F6F3;
    color: #2D6A4F;
    border-radius: 6px;
    padding: 0.2rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.ready-made-solutions-block .solution-card-footer {
    border-color: #E2ECE5 !important;
}

.ready-made-solutions-block .solution-price-label {
    font-size: 0.75rem;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ready-made-solutions-block .solution-price-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2E24;
}

.ready-made-solutions-block .solution-buy-btn {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.15rem;
}

.ready-made-solutions-block .solution-buy-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.ready-made-solutions-block .solutions-info-bar {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
}

.ready-made-solutions-block .solutions-info-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EAF4EE;
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.ready-made-solutions-block .solutions-info-title {
    color: #1B2E24;
    font-size: 1.1rem;
    font-weight: 600;
}

.ready-made-solutions-block .solutions-info-text {
    color: #5A7365;
    font-size: 0.875rem;
    line-height: 1.5;
}

.ready-made-solutions-block .btn-solutions-catalog-link {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
}

.ready-made-solutions-block .btn-solutions-catalog-link:hover {
    background-color: #DCECE2;
    border-color: #2D6A4F;
    color: #1B2E24;
}

@media (max-width: 767.98px) {
    .ready-made-solutions-block .solutions-heading {
        font-size: 1.125rem;
        hyphens: auto;
    }

    .ready-made-solutions-block .solution-card-title {
        font-size: 0.875rem;
        hyphens: auto;
    }

    .ready-made-solutions-block .solutions-info-title {
        font-size: 0.875rem;
    }
}

/* ===== pre_order ===== */
.preorder-section {
    background-color: #F8FAF8;
    color: #1B2E24;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.preorder-section .preorder-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid #CFDFD4;
}

.preorder-section .preorder-title {
    color: #1B2E24;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

.preorder-section .preorder-subtitle {
    color: #5A7365;
    font-size: 1.05rem;
    line-height: 1.6;
}

.preorder-section .preorder-card {
    background: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.preorder-section .preorder-card-media {
    height: 230px;
    background-color: #F2F6F3;
    overflow: hidden;
}

.preorder-section .preorder-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.preorder-section .preorder-status-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(27, 46, 36, 0.85);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
}

.preorder-section .preorder-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.preorder-section .preorder-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D6A4F;
}

.preorder-section .preorder-old-price {
    font-size: 0.875rem;
    color: #8DA396;
    margin-left: 4px;
}

.preorder-section .preorder-item-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B2E24;
    line-height: 1.35;
}

.preorder-section .preorder-item-desc {
    font-size: 0.875rem;
    color: #5A7365;
    line-height: 1.5;
}

.preorder-section .preorder-specs {
    font-size: 0.8125rem;
    color: #1B2E24;
}

.preorder-section .preorder-select-btn {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    width: 100%;
    text-align: center;
}

.preorder-section .preorder-select-btn:hover {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border-color: #2D6A4F;
}

.preorder-section .preorder-conditions-box {
    background: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.preorder-section .conditions-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B2E24;
}

.preorder-section .condition-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #EAF4EE;
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.preorder-section .condition-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1B2E24;
}

.preorder-section .condition-text {
    font-size: 0.85rem;
    color: #5A7365;
    line-height: 1.5;
}

.preorder-section .preorder-form-card {
    background: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.preorder-section .form-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1B2E24;
}

.preorder-section .form-card-subtitle {
    font-size: 0.875rem;
    color: #5A7365;
    line-height: 1.5;
}

.preorder-section .preorder-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2E24;
    margin-bottom: 0.35rem;
}

.preorder-section .preorder-input {
    background: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    color: #1B2E24;
}

.preorder-section .preorder-input:focus {
    border-color: #2D6A4F;
    box-shadow: none;
    outline: none;
}

.preorder-section .preorder-input::placeholder {
    color: #8DA396;
    opacity: 1;
}

.preorder-section .preorder-terms-label {
    font-size: 0.775rem;
    color: #5A7365;
    line-height: 1.4;
}

.preorder-section .preorder-submit-btn {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
}

.preorder-section .preorder-submit-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .preorder-section .preorder-title {
        font-size: 16px;
        hyphens: auto;
    }

    .preorder-section .preorder-item-title,
    .preorder-section .conditions-heading,
    .preorder-section .form-card-title {
        font-size: 14px;
        hyphens: auto;
    }

    .preorder-section .condition-title {
        font-size: 13px;
    }

    .preorder-section .preorder-card-media {
        height: 180px;
    }
}

/* ===== regular_delivery ===== */
.vir-subscribe-delivery {
    background-color: #F8FAF8;
    color: #1B2E24;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.vir-subscribe-delivery .vir-sub-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
    border: 1px solid #CFDFD4;
}

.vir-subscribe-delivery .vir-sub-title {
    color: #1B2E24;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.vir-subscribe-delivery .vir-sub-description {
    color: #5A7365;
    font-size: 1rem;
    line-height: 1.55;
}

.vir-subscribe-delivery .vir-plan-card {
    background-color: #FFFFFF;
    border: 1.5px solid #E2ECE5;
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: border-color 0s, box-shadow 0s;
}

.vir-subscribe-delivery .vir-plan-card.is-active {
    border-color: #2D6A4F;
    box-shadow: 0 4px 16px rgba(45, 106, 79, 0.12);
    background-color: #FFFFFF;
}

.vir-subscribe-delivery .vir-featured-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2D6A4F;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    letter-spacing: 0.03em;
}

.vir-subscribe-delivery .vir-plan-frequency {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vir-subscribe-delivery .vir-plan-discount {
    background-color: #FDF2EF;
    color: #E76F51;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.vir-subscribe-delivery .vir-plan-name {
    color: #1B2E24;
    font-size: 1.25rem;
    font-weight: 700;
}

.vir-subscribe-delivery .vir-plan-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.vir-subscribe-delivery .vir-plan-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2D6A4F;
    line-height: 1;
}

.vir-subscribe-delivery .vir-plan-unit {
    color: #5A7365;
    font-size: 0.875rem;
}

.vir-subscribe-delivery .vir-plan-features li {
    font-size: 0.875rem;
    color: #1B2E24;
}

.vir-subscribe-delivery .vir-plan-check {
    color: #2D6A4F;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vir-subscribe-delivery .vir-plan-select-btn {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    cursor: pointer;
}

.vir-subscribe-delivery .vir-plan-card.is-active .vir-plan-select-btn {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border-color: #2D6A4F;
}

.vir-subscribe-delivery .vir-plan-select-btn:hover {
    background-color: #21513C;
    color: #FFFFFF;
    border-color: #21513C;
}

.vir-subscribe-delivery .vir-sub-form-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.vir-subscribe-delivery .vir-form-title {
    color: #1B2E24;
    font-size: 1.35rem;
    font-weight: 700;
}

.vir-subscribe-delivery .vir-form-subtitle {
    color: #5A7365;
    font-size: 0.95rem;
}

.vir-subscribe-delivery .vir-selected-tariff-label {
    color: #2D6A4F;
}

.vir-subscribe-delivery .vir-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1B2E24;
    margin-bottom: 0.35rem;
}

.vir-subscribe-delivery .vir-form-control {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #1B2E24;
    font-size: 0.95rem;
}

.vir-subscribe-delivery .vir-form-control:focus {
    border-color: #2D6A4F;
    box-shadow: none;
    outline: none;
}

.vir-subscribe-delivery .vir-form-control::placeholder {
    color: #8DA396;
    opacity: 1;
}

.vir-subscribe-delivery .vir-form-perks {
    background-color: #F2F6F3;
    border-radius: 12px;
    border: 1px solid #E2ECE5;
}

.vir-subscribe-delivery .vir-perk-icon {
    color: #2D6A4F;
    font-size: 1.15rem;
}

.vir-subscribe-delivery .vir-perk-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2E24;
}

.vir-subscribe-delivery .vir-btn-submit {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
}

.vir-subscribe-delivery .vir-btn-submit:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .vir-subscribe-delivery .vir-sub-title {
        font-size: 16px;
        hyphens: auto;
    }

    .vir-subscribe-delivery .vir-plan-name {
        font-size: 14px;
        hyphens: auto;
    }

    .vir-subscribe-delivery .vir-form-title {
        font-size: 14px;
        hyphens: auto;
    }

    .vir-subscribe-delivery .vir-sub-form-wrapper {
        padding: 1.25rem;
    }
}

/* ===== first_order_discount ===== */
.vs-discount-section {
    background-color: #F8FAF8;
}

.vs-discount-section .vs-discount-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.vs-discount-section .vs-discount-pill {
    background-color: #EAF4EE;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
}

.vs-discount-section .vs-pill-icon {
    color: #2D6A4F;
    font-size: 1rem;
}

.vs-discount-section .vs-pill-text {
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 600;
}

.vs-discount-section .vs-discount-title {
    color: #1B2E24;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.vs-discount-section .vs-discount-lead {
    color: #5A7365;
    font-size: 1.05rem;
    line-height: 1.6;
}

.vs-discount-section .vs-benefits-list .vs-check-icon {
    color: #2D6A4F;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.vs-discount-section .vs-benefits-list .vs-benefit-item {
    color: #1B2E24;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.vs-discount-section .vs-form-wrapper {
    background-color: #F2F6F3;
    border: 1px solid #CFDFD4;
    border-radius: 16px;
}

.vs-discount-section .vs-form-title {
    color: #1B2E24;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.vs-discount-section .vs-form-desc {
    color: #5A7365;
    font-size: 0.875rem;
    line-height: 1.5;
}

.vs-discount-section .vs-input-label {
    color: #1B2E24;
    font-size: 0.8125rem;
    font-weight: 600;
    display: block;
}

.vs-discount-section .vs-input-group {
    position: relative;
}

.vs-discount-section .vs-input-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #5A7365;
    font-size: 1.1rem;
    pointer-events: none;
}

.vs-discount-section .vs-email-input {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-radius: 10px;
    color: #1B2E24;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.95rem;
    height: 48px;
}

.vs-discount-section .vs-email-input:focus {
    background-color: #FFFFFF;
    border-color: #2D6A4F;
    box-shadow: none;
    color: #1B2E24;
}

.vs-discount-section .vs-email-input::placeholder {
    color: #8DA396;
    opacity: 1;
}

.vs-discount-section .vs-form-check {
    border-color: #CFDFD4;
    border-radius: 4px;
    cursor: pointer;
}

.vs-discount-section .vs-form-check:checked {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
}

.vs-discount-section .vs-form-check:focus {
    box-shadow: none;
    border-color: #2D6A4F;
}

.vs-discount-section .vs-consent-text {
    color: #5A7365;
    font-size: 0.75rem;
    line-height: 1.4;
    cursor: pointer;
}

.vs-discount-section .vs-submit-btn {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vs-discount-section .vs-submit-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.vs-discount-section .vs-privacy-note {
    color: #5A7365;
    font-size: 0.75rem;
    text-align: center;
}

.vs-discount-section .vs-shield-icon {
    color: #2D6A4F;
    font-size: 0.875rem;
}

@media (max-width: 767.98px) {
    .vs-discount-section .vs-discount-title {
        font-size: 16px;
        hyphens: auto;
    }

    .vs-discount-section .vs-form-title {
        font-size: 14px;
        hyphens: auto;
    }

    .vs-discount-section .vs-discount-lead {
        font-size: 0.9rem;
    }

    .vs-discount-section .vs-discount-card {
        padding: 1.25rem;
    }

    .vs-discount-section .vs-form-wrapper {
        padding: 1.25rem;
    }
}

/* ===== our_products ===== */
.virseeting-products-section {
    background-color: #F8FAF8;
    color: #1B2E24;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.virseeting-products-section .virseeting-products-kicker {
    background-color: #EAF4EE;
    color: #2D6A4F;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.virseeting-products-section .virseeting-products-title {
    color: #1B2E24;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.virseeting-products-section .virseeting-products-subtitle {
    color: #5A7365;
    font-size: 1.05rem;
    line-height: 1.6;
}

.virseeting-products-section .virseeting-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.virseeting-products-section .virseeting-product-card:hover {
    border-color: #CFDFD4;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.06);
}

.virseeting-products-section .virseeting-product-media {
    background-color: #F2F6F3;
    overflow: hidden;
}

.virseeting-products-section .virseeting-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #FFFFFF;
    color: #2D6A4F;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #E2ECE5;
    z-index: 2;
}

.virseeting-products-section .virseeting-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.virseeting-products-section .virseeting-product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.virseeting-products-section .virseeting-stock-status {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2D6A4F;
}

.virseeting-products-section .virseeting-product-name {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: #1B2E24;
}

.virseeting-products-section .virseeting-product-title-link {
    color: #1B2E24;
    text-decoration: none;
}

.virseeting-products-section .virseeting-product-title-link:hover {
    color: #2D6A4F;
}

.virseeting-products-section .virseeting-product-specs {
    color: #5A7365;
    font-size: 0.875rem;
    line-height: 1.5;
}

.virseeting-products-section .virseeting-product-footer {
    border-color: #E2ECE5 !important;
}

.virseeting-products-section .virseeting-price-label {
    font-size: 0.8125rem;
    color: #5A7365;
}

.virseeting-products-section .virseeting-price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2E24;
}

.virseeting-products-section .virseeting-product-btn {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 1px solid #2D6A4F;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    text-decoration: none;
    display: inline-block;
}

.virseeting-products-section .virseeting-product-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.virseeting-products-section .virseeting-catalog-all-btn {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    text-decoration: none;
}

.virseeting-products-section .virseeting-catalog-all-btn:hover {
    background-color: #DCECE2;
    border-color: #2D6A4F;
    color: #1B2E24;
}

@media (max-width: 767.98px) {
    .virseeting-products-section .virseeting-products-title {
        font-size: 1.5rem;
        hyphens: auto;
    }

    .virseeting-products-section .virseeting-product-img {
        height: 200px;
    }

    .virseeting-products-section .virseeting-product-name {
        font-size: 1.1rem;
        hyphens: auto;
    }
}

/* ===== footer ===== */
.site-footer {
    background-color: #F2F6F3;
    color: #1B2E24;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #E2ECE5;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.site-footer__disclaimer {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-left: 4px solid #2D6A4F;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(27, 46, 36, 0.04)
}

.site-footer__disclaimer-icon {
    color: #2D6A4F;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 2px
}

.site-footer__disclaimer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1B2E24;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em
}

.site-footer__disclaimer-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #5A7365
}

.site-footer__main {
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2ECE5
}

.site-footer__logo {
    text-decoration: none
}

.site-footer__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.site-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2E24;
    letter-spacing: -0.02em
}

.site-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5A7365;
    margin-bottom: 1.25rem;
    max-width: 340px
}

.site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.site-footer__pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2E24
}

.site-footer__pay-badge i {
    font-size: 1.1rem;
    color: #2D6A4F
}

.site-footer__widget {
    height: 100%
}

.site-footer__heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1B2E24;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase
}

.site-footer__nav-list,
.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer__nav-list li {
    margin-bottom: 0.6rem
}

.site-footer__link {
    color: #5A7365;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.4
}

.site-footer__link:hover {
    color: #2D6A4F;
    text-decoration: underline
}

.site-footer__link--contact {
    font-weight: 500;
    color: #1B2E24
}

.site-footer__link--contact:hover {
    color: #2D6A4F
}

.site-footer__contact-icon {
    color: #2D6A4F;
    font-size: 1.1rem;
    line-height: 1
}

.site-footer__contact-icon--wa {
    color: #25D366
}

.site-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #1B2E24
}

.site-footer__contact-btn {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem
}

.site-footer__contact-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF
}

.site-footer__bottom {
    padding-top: 1.5rem
}

.site-footer__copyright {
    font-size: 0.8125rem;
    color: #5A7365
}

.site-footer__legal-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center
}

.site-footer__legal-link {
    font-size: 0.8125rem;
    color: #5A7365;
    text-decoration: none
}

.site-footer__legal-link:hover {
    color: #2D6A4F;
    text-decoration: underline
}

.site-footer__legal-divider {
    color: #CFDFD4;
    font-size: 0.75rem
}

@media(max-width:767.98px) {
    .site-footer {
        padding-top: 1.75rem;
        padding-bottom: 1.25rem
    }

    .site-footer__heading {
        font-size: 0.875rem;
        margin-bottom: 0.75rem
    }

    .site-footer__disclaimer {
        padding: 0.875rem 1rem;
        margin-bottom: 1.75rem
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem
    }
}

/* ===== PAGE: about ===== */
.about-story-section {
  background-color: #F8FAF8;
  color: #1B2E24;
}

.about-story-section .about-story-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  border: 1px solid #CFDFD4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-story-section .about-story-title {
  color: #1B2E24;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.about-story-section .about-story-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #5A7365 !important;
}

.about-story-section .about-story-media-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2ECE5;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.about-story-section .about-story-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-story-section .about-story-subtitle {
  color: #1B2E24;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-story-section .about-story-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-story-section .about-story-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #5A7365;
}

.about-story-section .about-story-metric {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 14px;
  text-align: center;
}

.about-story-section .about-story-metric-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2D6A4F;
  line-height: 1.2;
}

.about-story-section .about-story-metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #5A7365;
  margin-top: 0.25rem;
}

.about-story-section .about-story-pillars {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.about-story-section .about-story-section-heading {
  color: #1B2E24;
  font-size: 1.75rem;
  font-weight: 700;
}

.about-story-section .about-story-tab-btn {
  background-color: #F2F6F3;
  color: #1B2E24;
  border: 1px solid #CFDFD4;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
}

.about-story-section .about-story-tab-btn.active {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border-color: #2D6A4F;
}

.about-story-section .about-story-pane-title {
  color: #1B2E24;
  font-size: 1.25rem;
  font-weight: 700;
}

.about-story-section .about-story-list li {
  font-size: 0.9375rem;
  color: #1B2E24;
  line-height: 1.5;
}

.about-story-section .about-story-mini-card {
  background-color: #F8FAF8;
  border: 1px solid #E2ECE5;
  border-radius: 14px;
}

.about-story-section .about-story-mini-icon {
  font-size: 2rem;
  color: #2D6A4F;
}

.about-story-section .about-story-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.about-story-section .about-story-card-icon {
  width: 44px;
  height: 44px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.about-story-section .about-story-card-title {
  color: #1B2E24;
  font-size: 1.15rem;
  font-weight: 700;
}

.about-story-section .about-story-card-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #5A7365 !important;
}

.about-story-section .about-story-cta {
  background-color: #FFFFFF;
  border: 1px solid #CFDFD4;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.04);
}

.about-story-section .about-story-cta-title {
  color: #1B2E24;
  font-size: 1.75rem;
  font-weight: 700;
}

.about-story-section .about-story-cta-text {
  font-size: 1.05rem;
  color: #5A7365 !important;
}

.about-story-section .about-story-btn-primary {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-block;
}

.about-story-section .about-story-btn-primary:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.about-story-section .about-story-btn-secondary {
  background-color: #EAF4EE;
  color: #2D6A4F;
  border: 1px solid #CFDFD4;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  display: inline-block;
}

.about-story-section .about-story-btn-secondary:hover {
  background-color: #DCECE2;
  border-color: #2D6A4F;
  color: #1B2E24;
}

@media (max-width: 767.98px) {
  .about-story-section .about-story-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .about-story-section .about-story-subtitle,
  .about-story-section .about-story-section-heading,
  .about-story-section .about-story-cta-title {
    font-size: 1rem;
    hyphens: auto;
  }
  .about-story-section .about-story-pane-title,
  .about-story-section .about-story-card-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
  .about-story-section .about-story-img {
    height: 260px;
  }
  .about-story-section .about-story-tab-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== PAGE: catalog ===== */
.catalog-page-section {
  background-color: #F8FAF8;
  color: #1B2E24;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.catalog-page-section .catalog-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #CFDFD4;
}

.catalog-page-section .catalog-main-title {
  color: #1B2E24;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.catalog-page-section .catalog-subtitle {
  color: #5A7365;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
}

.catalog-page-section .catalog-control-panel {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.catalog-page-section .catalog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #5A7365;
  font-size: 1.1rem;
  pointer-events: none;
}

.catalog-page-section .catalog-search-input {
  background-color: #FFFFFF;
  border: 1px solid #CFDFD4;
  border-radius: 10px;
  padding: 0.65rem 2.25rem 0.65rem 2.5rem;
  color: #1B2E24;
  font-size: 0.9375rem;
}

.catalog-page-section .catalog-search-input::placeholder {
  color: #8DA396;
  opacity: 1;
}

.catalog-page-section .catalog-search-input:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 2px rgba(45, 106, 79, 0.15);
  color: #1B2E24;
}

.catalog-page-section .catalog-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #5A7365;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.catalog-page-section .catalog-tab-btn {
  background-color: #F2F6F3;
  border: 1px solid #CFDFD4;
  color: #1B2E24;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  line-height: 1.2;
}

.catalog-page-section .catalog-tab-btn:hover {
  background-color: #EAF4EE;
  border-color: #2D6A4F;
  color: #2D6A4F;
}

.catalog-page-section .catalog-tab-btn.active {
  background-color: #2D6A4F;
  border-color: #2D6A4F;
  color: #FFFFFF;
}

.catalog-page-section .catalog-sort-label {
  color: #5A7365;
  font-size: 0.875rem;
  font-weight: 600;
}

.catalog-page-section .catalog-sort-select {
  background-color: #FFFFFF;
  border: 1px solid #CFDFD4;
  border-radius: 10px;
  color: #1B2E24;
  font-size: 0.875rem;
  padding: 0.6rem 2rem 0.6rem 0.85rem;
}

.catalog-page-section .catalog-sort-select:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 2px rgba(45, 106, 79, 0.15);
}

.catalog-page-section .catalog-counter-text {
  color: #5A7365;
  font-size: 0.9375rem;
}

.catalog-page-section .catalog-active-filter-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.catalog-page-section .catalog-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.catalog-page-section .catalog-card:hover {
  border-color: #CFDFD4;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.08);
}

.catalog-page-section .catalog-card-image-wrap {
  background-color: #F8FAF8;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.catalog-page-section .catalog-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-page-section .catalog-item-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #FFFFFF;
  color: #2D6A4F;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #E2ECE5;
  box-shadow: 0 2px 4px rgba(27, 46, 36, 0.04);
}

.catalog-page-section .catalog-card-category {
  color: #5A7365;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catalog-page-section .catalog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.catalog-page-section .catalog-title-link {
  color: #1B2E24;
  text-decoration: none;
}

.catalog-page-section .catalog-title-link:hover {
  color: #2D6A4F;
}

.catalog-page-section .catalog-card-ingredients {
  color: #1B2E24;
  font-size: 0.84rem;
  line-height: 1.45;
}

.catalog-page-section .catalog-card-ingredients strong,
.catalog-page-section .catalog-card-usage strong {
  color: #1B2E24;
}

.catalog-page-section .catalog-card-usage {
  color: #5A7365;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.catalog-page-section .catalog-card-footer {
  border-color: #E2ECE5 !important;
}

.catalog-page-section .catalog-card-price {
  color: #2D6A4F;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
}

.catalog-page-section .catalog-btn-add {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.45rem 0.9rem;
  line-height: 1.2;
}

.catalog-page-section .catalog-btn-add:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.catalog-page-section .catalog-empty-state {
  background-color: #FFFFFF;
  border: 1px dashed #CFDFD4;
}

.catalog-page-section .catalog-empty-icon {
  font-size: 3rem;
  color: #8DA396;
}

.catalog-page-section .catalog-empty-title {
  color: #1B2E24;
  font-size: 1.35rem;
  font-weight: 700;
}

.catalog-page-section .catalog-empty-desc {
  color: #5A7365;
  font-size: 0.9375rem;
}

.catalog-page-section .catalog-btn-reset {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
}

.catalog-page-section .catalog-btn-reset:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.catalog-page-section .catalog-info-banner {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.catalog-page-section .catalog-info-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.catalog-page-section .catalog-info-title {
  color: #1B2E24;
  font-size: 1.05rem;
  font-weight: 700;
}

.catalog-page-section .catalog-info-desc {
  color: #5A7365;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .catalog-page-section .catalog-main-title {
    font-size: 1.5rem;
    hyphens: auto;
  }
  .catalog-page-section .catalog-card-title {
    font-size: 1.05rem;
  }
  .catalog-page-section .catalog-info-title {
    font-size: 0.95rem;
  }
  .catalog-page-section .catalog-tab-btn {
    font-size: 0.8125rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ===== PAGE: blog ===== */
.blog-section { background-color: #FFFFFF; color: #1B2E24; } .blog-section .blog-header-wrapper { max-width: 780px; } .blog-section .blog-main-title { font-size: 2.25rem; font-weight: 700; color: #1B2E24; line-height: 1.25; letter-spacing: -0.02em; } .blog-section .blog-lead-text { font-size: 1.0625rem; line-height: 1.6; color: #5A7365; } .blog-section .blog-controls-panel { background-color: #F8FAF8; border: 1px solid #E2ECE5; } .blog-section .blog-search-box .form-control { background-color: #FFFFFF; border: 1px solid #CFDFD4; border-radius: 10px; color: #1B2E24; font-size: 0.9375rem; } .blog-section .blog-search-box .form-control::placeholder { color: #8DA396; opacity: 1; } .blog-section .blog-search-box .form-control:focus { border-color: #2D6A4F; box-shadow: none; outline: none; } .blog-section .blog-filter-btn { background-color: #FFFFFF; color: #1B2E24; border: 1px solid #CFDFD4; border-radius: 9999px; font-weight: 500; padding: 0.45rem 1rem; transition: none; } .blog-section .blog-filter-btn:hover { background-color: #EAF4EE; color: #2D6A4F; border-color: #2D6A4F; } .blog-section .blog-filter-btn.active { background-color: #2D6A4F; color: #FFFFFF; border-color: #2D6A4F; } .blog-section .blog-card { background-color: #FFFFFF; border-color: #E2ECE5 !important; box-shadow: 0 4px 16px rgba(27, 46, 36, 0.04); } .blog-section .blog-card-media { height: 220px; background-color: #F2F6F3; } .blog-section .blog-card-img { width: 100%; height: 220px; object-fit: cover; } .blog-section .blog-category-badge { background-color: #2D6A4F; color: #FFFFFF; font-weight: 600; font-size: 0.75rem; padding: 0.35rem 0.65rem; border-radius: 6px; } .blog-section .blog-title-link { color: #1B2E24; text-decoration: none; font-weight: 600; line-height: 1.35; } .blog-section .blog-title-link:hover { color: #2D6A4F; } .blog-section .card-title { font-size: 1.2rem; } .blog-section .card-text { font-size: 0.9375rem; line-height: 1.55; color: #5A7365 !important; } .blog-section .blog-read-btn { background-color: #EAF4EE; color: #2D6A4F; border: 1px solid #CFDFD4; border-radius: 9999px; font-weight: 600; padding: 0.35rem 0.9rem; text-decoration: none; } .blog-section .blog-read-btn:hover { background-color: #2D6A4F; color: #FFFFFF; border-color: #2D6A4F; } .blog-section .blog-empty-state { background-color: #F8FAF8; border-color: #E2ECE5 !important; } @media (max-width: 767.98px) { .blog-section .blog-main-title { font-size: 1.125rem; } .blog-section .card-title { font-size: 0.875rem; } .blog-section .blog-lead-text { font-size: 0.875rem; } .blog-section .blog-filter-btn { font-size: 0.8125rem; } }

/* ===== PAGE: contact ===== */
.contact-page-block {
  background-color: #F8FAF8;
  color: #1B2E24;
}

.contact-page-block .contact-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid #CFDFD4;
}

.contact-page-block .contact-main-title {
  color: #1B2E24;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.contact-page-block .contact-lead-text {
  color: #5A7365 !important;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-page-block .contact-info-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.contact-page-block .contact-form-card {
  border: 1px solid #E2ECE5;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.contact-page-block .contact-section-title {
  color: #1B2E24;
  font-weight: 700;
  line-height: 1.3;
}

.contact-page-block .contact-icon-box {
  width: 48px;
  height: 48px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 1.35rem;
  border: 1px solid #CFDFD4;
}

.contact-page-block .contact-item-title {
  color: #1B2E24;
  font-weight: 600;
}

.contact-page-block .contact-item-desc {
  color: #5A7365;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-page-block .contact-link {
  color: #2D6A4F;
  font-weight: 600;
}

.contact-page-block .contact-link:hover {
  color: #21513C;
  text-decoration: underline !important;
}

.contact-page-block .contact-highlight-box {
  background-color: #F2F6F3;
  border: 1px solid #CFDFD4;
}

.contact-page-block .custom-input {
  background-color: #FFFFFF;
  color: #1B2E24;
  border: 1px solid #CFDFD4;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.contact-page-block .custom-input:focus {
  background-color: #FFFFFF;
  color: #1B2E24;
  border-color: #2D6A4F;
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15);
}

.contact-page-block .custom-input::placeholder {
  color: #8DA396;
  opacity: 1;
}

.contact-page-block .contact-submit-btn {
  background-color: #2D6A4F;
  border: 1px solid #2D6A4F;
  color: #FFFFFF;
  font-size: 1rem;
  transition: none;
}

.contact-page-block .contact-submit-btn:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.contact-page-block .form-check-input:checked {
  background-color: #2D6A4F;
  border-color: #2D6A4F;
}

.contact-page-block .contact-map-wrapper {
  border: 1px solid #E2ECE5;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.contact-page-block .contact-map-iframe {
  min-height: 380px;
  border: 0;
}

@media (max-width: 767.98px) {
  .contact-page-block .contact-main-title {
    font-size: 1.65rem;
    hyphens: auto;
  }
  .contact-page-block .contact-section-title {
    font-size: 1.25rem;
    hyphens: auto;
  }
  .contact-page-block .contact-map-iframe {
    min-height: 280px;
  }
}

/* ===== PAGE: cart ===== */
.cart-details-page { background-color: #F8FAF8; min-height: 70vh; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; color: #1B2E24; } .cart-details-page .cart-main-heading { font-size: 1.75rem; font-weight: 700; color: #1B2E24; line-height: 1.25; } .cart-details-page .cart-continue-link { color: #2D6A4F; text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; } .cart-details-page .cart-continue-link:hover { color: #21513C; text-decoration: underline; } .cart-details-page .cart-items-panel { background: #FFFFFF; border: 1px solid #E2ECE5; border-radius: 16px; padding: 1.5rem; } .cart-details-page .cart-col-head { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: #5A7365; } .cart-details-page .cart-item-row { border-bottom: 1px solid #E2ECE5; padding: 1rem 0; } .cart-details-page .cart-item-row:last-child { border-bottom: none; } .cart-details-page .cart-item-img { width: 72px; height: 72px; border-radius: 10px; object-fit: cover; background: #F2F6F3; border: 1px solid #E2ECE5; } .cart-details-page .cart-item-title { font-size: 1rem; font-weight: 600; color: #1B2E24; text-decoration: none; display: block; line-height: 1.35; margin-bottom: 0.25rem; } .cart-details-page .cart-item-title:hover { color: #2D6A4F; } .cart-details-page .cart-item-meta { font-size: 0.8rem; color: #5A7365; } .cart-details-page .cart-item-price-unit { font-size: 0.95rem; font-weight: 600; color: #1B2E24; } .cart-details-page .cart-qty-control { display: inline-flex; align-items: center; border: 1px solid #CFDFD4; border-radius: 9999px; background: #F8FAF8; padding: 2px 6px; } .cart-details-page .cart-qty-btn { background: transparent; border: none; width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #1B2E24; cursor: pointer; padding: 0; } .cart-details-page .cart-qty-btn:hover { background: #EAF4EE; color: #2D6A4F; } .cart-details-page .product-quantity-input { width: 36px; border: none; background: transparent; text-align: center; font-weight: 600; font-size: 0.9rem; color: #1B2E24; } .cart-details-page .product-quantity-input:focus { outline: none; } .cart-details-page .cart-item-line-total { font-size: 1rem; font-weight: 700; color: #2D6A4F; } .cart-details-page .cart-remove-item-button { background: transparent; border: none; color: #8DA396; cursor: pointer; padding: 4px; font-size: 1.1rem; line-height: 1; } .cart-details-page .cart-remove-item-button:hover { color: #E76F51; } .cart-details-page .cart-clear-all-button { background: transparent; border: none; color: #5A7365; font-size: 0.875rem; font-weight: 600; cursor: pointer; padding: 0; } .cart-details-page .cart-clear-all-button:hover { color: #E76F51; } .cart-details-page .cart-security-badge { font-size: 0.85rem; color: #5A7365; font-weight: 500; } .cart-details-page .cart-summary-card { background: #FFFFFF; border: 1px solid #E2ECE5; border-radius: 16px; padding: 1.5rem; } .cart-details-page .cart-summary-heading { font-size: 1.25rem; font-weight: 700; color: #1B2E24; } .cart-details-page .cart-summary-label { font-size: 0.9rem; color: #5A7365; } .cart-details-page .cart-summary-value { font-size: 0.95rem; font-weight: 600; color: #1B2E24; } .cart-details-page .cart-total-label { font-size: 1.1rem; font-weight: 700; color: #1B2E24; } .cart-details-page .checkout-total-price { font-size: 1.35rem; font-weight: 800; color: #2D6A4F; } .cart-details-page .cart-form-label { font-size: 0.825rem; font-weight: 600; color: #1B2E24; margin-bottom: 0.35rem; } .cart-details-page .cart-form-input, .cart-details-page .cart-form-select { background-color: #FFFFFF; border: 1px solid #CFDFD4; border-radius: 10px; padding: 0.65rem 0.85rem; font-size: 0.9rem; color: #1B2E24; } .cart-details-page .cart-form-input::placeholder { color: #8DA396; opacity: 1; } .cart-details-page .cart-form-input:focus, .cart-details-page .cart-form-select:focus { outline: none; border-color: #2D6A4F; box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12); } .cart-details-page .cart-checkout-button { background-color: #2D6A4F; color: #FFFFFF; border: 1px solid #2D6A4F; border-radius: 9999px; font-weight: 600; padding: 0.85rem 1.5rem; font-size: 1rem; cursor: pointer; text-align: center; } .cart-details-page .cart-checkout-button:hover { background-color: #21513C; border-color: #21513C; } .cart-details-page .cart-btn-primary { background-color: #2D6A4F; color: #FFFFFF; border: 1px solid #2D6A4F; border-radius: 9999px; font-weight: 600; padding: 0.75rem 1.75rem; font-size: 0.95rem; } .cart-details-page .cart-btn-primary:hover { background-color: #21513C; color: #FFFFFF; } .cart-details-page .cart-empty-icon-wrap { font-size: 3.5rem; color: #8DA396; line-height: 1; } .cart-details-page .cart-empty-title { font-size: 1.35rem; font-weight: 700; color: #1B2E24; } .cart-details-page .cart-empty-text { font-size: 0.95rem; color: #5A7365; max-width: 380px; margin-left: auto; margin-right: auto; } .cart-details-page .cart-success-icon-wrap { font-size: 3.5rem; color: #2D6A4F; line-height: 1; } .cart-details-page .cart-success-title { font-size: 1.35rem; font-weight: 700; color: #1B2E24; } .cart-details-page .cart-success-description { font-size: 0.9rem; color: #5A7365; } @media (max-width: 767.98px) { .cart-details-page .cart-main-heading { font-size: 1.35rem; } .cart-details-page .cart-items-panel, .cart-details-page .cart-summary-card { padding: 1rem; } .cart-details-page .cart-item-img { width: 56px; height: 56px; } .cart-details-page .cart-item-title { font-size: 0.9rem; } }

/* ===== PAGE: privacy ===== */
.legal-policy-section{background-color:#F8FAF8;color:#1B2E24;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif}.legal-policy-section .legal-header-card{background-color:#FFFFFF;border:1px solid #E2ECE5;border-radius:20px;box-shadow:0 4px 16px rgba(27,46,36,0.04)}.legal-policy-section .legal-badge{background-color:#EAF4EE;color:#2D6A4F;font-size:0.8125rem;font-weight:600;padding:0.35rem 0.85rem;border-radius:9999px;display:inline-flex;align-items:center}.legal-policy-section .legal-updated-date{font-size:0.875rem;color:#5A7365}.legal-policy-section .legal-title{font-size:2.5rem;font-weight:700;line-height:1.2;color:#1B2E24;letter-spacing:-0.025em}.legal-policy-section .legal-lead{font-size:1.125rem;line-height:1.6;color:#5A7365}.legal-policy-section .legal-nav-wrapper{background-color:#FFFFFF;border:1px solid #E2ECE5;border-radius:16px;box-shadow:0 2px 8px rgba(27,46,36,0.03);top:1.5rem}.legal-policy-section .legal-nav-heading{font-size:1.1rem;font-weight:600;color:#1B2E24;letter-spacing:0;margin:0}.legal-policy-section .legal-nav-link{font-size:0.875rem;font-weight:500;color:#5A7365;text-decoration:none;padding:0.5rem 0.75rem;border-radius:8px;display:flex;align-items:center;transition:background-color 0s,color 0s}.legal-policy-section .legal-nav-link:hover{background-color:#F2F6F3;color:#2D6A4F}.legal-policy-section .legal-nav-link.active{background-color:#EAF4EE;color:#2D6A4F;font-weight:600}.legal-policy-section .legal-content-card{background-color:#FFFFFF;border:1px solid #E2ECE5;border-radius:20px;box-shadow:0 4px 16px rgba(27,46,36,0.04)}.legal-policy-section .legal-section-title{font-size:1.5rem;font-weight:700;color:#1B2E24;line-height:1.3;display:flex;align-items:baseline;gap:0.5rem}.legal-policy-section .legal-sec-num{color:#2D6A4F;font-size:1.25rem;font-weight:700}.legal-policy-section .legal-sub-title{font-size:1.1rem;font-weight:600;color:#1B2E24;line-height:1.4}.legal-policy-section .legal-text{font-size:1rem;line-height:1.6;color:#5A7365}.legal-policy-section .legal-text-sm{font-size:0.875rem;line-height:1.5;color:#5A7365}.legal-policy-section .legal-list{color:#5A7365;font-size:0.95rem;line-height:1.6}.legal-policy-section .legal-list li{margin-bottom:0.35rem}.legal-policy-section .legal-sub-box{background-color:#F2F6F3;border:1px solid #CFDFD4;border-radius:14px}.legal-policy-section .legal-feature-item{background-color:#FFFFFF;border:1px solid #E2ECE5;border-radius:14px;height:100%}.legal-policy-section .legal-icon-wrap{width:36px;height:36px;border-radius:8px;background-color:#EAF4EE;color:#2D6A4F;display:flex;align-items:center;justify-content:center;font-size:1.1rem}.legal-policy-section .legal-rights-box{background-color:#FFFFFF;border:1px solid #E2ECE5;border-radius:14px;height:100%}.legal-policy-section .legal-divider{border:0;border-top:1px solid #E2ECE5;margin:0}.legal-policy-section .legal-inline-link{color:#2D6A4F;font-weight:600;text-decoration:underline}.legal-policy-section .legal-inline-link:hover{color:#21513C}.legal-policy-section .legal-contact-callout{background-color:#F2F6F3;border:1px solid #CFDFD4;border-radius:16px}.legal-policy-section .legal-contact-icon{width:44px;height:44px;border-radius:50%;background-color:#2D6A4F;color:#FFFFFF;display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0}.legal-policy-section .legal-contact-title{font-size:1rem;font-weight:600;color:#1B2E24}.legal-policy-section .legal-contact-sub{font-size:0.875rem;color:#5A7365}.legal-policy-section .legal-contact-btn{background-color:#2D6A4F;color:#FFFFFF;border:1px solid #2D6A4F;border-radius:9999px;font-weight:600;padding:0.65rem 1.5rem;font-size:0.875rem;text-decoration:none;white-space:nowrap;display:inline-flex;align-items:center}.legal-policy-section .legal-contact-btn:hover{background-color:#21513C;border-color:#21513C;color:#FFFFFF}@media (max-width:767.98px){.legal-policy-section .legal-title{font-size:18px;hyphens:auto}.legal-policy-section .legal-section-title{font-size:16px;hyphens:auto}.legal-policy-section .legal-sub-title{font-size:14px;hyphens:auto}.legal-policy-section .legal-nav-heading{font-size:14px}.legal-policy-section .legal-nav-wrapper{position:static}.legal-policy-section .legal-lead{font-size:0.95rem}}

/* ===== PAGE: terms ===== */
.terms-main-wrapper{background-color:#F8FAF8;min-height:80vh;font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,sans-serif}.terms-main-wrapper .terms-nav-link{color:#2D6A4F;font-weight:500}.terms-main-wrapper .terms-nav-link:hover{color:#21513C}.terms-main-wrapper .breadcrumb-item.active{color:#5A7365}.terms-main-wrapper .terms-sidebar{background-color:#FFFFFF;border:1px solid #E2ECE5;position:sticky;top:2rem}.terms-main-wrapper .terms-sidebar-title{font-size:1.15rem;font-weight:700;color:#1B2E24}.terms-main-wrapper .terms-icon-primary{color:#2D6A4F}.terms-main-wrapper .terms-search-icon{background-color:#F2F6F3;border:1px solid #CFDFD4;border-right:none;color:#5A7365}.terms-main-wrapper .terms-search-input{background-color:#FFFFFF;border:1px solid #CFDFD4;border-left:none;color:#1B2E24;font-size:0.9rem;padding:0.6rem 0.75rem}.terms-main-wrapper .terms-search-input:focus{background-color:#FFFFFF;border-color:#2D6A4F;box-shadow:none;color:#1B2E24}.terms-main-wrapper .terms-search-input::placeholder{color:#8DA396}.terms-main-wrapper .terms-toc{max-height:420px;overflow-y:auto}.terms-main-wrapper .terms-toc-item{background-color:transparent;border:none;border-left:3px solid transparent;color:#5A7365;font-size:0.875rem;font-weight:500;padding:0.6rem 0.85rem;border-radius:0}.terms-main-wrapper .terms-toc-item:hover{background-color:#F2F6F3;color:#1B2E24}.terms-main-wrapper .terms-toc-item.active{background-color:#EAF4EE;border-left-color:#2D6A4F;color:#2D6A4F;font-weight:700}.terms-main-wrapper .terms-quick-help{background-color:#F2F6F3;border:1px solid #E2ECE5}.terms-main-wrapper .terms-help-title{font-size:0.95rem;font-weight:700;color:#1B2E24}.terms-main-wrapper .terms-help-text{font-size:0.8125rem;color:#5A7365;line-height:1.45}.terms-main-wrapper .terms-btn-secondary{background-color:#EAF4EE;color:#2D6A4F;border:1px solid #CFDFD4;border-radius:9999px;font-weight:600;font-size:0.875rem;padding:0.5rem 1.25rem;text-align:center}.terms-main-wrapper .terms-btn-secondary:hover{background-color:#DCECE2;border-color:#2D6A4F;color:#1B2E24}.terms-main-wrapper .terms-btn-primary{background-color:#2D6A4F;color:#FFFFFF;border:1px solid #2D6A4F;border-radius:9999px;font-weight:600;font-size:0.875rem;padding:0.6rem 1.5rem}.terms-main-wrapper .terms-btn-primary:hover{background-color:#21513C;border-color:#21513C;color:#FFFFFF}.terms-main-wrapper .terms-btn-outline{background-color:transparent;color:#1B2E24;border:1.5px solid #CFDFD4;border-radius:9999px;font-weight:600;font-size:0.875rem;padding:0.6rem 1.5rem}.terms-main-wrapper .terms-btn-outline:hover{background-color:#F8FAF8;border-color:#2D6A4F;color:#2D6A4F}.terms-main-wrapper .terms-content-card{background-color:#FFFFFF;border:1px solid #E2ECE5;box-shadow:0 4px 16px rgba(27,46,36,0.03)}.terms-main-wrapper .terms-badge{background-color:#EAF4EE;color:#2D6A4F;border-radius:9999px;padding:0.35rem 0.85rem;font-size:0.8125rem;font-weight:600}.terms-main-wrapper .terms-main-title{font-size:2.25rem;font-weight:800;color:#1B2E24;line-height:1.2;letter-spacing:-0.02em}.terms-main-wrapper .terms-meta-info{color:#5A7365;font-size:0.875rem}.terms-main-wrapper .terms-section-title{font-size:1.35rem;font-weight:700;color:#1B2E24;display:flex;align-items:center;line-height:1.3}.terms-main-wrapper .terms-section-number{background-color:#EAF4EE;color:#2D6A4F;font-size:0.85rem;font-weight:700;padding:0.25rem 0.5rem;border-radius:6px;margin-right:0.75rem}.terms-main-wrapper .terms-paragraph{color:#1B2E24;font-size:0.975rem;line-height:1.65;margin-bottom:1rem}.terms-main-wrapper .terms-list{color:#1B2E24;font-size:0.95rem;line-height:1.6;padding-left:1.25rem}.terms-main-wrapper .terms-text-link{color:#2D6A4F;font-weight:600;text-decoration:underline}.terms-main-wrapper .terms-text-link:hover{color:#21513C}.terms-main-wrapper .terms-info-box{background-color:#F2F6F3;border:1px solid #CFDFD4}.terms-main-wrapper .terms-box-title{font-size:1rem;font-weight:600;color:#1B2E24}.terms-main-wrapper .terms-box-desc{font-size:0.875rem;color:#5A7365;line-height:1.5}.terms-main-wrapper .terms-contact-card{background-color:#F2F6F3;border:1px solid #E2ECE5}.terms-main-wrapper .terms-contact-title{font-size:1.15rem;font-weight:700;color:#1B2E24}@media(max-width:767.98px){.terms-main-wrapper .terms-main-title{font-size:1.125rem;hyphens:auto}.terms-main-wrapper .terms-section-title{font-size:1rem;hyphens:auto}.terms-main-wrapper .terms-box-title,.terms-main-wrapper .terms-sidebar-title,.terms-main-wrapper .terms-contact-title{font-size:0.875rem}.terms-main-wrapper .terms-sidebar{position:static;margin-bottom:1.5rem}}

/* ===== PAGE: disclaimer ===== */
.virseeting-legal-section {
  background-color: #F8FAF8;
  color: #1B2E24;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.virseeting-legal-section .virseeting-legal-card {
  border-color: #E2ECE5 !important;
  background-color: #FFFFFF;
}

.virseeting-legal-section .virseeting-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.virseeting-legal-section .virseeting-legal-title {
  color: #1B2E24;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.virseeting-legal-section .virseeting-alert-box {
  background-color: #FDF2EF;
  border: 1px solid #F5C6BA;
}

.virseeting-legal-section .virseeting-icon-alert {
  color: #E76F51;
}

.virseeting-legal-section .virseeting-alert-heading {
  color: #8C3A24;
  font-size: 1.15rem;
  font-weight: 600;
}

.virseeting-legal-section .virseeting-alert-text {
  color: #5A7365;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.virseeting-legal-section .virseeting-toc {
  background-color: #F2F6F3;
  border: 1px solid #CFDFD4;
}

.virseeting-legal-section .virseeting-toc-title {
  color: #1B2E24;
  font-size: 1.125rem;
  font-weight: 600;
}

.virseeting-legal-section .virseeting-toc-link {
  color: #2D6A4F;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.virseeting-legal-section .virseeting-toc-link:hover {
  color: #21513C;
  text-decoration: underline;
}

.virseeting-legal-section .virseeting-section-heading {
  color: #1B2E24;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.virseeting-legal-section p {
  color: #5A7365;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.virseeting-legal-section .virseeting-sub-box {
  background-color: #F8FAF8;
  border: 1px solid #E2ECE5;
}

.virseeting-legal-section .virseeting-sub-box-title {
  color: #1B2E24;
  font-size: 1rem;
  font-weight: 600;
}

.virseeting-legal-section .virseeting-primary-icon {
  color: #2D6A4F;
}

.virseeting-legal-section .virseeting-btn-primary {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  transition: none;
}

.virseeting-legal-section .virseeting-btn-primary:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.virseeting-legal-section .virseeting-btn-secondary {
  background-color: #EAF4EE;
  color: #2D6A4F;
  border: 1px solid #CFDFD4;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  transition: none;
}

.virseeting-legal-section .virseeting-btn-secondary:hover {
  background-color: #DCECE2;
  border-color: #2D6A4F;
  color: #1B2E24;
}

@media (max-width: 767.98px) {
  .virseeting-legal-section .virseeting-legal-title {
    font-size: 1.125rem;
    hyphens: auto;
  }
  .virseeting-legal-section .virseeting-section-heading {
    font-size: 1rem;
    hyphens: auto;
  }
  .virseeting-legal-section .virseeting-alert-heading,
  .virseeting-legal-section .virseeting-toc-title,
  .virseeting-legal-section .virseeting-sub-box-title {
    font-size: 0.875rem;
    hyphens: auto;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-policy-section { background-color: #F8FAF8; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; }
.cookies-policy-section .cookies-policy-card { background-color: #FFFFFF; border: 1px solid #E2ECE5; border-radius: 20px; box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05); }
.cookies-policy-section .cookies-badge { background-color: #EAF4EE; color: #2D6A4F; font-size: 0.8125rem; font-weight: 600; padding: 0.35rem 0.85rem; }
.cookies-policy-section .cookies-main-title { color: #1B2E24; font-size: 2.25rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.5rem; }
.cookies-policy-section .cookies-settings-box { background-color: #F2F6F3; border: 1px solid #CFDFD4; }
.cookies-policy-section .cookie-toggle-item { border: 1px solid #E2ECE5; box-shadow: 0 1px 3px rgba(27, 46, 36, 0.04); }
.cookies-policy-section .form-check-input:checked { background-color: #2D6A4F; border-color: #2D6A4F; }
.cookies-policy-section .form-check-input:focus { border-color: #2D6A4F; box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.15); }
.cookies-policy-section .btn-primary { background-color: #2D6A4F; border-color: #2D6A4F; color: #FFFFFF; font-weight: 600; }
.cookies-policy-section .btn-primary:hover { background-color: #21513C; border-color: #21513C; color: #FFFFFF; }
.cookies-policy-section .btn-outline-secondary { border-color: #CFDFD4; color: #1B2E24; font-weight: 600; }
.cookies-policy-section .btn-outline-secondary:hover { background-color: #EAF4EE; border-color: #2D6A4F; color: #2D6A4F; }
.cookies-policy-section .btn-outline-danger { border-color: #E76F51; color: #E76F51; font-weight: 600; }
.cookies-policy-section .btn-outline-danger:hover { background-color: #E76F51; border-color: #E76F51; color: #FFFFFF; }
.cookies-policy-section .table { border-color: #E2ECE5; }
.cookies-policy-section .table thead th { color: #1B2E24; font-weight: 600; font-size: 0.875rem; }
.cookies-policy-section h2, .cookies-policy-section h3 { color: #1B2E24; }
@media (max-width: 767.98px) {
  .cookies-policy-section .cookies-main-title { font-size: 1.125rem; }
  .cookies-policy-section h2 { font-size: 1rem; }
  .cookies-policy-section h3 { font-size: 0.875rem; }
}

/* ===== PAGE: refound ===== */
.refund-policy-section {
  background-color: #F8FAF8;
  color: #1B2E24;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.refund-policy-section .refund-breadcrumb .breadcrumb-item a {
  color: #2D6A4F;
  text-decoration: none;
  font-weight: 500;
}

.refund-policy-section .refund-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

.refund-policy-section .refund-breadcrumb .breadcrumb-item.active {
  color: #5A7365;
}

.refund-policy-section .refund-badge {
  background-color: #EAF4EE;
  color: #2D6A4F;
  border: 1px solid #CFDFD4;
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.refund-policy-section .refund-title {
  color: #1B2E24;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.refund-policy-section .refund-subtitle {
  color: #5A7365;
  font-size: 1.1rem;
  max-width: 800px;
}

.refund-policy-section .refund-meta {
  font-size: 0.875rem;
  color: #8DA396;
}

.refund-policy-section .policy-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
}

.refund-policy-section .policy-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.refund-policy-section .policy-card-title {
  color: #1B2E24;
  font-size: 1.15rem;
  font-weight: 600;
}

.refund-policy-section .policy-card-text {
  color: #5A7365;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.refund-policy-section .interactive-eligibility-box {
  background-color: #F2F6F3;
  border: 1px solid #CFDFD4;
}

.refund-policy-section .eligibility-badge {
  color: #2D6A4F;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.refund-policy-section .eligibility-heading {
  color: #1B2E24;
  font-size: 1.5rem;
  font-weight: 700;
}

.refund-policy-section .eligibility-desc {
  color: #5A7365;
  font-size: 0.9375rem;
}

.refund-policy-section .checker-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B2E24;
}

.refund-policy-section .form-select {
  background-color: #FFFFFF;
  border: 1px solid #CFDFD4;
  border-radius: 10px;
  color: #1B2E24;
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
}

.refund-policy-section .form-select:focus {
  border-color: #2D6A4F;
  box-shadow: none;
}

.refund-policy-section .refund-action-btn {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
}

.refund-policy-section .refund-action-btn:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.refund-policy-section .eligibility-result-card {
  background-color: #FFFFFF;
  border: 1px solid #CFDFD4;
}

.refund-policy-section .legal-block {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
}

.refund-policy-section .legal-block-title {
  color: #1B2E24;
  font-size: 1.25rem;
  font-weight: 700;
}

.refund-policy-section .legal-text {
  color: #5A7365;
  font-size: 0.95rem;
  line-height: 1.6;
}

.refund-policy-section .legal-list {
  color: #5A7365;
  font-size: 0.95rem;
  line-height: 1.6;
}

.refund-policy-section .legal-list li {
  margin-bottom: 0.4rem;
}

.refund-policy-section .legal-link {
  color: #2D6A4F;
  font-weight: 600;
  text-decoration: underline;
}

.refund-policy-section .callout-notice {
  background-color: #EAF4EE;
  border-left: 4px solid #2D6A4F;
  color: #1B2E24;
  font-size: 0.9rem;
}

.refund-policy-section .steps-wrapper {
  display: flex;
  flex-direction: column;
}

.refund-policy-section .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2D6A4F;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.refund-policy-section .step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1B2E24;
}

.refund-policy-section .step-text {
  font-size: 0.9rem;
  color: #5A7365;
}

.refund-policy-section .refund-table {
  border-color: #E2ECE5;
}

.refund-policy-section .refund-table th {
  background-color: #F2F6F3;
  color: #1B2E24;
  font-size: 0.9rem;
  font-weight: 600;
}

.refund-policy-section .refund-table td {
  color: #5A7365;
  font-size: 0.9rem;
}

.refund-policy-section .refund-cta-card {
  background-color: #FFFFFF;
  border: 1px solid #E2ECE5;
  box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.refund-policy-section .cta-icon {
  width: 54px;
  height: 54px;
  background-color: #EAF4EE;
  color: #2D6A4F;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.refund-policy-section .cta-title {
  color: #1B2E24;
  font-size: 1.5rem;
  font-weight: 700;
}

.refund-policy-section .cta-text {
  color: #5A7365;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.refund-policy-section .cta-primary-btn {
  background-color: #2D6A4F;
  color: #FFFFFF;
  border: 1px solid #2D6A4F;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}

.refund-policy-section .cta-primary-btn:hover {
  background-color: #21513C;
  border-color: #21513C;
  color: #FFFFFF;
}

.refund-policy-section .cta-secondary-btn {
  background-color: #EAF4EE;
  color: #2D6A4F;
  border: 1px solid #CFDFD4;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}

.refund-policy-section .cta-secondary-btn:hover {
  background-color: #DCECE2;
  border-color: #2D6A4F;
  color: #1B2E24;
}

@media (max-width: 767.98px) {
  .refund-policy-section .refund-title {
    font-size: 1.75rem;
    hyphens: auto;
  }
  .refund-policy-section .policy-card-title,
  .refund-policy-section .eligibility-heading,
  .refund-policy-section .legal-block-title,
  .refund-policy-section .cta-title {
    font-size: 1.15rem;
    hyphens: auto;
  }
  .refund-policy-section .step-title {
    font-size: 0.95rem;
  }
}

/* ===== PAGE: delivery ===== */
.delivery-page { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; background-color: #F8FAF8; color: #1B2E24; } .delivery-page .delivery-page__breadcrumb { background: transparent; padding: 0; font-size: 0.875rem; } .delivery-page .delivery-page__breadcrumb a { color: #2D6A4F; text-decoration: none; font-weight: 500; } .delivery-page .delivery-page__breadcrumb a:hover { color: #21513C; } .delivery-page .delivery-page__main-title { color: #1B2E24; font-weight: 700; letter-spacing: -0.02em; } .delivery-page .delivery-page__feature-card { background: #FFFFFF; border: 1px solid #E2ECE5; border-radius: 16px; box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03); } .delivery-page .delivery-page__icon-box { width: 48px; height: 48px; border-radius: 12px; background: #EAF4EE; display: flex; align-items: center; justify-content: center; } .delivery-page .delivery-page__feature-title { color: #1B2E24; font-weight: 600; } .delivery-page .delivery-page__content-card { background: #FFFFFF; border: 1px solid #E2ECE5; border-radius: 16px; box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03); } .delivery-page .delivery-page__section-title { color: #1B2E24; font-weight: 700; } .delivery-page .delivery-page__sub-heading { color: #1B2E24; font-weight: 600; } .delivery-page .delivery-page__table { border-collapse: separate; border-spacing: 0; } .delivery-page .delivery-page__thead th { background-color: #F2F6F3; color: #1B2E24; font-weight: 600; font-size: 0.875rem; border: none; padding: 0.75rem 1rem; } .delivery-page .delivery-page__table td { padding: 1rem; border-bottom: 1px solid #E2ECE5; color: #1B2E24; } .delivery-page .delivery-page__table tbody tr:last-child td { border-bottom: none; } .delivery-page .delivery-page__accordion .accordion-item { border: 1px solid #E2ECE5; border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; background: #FFFFFF; } .delivery-page .delivery-page__accordion .accordion-button { background-color: #F8FAF8; color: #1B2E24; font-weight: 600; box-shadow: none; padding: 1rem 1.25rem; } .delivery-page .delivery-page__accordion .accordion-button:not(.collapsed) { background-color: #EAF4EE; color: #2D6A4F; } .delivery-page .delivery-page__accordion .accordion-button::after { filter: invert(30%) sepia(20%) saturate(1000%) hue-rotate(100deg); } .delivery-page .delivery-page__calc-card { background: #FFFFFF; border: 1px solid #CFDFD4; border-radius: 16px; box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05); } .delivery-page .delivery-page__calc-title { color: #1B2E24; font-weight: 700; } .delivery-page .delivery-page__input, .delivery-page .delivery-page__select { background-color: #FFFFFF; border: 1px solid #CFDFD4; border-radius: 10px; padding: 0.75rem 1rem; color: #1B2E24; } .delivery-page .delivery-page__input:focus, .delivery-page .delivery-page__select:focus { border-color: #2D6A4F; box-shadow: none; outline: none; } .delivery-page .delivery-page__input::placeholder { color: #8DA396; opacity: 1; } .delivery-page .delivery-page__btn-primary { background: #2D6A4F; color: #FFFFFF; border: 1px solid #2D6A4F; border-radius: 9999px; font-weight: 600; padding: 0.75rem 1.75rem; } .delivery-page .delivery-page__btn-primary:hover { background: #21513C; border-color: #21513C; color: #FFFFFF; } .delivery-page .delivery-page__btn-secondary { background: #EAF4EE; color: #2D6A4F; border: 1px solid #CFDFD4; border-radius: 9999px; font-weight: 600; padding: 0.75rem 1.75rem; } .delivery-page .delivery-page__btn-secondary:hover { background: #DCECE2; border-color: #2D6A4F; color: #1B2E24; } .delivery-page .delivery-page__contact-card { background: #F2F6F3; border: 1px solid #CFDFD4; border-radius: 16px; } .delivery-page .delivery-page__calc-result { background: #EAF4EE; border: 1px solid #CFDFD4; } @media (max-width: 767.98px) { .delivery-page .delivery-page__main-title { font-size: 1.125rem; hyphens: auto; } .delivery-page .delivery-page__section-title { font-size: 1rem; hyphens: auto; } .delivery-page .delivery-page__sub-heading, .delivery-page .delivery-page__feature-title, .delivery-page .delivery-page__calc-title { font-size: 0.875rem; hyphens: auto; } }

.nutrition-comment-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(27, 46, 36, 0.03);
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.nutrition-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #CFDFD4;
    object-fit: cover
}

.nutrition-author-name {
    color: #1B2E24;
    font-size: 1.05rem;
    font-weight: 700
}

.nutrition-badge-verified {
    display: inline-flex;
    align-items: center;
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    line-height: 1
}

.nutrition-comment-meta {
    display: block;
    font-size: 0.8125rem;
    color: #5A7365;
    margin-top: 0.2rem
}

.nutrition-rating-stars {
    font-size: 0.95rem;
    color: #E9C46A
}

.nutrition-comment-text {
    color: #1B2E24;
    font-size: 0.95rem;
    line-height: 1.6
}

.nutrition-comment-footer {
    border-color: #E2ECE5 !important
}

.nutrition-action-btn {
    background: transparent;
    border: none;
    padding: 0.35rem 0.65rem;
    color: #5A7365;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

.nutrition-action-btn:hover {
    background-color: #F2F6F3;
    color: #2D6A4F
}

.nutrition-action-count {
    color: #8DA396;
    font-weight: 500
}

.nutrition-tag-dietary {
    background-color: #F2F6F3;
    color: #2D6A4F;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center
}

.nutrition-reply-card {
    background-color: #F8FAF8;
    border: 1px solid #CFDFD4;
    border-left: 3px solid #2D6A4F;
    border-radius: 12px;
    padding: 1.25rem;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.nutrition-avatar-specialist {
    width: 42px;
    height: 42px;
    background-color: #2D6A4F;
    color: #FFFFFF;
    border: 2px solid #52B788;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover
}

.nutrition-badge-specialist {
    display: inline-flex;
    align-items: center;
    background-color: #2D6A4F;
    color: #FFFFFF;
    font-size: 0.725rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    line-height: 1
}


/* ===== PAGE TEMPLATE: catalog ===== */
.product-detail-view {
    background-color: #F8FAF8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1B2E24;
}

.product-detail-view__breadcrumb-link {
    color: #5A7365;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-detail-view__breadcrumb-link:hover {
    color: #2D6A4F;
    text-decoration: underline;
}

.product-detail-view__breadcrumb-wrap .breadcrumb-item.active {
    color: #1B2E24;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-detail-view__media-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.product-detail-view__badge-wrapper {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.product-detail-view__organic-badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border: 1px solid #CFDFD4;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
}

.product-detail-view__quality-badge {
    background-color: #FFFFFF;
    color: #1B2E24;
    border: 1px solid #E2ECE5;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
}

.product-detail-view__image-box {
    background-color: #F2F6F3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 380px;
    padding: 1.5rem;
}

.product-detail-view__product-image {
    max-height: 340px;
    width: 100%;
    object-fit: contain;
}

.product-detail-view__highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.product-detail-view__highlight-item {
    background-color: #F8FAF8;
    border: 1px solid #E2ECE5;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1B2E24;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.product-detail-view__highlight-item i {
    font-size: 1.25rem;
    color: #2D6A4F;
}

.product-detail-view__summary-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.product-detail-view__category-tag {
    background-color: #EAF4EE;
    color: #2D6A4F;
    border-radius: 9999px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
}

.product-detail-view__stock-status {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2D6A4F;
    display: inline-flex;
    align-items: center;
}

.product-detail-view__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1B2E24;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.product-detail-view__price-container {
    background-color: #F8FAF8;
    border: 1px solid #E2ECE5;
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.product-detail-view__price-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5A7365;
    margin-bottom: 0.25rem;
}

.product-detail-view__main-price {
    font-size: 2rem;
    font-weight: 800;
    color: #2D6A4F;
    line-height: 1;
}

.product-detail-view__tax-note {
    font-size: 0.8125rem;
    color: #5A7365;
    font-weight: 500;
}

.product-detail-view__quick-specs {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: #1B2E24;
}

.product-detail-view__spec-item strong {
    color: #1B2E24;
}

.product-detail-view__spec-item span {
    color: #5A7365;
}

.product-detail-view__qty-picker {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    min-width: 130px;
    height: 48px;
}

.product-detail-view__qty-btn {
    border: none;
    background: transparent;
    color: #1B2E24;
    font-size: 1.1rem;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-view__qty-btn:hover {
    color: #2D6A4F;
    background-color: #F2F6F3;
    border-radius: 50%;
}

.product-detail-view__qty-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1B2E24;
    min-width: 24px;
    text-align: center;
}

.product-detail-view__cart-cta {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-detail-view__cart-cta:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.product-detail-view__order-form-panel {
    background-color: #F2F6F3;
    border: 1px solid #CFDFD4;
    border-radius: 16px;
    padding: 1.5rem;
}

.product-detail-view__order-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2E24;
}

.product-detail-view__order-subtitle {
    font-size: 0.8125rem;
    color: #5A7365;
}

.product-detail-view__form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2E24;
    margin-bottom: 0.35rem;
}

.product-detail-view__form-input {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    color: #1B2E24;
}

.product-detail-view__form-input:focus {
    border-color: #2D6A4F;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
    outline: none;
}

.product-detail-view__form-submit {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
}

.product-detail-view__form-submit:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.product-detail-view__tab-btn {
    background-color: #FFFFFF;
    border: 1.5px solid #CFDFD4;
    color: #1B2E24;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.6rem 1.25rem;
}

.product-detail-view__tab-btn:hover {
    background-color: #F8FAF8;
    border-color: #2D6A4F;
    color: #2D6A4F;
}

.product-detail-view__tab-btn.active {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
}

.product-detail-view__tab-panel {
    display: none;
}

.product-detail-view__tab-panel.active {
    display: block;
}

.product-detail-view__content-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.05);
}

.product-detail-view__panel-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1B2E24;
}

.product-detail-view__sub-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1B2E24;
}

.product-detail-view__panel-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #5A7365;
}

.product-detail-view__feature-badge-box {
    background-color: #F8FAF8;
    border: 1px solid #E2ECE5;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
    height: 100%;
}

.product-detail-view__feature-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1B2E24;
    margin-bottom: 0.35rem;
}

.product-detail-view__feature-desc {
    font-size: 0.8125rem;
    color: #5A7365;
    line-height: 1.45;
}

.product-detail-view__ingredients-banner {
    background-color: #F2F6F3;
    border: 1px solid #CFDFD4;
}

.product-detail-view__ingredient-label {
    color: #1B2E24;
    font-size: 0.9375rem;
}

.product-detail-view__list {
    list-style: none;
    padding-left: 0;
}

.product-detail-view__list-item {
    font-size: 0.9375rem;
    color: #1B2E24;
    font-weight: 500;
}

.product-detail-view__section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1B2E24;
    letter-spacing: -0.02em;
}

.product-detail-view__section-subtitle {
    font-size: 0.9375rem;
    color: #5A7365;
}

.product-detail-view__accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 14px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.product-detail-view__accordion-btn {
    background-color: #FFFFFF;
    color: #1B2E24;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 1.25rem;
    box-shadow: none !important;
}

.product-detail-view__accordion-btn:not(.collapsed) {
    background-color: #F2F6F3;
    color: #2D6A4F;
}

.product-detail-view__accordion-body {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #5A7365;
    padding: 1.25rem;
    background-color: #FFFFFF;
}

@media (max-width: 767.98px) {
    .product-detail-view__title {
        font-size: 1.5rem;
    }

    .product-detail-view__summary-card,
    .product-detail-view__media-card,
    .product-detail-view__content-card {
        padding: 1.25rem;
    }

    .product-detail-view__image-box {
        min-height: 260px;
    }

    .product-detail-view__tab-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== PAGE TEMPLATE: blog ===== */
.virseeting-header {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(27, 46, 36, 0.04), 0 1px 2px rgba(27, 46, 36, 0.02);
    z-index: 1030;
}

.virseeting-header .virseeting-topbar {
    background-color: #F2F6F3;
    border-bottom: 1px solid #E2ECE5;
    font-size: 0.75rem;
    color: #5A7365;
    font-weight: 500;
}

.virseeting-header .virseeting-topbar-inner {
    padding: 0.5rem 0;
}

.virseeting-header .virseeting-topbar-item {
    color: #1B2E24;
}

.virseeting-header .virseeting-topbar-icon {
    color: #2D6A4F;
    font-size: 0.95rem;
}

.virseeting-header .virseeting-top-link {
    color: #5A7365;
    text-decoration: none;
}

.virseeting-header .virseeting-top-link:hover {
    color: #2D6A4F;
}

.virseeting-header .virseeting-navbar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2ECE5;
    padding: 0.75rem 0;
}

.virseeting-header .virseeting-brand {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.virseeting-header .virseeting-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.virseeting-header .virseeting-brand-text {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1B2E24;
}

.virseeting-header .virseeting-nav-link {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1B2E24;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
}

.virseeting-header .virseeting-nav-link:hover,
.virseeting-header .virseeting-nav-link:focus,
.virseeting-header .virseeting-nav-link.active {
    color: #2D6A4F;
    background-color: #F8FAF8;
}

.virseeting-header .virseeting-toggler {
    border: 1px solid #CFDFD4;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    background-color: #F8FAF8;
    color: #1B2E24;
}

.virseeting-header .virseeting-toggler:focus {
    box-shadow: none;
    outline: none;
    border-color: #2D6A4F;
}

.virseeting-header .virseeting-toggler-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.virseeting-header .virseeting-cart-btn {
    background-color: #EAF4EE;
    border: 1px solid #CFDFD4;
    color: #2D6A4F;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 9999px;
    padding: 0.5rem 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.virseeting-header .virseeting-cart-btn:hover {
    background-color: #DCECE2;
    border-color: #2D6A4F;
    color: #1B2E24;
}

.virseeting-header .virseeting-cart-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.virseeting-header .virseeting-cart-label {
    font-size: 0.9rem;
}

.virseeting-header .virseeting-cart-badge {
    background-color: #2D6A4F !important;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3em 0.55em;
    margin-left: 0.4rem;
}

@media (max-width: 991.98px) {
    .virseeting-header .virseeting-topbar {
        display: none;
    }

    .virseeting-header .virseeting-nav-link {
        padding: 0.65rem 1rem;
        border-bottom: 1px solid #F2F6F3;
    }

    .virseeting-header .virseeting-nav-right-wrapper {
        border-top: 1px solid #E2ECE5;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}

.virseeting-article-page {
    background-color: #F8FAF8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1B2E24;
}

.virseeting-article-page__breadcrumb .breadcrumb-item a {
    color: #5A7365;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.virseeting-article-page__breadcrumb .breadcrumb-item a:hover {
    color: #2D6A4F;
    text-decoration: underline;
}

.virseeting-article-page__breadcrumb .breadcrumb-item.active {
    color: #1B2E24;
    font-size: 0.875rem;
    font-weight: 600;
}

.virseeting-article-page__main-card {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.04);
}

.virseeting-article-page__badge {
    background-color: #EAF4EE;
    color: #2D6A4F;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.virseeting-article-page__reading-time {
    color: #5A7365;
    font-size: 0.8125rem;
    font-weight: 500;
}

.virseeting-article-page__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
    color: #1B2E24;
    letter-spacing: -0.025em;
}

.virseeting-article-page__author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #F2F6F3;
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid #CFDFD4;
}

.virseeting-article-page__meta-label {
    font-size: 0.75rem;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.virseeting-article-page__meta-val {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1B2E24;
}

.virseeting-article-page__meta-divider {
    width: 1px;
    height: 28px;
    background-color: #E2ECE5;
}

.virseeting-article-page__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background-color: #F2F6F3;
}

.virseeting-article-page__cover-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.virseeting-article-page__lead p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1B2E24;
    font-weight: 500;
}

.virseeting-article-page__key-points {
    background-color: #F2F6F3;
    border-left: 4px solid #2D6A4F;
    border-radius: 10px;
}

.virseeting-article-page__key-icon {
    color: #2D6A4F;
    font-size: 1.35rem;
}

.virseeting-article-page__section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2E24;
}

.virseeting-article-page__h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B2E24;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.virseeting-article-page__h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2E24;
    line-height: 1.35;
}

.virseeting-article-page__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #5A7365;
}

.virseeting-article-page__quote {
    background-color: #EAF4EE;
    border-radius: 12px;
    border-left: 4px solid #52B788;
}

.virseeting-article-page__quote-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #1B2E24;
    line-height: 1.6;
    font-weight: 500;
}

.virseeting-article-page__quote-cite {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2D6A4F;
    font-style: normal;
}

.virseeting-article-page__list {
    list-style: none;
    padding-left: 0;
}

.virseeting-article-page__list-item {
    font-size: 0.95rem;
    color: #1B2E24;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.virseeting-article-page__takeaway {
    background-color: #FDF2EF;
    border: 1px solid #FCDFD7;
    border-radius: 12px;
}

.virseeting-article-page__takeaway .virseeting-article-page__h3 {
    color: #E76F51;
}

.virseeting-article-page__author-card {
    background-color: #F8FAF8;
    border: 1px solid #E2ECE5;
    border-radius: 12px;
}

.virseeting-article-page__author-avatar-large {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #EAF4EE;
    color: #2D6A4F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid #CFDFD4;
}

.virseeting-article-page__author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2E24;
}

.virseeting-article-page__author-role {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #2D6A4F;
}

.virseeting-article-page__author-desc {
    font-size: 0.875rem;
    color: #5A7365;
    line-height: 1.55;
}

.virseeting-article-page__sidebar-widget {
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(27, 46, 36, 0.04);
}

.virseeting-article-page__sidebar-widget--highlight {
    background-color: #EAF4EE;
    border-color: #CFDFD4;
}

.virseeting-article-page__widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B2E24;
    letter-spacing: -0.01em;
}

.virseeting-article-page__recent-link {
    color: #1B2E24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
}

.virseeting-article-page__recent-link:hover {
    color: #2D6A4F;
}

.virseeting-article-page__recent-link i {
    color: #5A7365;
    font-size: 1.1rem;
}

.virseeting-article-page__sidebar-text {
    font-size: 0.875rem;
    color: #5A7365;
    line-height: 1.55;
}

.virseeting-article-page__btn-sidebar {
    background-color: #2D6A4F;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border: 1px solid #2D6A4F;
    font-size: 0.875rem;
}

.virseeting-article-page__btn-sidebar:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF;
}

.virseeting-article-page__btn-outline {
    background-color: transparent;
    color: #1B2E24;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border: 1.5px solid #CFDFD4;
    font-size: 0.875rem;
}

.virseeting-article-page__btn-outline:hover {
    background-color: #F8FAF8;
    border-color: #2D6A4F;
    color: #2D6A4F;
}

@media (max-width: 767.98px) {
    .virseeting-article-page__main-card {
        padding: 1.25rem;
    }

    .virseeting-article-page__title {
        font-size: 1.125rem;
    }

    .virseeting-article-page__h2 {
        font-size: 1rem;
    }

    .virseeting-article-page__h3 {
        font-size: 0.875rem;
    }
}

.site-footer {
    background-color: #F2F6F3;
    color: #1B2E24;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid #E2ECE5;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif
}

.site-footer__disclaimer {
    background-color: #FFFFFF;
    border: 1px solid #CFDFD4;
    border-left: 4px solid #2D6A4F;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 1px 3px rgba(27, 46, 36, 0.04)
}

.site-footer__disclaimer-icon {
    color: #2D6A4F;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 2px
}

.site-footer__disclaimer-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1B2E24;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em
}

.site-footer__disclaimer-text {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #5A7365
}

.site-footer__main {
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2ECE5
}

.site-footer__logo {
    text-decoration: none
}

.site-footer__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.site-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B2E24;
    letter-spacing: -0.02em
}

.site-footer__brand-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: #5A7365;
    margin-bottom: 1.25rem;
    max-width: 340px
}

.site-footer__payment-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5A7365;
    text-transform: uppercase;
    letter-spacing: 0.04em
}

.site-footer__pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background-color: #FFFFFF;
    border: 1px solid #E2ECE5;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1B2E24
}

.site-footer__pay-badge i {
    font-size: 1.1rem;
    color: #2D6A4F
}

.site-footer__widget {
    height: 100%
}

.site-footer__heading {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1B2E24;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase
}

.site-footer__nav-list,
.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.site-footer__nav-list li {
    margin-bottom: 0.6rem
}

.site-footer__link {
    color: #5A7365;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.4
}

.site-footer__link:hover {
    color: #2D6A4F;
    text-decoration: underline
}

.site-footer__link--contact {
    font-weight: 500;
    color: #1B2E24
}

.site-footer__link--contact:hover {
    color: #2D6A4F
}

.site-footer__contact-icon {
    color: #2D6A4F;
    font-size: 1.1rem;
    line-height: 1
}

.site-footer__contact-icon--wa {
    color: #25D366
}

.site-footer__contact-text {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #1B2E24
}

.site-footer__contact-btn {
    background-color: #2D6A4F;
    border-color: #2D6A4F;
    color: #FFFFFF;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem
}

.site-footer__contact-btn:hover {
    background-color: #21513C;
    border-color: #21513C;
    color: #FFFFFF
}

.site-footer__bottom {
    padding-top: 1.5rem
}

.site-footer__copyright {
    font-size: 0.8125rem;
    color: #5A7365
}

.site-footer__legal-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center
}

.site-footer__legal-link {
    font-size: 0.8125rem;
    color: #5A7365;
    text-decoration: none
}

.site-footer__legal-link:hover {
    color: #2D6A4F;
    text-decoration: underline
}

.site-footer__legal-divider {
    color: #CFDFD4;
    font-size: 0.75rem
}

@media(max-width:767.98px) {
    .site-footer {
        padding-top: 1.75rem;
        padding-bottom: 1.25rem
    }

    .site-footer__heading {
        font-size: 0.875rem;
        margin-bottom: 0.75rem
    }

    .site-footer__disclaimer {
        padding: 0.875rem 1rem;
        margin-bottom: 1.75rem
    }

    .site-footer__legal-links {
        justify-content: center;
        margin-top: 0.5rem
    }
}