:root {
    --blue-dark: #0b3d91;
    --blue: #1a56c4;
    --blue-light: #2f7de1;
    --accent: #ff7a1a;
    --zalo: #0068ff;
    --text: #1c2430;
    --text-light: #5b6472;
    --bg-light: #f5f8fc;
    --white: #ffffff;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* ==== Animations ==== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger: các item con bung ra lệch nhịp khi section cha hiện, cho sống động hơn fade-in đơn thuần */
.why-grid > .why-card,
.starter-grid > .starter-item,
.gallery-grid > .gallery-item,
.pricing-grid > .price-card {
    opacity: 0;
    transform: translateY(20px) scale(.97);
    transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible .why-grid > .why-card,
.fade-in.visible .starter-grid > .starter-item,
.fade-in.visible .gallery-grid > .gallery-item,
.fade-in.visible .pricing-grid > .price-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.why-grid > .why-card:nth-child(1) { transition-delay: .05s; }
.why-grid > .why-card:nth-child(2) { transition-delay: .12s; }
.why-grid > .why-card:nth-child(3) { transition-delay: .19s; }
.why-grid > .why-card:nth-child(4) { transition-delay: .26s; }
.why-grid > .why-card:nth-child(5) { transition-delay: .33s; }
.why-grid > .why-card:nth-child(6) { transition-delay: .4s; }

.starter-grid > .starter-item:nth-child(1) { transition-delay: .05s; }
.starter-grid > .starter-item:nth-child(2) { transition-delay: .12s; }
.starter-grid > .starter-item:nth-child(3) { transition-delay: .19s; }
.starter-grid > .starter-item:nth-child(4) { transition-delay: .26s; }

.pricing-grid > .price-card:nth-child(1) { transition-delay: .05s; }
.pricing-grid > .price-card:nth-child(2) { transition-delay: .15s; }

.gallery-grid > .gallery-item:nth-child(1) { transition-delay: .03s; }
.gallery-grid > .gallery-item:nth-child(2) { transition-delay: .07s; }
.gallery-grid > .gallery-item:nth-child(3) { transition-delay: .11s; }
.gallery-grid > .gallery-item:nth-child(4) { transition-delay: .15s; }
.gallery-grid > .gallery-item:nth-child(5) { transition-delay: .19s; }
.gallery-grid > .gallery-item:nth-child(6) { transition-delay: .23s; }
.gallery-grid > .gallery-item:nth-child(7) { transition-delay: .27s; }
.gallery-grid > .gallery-item:nth-child(8) { transition-delay: .31s; }
.gallery-grid > .gallery-item:nth-child(9) { transition-delay: .35s; }
.gallery-grid > .gallery-item:nth-child(10) { transition-delay: .39s; }
.gallery-grid > .gallery-item:nth-child(11) { transition-delay: .43s; }
.gallery-grid > .gallery-item:nth-child(12) { transition-delay: .47s; }

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(.8) translateY(20px); }
    60% { opacity: 1; transform: scale(1.03) translateY(-4px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes pulseZalo {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,104,255,.45); }
    50% { box-shadow: 0 0 0 10px rgba(0,104,255,0); }
}
@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.025); }
}
@keyframes countPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }

/* ==== Buttons ==== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: transform .15s ease, box-shadow .15s ease;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 16px; }

.btn-outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-zalo { background: var(--zalo); color: var(--white); }
.btn-zalo:hover { box-shadow: 0 8px 20px rgba(0,104,255,.35); }
.zalo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--white);
    color: var(--zalo);
    font-size: 12px;
    font-weight: 900;
}

/* ==== Navbar ==== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    z-index: 100;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 24px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; object-fit: contain; transition: transform .2s ease; }
.logo:hover .logo-img { transform: scale(1.05); }

.navbar-menu { display: flex; gap: 24px; flex: 1; justify-content: center; }
.navbar-menu a.nav-link {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: color .2s ease;
    white-space: nowrap;
    padding-bottom: 4px;
}
.navbar-menu a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: width .25s ease;
}
.navbar-menu a.nav-link:hover { color: var(--blue); }
.navbar-menu a.nav-link:hover::after { width: 100%; }
.navbar-menu a.nav-link.active { color: var(--blue); }
.navbar-menu a.nav-link.active::after { width: 100%; }
.navbar-menu-cta { display: none; }

.navbar-cta-desktop { flex-shrink: 0; }

/* Hamburger: ẩn trên desktop, hiện trên mobile */
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--blue-dark);
    border-radius: 2px;
    margin: 0 auto;
    transition: transform .25s ease, opacity .25s ease;
}
.navbar-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.navbar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,61,145,.35);
    z-index: 99;
    opacity: 0;
    transition: opacity .25s ease;
}
.navbar-backdrop.open { display: block; opacity: 1; }

/* ==== Hero ==== */
.hero {
    background: linear-gradient(180deg, #eef4fc, var(--white));
    padding: 56px 0;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-text { text-align: left; }
.hero h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--blue-dark);
    margin-bottom: 20px;
    animation: bounceIn .8s ease both;
}
.accent-text { color: var(--accent); }

.hero-price-box {
    display: inline-flex;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(26,86,196,.25);
    animation: bounceIn .8s .1s ease both, breathe 3.5s 1.5s ease-in-out infinite;
    transition: transform .2s ease;
}
.hero-price-box:hover { transform: scale(1.03); }
.hero-price-label {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    padding: 10px 16px;
}
.hero-price-value {
    display: flex;
    align-items: center;
    background: var(--blue);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    padding: 10px 24px;
}

.hero-sub {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    animation: bounceIn .8s .15s ease both;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.hero-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    text-align: center;
}
.hero-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(11,61,145,.1);
    font-size: 20px;
    color: var(--blue);
    transition: transform .25s ease, box-shadow .25s ease;
}
.hero-benefit:hover .hero-benefit-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 16px rgba(11,61,145,.2);
}

.hero-stat {
    font-size: 15px;
    margin-bottom: 24px;
    color: var(--text-light);
}
.hero-stat strong {
    color: var(--blue);
    display: inline-block;
    animation: countPop .6s 1.2s ease both;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-zalo { animation: pulseZalo 2.4s 1.2s infinite; }

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11,61,145,.15);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ==== Placeholder blocks for missing images ==== */
.placeholder {
    background: repeating-linear-gradient(45deg, #dde5f0, #dde5f0 10px, #e8edf5 10px, #e8edf5 20px);
    border: 2px dashed #a9b8cf;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5b6472;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.placeholder::before {
    content: attr(data-placeholder);
    padding: 8px 16px;
    background: rgba(255,255,255,.85);
    border-radius: 8px;
}

/* ==== Section title ==== */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 40px;
}
.section-title.left { text-align: left; margin-bottom: 20px; }

/* ==== Starter: 17.5tr bắt đầu bán được gì ==== */
.starter { padding: 70px 0; }
.starter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.4fr;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 32px;
}
.starter-item {
    background: var(--white);
    border: 1px solid #eef1f6;
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    transition: transform .25s ease, box-shadow .25s ease;
}
.starter-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(11,61,145,.12);
}
.starter-icon-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}
.starter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    transition: transform .3s ease;
}
.starter-item:hover .starter-img { transform: scale(1.06); }
.starter-icon-plain {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    background: var(--bg-light);
    transition: transform .3s ease;
}
.starter-item:hover .starter-icon-plain { transform: scale(1.1) rotate(-4deg); }
.starter-item p { font-size: 13px; font-weight: 600; color: var(--text); }

.starter-gift { background: var(--bg-light); border-radius: var(--radius); padding: 20px; }
.starter-gift h4 { font-size: 13px; font-weight: 800; color: var(--blue-dark); margin-bottom: 12px; }
.starter-gift ul { list-style: none; }
.starter-gift li {
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 0 4px 20px;
    position: relative;
}
.starter-gift li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.starter-support { background: var(--bg-light); border-radius: var(--radius); padding: 28px; }
.starter-support-title {
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.starter-support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 8px;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease;
}
.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(11,61,145,.1);
}
.support-icon { transition: transform .3s ease; }
.support-item:hover .support-icon { transform: scale(1.2); }
.support-icon { font-size: 18px; }

/* ==== Why: 6 lý do chọn Cười Cafe ==== */
.why { padding: 70px 0; background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(11,61,145,.15); }
.why-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(26,86,196,.3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover .why-num { transform: rotate(-6deg) scale(1.08); box-shadow: 0 10px 22px rgba(26,86,196,.4); }
.why-card h3 { font-size: 17px; color: var(--blue-dark); margin-bottom: 10px; font-weight: 700; }
.why-card p { color: var(--text-light); font-size: 14px; }

/* ==== Pricing: 2 combo trọn gói ==== */
.pricing { padding: 70px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
}
.price-card {
    position: relative;
    border: 1px solid #dde5f0;
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(11,61,145,.12); }
.price-card.featured { border: 2px solid var(--blue); box-shadow: 0 10px 30px rgba(26,86,196,.15); padding: 32px 28px; }
.price-card.featured:hover { transform: translateY(-6px); }
.price-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(255,122,26,.4);
    animation: breathe 2.4s ease-in-out infinite;
}
.price-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 78%;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: zoom-in;
    border: 1px solid #eef1f6;
    transition: transform .2s ease, box-shadow .2s ease;
}
.price-image:hover { transform: scale(1.02); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.price-card h3 { font-size: 20px; color: var(--blue-dark); margin-bottom: 6px; }
.price-desc { color: var(--text-light); margin-bottom: 18px; font-size: 14px; }
.price-features { list-style: none; text-align: left; margin-bottom: 20px; }
.price-features li { padding: 8px 0 8px 28px; border-bottom: 1px solid #f0f2f5; font-size: 14px; position: relative; }
.price-features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.price { font-size: 32px; font-weight: 800; color: var(--accent); margin-bottom: 20px; }
.price span { font-size: 16px; }

.pricing-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.pricing-help h4 { font-size: 16px; color: var(--blue-dark); margin-bottom: 6px; }
.pricing-help p { font-size: 13px; color: var(--text-light); max-width: 480px; }

/* ==== Compare table ==== */
.compare-title { text-align: center; font-size: 20px; color: var(--blue-dark); margin: 56px 0 24px; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid #dde5f0; margin-bottom: 24px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid #eef1f6; }
.compare-table th { background: var(--blue-dark); color: var(--white); font-weight: 700; }
.compare-table tbody tr:nth-child(even) { background: var(--bg-light); }
.compare-table tbody tr { transition: background .15s ease; }
.compare-table tbody tr:hover { background: #e8f0fc; }

/* ==== Nổi bật dòng cà phê Signature (C1) trong bảng giá ==== */
.compare-table-highlight td { background: #fff8ee; font-weight: 700; }
.compare-table-highlight:hover td { background: #fdf0da; }
.compare-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 3px 10px;
    border-radius: 999px;
    margin-right: 8px;
    vertical-align: middle;
}
.compare-subtext { display: block; font-size: 12px; font-weight: 400; color: var(--text-light); margin-top: 2px; }

/* ==== Trusted: 100+ thương hiệu ==== */
.trusted { padding: 70px 0; background: var(--bg-light); }
.trusted-sub { text-align: center; color: var(--text-light); font-size: 15px; margin-top: -24px; margin-bottom: 36px; }

/* ==== Beans ==== */
.beans { padding: 70px 0; background: var(--bg-light); }

/* ==== Hint & note text ==== */
.img-hint { text-align: center; color: var(--text-light); font-size: 13px; margin-top: -8px; margin-bottom: 40px; }
.table-note { text-align: center; color: var(--text-light); font-size: 13px; }

/* ==== Lightbox (z-index cao nhất - có thể mở đè lên gallery/zalo modal) ==== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 400;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: bounceIn .3s ease both; }

/* ==== Trusted "xem tất cả" button ==== */
.trusted-more { text-align: center; margin-top: 36px; }

/* ==== Gallery Modal: xem toàn bộ ảnh xe cà phê ==== */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(11,61,145,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 24px;
}
.gallery-modal.open { display: flex; }
.gallery-modal-card {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 960px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    animation: bounceIn .3s ease both;
}
.gallery-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eef1f6;
    flex-shrink: 0;
}
.gallery-modal-header h3 { font-size: 17px; color: var(--blue-dark); }
.gallery-modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: var(--bg-light);
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
}
.gallery-modal-close:hover { background: #e2e8f2; }
.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 20px 24px;
    overflow-y: auto;
}
.gallery-modal-item {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform .2s ease;
}
.gallery-modal-item:hover { transform: scale(1.04); }

/* ==== Roastery ==== */
.roastery { padding: 70px 0; }
.roastery-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.roastery-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    cursor: zoom-in;
    transition: transform .3s ease, box-shadow .3s ease;
}
.roastery-image:hover { transform: scale(1.02); box-shadow: 0 12px 28px rgba(11,61,145,.15); }
.roastery-content p { margin-bottom: 20px; color: var(--text-light); }

/* ==== Gallery grid ==== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: scale(1.05) rotate(1deg); box-shadow: 0 12px 24px rgba(0,0,0,.15); z-index: 1; }

/* ==== Contact ==== */
.contact { padding: 70px 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); color: var(--white); }
.contact-banner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.contact-left h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.contact-left p { opacity: .9; margin-bottom: 8px; }
.contact-checklist { list-style: none; margin-bottom: 24px; }
.contact-checklist li { padding: 4px 0 4px 24px; position: relative; opacity: .95; }
.contact-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.contact-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-cta-call { background: transparent; border: 2px solid var(--white); color: var(--white); }
.contact-cta-call:hover { background: var(--white); color: var(--blue-dark); }
.contact-form { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.contact-form-label { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,.95);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    outline: none;
}
.contact-form-input:focus { box-shadow: 0 0 0 2px var(--accent); }
select.contact-form-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a56c4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}
select.contact-form-input:invalid { color: var(--text-light); }
.contact-form-submit { background: var(--white); border-color: var(--white); }
.contact-form-submit:hover { background: transparent; color: var(--white); }
.contact-form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.contact-form-status { font-size: 13px; min-height: 18px; }
.contact-form-status.success { color: #baffc9; font-weight: 700; }
.contact-form-status.error { color: #ffc9c9; font-weight: 700; }

.contact-right { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 32px; text-align: center; }
.contact-right p { margin-bottom: 12px; opacity: .95; text-align: left; }
.contact-right a { color: var(--white); text-decoration: underline; font-weight: 700; }
.contact-qr {
    width: 160px;
    margin: 0 auto 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: transform .25s ease;
}
.contact-qr:hover { transform: scale(1.05); }
.contact-phone { font-size: 20px; font-weight: 800; }
.contact-company { font-size: 12px; opacity: .75; margin-top: 16px; line-height: 1.5; }

/* ==== Footer ==== */
.footer { padding: 24px 0; text-align: center; background: #071c40; color: rgba(255,255,255,.7); font-size: 13px; }

/* ==== Chat widget: CuoiAI tư vấn ==== */
@keyframes chatLauncherGlow {
    0%, 100% { box-shadow: 0 8px 20px rgba(26,86,196,.4), 0 0 0 0 rgba(47,125,225,.5); }
    50% { box-shadow: 0 8px 24px rgba(26,86,196,.5), 0 0 0 8px rgba(47,125,225,0); }
}
@keyframes chatOnlineDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: .7; }
}

.chat-launcher {
    position: fixed;
    bottom: 28px;
    right: 96px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    color: var(--white);
    border: 2px solid rgba(255,255,255,.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatLauncherGlow 2.6s ease-in-out infinite;
    transition: transform .2s ease;
    z-index: 200;
}
.chat-launcher:hover { transform: translateY(-4px) scale(1.06); }
.chat-launcher-robot-icon { width: 40px; height: 40px; object-fit: contain; pointer-events: none; }
.chat-launcher-hint {
    position: fixed;
    bottom: 44px;
    right: 166px;
    background: var(--white);
    color: var(--blue-dark);
    font-family: cursive, var(--font, inherit);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    z-index: 200;
    pointer-events: none;
    transform: rotate(-4deg);
}
.chat-launcher-hint.hidden { display: none; }
.chat-launcher-online-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #2ecc71;
    border: 2px solid var(--white);
    animation: chatOnlineDotPulse 1.8s ease-in-out infinite;
}
.chat-launcher svg.chat-launcher-close-icon { width: 24px; height: 24px; display: none; }
.chat-launcher.open .chat-launcher-robot-icon,
.chat-launcher.open .chat-launcher-online-dot { display: none; }
.chat-launcher.open .chat-launcher-close-icon { display: block; }
.chat-launcher.open { animation: none; }

.chat-panel {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    max-width: calc(100vw - 32px);
    height: 620px;
    max-height: calc(100vh - 140px);
    max-height: calc(100dvh - 140px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
    opacity: 0;
    transform: translateY(16px) scale(.97);
    transition: opacity .2s ease, transform .2s ease;
}
.chat-panel.open { display: flex; opacity: 1; transform: translateY(0) scale(1); }

.chat-panel-header {
    position: relative;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    color: var(--white);
    padding: 20px 20px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    overflow: hidden;
}
.chat-panel-mascot {
    position: absolute;
    top: -6px;
    right: 8px;
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: .9;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.2));
    pointer-events: none;
}
.chat-panel-avatar {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    padding: 4px;
    border: 2px solid rgba(255,255,255,.6);
    flex-shrink: 0;
    z-index: 1;
}
.chat-panel-title { flex: 1; min-width: 0; z-index: 1; }
.chat-panel-header h4 { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 7px; }
.chat-panel-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 2px 7px;
    border-radius: 999px;
}
.chat-panel-header p { font-size: 12px; opacity: .9; margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.chat-panel-status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
}
.chat-panel-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    color: var(--white);
    cursor: pointer;
    font-size: 13px;
    flex-shrink: 0;
    z-index: 1;
    transition: background .2s ease;
}
.chat-panel-close:hover { background: rgba(255,255,255,.28); }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-light);
}
.chat-bubble {
    max-width: 84%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
}
.chat-bullet { color: var(--blue); font-weight: 700; }
.chat-bubble-assistant {
    align-self: flex-start;
    background: var(--white);
    color: var(--text);
    border: 1px solid #eef1f6;
    border-bottom-left-radius: 4px;
}
.chat-bubble-user {
    align-self: flex-end;
    background: var(--blue);
    color: var(--white);
    border-bottom-right-radius: 4px;
}
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-light);
    animation: chatTypingBounce 1s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes chatTypingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.chat-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 2px;
}
.chat-quick-reply {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid #e3e9f3;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.chat-quick-reply svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; }
.chat-quick-reply:hover { border-color: var(--blue); background: #f4f8ff; transform: translateX(2px); }
.chat-quick-reply:disabled { opacity: .5; cursor: default; transform: none; }

.chat-panel-trust {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-top: 1px solid #eef1f6;
    flex-shrink: 0;
}
.chat-panel-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}
.chat-panel-trust svg { width: 12px; height: 12px; color: var(--blue); flex-shrink: 0; }

.chat-panel-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    padding: 8px 0 12px;
    background: var(--white);
    flex-shrink: 0;
}
.chat-panel-footer strong { color: var(--blue); }

.chat-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #eef1f6;
    background: var(--white);
    flex-shrink: 0;
}
.chat-input {
    flex: 1;
    border: 1px solid #dde5f0;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s ease;
}
.chat-input:focus { border-color: var(--blue); }
.chat-input:disabled { opacity: .6; }
.chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--blue);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s ease;
}
.chat-send:hover { background: var(--blue-dark); }
.chat-send svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
    .chat-launcher { width: 52px; height: 52px; right: 76px; bottom: 16px; }
    .chat-launcher-robot-icon { width: 34px; height: 34px; }
    .chat-launcher svg.chat-launcher-close-icon { width: 20px; height: 20px; }
    .chat-launcher-hint { display: none; }
    .chat-panel { bottom: 76px; right: 16px; height: 78vh; height: 78dvh; max-height: calc(100dvh - 96px); }
    .chat-panel-mascot { width: 48px; height: 48px; }
    .chat-panel-trust span { font-size: 9px; }
    .chat-input { font-size: 16px; }
}

/* ==== Back-to-top ==== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255,122,26,.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.8);
    transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s ease;
    z-index: 200;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--blue); transform: translateY(-4px) scale(1.08); }
.back-to-top:active { transform: translateY(0) scale(.95); }

/* ==== Responsive ==== */

/* Tablet: ≤900px — navbar chuyển sang drawer mobile, hero xếp 1 cột */
@media (max-width: 900px) {
    .navbar-toggle { display: flex; }
    .navbar-cta-desktop { display: none; }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(300px, 82vw);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 88px 28px 28px;
        box-shadow: -8px 0 30px rgba(0,0,0,.15);
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 100;
    }
    .navbar-menu.open { transform: translateX(0); }
    .navbar-menu a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #eef1f6;
        font-size: 16px;
    }
    .navbar-menu-cta {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        border-bottom: none;
    }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-text { text-align: center; }
    .hero-price-box, .hero-cta { justify-content: center; }
    .hero-image { order: -1; max-height: 340px; }
    .starter-grid { grid-template-columns: repeat(2, 1fr); }
    .starter-gift { grid-column: span 2; }
    .starter-support-grid { grid-template-columns: repeat(2, 1fr); }
    .roastery-inner { grid-template-columns: 1fr; }
    .contact-banner { grid-template-columns: 1fr; }
}

/* Mobile: ≤640px — thu gọn tối đa, 1 cột hầu hết section */
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .navbar-inner { padding: 10px 16px; }
    .logo-img { height: 38px; }

    .hero { padding: 36px 0; }
    .hero h1 { font-size: 24px; }
    .hero-price-box { margin-bottom: 12px; }
    .hero-price-label { font-size: 11px; padding: 8px 12px; }
    .hero-price-value { font-size: 19px; padding: 8px 18px; }
    .hero-sub { font-size: 14px; }
    .hero-benefits { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-benefit { font-size: 10px; }
    .hero-benefit-icon { width: 38px; height: 38px; font-size: 17px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn { width: 100%; }

    .section-title { font-size: 22px; margin-bottom: 28px; }

    .starter { padding: 48px 0; }
    .starter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .starter-gift { grid-column: span 2; }
    .starter-support-grid { grid-template-columns: 1fr 1fr; }

    .why { padding: 48px 0; }
    .why-grid { grid-template-columns: 1fr; }

    .pricing { padding: 48px 0; }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-image { height: 180px; }
    .pricing-help { flex-direction: column; align-items: flex-start; padding: 22px; }
    .pricing-help .btn { width: 100%; }

    .trusted { padding: 48px 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item { height: 150px; }
    .gallery-modal-grid { grid-template-columns: repeat(2, 1fr); padding: 16px; }
    .gallery-modal-item { height: 110px; }
    .gallery-modal-header { padding: 16px; }

    .roastery { padding: 48px 0; }
    .roastery-image { height: 220px; }

    .beans { padding: 48px 0; }

    .contact { padding: 48px 0; }
    .contact-left h2 { font-size: 21px; }
    .contact-right { padding: 22px; }
    .contact-left .btn { width: 100%; }
    .contact-cta-row { flex-direction: column; }

    .back-to-top { width: 44px; height: 44px; bottom: 16px; right: 16px; font-size: 18px; }
}
/* ==== Combo detail page: dùng chung biến/base từ styles.css ==== */

.logo { text-decoration: none; }

/* ==== Combo hero: khối liền mạch, chữ trái + ảnh phải (giống hero trang chủ) ==== */
.combo-hero {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-light));
    color: var(--white);
    padding: 48px 0;
}
.combo-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.combo-hero-text { display: flex; flex-direction: column; gap: 20px; }
.combo-company { font-size: 14px; font-weight: 600; opacity: .9; }
.combo-company strong { font-size: 18px; }
.combo-hero-contacts { display: flex; flex-direction: column; gap: 4px; }
.combo-contact-line { font-size: 13px; opacity: .85; }

.combo-hero-price-box {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    align-self: flex-start;
}
.combo-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: .85;
    margin-bottom: 6px;
}
.combo-hero-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.combo-hero-amount span { font-size: 20px; }
.combo-hero-desc { font-size: 13px; opacity: .9; margin-top: 8px; max-width: 320px; }

.combo-hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.combo-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,61,145,.1) 0%, rgba(11,61,145,0) 30%, rgba(7,28,64,.7) 100%);
    pointer-events: none;
}
.combo-hero-image {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 72%;
    cursor: zoom-in;
    transition: transform .3s ease;
}
.combo-hero-image:hover { transform: scale(1.03); }
.combo-hero-banner-tag {
    position: absolute;
    left: 20px;
    bottom: 16px;
    z-index: 1;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* ==== Combo parts: 5 phần trong combo ==== */
.combo-parts { padding: 60px 0; }

.combo-part {
    display: flex;
    gap: 20px;
    background: var(--white);
    border: 1px solid #eef1f6;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    margin-bottom: 24px;
}
.combo-part-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.combo-part-body { flex: 1; }
.combo-part-body h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: var(--blue-dark);
    margin-bottom: 14px;
}
.combo-part-title-icon { flex-shrink: 0; color: var(--accent); }
.combo-part-body ul { list-style: none; }
.combo-part-body li {
    font-size: 14px;
    color: var(--text-light);
    padding: 5px 0 5px 22px;
    position: relative;
}
.combo-part-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}
.combo-part-body p { font-size: 14px; color: var(--text-light); margin-bottom: 6px; }
.combo-note { font-style: italic; font-size: 13px !important; }
.combo-machine-name { font-weight: 700; color: var(--blue); margin-bottom: 10px !important; }

.combo-part-media {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 14px;
    cursor: zoom-in;
    transition: transform .25s ease;
}
/* Dùng cho ảnh dạng infographic/danh sách rất dọc, cần hiện đủ chữ, không cắt */
.combo-part-media--contain {
    height: 340px;
    object-fit: contain;
    background: var(--bg-light);
    border: 1px solid #eef1f6;
}
.combo-part-media:hover { transform: scale(1.02); }

.combo-part-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.combo-part-row .combo-part { margin-bottom: 24px; }

.combo-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 28px;
    margin: 8px 0 32px;
}
.combo-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.guarantee-icon { font-size: 22px; flex-shrink: 0; }
.combo-guarantee strong { display: block; font-size: 13px; color: var(--blue-dark); margin-bottom: 4px; }
.combo-guarantee p { font-size: 12px; color: var(--text-light); }

.combo-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==== Combo gallery: ảnh thực tế xe 17.5tr ==== */
.combo-gallery { padding: 60px 0 80px; background: var(--bg-light); }
.gallery-count { color: var(--blue); font-weight: 600; }

/* ==== Pagination: dùng chung mọi gallery có phân trang ==== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination-page,
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    border-radius: 10px;
    border: 1px solid #dde5f0;
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.pagination-page:hover,
.pagination-arrow:hover:not(:disabled) {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-1px);
}
.pagination-page.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(26,86,196,.3);
}
.pagination-arrow {
    font-size: 18px;
    font-weight: 800;
}
.pagination-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-light);
    font-weight: 700;
}

/* ==== Responsive ==== */
@media (max-width: 900px) {
    .combo-part-row { grid-template-columns: 1fr; }
    .combo-hero-grid { grid-template-columns: 1fr; }
    .combo-hero-image { height: 260px; }
}
@media (max-width: 768px) {
    .combo-part { flex-direction: column; }
    .combo-guarantees { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .combo-hero { padding: 28px 0; }
    .combo-hero-grid { gap: 24px; }
    .combo-hero-amount { font-size: 32px; }
    .combo-hero-amount span { font-size: 18px; }
    .combo-hero-image { height: 220px; }
    .combo-parts { padding: 40px 0; }
    .combo-part { padding: 20px; gap: 14px; }
    .combo-part-num { width: 36px; height: 36px; font-size: 14px; }
    .combo-part-body h3 { font-size: 15px; }
    .combo-guarantees { padding: 20px; }
    .combo-cta { flex-direction: column; width: 100%; }
    .combo-cta .btn { width: 100%; }
    .combo-gallery { padding: 40px 0 56px; }
    .pagination { gap: 6px; margin-top: 28px; }
    .pagination-page,
    .pagination-arrow,
    .pagination-ellipsis { min-width: 34px; height: 34px; font-size: 13px; }
}
