:root {
    --primary: #1B4332;
    --secondary: #74C69D;
    --accent: #40916C;
    --background: #F8FAF9;
    --surface: #FFFFFF;
    --text-primary: #081C15;
    --text-secondary: #52796F;
    --border-color: #E9F5EE;
    --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.04);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.btn-primary-cargo {
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 12px 32px;
    border: none;
    font-weight: 500;
    transition: transform 0.3s ease-out;
}

.btn-primary-cargo:active {
    transform: scale(0.96);
}

.cargo-card {
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.cargo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

/* ===== header ===== */
.cargo-smok-header {
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    z-index: 1050;
    transition: all 0.3s ease;
}

.cargo-smok-header .navbar {
    padding: 0.75rem 0;
}

.cargo-smok-header .navbar-brand img {
    max-width: 45px;
    height: 45px;
    object-fit: contain;
}

.cargo-smok-header .navbar-brand span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #1B4332;
    letter-spacing: -0.02em;
}

.cargo-smok-header .nav-link {
    font-family: 'Inter', sans-serif;
    color: #081C15;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.cargo-smok-header .nav-link:hover,
.cargo-smok-header .nav-link:focus {
    color: #40916C;
}

.cargo-smok-header .dropdown-toggle::after {
    border: none;
    content: '\ea4e';
    font-family: 'remixicon';
    vertical-align: middle;
    margin-left: 4px;
    font-size: 0.8rem;
}

.cargo-smok-header .dropdown-menu {
    border: none;
    box-shadow: 0 12px 32px rgba(8, 28, 21, 0.08);
    border-radius: 16px;
    padding: 0.75rem;
    background-color: #FFFFFF;
    margin-top: 10px;
}

.cargo-smok-header .dropdown-item {
    border-radius: 8px;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #081C15;
    transition: all 0.2s ease;
}

.cargo-smok-header .dropdown-item:hover {
    background-color: #F8FAF9;
    color: #1B4332;
    transform: translateX(4px);
}

.cargo-smok-header .btn-primary-pill {
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cargo-smok-header .btn-primary-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
    color: #FFFFFF;
}

.cargo-smok-header .navbar-toggler {
    color: #1B4332;
    font-size: 1.5rem;
    padding: 0.25rem;
}

.cargo-smok-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .cargo-smok-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem;
        border-top: 1px solid #E9F5EE;
        margin-top: 0.5rem;
    }

    .cargo-smok-header .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #F8FAF9;
    }

    .cargo-smok-header .dropdown-menu {
        box-shadow: none;
        padding: 0 0 0 1rem;
        margin-top: 0;
    }

    .cargo-smok-header .btn-primary-pill {
        width: 100%;
        margin-top: 1.5rem;
        padding: 0.85rem;
    }
}

/* ===== hero ===== */
.cargo-hero {
    position: relative;
    background-color: #081C15;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cargo-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 56px 0;
}

.cargo-hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cargo-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cargo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 28, 21, 0.95) 0%, rgba(8, 28, 21, 0.7) 50%, rgba(8, 28, 21, 0.4) 100%);
    z-index: 2;
}

.cargo-hero-container {
    position: relative;
    z-index: 3;
}

.cargo-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #74C69D;
    margin-bottom: 1.5rem;
}

.cargo-hero-title {
    font-family: "Georgia", serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.cargo-hero-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #D8F3DC;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cargo-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #74C69D;
    color: #081C15;
    padding: 18px 36px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    transition: all 0.3s ease-out;
    border: none;
}

.cargo-hero-btn i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.cargo-hero-btn:hover {
    background-color: #B7E4C7;
    color: #081C15;
    transform: translateY(-2px);
}

.cargo-hero-btn:hover i {
    transform: translateX(5px);
}

.cargo-hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.cargo-hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .cargo-hero-wrapper {
        padding: 44px 0;
    }

    .cargo-hero-overlay {
        background: linear-gradient(0deg, rgba(8, 28, 21, 0.95) 20%, rgba(8, 28, 21, 0.6) 100%);
    }

    .cargo-hero-title {
        font-size: 2.25rem;
    }

    .cargo-hero-text {
        font-size: 1rem;
    }

    .cargo-hero-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== catalog-preview ===== */
.catalog-preview {
    background-color: #F8FAF9;
    overflow: hidden;
}

.catalog-preview__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1B4332;
}

.catalog-preview__subtitle {
    font-family: 'Inter', sans-serif;
    color: #52796F;
    max-width: 600px;
}

.catalog-preview__filter-btn {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #52796F;
    transition: all 0.3s ease-out;
}

.catalog-preview__filter-btn:hover,
.catalog-preview__filter-btn.active {
    background: #1B4332;
    color: #FFFFFF;
    border-color: #1B4332;
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
}

.catalog-preview__card {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

.catalog-preview__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.catalog-preview__img-link {
    display: block;
    height: 240px;
    overflow: hidden;
}

.catalog-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.catalog-preview__card:hover .catalog-preview__img {
    transform: scale(1.05);
}

.catalog-preview__body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-preview__item-title {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.catalog-preview__item-title a {
    color: #081C15 !important;
    transition: color 0.3s ease;
}

.catalog-preview__item-title a:hover {
    color: #40916C !important;
}

.catalog-preview__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1B4332;
    margin-top: auto;
}

.catalog-preview__btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease-out;
}

.catalog-preview__btn:hover {
    color: #FFFFFF;
    opacity: 0.9;
    transform: scale(0.98);
}

.catalog-preview__view-all {
    color: #1B4332;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.catalog-preview__view-all:hover {
    color: #40916C;
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .catalog-preview__title {
        font-size: 1.5rem;
    }

    .catalog-preview__item-title {
        font-size: 1rem;
    }
}

/* ===== guides-preview ===== */
.guides-preview-section {
    background-color: #F8FAF9;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.guides-preview-section .section-title {
    color: #081C15;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.guides-preview-section .section-subtitle {
    color: #3A5A50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.guides-preview-section .guide-card {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guides-preview-section .guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.guides-preview-section .guide-card-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.guides-preview-section .guide-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guides-preview-section .guide-card:hover .guide-card-img {
    transform: scale(1.05);
}

.guides-preview-section .guide-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.guides-preview-section .guide-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: #3A5A50;
    font-weight: 500;
}

.guides-preview-section .guide-card-meta i {
    color: #74C69D;
    font-size: 1rem;
}

.guides-preview-section .guide-card-title {
    color: #081C15;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.guides-preview-section .guide-card-title-link {
    text-decoration: none;
}

.guides-preview-section .guide-card-title-link:hover .guide-card-title {
    color: #40916C;
}

.guides-preview-section .btn-pill {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
    border: none;
}

.guides-preview-section .btn-pill:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

.guides-preview-section .btn-primary-large {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    background-color: #1B4332;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
}

.guides-preview-section .btn-primary-large:hover {
    background-color: #40916C;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .guides-preview-section {
        padding: 60px 0;
    }

    .guides-preview-section .section-title {
        font-size: 1.75rem;
    }

    .guides-preview-section .section-subtitle {
        font-size: 1rem;
    }
}

/* ===== stories-preview ===== */
.stories-preview-section {
    background-color: #F8FAF9;
    color: #081C15;
    font-family: 'Inter', sans-serif;
}

.stories-preview-section .stories-title {
    color: #1B4332;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stories-preview-section .stories-lead {
    color: #52796F;
    font-size: 1.1rem;
    line-height: 1.6;
}

.stories-preview-section .story-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E9F5EE;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.stories-preview-section .story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.1);
}

.stories-preview-section .story-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.stories-preview-section .story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stories-preview-section .story-card:hover .story-img {
    transform: scale(1.05);
}

.stories-preview-section .story-meta {
    font-size: 0.85rem;
    color: #74C69D;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stories-preview-section .story-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.stories-preview-section .story-card-title a {
    color: #1B4332;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stories-preview-section .story-card-title a:hover {
    color: #40916C;
}

.stories-preview-section .story-excerpt {
    color: #52796F;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stories-preview-section .btn-story-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1B4332;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.stories-preview-section .btn-story-action:hover {
    gap: 12px;
    color: #40916C;
}

.stories-preview-section .btn-stories-view-all {
    display: inline-block;
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stories-preview-section .btn-stories-view-all:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(27, 67, 50, 0.2);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .stories-preview-section .stories-title {
        font-size: 1.8rem;
    }

    .stories-preview-section .story-img-wrapper {
        height: 200px;
    }
}

/* ===== footer ===== */
.cargosmok-footer {
    background-color: #F8FAF9;
    color: #081C15;
    padding: 80px 0 40px;
    border-top: 1px solid #E9F5EE;
    font-family: 'Inter', sans-serif;
}

.cargosmok-footer .footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.cargosmok-footer .footer-desc {
    color: #52796F;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

.cargosmok-footer .footer-title {
    color: #1B4332;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
}

.cargosmok-footer .footer-nav {
    display: flex;
    flex-direction: column;
}

.cargosmok-footer .footer-link {
    color: #52796F;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
}

.cargosmok-footer .footer-link:hover {
    color: #40916C;
    transform: translateX(4px);
}

.cargosmok-footer .footer-link.d-inline {
    display: inline;
    margin-bottom: 0;
}

.cargosmok-footer .footer-link.d-inline:hover {
    transform: none;
}

.cargosmok-footer .share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFFFFF;
    color: #1B4332;
    margin-right: 12px;
    border: 1px solid #E9F5EE;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.cargosmok-footer .share-btn:hover {
    background: #1B4332;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.15);
}

.cargosmok-footer .contact-item {
    display: flex;
    align-items: flex-start;
    color: #52796F;
    font-size: 0.95rem;
    line-height: 1.4;
}

.cargosmok-footer .contact-item i {
    color: #40916C;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.cargosmok-footer .whatsapp-cta {
    display: inline-flex;
    align-items: center;
    background: #1B4332;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.cargosmok-footer .whatsapp-cta:hover {
    background: #40916C;
    color: #FFFFFF;
    transform: scale(1.02);
}

.cargosmok-footer .footer-divider {
    border: 0;
    border-top: 1px solid #E9F5EE;
    margin: 40px 0 30px;
    opacity: 1;
}

.cargosmok-footer .copyright-text {
    color: #52796F;
    font-size: 0.85rem;
}

.cargosmok-footer .payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .cargosmok-footer .payment-icons {
        justify-content: flex-end;
    }
}

.cargosmok-footer .payment-icons i {
    font-size: 2.4rem;
    color: #52796F;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.cargosmok-footer .payment-icons i:hover {
    opacity: 1;
    color: #1B4332;
}

/* ===== PAGE: privacy ===== */
.policy-content-body .policy-container { padding: 1.5rem 0; color: #4b5563; font-family: 'Inter', sans-serif; line-height: 1.7; }
.policy-content-body .last-updated-date { font-weight: 500; color: #52796F; margin-bottom: 2rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.policy-content-body h2 { color: #111827; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.25rem; letter-spacing: -0.02em; border-left: 4px solid #1B4332; padding-left: 1rem; }
.policy-content-body h3 { color: #1B4332; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1rem; }
.policy-content-body p { margin-bottom: 1.25rem; }
.policy-content-body ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; }
.policy-content-body ul li { position: relative; margin-bottom: 0.75rem; padding-left: 1.5rem; }
.policy-content-body ul li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; left: 0; color: #40916C; font-size: 1rem; top: 0.1rem; }
.policy-content-body strong { color: #111827; font-weight: 600; }
.policy-content-body .policy-link { color: #1B4332; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.policy-content-body .policy-link:hover { color: #74C69D; }
@media (max-width: 768px) {
  .policy-content-body h2 { font-size: 16px; margin-top: 2rem; }
  .policy-content-body h3 { font-size: 14px; }
  .policy-content-body { padding: 1rem; }
}

/* ===== PAGE: terms ===== */
.policy-content-body { padding: 2rem 1.25rem; font-family: 'Inter', sans-serif; background-color: #FFFFFF; border-radius: 20px; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04); max-width: 100%; word-wrap: break-word; } .policy-content-body h1 { color: #1B4332; font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; } .policy-content-body h2 { color: #1B4332; font-size: 1.25rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; line-height: 1.3; } .policy-content-body p { color: #52796F; line-height: 1.7; margin-bottom: 1.25rem; font-size: 1rem; } .policy-content-body a { color: #40916C; text-decoration: none; transition: color 0.3s ease; font-weight: 500; } .policy-content-body a:hover { color: #1B4332; text-decoration: underline; } .policy-content-body ul { padding-left: 0; margin-bottom: 1.5rem; list-style-type: none; } .policy-content-body ul li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: #52796F; line-height: 1.6; } .policy-content-body ul li::before { content: '\eb7e'; font-family: 'remixicon'; position: absolute; left: 0; color: #74C69D; font-size: 1.1rem; top: 0; } @media (max-width: 768px) { .policy-content-body { padding: 1.5rem 1rem; border-radius: 12px; } .policy-content-body h1 { font-size: 18px !important; } .policy-content-body h2 { font-size: 16px !important; } .policy-content-body h3 { font-size: 14px !important; } .policy-content-body p { font-size: 0.95rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-body {
  font-family: 'Inter', sans-serif;
  color: #081C15;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.policy-content-body h2 {
  color: #1B4332;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.policy-content-body p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #52796F;
}

.policy-content-body .policy-date {
  font-weight: 600;
  color: #40916C;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  border-bottom: 1px solid #E9F5EE;
  padding-bottom: 10px;
}

.policy-content-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
  list-style: none;
}

.policy-content-body ul li {
  position: relative;
  margin-bottom: 0.75rem;
  color: #52796F;
}

.policy-content-body ul li::before {
  content: "\eb7e";
  font-family: 'remixicon';
  position: absolute;
  left: -1.5rem;
  color: #40916C;
  font-size: 1rem;
}

.policy-content-body a {
  color: #1B4332;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.policy-content-body a:hover {
  color: #40916C;
  text-decoration: underline;
}

.policy-content-body strong {
  color: #1B4332;
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-content-body h2 {
    font-size: 1.25rem;
  }
  .policy-content-body p {
    font-size: 0.95rem;
  }
  .policy-content-body {
    padding: 15px;
  }
}

/* ===== PAGE: refound ===== */
.policy-content-body { font-family: 'Inter', sans-serif; color: #081C15; line-height: 1.7; padding: 2rem; max-width: 900px; margin: 0 auto; background: #FFFFFF; border-radius: 20px; box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04); } .policy-content-body h2 { font-size: 1.5rem; font-weight: 700; color: #1B4332; margin-bottom: 1.5rem; letter-spacing: -0.02em; } .policy-content-body h3 { font-size: 1.25rem; font-weight: 600; color: #1B4332; margin-top: 2rem; margin-bottom: 1rem; border-left: 4px solid #74C69D; padding-left: 1rem; } .policy-content-body p { margin-bottom: 1rem; color: #52796F; } .policy-content-body ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: none; } .policy-content-body ul li { position: relative; margin-bottom: 0.5rem; color: #52796F; } .policy-content-body ul li::before { content: '\eb7b'; font-family: 'remixicon'; position: absolute; left: -1.5rem; color: #40916C; font-size: 1rem; } .policy-content-body a { color: #40916C; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .policy-content-body a:hover { color: #1B4332; text-decoration: underline; } .policy-intro-section { margin-bottom: 2.5rem; border-bottom: 1px solid #E9F5EE; padding-bottom: 1.5rem; } .policy-section { margin-bottom: 2.5rem; } .policy-footer-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #E9F5EE; font-size: 0.9rem; font-style: italic; color: #52796F; } @media (max-width: 768px) { .policy-content-body { padding: 1.25rem; } .policy-content-body h2 { font-size: 1.25rem; } .policy-content-body h3 { font-size: 1.1rem; } .policy-content-body p, .policy-content-body li { font-size: 0.95rem; } }

/* ===== PAGE: delivery ===== */
.policy-layout-wrapper { padding: 40px 0; background-color: #F8FAF9; } .policy-content-body { max-width: 800px; margin: 0 auto; padding: 0 20px; color: #4b5563; line-height: 1.7; } .policy-content-body h2 { color: #111827; font-size: 1.125rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1.25rem; letter-spacing: -0.02em; border-bottom: 1px solid #E9F5EE; padding-bottom: 0.5rem; } .policy-content-body h3 { color: #1B4332; font-size: 0.875rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.75rem; } .policy-content-body p { margin-bottom: 1.25rem; font-size: 1rem; } .policy-content-body ul { margin-bottom: 1.5rem; padding-left: 1.25rem; list-style-type: none; } .policy-content-body ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; } .policy-content-body ul li::before { content: "\eb7a"; font-family: 'remixicon'; position: absolute; left: 0; color: #40916C; font-size: 1rem; } .policy-content-body a { color: #40916C; text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .policy-content-body a:hover { color: #1B4332; } @media (max-width: 768px) { .policy-layout-wrapper { padding: 20px 0; } .policy-content-body h2 { font-size: 1rem; } .policy-content-body h3 { font-size: 0.875rem; } .policy-content-body p { font-size: 0.9375rem; } }

/* ===== PAGE: cookies ===== */
.policy-layout-wrapper {
  padding: 60px 0;
  background-color: #F8FAF9;
}

.policy-content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Inter', sans-serif;
  color: #4b5563;
  line-height: 1.7;
}

.policy-content-body h1 {
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.policy-content-body h2 {
  color: #111827;
  font-size: 24px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.policy-content-body p {
  margin-bottom: 16px;
}

.policy-content-body ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style-type: none;
}

.policy-content-body li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.policy-content-body li::before {
  content: "\eb7e";
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  color: #40916C;
  font-size: 16px;
}

.policy-content-body a {
  color: #1B4332;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-content-body a:hover {
  color: #40916C;
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .policy-layout-wrapper {
    padding: 40px 0;
  }
  
  .policy-content-body h1 {
    font-size: 18px !important;
  }
  
  .policy-content-body h2 {
    font-size: 16px !important;
  }
  
  .policy-content-body h3 {
    font-size: 14px !important;
  }
  
  .policy-content-body p, 
  .policy-content-body li {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ===== PAGE: catalog ===== */
.catalog-section {
  background-color: #F8FAF9;
}

.catalog-section .catalog-controls {
  background-color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #E9F5EE;
}

.catalog-section .search-box .form-control {
  min-width: 280px;
  border: 1px solid #E9F5EE;
  background-color: #F8FAF9;
  color: #081C15;
}

.catalog-section .search-box .form-control:focus {
  background-color: #FFFFFF;
  border-color: #74C69D;
  box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.1);
}

.catalog-section .btn-filter {
  background-color: transparent;
  border: 1px solid #E9F5EE;
  color: #52796F;
  font-weight: 500;
  transition: all 0.3s ease-out;
}

.catalog-section .btn-filter:hover {
  border-color: #74C69D;
  color: #1B4332;
}

.catalog-section .btn-filter.active {
  background-color: #1B4332;
  border-color: #1B4332;
  color: #FFFFFF;
}

.catalog-section .product-card {
  background-color: #FFFFFF;
  border: 1px solid #E9F5EE;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.catalog-section .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.catalog-section .img-wrapper {
  aspect-ratio: 1/1;
  background-color: #F0F4F2;
}

.catalog-section .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-section .product-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.catalog-section .category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #E9F5EE;
  color: #40916C;
  letter-spacing: 0.05em;
}

.catalog-section .product-title a {
  color: #081C15;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.catalog-section .product-title a:hover {
  color: #40916C;
}

.catalog-section .product-price {
  color: #1B4332;
}

.catalog-section .btn-primary {
  background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
  border: none;
  color: #FFFFFF;
  font-weight: 600;
}

.catalog-section .btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.catalog-section .btn-primary:active {
  transform: scale(0.98);
}

/* ===== PAGE: guides ===== */
.guides-section {
  background-color: #F8FAF9;
  color: #081C15;
}

.guides-section .guide-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.guides-section .guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.guides-section .search-box input {
  background-color: #FFFFFF;
  border: 1px solid #E9F5EE;
  border-radius: 50px;
  transition: box-shadow 0.2s ease;
}

.guides-section .search-box input:focus {
  box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.2);
  border-color: #74C69D;
  outline: none;
}

.guides-section .btn-primary {
  background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
  border: none;
  color: #FFFFFF;
}

.guides-section .btn-outline-primary {
  border: 1px solid #1B4332;
  color: #1B4332;
}

.guides-section .btn-outline-primary:hover {
  background-color: #1B4332;
  color: #FFFFFF;
}

.guides-section .badge {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.guides-section .text-primary {
  color: #1B4332 !important;
}

.guides-section .text-accent {
  color: #40916C !important;
}

.guides-section h3 a {
  color: #081C15;
  transition: color 0.2s;
}

.guides-section h3 a:hover {
  color: #40916C;
}

.guides-section .content-block {
  border: 1px solid #E9F5EE;
}

@media (max-width: 767px) {
  .guides-section h2 {
    font-size: 1.25rem !important;
  }
  .guides-section h3 {
    font-size: 1.1rem !important;
  }
}

/* ===== PAGE: stories ===== */
.stories-grid .story-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  background-color: #FFFFFF;
}
.stories-grid .story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(27, 67, 50, 0.1) !important;
}
.stories-grid .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stories-grid .story-card:hover .card-img-top {
  transform: scale(1.05);
}
.stories-grid .bg-accent-light {
  background-color: rgba(116, 198, 157, 0.15);
}
.stories-grid .text-accent {
  color: #40916C;
}
.stories-grid .text-primary-light {
  color: #1B4332;
}
.stories-grid .text-secondary-light {
  color: #52796F;
}
.stories-grid .btn-outline-primary {
  border-color: #1B4332;
  color: #1B4332;
}
.stories-grid .btn-outline-primary:hover {
  background-color: #1B4332;
  color: #FFFFFF;
}
.stories-grid .form-control:focus,
.stories-grid .form-select:focus {
  border-color: #74C69D;
  box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.2);
}
.stories-grid .input-group-text {
  color: #52796F;
}

/* ===== PAGE: contact ===== */
.contact-info {
  background-color: #F8FAF9;
  font-family: 'Inter', sans-serif;
}

.contact-info .contact-info__title {
  color: #1B4332;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-info .contact-info__description {
  color: #52796F;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-info .contact-info__item {
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E9F5EE;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.contact-info .contact-info__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.contact-info .contact-info__icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info .contact-info__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #40916C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-info .contact-info__value,
.contact-info .contact-info__link {
  font-size: 1.1rem;
  color: #081C15;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.contact-info .contact-info__link:hover {
  color: #74C69D;
}

.contact-info .contact-info__map-container {
  height: 100%;
  min-height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid #E9F5EE;
}

.contact-info .contact-info__map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .contact-info .contact-info__title {
    font-size: 2rem;
  }
  .contact-info .contact-info__map-container {
    min-height: 400px;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .contact-info .contact-info__title {
    font-size: 1.75rem;
  }
  .contact-info .contact-info__item {
    padding: 1.25rem;
  }
  .contact-info .contact-info__icon-wrapper {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.comment-card {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(27, 67, 50, 0.08);
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #74C69D;
}

.comment-user-name {
    color: #1B4332;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.comment-badge {
    background: #E9F5EE;
    color: #40916C;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
}

.comment-meta {
    font-size: 0.85rem;
    color: #52796F;
}

.comment-rating {
    color: #74C69D;
    font-size: 0.9rem;
}

.comment-text {
    color: #081C15;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

.btn-comment-action {
    background: transparent;
    border: none;
    color: #52796F;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.btn-comment-action:hover {
    color: #1B4332;
}

.btn-comment-action i {
    font-size: 1.1rem;
}

.reply-wrapper {
    position: relative;
}

.reply-wrapper::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 50%;
    width: 2px;
    border-left: 2px solid #E9F5EE;
    border-bottom: 2px solid #E9F5EE;
    border-bottom-left-radius: 12px;
}

.reply-card {
    background: #F8FAF9;
    border: 1px solid #E9F5EE;
    border-radius: 16px;
}

.reply-avatar {
    width: 36px;
    height: 36px;
    border: 2px solid #40916C;
}

.staff-tag {
    background: #1B4332;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 1px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.reply-card .comment-text {
    font-size: 0.925rem;
    color: #52796F;
}


/* ===== PAGE TEMPLATE: catalog-items ===== */
.detail-page-wrapper {
    background-color: #F8FAF9;
}

.cargo-hero-mini {
    padding: 60px 0 40px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E9F5EE;
}

.detail-hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1B4332;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.detail-hero-subtitle {
    color: #52796F;
    font-size: 1.1rem;
    max-width: 600px;
}

.detail-gallery {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
    min-width: 100%;
    height: 400px;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-slider-prev,
.btn-slider-next {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1B4332;
    transition: all 0.3s ease;
}

.btn-slider-prev:hover,
.btn-slider-next:hover {
    background: #1B4332;
    color: #FFFFFF;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: #E9F5EE;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #40916C;
    width: 20px;
    border-radius: 10px;
}

.detail-info-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #1B4332;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.25);
}

.compliance-info {
    background: #F0F7F4;
    color: #1B4332;
}

.detail-tabs-container .nav-pills .nav-link {
    color: #52796F;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    margin-right: 10px;
    border: 1px solid #E9F5EE;
}

.detail-tabs-container .nav-pills .nav-link.active {
    background: #1B4332;
    color: #FFFFFF;
}

.content-box {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
}

.comment-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E9F5EE;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-badge {
    font-size: 0.7rem;
    background: #E9F5EE;
    color: #1B4332;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-comment-action {
    background: none;
    border: none;
    color: #52796F;
    font-size: 0.85rem;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-comment-action:hover {
    color: #1B4332;
}

.btn-comment-action.active {
    color: #40916C;
    font-weight: 600;
}

.comment-form-box .form-control,
.comment-form-box .form-select {
    background-color: #FFFFFF;
    border: 1px solid #E9F5EE;
    padding: 0.8rem 1rem;
    border-radius: 12px;
}

.comment-form-box .form-control:focus {
    border-color: #74C69D;
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.1);
}

@media (max-width: 767px) {
    .slider-slide {
        height: 300px;
    }

    .detail-hero-title {
        font-size: 1.75rem;
    }
}

/* ===== PAGE TEMPLATE: guides-items ===== */
.guides-detail-page {
    background-color: #F8FAF9;
}

.guides-detail-page .guide-article {
    border: 1px solid #E9F5EE;
}

.guides-detail-page .article-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #081C15;
}

.guides-detail-page .article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1B4332;
    margin: 2.5rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.guides-detail-page .article-body p {
    margin-bottom: 1.5rem;
}

.guides-detail-page .article-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.guides-detail-page .article-body li {
    margin-bottom: 0.75rem;
    position: relative;
}

.guides-detail-page .text-accent {
    color: #40916C;
}

.guides-detail-page .sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1B4332;
}

.guides-detail-page .related-img-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.guides-detail-page .related-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guides-detail-page .related-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #081C15;
    transition: color 0.3s ease;
}

.guides-detail-page .related-item:hover .related-item-title {
    color: #40916C;
}

.guides-detail-page .related-item-date {
    font-size: 0.8rem;
    color: #52796F;
}

.guides-detail-page .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.guides-detail-page .comment-user-name {
    font-weight: 700;
    color: #1B4332;
}

.guides-detail-page .comment-badge,
.guides-detail-page .staff-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.guides-detail-page .comment-badge {
    background-color: #E9F5EE;
    color: #40916C;
}

.guides-detail-page .staff-tag {
    background-color: #1B4332;
    color: #FFFFFF;
}

.guides-detail-page .comment-date {
    font-size: 0.8rem;
    color: #52796F;
}

.guides-detail-page .comment-text {
    font-size: 0.95rem;
    color: #081C15;
    line-height: 1.6;
}

.guides-detail-page .btn-comment-action {
    background: none;
    border: none;
    font-size: 0.85rem;
    color: #52796F;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: color 0.3s ease;
}

.guides-detail-page .btn-comment-action:hover {
    color: #40916C;
}

.guides-detail-page .form-control {
    border-radius: 12px;
    border: 1px solid #E9F5EE;
    padding: 0.75rem 1rem;
    background-color: #F8FAF9;
    font-size: 0.95rem;
}

.guides-detail-page .form-control:focus {
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.1);
    border-color: #74C69D;
}

.guides-detail-page .form-control::placeholder {
    color: #52796F;
    opacity: 0.6;
}

.guides-detail-page .js-submit-comment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 30px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(27, 67, 50, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.guides-detail-page .js-submit-comment::after {
    content: "\ea6c";
    font-family: "remixicon";
    font-size: 1.1rem;
}

.guides-detail-page .js-submit-comment:hover,
.guides-detail-page .js-submit-comment:focus-visible {
    color: #FFFFFF;
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(27, 67, 50, 0.24);
}

.guides-detail-page .js-submit-comment:active {
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .guides-detail-page .article-body {
        font-size: 1rem;
    }

    .guides-detail-page .cargo-hero-title {
        font-size: 2rem;
    }

    .guides-detail-page .reply-wrapper {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: stories-items ===== */
.stories-detail-page .cargo-hero-img {
    object-position: center 28%;
}

.stories-detail-page .story-meta .meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #52796F;
}

.stories-detail-page .story-rich-text {
    color: #081C15;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stories-detail-page .story-rich-text h2 {
    color: #1B4332;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stories-detail-page .story-rich-text p {
    margin-bottom: 1.5rem;
}

.stories-detail-page .story-share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.stories-detail-page .story-share-btn.btn-fb {
    background-color: #1877F2;
}

.stories-detail-page .story-share-btn.btn-x {
    background-color: #000000;
}

.stories-detail-page .story-share-btn.btn-in {
    background-color: #0A66C2;
}

.stories-detail-page .story-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0.9;
}

.stories-detail-page .hover-green:hover .fw-bold {
    color: #40916C;
    transition: color 0.3s ease;
}

.stories-detail-page .comment-card {
    background: #FFFFFF;
    border: 1px solid #E9F5EE;
    border-radius: 16px;
}

.stories-detail-page .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.stories-detail-page .comment-badge {
    background: #E9F5EE;
    color: #1B4332;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.stories-detail-page .comment-rating {
    color: #FFB800;
    font-size: 0.85rem;
}

.stories-detail-page .comment-date {
    color: #52796F;
    font-size: 0.8rem;
}

.stories-detail-page .btn-comment-action {
    background: none;
    border: none;
    color: #52796F;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.stories-detail-page .btn-comment-action:hover {
    color: #1B4332;
}

.stories-detail-page .reply-wrapper {
    border-left: 2px solid #E9F5EE;
    padding-left: 1rem;
}

.stories-detail-page .staff-tag {
    background: #1B4332;
    color: #FFFFFF;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
}

.stories-detail-page .form-control {
    border: 1px solid #E9F5EE;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background-color: #F8FAF9;
}

.stories-detail-page .form-control:focus {
    background-color: #FFFFFF;
    border-color: #74C69D;
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.1);
}

.stories-detail-page .star-rating-input i {
    cursor: pointer;
    transition: color 0.2s ease;
}

.stories-detail-page .star-rating-input i.ri-star-fill {
    color: #FFB800;
}

body.cart-modal-open {
    overflow: hidden;
}

.cargo-cart-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: #1B4332;
    color: #FFFFFF;
    box-shadow: 0 18px 36px rgba(8, 28, 21, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cargo-cart-floating:hover,
.cargo-cart-floating:focus-visible {
    background: #40916C;
    transform: translateY(-2px);
}

.cargo-cart-floating__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #74C69D;
    color: #081C15;
    border: 2px solid #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 18px;
}

.cargo-cart-toast {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 1101;
    background: #081C15;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 16px 32px rgba(8, 28, 21, 0.22);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cargo-cart-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cargo-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    background: rgba(8, 28, 21, 0.55);
}

.cargo-cart-modal.is-open {
    display: flex;
}

.cargo-cart-modal__panel {
    width: min(620px, 100%);
    height: 100%;
    overflow-y: auto;
    background: #F8FAF9;
    box-shadow: -20px 0 44px rgba(8, 28, 21, 0.18);
    padding: 28px;
}

.cargo-cart-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.cargo-cart-modal__eyebrow {
    color: #40916C;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.cargo-cart-modal__header h2 {
    color: #1B4332;
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0;
}

.cargo-cart-modal__close {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid #E9F5EE;
    border-radius: 50%;
    background: #FFFFFF;
    color: #1B4332;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cargo-cart-success {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid rgba(64, 145, 108, 0.25);
    border-radius: 16px;
    background: #E9F5EE;
    color: #1B4332;
}

.cargo-cart-success[hidden] {
    display: none;
}

.cargo-cart-success i {
    font-size: 1.5rem;
}

.cargo-cart-success p {
    margin: 0;
    line-height: 1.5;
}

.cargo-cart-items {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.cargo-cart-item {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid #E9F5EE;
    border-radius: 16px;
    background: #FFFFFF;
}

.cargo-cart-item img {
    width: 74px;
    height: 74px;
    border-radius: 12px;
    object-fit: cover;
}

.cargo-cart-item__info h3 {
    color: #081C15;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.cargo-cart-item__info p {
    color: #1B4332;
    font-weight: 700;
    margin: 0 0 8px;
}

.cargo-cart-remove {
    border: 0;
    background: transparent;
    color: #52796F;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.cargo-cart-remove:hover {
    color: #1B4332;
}

.cargo-cart-qty {
    display: grid;
    gap: 6px;
    color: #52796F;
    font-size: 0.8rem;
    font-weight: 700;
}

.cargo-cart-qty input {
    width: 72px;
    border: 1px solid #E9F5EE;
    border-radius: 12px;
    padding: 10px;
    color: #081C15;
    font-weight: 700;
}

.cargo-cart-empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 34px 18px;
    border: 1px dashed #B7E4C7;
    border-radius: 18px;
    background: #FFFFFF;
    color: #52796F;
}

.cargo-cart-empty i {
    color: #40916C;
    font-size: 2rem;
}

.cargo-cart-empty p {
    margin: 0;
}

.cargo-cart-form {
    padding: 20px;
    border: 1px solid #E9F5EE;
    border-radius: 18px;
    background: #FFFFFF;
}

.cargo-cart-form.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.cargo-cart-form h3 {
    color: #1B4332;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 16px;
}

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

.cargo-cart-form label {
    display: grid;
    gap: 7px;
    color: #52796F;
    font-size: 0.86rem;
    font-weight: 700;
}

.cargo-cart-form__wide {
    grid-column: 1 / -1;
}

.cargo-cart-form input {
    width: 100%;
    border: 1px solid #E9F5EE;
    border-radius: 12px;
    background: #F8FAF9;
    color: #081C15;
    padding: 12px 14px;
    outline: none;
}

.cargo-cart-form input:focus {
    border-color: #74C69D;
    box-shadow: 0 0 0 4px rgba(116, 198, 157, 0.16);
    background: #FFFFFF;
}

.cargo-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
    padding-top: 16px;
    border-top: 1px solid #E9F5EE;
    color: #52796F;
    font-weight: 700;
}

.cargo-cart-total strong {
    color: #1B4332;
    font-size: 1.35rem;
}

.cargo-cart-submit {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
    color: #FFFFFF;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(27, 67, 50, 0.18);
}

.cargo-cart-submit:hover,
.cargo-cart-submit:focus-visible {
    filter: brightness(1.05);
}

@media (max-width: 575.98px) {
    .cargo-cart-modal__panel {
        padding: 20px;
    }

    .cargo-cart-item {
        grid-template-columns: 64px 1fr;
    }

    .cargo-cart-qty {
        grid-column: 1 / -1;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .cargo-cart-qty input {
        width: 100%;
    }

    .cargo-cart-form__grid {
        grid-template-columns: 1fr;
    }

    .cargo-cart-form__wide {
        grid-column: auto;
    }
}
