@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&family=Exo+2:wght@400;700;800;900&family=Rajdhani:wght@700&display=swap');

:root {
    --primary-color: #CC0000;
    --secondary-color: #111111;
    --text-color: #333333;
    --light-bg: #f5f6f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --font-main: 'Be Vietnam Pro', sans-serif;
    --z-font: 'Exo 2', sans-serif;
    --font-number: 'Rajdhani', sans-serif;
    --z-red: #CC0000;
    --z-dark: #111111;
}

/* Reset & Base */
html, body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}
a:hover { color: var(--primary-color); }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }
.text-red { color: var(--primary-color) !important; }

/* Header & Top Bar */
.header-wrapper {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-top {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 0;
    font-size: 13px;
}
.header-top a { color: var(--white); }
.navbar { padding: 10px 0; }
.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    font-size: 15px;
    padding: 10px 15px !important;
}
.nav-link:hover, .nav-link.active { color: var(--primary-color) !important; }

/* Nút Hotline trên Header giống mẫu */
.header-button .button {
    background-color: #ffffff !important;
    color: #CC0000 !important;
    border-radius: 50px !important;
    font-family: var(--z-font) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    padding: 10px 25px !important;
    border: 2px solid #CC0000 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    animation: z-pulse-white 2.5s infinite !important;
    text-decoration: none;
}
.header-button .button i {
    margin-right: 8px;
    font-size: 16px;
    animation: z-shake-icon 2s infinite;
}
@keyframes z-pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(204,0,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(204,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(204,0,0,0); }
}
@keyframes z-shake-icon {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50% { transform: rotate(15deg) scale(1.1); }
    20%, 40% { transform: rotate(-15deg) scale(1.1); }
    60% { transform: rotate(0deg) scale(1); }
}

/* Hero Slider */
.hero-slider { position: relative; }
.hero-slide-item { width: 100%; display: block; }
.hero-slide-img { width: 100%; height: auto; object-fit: cover; }

/* Honda Quick Action */
.honda-quick-action {
    background-color: #f5f6f8;
    padding: 50px 0;
    font-family: var(--font-main);
}
.qa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.qa-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}
.qa-item:hover { transform: translateY(-5px); }
.qa-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--z-dark);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.qa-title {
    font-family: var(--z-font);
    font-size: 18px;
    font-weight: 800;
    color: var(--z-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.3;
}
.qa-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}
.qa-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--z-dark);
    color: #fff;
    font-family: var(--z-font);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 4px;
    transform: skewX(-15deg);
    margin-top: auto;
    transition: background 0.3s;
    cursor: pointer;
}
.qa-btn:hover { background: var(--z-red); color: #fff;}
.qa-btn span { display: block; transform: skewX(15deg); }

/* Showcase Section */
.z-showcase-section {
    position: relative;
    padding: 80px 0 40px;
    background-color: #f4f6f8;
    overflow: hidden;
    font-family: var(--z-font);
}
.z-bg-layer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.bg-icon {
    position: absolute; color: #000; opacity: 0.04;
    display: flex; align-items: center; justify-content: center;
}
.icon-gear {
    top: -60px; left: -60px; font-size: 350px;
    animation: spin-slow 80s linear infinite;
}
@keyframes spin-slow { 100% { transform: rotate(360deg); } }

.z-showcase-section h2 {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--z-dark);
    margin-bottom: 10px;
}
.hp-sub { color: #888; font-size: 16px; font-style: italic; margin-bottom: 40px; }

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 10px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}
.badge-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.badge-outline {
    border: 1px solid #d4af37;
    color: #b8860b;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    background: #fff;
}
.badge-side {
    position: absolute;
    left: -20px;
    top: 30px;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.badge-side strong {
    font-size: 16px;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}
.badge-side.bg-red { background-color: #CC0000; }
.badge-side.bg-black { background-color: #111; }

.product-img {
    margin: 30px 0 10px;
    text-align: center;
}
.product-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--z-dark);
    margin-bottom: 0px;
    text-transform: uppercase;
}
.product-price {
    font-family: var(--font-number);
    font-size: 26px;
    font-weight: 700;
    color: var(--z-red);
    margin-bottom: 10px;
}
.price-label {
    font-family: var(--font-main);
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin-bottom: 10px;
}
.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.meta-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #eee;
}
.meta-item strong {
    font-size: 14px;
    color: #111;
    font-weight: 700;
    margin-bottom: 3px;
}
.meta-item span {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}
.product-actions .btn {
    font-size: 12px;
    font-weight: 700;
    padding: 12px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s;
}
.product-actions .btn-dark-custom {
    background-color: #111;
    color: #fff;
    border: 1px solid #111;
}
.product-actions .btn-dark-custom:hover {
    background-color: var(--z-red);
    border-color: var(--z-red);
}
.product-actions .btn-outline-custom {
    background-color: #fff;
    color: #111;
    border: 1px solid #ddd;
}
.product-actions .btn-outline-custom:hover {
    border-color: #111;
    color: #111;
}

/* Zalo Desktop Widget */
.z-desktop-widget {
    position: fixed; bottom: 40px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 15px;
    font-family: var(--font-main);
}
.z-widget-item {
    position: relative; width: 55px; height: 55px; background: #fff;
    border-radius: 50%; box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; cursor: pointer;
}
.z-wid-icon { font-size: 24px; }
.z-wid-text {
    position: absolute; right: 65px; top: 50%; transform: translateY(-50%);
    background: #333; color: #fff; padding: 8px 15px; border-radius: 4px;
    font-size: 14px; font-weight: 700; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: all 0.3s;
}
.z-widget-item:hover .z-wid-text { opacity: 1; visibility: visible; }
.z-wid-text::after {
    content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
    border-width: 6px 0 6px 6px; border-style: solid; border-color: transparent transparent transparent #333;
}
.z-phone-btn { background: var(--z-red); color: #fff; border-color: var(--z-red); width: 60px; height: 60px; }
.z-phone-btn .z-wid-text { background: var(--z-red); }
.z-phone-btn .z-wid-text::after { border-color: transparent transparent transparent var(--z-red); }
.z-shake { animation: zShake 2.5s infinite; }
.z-phone-ring {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; border: 2px solid var(--z-red); animation: zRipple 1.5s infinite; z-index: -1;
}
@keyframes zShake {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(-25deg) scale(1); }
    20% { transform: rotate(25deg) scale(1); }
    30% { transform: rotate(-25deg) scale(1); }
    40% { transform: rotate(25deg) scale(1); }
    50%, 100% { transform: rotate(0) scale(1); }
}
@keyframes zRipple {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Mobile Sticky Contact */
.z-sticky-contact {
    position: fixed; bottom: 0; left: 0; width: 100%; height: 65px;
    background: rgba(255, 255, 255, 0.95); box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px); border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 99999; display: none;
}
.z-bar-grid {
    display: grid; grid-template-columns: 1fr 1fr 1.2fr 1fr 1fr; height: 100%;
    max-width: 600px; margin: 0 auto; align-items: flex-end;
}
.z-bar-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #555; height: 100%; padding-bottom: 5px; cursor: pointer;
}
.z-icon-wrap { position: relative; height: 24px; display: flex; align-items: center; margin-bottom: 4px; font-size: 20px;}
.z-label { font-size: 10px; font-weight: 500; text-transform: uppercase; }
.z-center-wrapper { position: relative; height: 100%; display: flex; justify-content: center; }
.z-call-fab {
    position: absolute; bottom: 25px; width: 60px; height: 60px;
    background: linear-gradient(135deg, #CC0000 0%, #ff3333 100%);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px; box-shadow: 0 5px 15px rgba(204,0,0,0.4);
    border: 4px solid #fff; text-decoration: none;
}
.z-phone-shake { animation: zShake 3s infinite ease-in-out; }
.z-ripple-effect {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; border: 2px solid var(--z-red); animation: zRipple 2s infinite linear; z-index: -1;
}

/* Drive Overlay (Popup Lái Thử) */
.z-drive-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17,17,17,0.85); backdrop-filter: blur(5px);
    z-index: 9999999; opacity: 0; visibility: hidden;
    display: flex; align-items: center; justify-content: center; padding: 15px;
    transition: all 0.3s;
}
.z-drive-overlay.active { opacity: 1; visibility: visible; }
.z-drive-container {
    background: #fff; width: 100%; max-width: 900px; border-radius: 16px;
    overflow: hidden; position: relative; transform: scale(0.95);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4); transition: transform 0.3s;
}
.z-drive-overlay.active .z-drive-container { transform: scale(1); }
.z-drive-close {
    position: absolute; top: 15px; right: 15px; z-index: 10;
    width: 36px; height: 36px; background: var(--z-red); border: none;
    border-radius: 50%; font-size: 18px; color: #fff;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.z-drive-layout { display: flex; flex-wrap: wrap; min-height: 500px; }
.z-drive-left {
    flex: 1 1 45%; background: linear-gradient(145deg, #111 0%, #2a0000 100%);
    color: #fff; padding: 50px 40px; position: relative;
    display: flex; flex-direction: column; overflow: hidden; font-family: var(--z-font);
}
.z-drive-badge {
    display: inline-block; background: var(--z-red); color: #fff;
    font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 4px;
    margin-bottom: 20px; align-self: flex-start; letter-spacing: 1px;
}
.z-drive-left h3 { font-size: 26px; font-weight: 900; margin: 0 0 15px; text-transform: uppercase; line-height: 1.3; }
.z-drive-left p { font-size: 15px; color: #ddd; margin-bottom: 25px; line-height: 1.6; font-family: var(--font-main);}
.z-drive-benefits { list-style: none; padding: 0; margin: 0 0 30px; position: relative; z-index: 2; font-family: var(--font-main); }
.z-drive-benefits li { font-size: 15px; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; font-weight: 500; }
.z-drive-benefits li i { color: #f33; font-size: 18px; width: 20px; text-align: center; }

.z-drive-right {
    flex: 1 1 55%; padding: 50px 40px; background: #fff;
    display: flex; flex-direction: column; justify-content: center;
}
.z-drive-right h2 { font-size: 30px; font-weight: 900; color: var(--z-dark); margin: 0 0 10px; text-transform: uppercase; font-family: var(--z-font);}
.z-drive-sub { font-size: 15px; color: #666; margin-bottom: 30px; line-height: 1.5; }
.z-cf7-drive-wrapper label { font-size: 13px; font-weight: 700; color: #555; display: block; margin-bottom: 6px; text-transform: uppercase; }
.z-cf7-drive-wrapper input, .z-cf7-drive-wrapper select {
    width: 100%; padding: 14px 15px; border: 2px solid #eee; border-radius: 8px;
    font-family: inherit; font-size: 15px; color: #111; outline: none;
    background: #fafafa; margin-bottom: 18px; box-sizing: border-box; font-weight: 500;
}
.z-cf7-drive-wrapper input:focus, .z-cf7-drive-wrapper select:focus { border-color: #ccc; }
.z-drive-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.z-cf7-drive-wrapper button[type=submit] {
    width: 100%; background: var(--z-dark); color: #fff; padding: 16px;
    border: none; border-radius: 8px; font-family: var(--z-font);
    font-size: 16px; font-weight: 800; text-transform: uppercase;
    margin-top: 10px; letter-spacing: 1px; cursor: pointer; transition: background 0.3s;
}
.z-cf7-drive-wrapper button[type=submit]:hover { background: var(--z-red); }

/* Old footer removed */

/* Responsive */
@media (max-width: 991px) {
    .z-desktop-widget { display: none !important; }
    .z-sticky-contact { display: block; }
    .qa-grid { grid-template-columns: repeat(2, 1fr); gap: 15px;}
}
@media (max-width: 768px) {
    .qa-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .honda-quick-action { padding: 20px 0; background: #fff; border-bottom: 1px solid #eee; }
    .qa-item { padding: 0; border: none; background: transparent; align-items: center; text-align: center; box-shadow: none !important; transform: none !important; }
    .qa-icon { margin: 0 auto; width: 50px; height: 50px; font-size: 22px; margin-bottom: 8px; border-radius: 14px; background: #f8f9fa; }
    .qa-title { font-size: 11px; font-weight: 700; margin-bottom: 0; min-height: 28px; display: flex; align-items: flex-start; justify-content: center; }
    .qa-desc, .qa-btn { display: none !important; }

    .z-drive-overlay { align-items: flex-end; padding: 0; }
    .z-drive-container { border-radius: 20px 20px 0 0; max-height: 90vh; overflow-y: auto; transform: translateY(100%); }
    .z-drive-overlay.active .z-drive-container { transform: translateY(0); }
    .z-drive-layout { flex-direction: column; min-height: auto; }
    .z-drive-left { padding: 25px 20px; }
    .z-drive-benefits, .z-drive-left p { display: none; }
    .z-drive-right { padding: 25px 20px 30px; }
    .z-drive-row { grid-template-columns: 1fr; gap: 0; }
}

/* Promotion Section */
.promo-section {
    background-color: #f5f6f8;
}
.promo-wrapper {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.promo-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 5px solid var(--z-red);
}
.promo-header h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-family: var(--z-font);
}
.promo-header p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
    font-style: italic;
}
.hotline-pill {
    background-color: #fff;
    color: var(--z-red);
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 800;
    font-style: normal;
    margin-left: 5px;
    display: inline-block;
}
.promo-body {
    padding: 30px 40px;
}
.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promo-list li {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}
.promo-list li:last-child {
    border-bottom: none;
}
.promo-num {
    background-color: var(--z-red);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}
.promo-text {
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}
.promo-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
    display: inline-block;
}
.promo-link:hover {
    text-decoration: underline;
}
.privilege-box {
    border: 1px dashed rgba(204,0,0,0.3);
    background-color: #fffafa;
    border-radius: 8px;
    padding: 25px;
    margin-top: 15px;
}
.privilege-title {
    color: var(--z-red);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.privilege-title i {
    margin-right: 8px;
}
.privilege-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.privilege-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}
.privilege-list li i {
    margin-top: 4px;
    margin-right: 10px;
    font-size: 14px;
}
.btn-promo-call, .btn-promo-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s;
    height: 100%;
}
.btn-promo-call {
    background-color: #aa0000;
    color: #fff;
}
.btn-promo-call:hover {
    background-color: #880000;
    color: #fff;
}
.btn-promo-quote {
    background-color: #222;
    color: #fff;
}
.btn-promo-quote:hover {
    background-color: #111;
    color: #fff;
}
.btn-promo-call strong, .btn-promo-quote strong {
    font-size: 22px;
    font-weight: 900;
}
.btn-promo-call span, .btn-promo-quote span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
}
.promo-note {
    background-color: #f1f1f1;
    color: #555;
    text-align: center;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .promo-body { padding: 20px; }
    .promo-link { display: block; margin-left: 0; margin-top: 5px; }
    .btn-promo-call strong, .btn-promo-quote strong { font-size: 18px; }
    .promo-wrapper { margin-bottom: 20px; }
}

/* About Section */
.z-about-section {
    background-color: #111;
    color: #fff;
    padding: 80px 0;
    border-top: 3px solid var(--z-red);
}
.about-title-wrapper {
    border-left: 4px solid var(--z-red);
    padding-left: 20px;
    margin-bottom: 25px;
}
.about-title-wrapper h2 {
    font-family: var(--z-font);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.about-desc {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.about-desc strong {
    color: #fff;
}
.about-cars-box {
    background-color: #1a1a1a;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}
.about-cars-box h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-cars-box p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}
.about-btn {
    background: var(--z-red);
    padding: 15px 30px;
    font-size: 15px;
    border: none;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transform: skewX(-15deg);
    font-family: var(--z-font);
    font-weight: 700;
}
.about-btn:hover {
    background: #a00;
    color: #fff;
}
.about-btn span {
    display: block;
    transform: skewX(15deg);
}
.about-btn span i {
    margin-right: 8px;
}
.about-img {
    position: relative;
}
.about-img img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}
.feature-card {
    background-color: #fff;
    color: var(--z-dark);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.feature-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--z-font);
}
.feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .z-about-section { padding: 50px 0; }
    .about-img { margin-top: 40px; }
}

/* Delivery Moments Section */
.z-delivery-section {
    background-color: #fafafa;
    padding-top: 80px;
    padding-bottom: 80px;
}
.z-delivery-section .z-section-title {
    font-family: var(--z-font);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}
.z-delivery-section .z-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--z-red);
}
.z-delivery-section .z-section-subtitle {
    color: #666;
    font-size: 15px;
    margin-top: 25px;
}
.delivery-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.delivery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.5s ease;
}
.delivery-img:hover img {
    transform: scale(1.05);
}

/* News Section */
.z-news-section {
    background-color: #fafafa;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.news-title-wrap .z-section-title {
    margin-bottom: 5px;
    font-family: var(--z-font);
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
}
.news-title-wrap .z-section-subtitle {
    margin: 0;
}
.news-tabs {
    display: flex;
    gap: 10px;
}
.news-tab {
    padding: 8px 25px;
    background-color: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid #ddd;
    text-transform: uppercase;
    transform: skewX(-15deg);
    transition: all 0.3s;
    text-decoration: none;
}
.news-tab span {
    display: block;
    transform: skewX(15deg);
}
.news-tab:hover, .news-tab.active {
    background-color: var(--z-red);
    color: #fff;
    border-color: var(--z-red);
}
.main-news-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    height: 100%;
}
.news-img-box {
    position: relative;
    overflow: hidden;
}
.news-img-box img {
    width: 100%;
    aspect-ratio: 21/9;
    object-fit: cover;
    transition: transform 0.5s;
}
.main-news-card:hover .news-img-box img {
    transform: scale(1.05);
}
.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--z-red);
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 800;
    z-index: 10;
    transform: skewX(-15deg);
}
.news-content {
    padding: 25px;
}
.news-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--z-red);
    margin-bottom: 15px;
    font-weight: 700;
}
.news-meta i {
    margin-right: 5px;
}
.news-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--z-font);
    text-transform: uppercase;
}
.news-title a {
    color: #111;
    transition: color 0.3s;
    text-decoration: none;
}
.news-title a:hover {
    color: var(--z-red);
}
.news-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.news-readmore {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
    text-decoration: none;
}
.news-readmore::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #111;
    transition: all 0.3s;
}
.news-readmore:hover::after {
    width: 50%;
    background: var(--z-red);
}
.news-readmore:hover {
    color: var(--z-red);
}
.news-readmore i {
    margin-left: 5px;
}
.side-news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.side-news-item {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    gap: 15px;
    align-items: center;
    transition: transform 0.3s;
}
.side-news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.side-img {
    width: 130px;
    height: 85px;
    flex-shrink: 0;
    overflow: hidden;
}
.side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side-content {
    flex-grow: 1;
}
.side-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.side-title a {
    color: #222;
    transition: color 0.3s;
    text-decoration: none;
}
.side-title a:hover {
    color: var(--z-red);
}
.side-meta {
    font-size: 12px;
    color: #888;
}
@media (max-width: 991px) {
    .news-header { flex-direction: column; align-items: flex-start; gap: 15px; }
    .news-tabs { width: 100%; overflow-x: auto; padding-bottom: 5px; }
    .news-tab { white-space: nowrap; }
}

/* Register Section */
.z-register-section {
    background-color: #111;
    padding: 80px 0;
    border-top: 3px solid var(--z-red);
    border-bottom: 1px solid #222;
}
.reg-left {
    padding-right: 30px;
}
.reg-badge {
    background-color: var(--z-red);
    color: #fff;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    transform: skewX(-15deg);
    margin-bottom: 25px;
}
.reg-title {
    font-family: var(--z-font);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}
.reg-desc {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}
.reg-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reg-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ddd;
    font-size: 14px;
    font-weight: 500;
}
.reg-benefits .icon-box {
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--z-red);
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid #333;
}
.reg-form-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    border-bottom: 5px solid var(--z-red);
}
.reg-form-box .form-label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
}
.reg-form-box .form-control, .reg-form-box .form-select {
    border-radius: 4px;
    border: 1px solid #eee;
    background-color: #fafafa;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    box-shadow: none;
}
.reg-form-box .form-control:focus, .reg-form-box .form-select:focus {
    border-color: #ccc;
    background-color: #fff;
}
.btn-reg-submit {
    border: none;
    background: var(--z-red);
    color: #fff;
    font-size: 16px;
    padding: 15px;
}
.btn-reg-submit span {
    display: block;
    transform: skewX(15deg);
}

@media (max-width: 991px) {
    .reg-left { padding-right: 0; }
    .reg-form-box { padding: 30px 20px; }
}

/* New Footer */
.z-new-footer {
    background-color: #111;
    color: #ccc;
    font-size: 14px;
    position: relative;
    margin-top: 60px; /* To make room for the floating box */
}

/* Floating Box */
.footer-floating-box {
    background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v2h20v2H22v-2z" fill="%231a1a1a" fill-rule="evenodd" opacity="0.5"/></svg>'), #181818;
    border-top: 3px solid var(--z-red);
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -50px; /* Overlap */
    margin-bottom: -20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.float-box-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.float-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 0, 0, 0.1);
    border: 1px solid rgba(220, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--z-red);
}
.float-content h3 {
    color: #fff;
    font-family: var(--z-font);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.float-content p {
    margin: 0;
    color: #aaa;
}
.btn-float-reg {
    background: var(--z-red);
    color: #fff;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-float-reg:hover {
    background: #b30000;
    color: #fff;
}

/* Main Footer Area */
.footer-main {
    padding-bottom: 50px;
}
.footer-brand-title {
    color: #fff;
    font-family: var(--z-font);
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 15px;
}
.footer-desc {
    color: #999;
    line-height: 1.6;
    margin-bottom: 25px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-socials a:hover {
    background: var(--z-red);
}

.footer-widget-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-left: 3px solid var(--z-red);
    padding-left: 15px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 12px;
}
.footer-list li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.footer-list li a::before {
    content: "•";
    color: #555;
    margin-right: 10px;
}
.footer-list li a i {
    margin-right: 8px;
    color: #666;
}
.footer-list li a:hover {
    color: var(--z-red);
}
.badge-hot {
    background: var(--z-red);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: 700;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.icon-circle {
    width: 35px;
    height: 35px;
    background: rgba(220, 0, 0, 0.1);
    color: var(--z-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.contact-info {
    display: flex;
    flex-direction: column;
}
.contact-info strong {
    color: #ddd;
    margin-bottom: 3px;
    font-weight: 600;
}
.contact-info span {
    color: #888;
}
.hotline-text {
    font-size: 20px !important;
    font-weight: 800;
    color: #fff !important;
}

/* Footer Bottom Area */
.footer-bottom-area {
    border-top: 2px solid var(--z-red);
    padding: 40px 0;
    background: #0d0d0f;
}
.bottom-title {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.bottom-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 13px;
}
.bottom-info strong {
    color: #eee;
}
.text-red {
    color: var(--z-red);
}
.bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bottom-links li {
    margin-bottom: 12px;
}
.bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}
.bottom-links a:hover {
    color: #fff;
}
.bottom-links i {
    font-size: 11px;
    margin-right: 8px;
}
.bottom-warning {
    background: rgba(40, 10, 10, 0.5);
    border-left: 2px solid var(--z-red);
    padding: 15px;
    color: #ccc;
    font-size: 12px;
    line-height: 1.5;
}
.bottom-disclaimer {
    color: #999;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
}
.bottom-disclaimer strong {
    color: #ddd;
}

@media (max-width: 991px) {
    .footer-floating-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 20px;
    }
    .float-box-left {
        flex-direction: column;
    }
}

/* --- RED HEADER (PRODUCTS PAGE) --- */
.red-header {
    background-color: #cc0000;
    padding: 10px 0;
    border-bottom: 2px solid #a30000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-box {
    background: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-align: center;
    color: #cc0000;
    text-decoration: none;
    line-height: 1.2;
    display: inline-block;
}
.logo-box:hover {
    color: #cc0000;
}
.logo-h-text {
    font-family: Arial, sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
}
.logo-text-bottom {
    font-size: 13px;
    font-weight: 700;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.main-nav a:hover, .main-nav a.active {
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hotline-pill {
    background: #fff;
    color: #cc0000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}
.hotline-pill:hover {
    transform: scale(1.05);
    color: #cc0000;
}
.search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* --- PRODUCTS GRID --- */
.products-section {
    background-color: #fff;
}
.product-card {
    border: 1px solid #eaeaea;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.product-img {
    background: #f8f8f8;
    padding: 15px 10px; /* Thêm lại chút padding cho cân đối */
    border-bottom: 1px solid #f1f1f1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16/10;
    mix-blend-mode: multiply;
    transform: scale(1.15); /* Vẫn giữ zoom nhẹ để ảnh to ra */
}
.product-title {
    font-size: 12px;
    font-weight: 800;
    color: #222;
    padding: 10px 5px;
    text-transform: uppercase;
}
.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #cc0000;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 2;
}

@media (max-width: 991px) {
    .red-header .main-nav { display: none; }
    .red-header .header-right { margin-left: auto; }
}

/* --- MEGA MENU --- */
.has-mega-menu {
    position: static !important; 
}
.red-header {
    position: relative; 
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 2px solid var(--z-red);
}
.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu .product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}
.mega-menu .product-title {
    color: #222 !important;
}
.mega-menu .product-card:hover .product-title {
    color: var(--z-red) !important;
}

/* --- PRODUCT DETAIL PAGE --- */
.product-detail-page {
    background-color: #fff;
}
.breadcrumb-box {
    background: #f8f8f8;
    padding: 12px 20px;
    border-left: 4px solid var(--z-red);
    font-size: 13px;
    color: #666;
    font-weight: 600;
    border-radius: 4px;
}
.breadcrumb-box a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-box a:hover {
    color: var(--z-red);
}
.breadcrumb-box i {
    margin: 0 10px;
    font-size: 10px;
}
.breadcrumb-box .current {
    color: var(--z-red);
    font-weight: 800;
}

/* Gallery */
.gallery-main {
    border-radius: 8px;
    overflow: hidden;
}
.gallery-main img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
.gallery-tag {
    position: absolute;
    top: 20px;
    left: -10px;
    background: #cc0000;
    color: #fff;
    padding: 8px 15px 8px 20px;
    font-size: 14px;
    font-weight: 800;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    box-shadow: 2px 4px 10px rgba(0,0,0,0.2);
}
.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}
.gallery-prev:hover, .gallery-next:hover {
    background: var(--z-red);
}
.gallery-prev { left: 15px; }
.gallery-next { right: 15px; }

.thumb-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.thumb-item img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}
.thumb-item:hover, .thumb-item.active {
    border-color: var(--z-red);
}

/* Info Box */
.product-detail-title {
    font-family: var(--z-font);
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.product-detail-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--z-red);
}
.price-note {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Promo Box */
.promo-box {
    border: 1px dashed #ff9999;
    border-radius: 8px;
    padding: 35px 25px 20px;
    position: relative;
    background: #fffafa;
}
.promo-tag {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--z-red);
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    transform: skewX(-15deg);
    box-shadow: 2px 4px 10px rgba(204, 0, 0, 0.3);
}
.promo-tag span {
    display: inline-block;
    transform: skewX(15deg);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
}
.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promo-list li {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px dashed #f1caec;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.promo-list li:last-child {
    border-bottom: none;
    margin-bottom: 5px;
    padding-bottom: 0;
}
.promo-list li i {
    font-size: 20px;
}
.promo-list li strong {
    color: var(--z-red);
}
.view-more-promo {
    display: inline-block;
    margin-top: 10px;
    color: var(--z-red);
    font-weight: 700;
    text-decoration: underline;
    font-size: 14px;
}

/* CTA Action */
.btn-skew-red {
    background: linear-gradient(90deg, #aa0000 0%, #dd0000 100%);
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
    transform: skewX(-15deg);
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.4);
    transition: all 0.3s ease;
}
.btn-skew-red span {
    display: inline-block;
    transform: skewX(15deg);
    font-weight: 900;
    font-size: 18px;
}
.btn-skew-red:hover {
    box-shadow: 0 12px 25px rgba(204, 0, 0, 0.6);
    transform: skewX(-15deg) translateY(-3px);
    color: #fff;
}
.btn-skew-sm {
    padding: 12px 15px;
}
.btn-skew-sm span {
    font-size: 15px;
}
.btn-skew-outline {
    background: transparent;
    color: var(--z-red);
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
    transform: skewX(-15deg);
    border-radius: 4px;
    border: 2px solid var(--z-red);
    transition: all 0.3s ease;
}
.btn-skew-outline span {
    display: inline-block;
    transform: skewX(15deg);
    font-weight: 900;
    font-size: 18px;
}
.btn-skew-outline:hover {
    background: var(--z-red);
    color: #fff;
    transform: skewX(-15deg) translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
}

/* --- PRICING SECTION --- */
.section-heading h2 {
    font-family: var(--z-font);
    font-weight: 900;
    font-size: 32px;
    position: relative;
    display: inline-block;
}
.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--z-red);
}
.pricing-table {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.pricing-table thead {
    background-color: #111;
    color: #fff;
    border-bottom: 3px solid var(--z-red);
}
.pricing-table th {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 14px;
    border: none;
}
.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid #f5f5f5;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}
.price-val {
    font-size: 18px;
    font-weight: 800;
}

/* Feature Cards */
.feature-card {
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
}
.promo-card {
    background-color: #fffafa;
    border-top: 4px solid var(--z-red);
}
.finance-card {
    background-color: #f4f9ff;
    border-top: 4px solid #0d6efd;
}
.card-title {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
}
.bg-red { background-color: var(--z-red) !important; }
.bg-blue { background-color: #0d6efd !important; }
.text-red { color: var(--z-red) !important; }
.text-blue { color: #0d6efd !important; }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    text-align: left !important;
}
.feature-list li i {
    margin-top: 3px;
}

.finance-price .number {
    font-size: 32px;
    font-weight: 800;
    color: #0d6efd;
}
.finance-price .unit {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}
.finance-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}
.finance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.finance-list li {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #dce8f5;
    font-size: 15px;
    color: #555;
}
.finance-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.finance-list li strong {
    color: #111;
}

.btn-red {
    background: #cc0000;
    color: #fff;
    border: none;
}
.btn-red:hover {
    background: #aa0000;
    color: #fff;
}
.btn-blue {
    background: #0d6efd;
    color: #fff;
    border: none;
}
.btn-blue:hover {
    background: #0b5ed7;
    color: #fff;
}

/* --- EXPLORE SECTION --- */
.explore-section {
    background-color: #fff;
    padding-bottom: 80px;
}
.explore-tabs {
    flex-wrap: wrap;
}

@media (max-width: 767.98px) {
    .explore-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .explore-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    .explore-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
.explore-tab {
    background: #f4f4f4;
    color: #555;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transform: skewX(-15deg);
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}
.explore-tab span {
    display: inline-block;
    transform: skewX(15deg);
}
.explore-tab:hover, .explore-tab.active {
    background: var(--z-red);
    color: #fff;
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}
.explore-img-wrap {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.explore-img-wrap img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}
.title-line {
    width: 40px;
    height: 4px;
    background-color: var(--z-red);
}
.font-weight-900 {
    font-weight: 900 !important;
}
.explore-text-box h3 {
    font-size: 24px;
}
.explore-text-box p {
    font-size: 15px;
    line-height: 1.6;
}
.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #333;
}
.feature-check-list li:last-child {
    margin-bottom: 0;
}

/* --- CTA BANNER SECTION --- */
.cta-banner-section {
    background: linear-gradient(90deg, #0a0000 0%, #2a0505 100%);
    border-top: 4px solid var(--z-red);
    border-bottom: 4px solid var(--z-red);
    padding: 50px 0;
    color: #fff;
}
.cta-tag {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-weight: 800;
    font-size: 13px;
    padding: 5px 15px;
    transform: skewX(-15deg);
    text-transform: uppercase;
}
.cta-tag span {
    display: inline-block;
    transform: skewX(15deg);
}
.cta-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.cta-desc {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 0;
}
.cta-desc .text-underline {
    border-bottom: 1px dashed #fff;
    color: #fff;
}
.cta-form-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}
.cta-input {
    border: none;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}
.cta-btn-submit {
    background: var(--z-red);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    transform: skewX(-15deg);
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}
.cta-btn-submit span {
    display: inline-block;
    transform: skewX(15deg);
}
.cta-btn-submit:hover {
    background: #a00;
    color: #fff;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.8);
}
.cta-security {
    font-size: 13px;
    color: #aaa;
}
.cta-security .text-success {
    color: #28a745 !important;
}

/* --- DELIVERY SECTION --- */
.delivery-section {
    background-color: #fff;
}
.title-line-sm {
    width: 30px;
    height: 3px;
    background-color: var(--z-red);
}
.delivery-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.3;
}
.delivery-feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-size: 20px;
}
.delivery-feature-item h4 {
    font-size: 18px;
}
.delivery-feature-item p {
    font-size: 14px;
}
.delivery-slider-wrap {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.delivery-swiper {
    aspect-ratio: 4/3;
}
.delivery-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.delivery-floating-box {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 10;
}

/* --- SPECS SECTION --- */
.specs-title-wrap {
    background-color: #000;
    display: inline-block;
    padding: 15px 80px;
    transform: skewX(-15deg);
}
.specs-title {
    transform: skewX(15deg);
    margin: 0;
    font-weight: 900;
}
.specs-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
}
.specs-table th, .specs-table td {
    border: 1px solid #e0e0e0;
    text-align: center;
    vertical-align: middle;
}
.specs-table thead th {
    background-color: #a81c20 !important;
    color: #fff !important;
    font-weight: 700;
    border: 1px solid #fff;
    padding: 15px;
    text-transform: uppercase;
}
.specs-table tbody td {
    padding: 12px 15px;
    color: #333;
    font-size: 15px;
}
.specs-table tbody td[colspan]:only-child {
    background-color: #e9ecef !important;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #333 !important;
}

@media (max-width: 767.98px) {
    .specs-table {
        table-layout: fixed;
    }
    .specs-table th, .specs-table td {
        white-space: normal !important;
        text-align: left !important;
    }
    /* First column styling on mobile */
    .specs-table tbody td:first-child:not([colspan]) {
        background-color: #000 !important;
        color: #fff;
        font-weight: 700;
        width: 40%;
    }
    /* Row with colspan (category header) */
    .specs-table tbody td[colspan]:only-child {
        background-color: #a81c20 !important;
        color: #fff !important;
        text-transform: uppercase;
        font-weight: bold;
    }
    .mobile-version-row th, .mobile-version-row td {
        background-color: #a81c20 !important;
        color: #fff !important;
    }
    .mobile-version-select {
        width: 100%;
        padding: 10px;
        border: none;
        outline: none;
        background: transparent;
        font-weight: 700;
        color: #fff;
        font-size: 14px;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
    }
    .mobile-version-select option {
        color: #333;
        background-color: #fff;
    }
}
.btn-download-pdf {
    border: 2px solid #333;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.btn-download-pdf:hover {
    background-color: #333;
    color: #fff;
}

/* --- VERSIONS SECTION --- */
.title-line-center {
    width: 60px;
    height: 3px;
    background-color: var(--z-red);
    margin: 15px auto;
}
.version-card {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding-top: 25px; /* space for badge */
    border: 1px solid transparent;
}
.version-img-wrap {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.version-img-wrap img {
    width: 100%;
    transform: scale(1.1);
}
.version-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.version-badge-normal {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.border-dashed {
    border-top: 1px dashed #ccc;
}
.version-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.version-badge {
    display: inline-block;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 700;
    transform: skewX(-15deg);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) skewX(-15deg);
    z-index: 2;
}
.version-price {
    font-size: 20px;
}
.version-features li {
    font-size: 13px;
    margin-bottom: 8px;
}

/* --- FAQ SECTION --- */
.faq-accordion .accordion-button {
    background-color: #fff;
    color: #333;
    padding: 20px 25px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--z-red);
    border-color: var(--z-red);
    box-shadow: none;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--z-red);
}
.faq-accordion .accordion-button::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b"; /* Plus icon */
    background-image: none;
    font-size: 18px;
    color: #999;
    transform: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f00d"; /* Times/Close icon */
    color: var(--z-red);
    transform: rotate(90deg);
}
.faq-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #eee;
    color: #555;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}
.faq-accordion .accordion-button:not(.collapsed) .faq-num {
    background-color: var(--z-red);
    color: #fff;
}
.faq-question {
    font-size: 16px;
}
.faq-body {
    padding: 20px 25px 25px;
    border-color: var(--z-red) !important;
    border-top: none !important;
}
.faq-body ul li {
    font-size: 14px;
    margin-bottom: 8px;
}
.faq-body p {
    font-size: 14px;
}

/* --- PRICING PAGE --- */
.pricing-hero {
    background-color: #111;
    background-image: linear-gradient(to right, #111 0%, #222 100%);
    border-bottom: 5px solid var(--z-red);
}
.pricing-nav .nav-link {
    font-weight: 700;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}
.pricing-nav .nav-link:hover, .pricing-nav .nav-link.active {
    color: var(--z-red) !important;
    border-bottom-color: var(--z-red);
}
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}
.pricing-card .table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.pricing-card .table td {
    vertical-align: middle;
}


/* =========================================
   BLOG STYLES
   ========================================= */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08) !important;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}
.blog-title-link {
    transition: color 0.3s ease;
}
.blog-title-link:hover {
    color: var(--z-red) !important;
}
.category-list li {
    border-bottom: 1px dashed #eee;
}
.category-list li:last-child {
    border-bottom: none;
}
.category-list .cat-name {
    transition: transform 0.3s ease, color 0.3s ease;
}
.category-list a:hover .cat-name {
    transform: translateX(5px);
    color: var(--z-red);
}

/* =========================================
   WORDPRESS ALIGNMENT CLASSES
   ========================================= */
.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.alignnone {
    margin-bottom: 1.5em;
}
figure.aligncenter {
    display: table;
    margin-left: auto;
    margin-right: auto;
}
figure.aligncenter img {
    display: block;
    margin: 0 auto;
}

/* Mobile adjustments for CTA buttons in single page */
@media (max-width: 767px) {
    .cta-action {
        gap: 10px !important;
    }
    .cta-action .btn-skew-sm {
        padding: 10px 5px;
    }
    .cta-action .btn-skew-sm span {
        font-size: 13px;
        white-space: nowrap;
    }

    /* Fix Pricing Table wrapping on mobile */
    .pricing-table th {
        padding: 10px 8px;
        font-size: 12px;
        white-space: nowrap;
    }
    .pricing-table td {
        padding: 12px 8px;
        white-space: nowrap;
    }
    .pricing-table .price-val {
        font-size: 15px;
    }
    .pricing-table td .btn-sm {
        font-size: 11px;
        padding: 5px 8px;
    }
    .btn-zalo-mobile {
        font-size: 13px !important;
    }
    .gallery-tag {
        font-size: 11px;
        padding: 5px 12px 5px 15px;
        top: 10px;
    }
}

.section-heading h2.no-line::after {
    display: none !important;
}
