/* ============================================
   MAIN CSS — vkorea theme
   Base/Global + Footer + Modules (append)
   ============================================ */

/* ============================================
   RESET BỔ SUNG
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--body-bg);
    color: var(--body-color);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--shop-color-main);
    transition: color 0.2s;
}

a:hover {
    color: var(--shop-color-accent);
}

/* ============================================
   SECTION — Khoảng cách đều giữa các module
   ============================================ */
.section {
    padding: 30px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 40px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 50px 0;
    }
}

/* ============================================
   SECTION HEADING — Tiêu đề lớn module
   ============================================ */
.section-heading {
    color: var(--section-color-title);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 26px;
        margin-bottom: 10px;
    }
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 30px;
        margin-bottom: 12px;
    }
}

/* ============================================
   SECTION DESC — Mô tả dưới tiêu đề
   ============================================ */
.section-desc {
    color: var(--body-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 24px;
    max-width: 680px;
    opacity: 0.75;
    text-align:left;
}

@media (min-width: 768px) {
    .section-desc {
        font-size: 15px;
        margin-bottom: 32px;
    }
}

/* ============================================
   MODULE BTN — Nút bấm chung (hover đảo ngược)
   ============================================ */
.module-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border: 1px solid var(--btn-bg);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.module-btn:hover {
    background-color: var(--btn-color);
    color: var(--btn-bg);
    border-color: var(--btn-bg);
    text-decoration: none;
}

/* --- Variant: Outline --- */
.module-btn--outline {
    background-color: transparent;
    color: var(--btn-bg);
    border: 1px solid var(--btn-bg);
}

.module-btn--outline:hover {
    background-color: var(--btn-bg);
    color: var(--btn-color);
}

/* ============================================
   MODULE ICON — Wrapper icon/svg chung
   ============================================ */
.module-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.module-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.module-icon i {
    font-size: inherit;
}

/* ============================================
   V-BASE — Content pages
   ============================================ */
.v-base {
    padding: 20px 0;
}

@media (min-width: 768px) {
    .v-base {
        padding: 30px 0;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    padding: 50px 0 0;
}

.site-footer a {
    color: var(--footer-color);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: var(--shop-color-accent);
}

/* --- Footer Grid --- */
.ftr__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .ftr__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ftr__grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* --- Footer Column Title --- */
.ftr__title {
    color: var(--footer-color-title);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Footer Company Info --- */
.ftr__logo {
    max-height: 40px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.ftr__intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.ftr__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ftr__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.ftr__contact-item i {
    color: var(--shop-color-accent);
    margin-top: 4px;
    font-size: 13px;
    flex-shrink: 0;
}

/* --- Footer Menu Links --- */
.ftr__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ftr__menu li {
    margin-bottom: 10px;
}

.ftr__menu a {
    font-size: 14px;
    line-height: 1.6;
    display: inline-block;
}
.ftr__menu a > i{
    font-size:10px;
    color:var(--shop-color-accent);
    margin-right:0.5rem;
}

/* --- Footer Social --- */
.ftr__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.ftr__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-color);
    font-size: 15px;
    transition: all 0.3s;
}

.ftr__social-link:hover {
    background-color: var(--shop-color-accent);
    color: #fff;
}

/* --- Footer Newsletter --- */
.ftr__newsletter {
    margin-top: 16px;
}

.ftr__newsletter .form-group {
    margin-bottom: 8px;
}

.ftr__newsletter .newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 4px 0 0 4px;
}

.ftr__newsletter .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ftr__newsletter .newsletter-input:focus {
    outline: none;
    border-color: var(--shop-color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.ftr__newsletter .newsletter-btn {
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border: 1px solid var(--btn-bg);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.ftr__newsletter .newsletter-btn:hover {
    background-color: var(--btn-color);
    color: var(--btn-bg);
    border-color: var(--btn-bg);
}

.ftr__newsletter .newsletter-error {
    font-size: 13px;
    margin-top: 4px;
}

.ftr__newsletter .newsletter-success {
    color: #4caf50;
}

.ftr__newsletter .error {
    color: var(--shop-color-accent);
}

/* --- Footer Bottom / Copyright --- */
.ftr__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.ftr__bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

@media (min-width: 768px) {
    .ftr__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.ftr__copyright {
    font-size: 13px;
    opacity: 0.7;
}

.ftr__copyright a {
    color: var(--footer-color);
}

.ftr__copyright a:hover {
    color: var(--shop-color-accent);
}

.ftr__bottom-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.ftr__bottom-menu a {
    font-size: 13px;
    opacity: 0.7;
}

.ftr__bottom-menu a:hover {
    opacity: 1;
}

/* ============================================
   MODULES — Append CSS dưới đây khi ghép module mới
   ============================================ */
/* ============================================
   FOOTER
   ============================================ */
.ftr {
    background-color: var(--footer-bg);
    color: var(--footer-color);
    font-size: 14px;
    line-height: 1.7;
        border-top: 1rem solid var(--shop-color-accent);
}

/* --- Footer Main --- */
.ftr__main {
    padding: 60px 0 40px;
}

.ftr__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 768px) {
    .ftr__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 40px;
    }
}

@media (min-width: 1024px) {
    .ftr__grid {
        grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
        gap: 30px 50px;
    }
}

/* --- Cột Brand (Logo + Mô tả + Social) --- */
.ftr__logo {
    display: inline-block;
    margin-bottom: 10px;
}

.ftr__logo img {
    max-height: 44px;
    width: auto;
}

.ftr__slogan {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--footer-color-title);
    margin-bottom: 20px;
}

.ftr__intro {
    color: var(--footer-color);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
    opacity: 0.85;
}

/* Social Icons */
.ftr__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ftr__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--footer-color);
    transition: all 0.3s;
}

.ftr__social-link:hover {
    background-color: var(--shop-color-accent);
    border-color: var(--shop-color-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Headings với accent bar --- */
.ftr__heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--footer-color-title);
    margin-bottom: 24px;
    padding-left: 14px;
    position: relative;
}

.ftr__heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--shop-color-accent);
    border-radius: 2px;
}

/* --- Menu Links --- */
.ftr__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftr__menu-item {
    margin-bottom: 12px;
}

.ftr__menu-link {
    color: var(--footer-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.ftr__menu-link:hover {
    color: var(--shop-color-accent);
    padding-left: 4px;
}

.ftr__menu-link:hover::before {
    opacity: 1;
    color: var(--shop-color-accent);
}

/* --- Newsletter --- */
.ftr__newsletter-desc {
    color: var(--footer-color);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.ftr__newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: border-color 0.3s;
}

.ftr__newsletter-form:focus-within {
    border-color: rgba(255, 255, 255, 0.35);
}

.ftr__newsletter-input {
    flex: 1;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.ftr__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ftr__newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    border: none;
    background-color: var(--shop-color-accent);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ftr__newsletter-btn:hover {
    background-color: #a00d24;
}

.ftr__newsletter .newsletter-error {
    font-size: 12px;
    margin-top: 8px;
}

.ftr__newsletter .newsletter-error.error {
    color: var(--shop-color-accent);
}

.ftr__newsletter .newsletter-success {
    color: #4caf50;
}

/* --- Copyright Bar --- */
.ftr__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.ftr__copyright-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .ftr__copyright-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.ftr__copyright-text {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.ftr__copyright-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.ftr__copyright-link {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
}

.ftr__copyright-link:hover {
    color: var(--footer-color-title);
}

/* Back to Top */
.ftr__back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.ftr__back-to-top svg {
    transition: transform 0.25s;
}

.ftr__back-to-top:hover svg {
    transform: translateY(-2px);
}

/* ============================================
   GLOBAL: Section & Shared Classes
   ============================================ */
.section {
    padding: 30px 0;
}
@media (min-width: 768px) {
    .section { padding: 40px 0; }
}
@media (min-width: 1024px) {
    .section { padding: 60px 0; }
}

.section-heading {
    color: var(--section-color-title);
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .section-heading { font-size: 30px; }
}
@media (min-width: 1024px) {
    .section-heading { font-size: 36px; }
}

.section-desc {
    color: var(--body-color);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.module-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid var(--btn-bg);
    background-color: var(--btn-bg);
    color: var(--btn-color);
    letter-spacing: 0.5px;
}
.module-btn:hover {
    background-color: var(--btn-color);
    color: var(--btn-bg);
    border-color: var(--btn-bg);
    text-decoration: none;
}

.module-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.module-icon svg {
    width: 1em;
    height: 1em;
}

/* ============================================
   MODULE 1: gallery — Hero Banner
   ============================================ */
.gal-hero {
    padding: 0 !important;
}
.gal-hero__slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .gal-hero__slide { min-height: 500px; }
}
@media (min-width: 1024px) {
    .gal-hero__slide { min-height: 600px; }
}

.gal-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.gal-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gal-hero__overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(135deg, #0a192ff2 0%, rgba(20, 28, 44, 0.4) 100%);
}

.gal-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 40px 0;
}
@media (min-width: 1024px) {
    .gal-hero__content { padding: 80px 0; }
}

.gal-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.gal-hero__heading {
    font-size: 36px;
    font-weight: 900;
       background-image: linear-gradient(to right, #dc2626, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.1;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}
.gal-hero__heading em,
.gal-hero__heading i {
    font-style: italic;
    color: var(--shop-color-accent);
}
@media (min-width: 768px) {
    .gal-hero__heading { font-size: 52px; }
}
@media (min-width: 1024px) {
    .gal-hero__heading { font-size: 64px; }
}

.gal-hero__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 550px;
}
@media (min-width: 768px) {
    .gal-hero__desc { font-size: 17px; }
}

.gal-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.gal-hero__btn--primary {
    background-color: var(--shop-color-accent);
    border-color: var(--shop-color-accent);
    color: #fff;
}
.gal-hero__btn--primary:hover {
    background-color: #fff;
    color: var(--shop-color-accent);
    border-color: #fff;
}
.gal-hero__btn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.gal-hero__btn--outline:hover {
    background-color: #fff;
    color: var(--shop-color-main);
    border-color: #fff;
}

.gal-hero__pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}
.gal-hero__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    margin: 0 5px;
}
.gal-hero__pagination .swiper-pagination-bullet-active {
    background: #fff;
}


/* ============================================
   MODULE 2: service — About Us (Về V-Korea)
   2 mode: --has-media (video trái + content phải)
           --no-media  (centered, full-width)
   ============================================ */

/* --- Mode: HAS MEDIA (video left + content right) --- */
.srv-about--has-media .srv-about__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 768px) {
    .srv-about--has-media .srv-about__wrapper {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }
}
.srv-about--has-media .srv-about__media {
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .srv-about--has-media .srv-about__media { flex: 0 0 45%; }
}
.srv-about--has-media .srv-about__content {
    flex: 1;
}

/* --- Mode: NO MEDIA (centered layout, giống thiết kế gốc) --- */
.srv-about--no-media .srv-about__wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.srv-about--no-media .srv-about__heading {
    text-align: center;
}
.srv-about--no-media .srv-about__desc {
    text-align: center;
}
.srv-about--no-media .srv-about__features {
    max-width: 680px;
    margin: 25px auto 0;
}

/* --- Video wrapper (shared) --- */
.srv-about__video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
        border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
}
.srv-about__video-thumb {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
        transition: all .5s;
}
.srv-about__video-wrap:hover .srv-about__video-thumb{
        transform: scale(1.05);
}
.srv-about__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s;
}
.srv-about__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.srv-about__video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Heading --- */
.srv-about__heading {
    color: var(--shop-color-main);
    text-align:left;
}

/* --- Feature boxes (2x2 grid with red border) --- */
.srv-about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
}
@media (min-width: 480px) {
    .srv-about__features { grid-template-columns: 1fr 1fr; }
}

.srv-about__feature-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--shop-color-accent);
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}
.srv-about__feature-item:hover {
      background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Red dot icon (default when no icon/image) */
.srv-about__feature-dot {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.srv-about__feature-dot svg{
    margin-right:1rem;
}
.srv-about__dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--shop-color-accent);
}
.srv-about__feature-dot .module-icon {
    color: var(--shop-color-accent);
    font-size: 18px;
}
.srv-about__feature-dot img {
    max-width: 24px;
    max-height: 24px;
}

.srv-about__feature-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--section-color-title);
    line-height: 1.3;
}


/* ============================================
   MODULE 3: service — Statistics Counter
   ============================================ */
.srv-stats {
    background-color: var(--shop-color-main);
}

.srv-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
@media (min-width: 768px) {
    .srv-stats__grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}

.srv-stats__item {
    padding: 20px 10px;
}

.srv-stats__number {
    font-size: 36px;
    font-weight: 900;
    color: var(--shop-color-accent);
    line-height: 1;
    margin-bottom: 8px;
}
@media (min-width: 768px) {
    .srv-stats__number { font-size: 48px; }
}
@media (min-width: 1024px) {
    .srv-stats__number { font-size: 56px; }
}

.srv-stats__label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (min-width: 768px) {
    .srv-stats__label { font-size: 13px; }
}


/* ============================================
   MODULE 4: service — Service Category Cards
   ============================================ */
.srv-category {
    background-color: var(--body-bg);
}
.srv-category__heading,
.srv-category__desc{
    text-align:left;
}
.srv-category__desc{
    font-style:italic;
}

.srv-category__wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 768px) {
    .srv-category__wrapper {
        flex-direction: row;
        gap: 40px;
    }
}

.srv-category__intro {
    flex: 0 0 100%;
}
@media (min-width: 768px) {
    .srv-category__intro { flex: 0 0 30%; }
}

.srv-category__icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-color-main);
    border-radius: 16px;
    margin-bottom: 20px;
}
.srv-category__icon-box img {
    max-width: 40px;
    max-height: 40px;
}
.srv-category__icon {
    color: #fff;
    font-size: 30px;
}

.srv-category__heading {
    font-size: 22px;
}
@media (min-width: 768px) {
    .srv-category__heading { font-size: 26px; }
}

.srv-category__cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 480px) {
    .srv-category__cards { grid-template-columns: 1fr 1fr; }
}

.srv-category__card {
    background: #fff;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    border:1px solid transparent;
}
.srv-category__card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border:1px solid var(--shop-color-accent);
}

.srv-category__card-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--section-color-title);
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.srv-category__card:hover .srv-category__card-title{
    color:var(--shop-color-accent);
}

.srv-category__card-text {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    margin: 0;
}


/* ============================================
   MODULE 5: news_custom — News & Events
   ============================================ */
.nws-events {
    background: var(--body-bg);
}

.nws-events__header {
    text-align: center;
    margin-bottom: 10px;
}
.nws-events__heading {
    display: inline-block;
    margin-bottom: 12px;
}
.nws-events__line {
    width: 60px;
    height: 3px;
    background: var(--shop-color-accent);
    margin: 0 auto;
}
.nws-events__desc {
    text-align: center;
    max-width: 600px;
    margin: 15px auto 30px;
}

.nws-events__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .nws-events__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .nws-events__grid { grid-template-columns: repeat(3, 1fr); }
}

.nws-events__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
}
.nws-events__card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.nws-events__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.nws-events__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.nws-events__card:hover .nws-events__img {
    transform: scale(1.05);
}
.nws-events__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--shop-color-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nws-events__body {
    padding: 20px;
}
.nws-events__date {
    font-size: 13px;
    color: var(--shop-color-accent);
    font-weight: 600;
}
.nws-events__title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 8px 0;
    line-height: 1.3;
}
.nws-events__title a {
    color: var(--section-color-title);
    text-decoration: none;
}
.nws-events__title a:hover {
    color: var(--shop-color-accent);
}
.nws-events__excerpt {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
}
.nws-events__readmore {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--section-color-title);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nws-events__readmore:hover {
    color: var(--shop-color-accent);
}

.nws-events__footer {
    text-align: center;
    margin-top: 30px;
}


/* ============================================
   MODULE 6 & 7: service — Leader Profile
   (Shared styles for left & right variants)
   ============================================ */
.srv-leader__section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}
.srv-leader__label-line {
    width: 40px;
    height: 3px;
    background: var(--shop-color-accent);
    flex-shrink: 0;
}
.srv-leader__label-text {
    font-size: 18px;
    margin: 0;
}
@media (min-width: 768px) {
    .srv-leader__label-text { font-size: 22px; }
}

.srv-leader__card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: #fff;
}
@media (min-width: 768px) {
    .srv-leader__card {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Photo */
.srv-leader__photo {
    flex: 0 0 100%;
    max-width: 280px;
    margin: 0 auto;
        border-radius: 4rem;
    background: rgba(220, 38, 38, 0.05);
    padding: 10px;
    overflow:hidden;
}
@media (min-width: 768px) {
    .srv-leader__photo {
        flex: 0 0 280px;
        max-width: none;
        margin: 0;
    }
}
@media (min-width: 1024px) {
    .srv-leader__photo {
        flex: 0 0 320px;
    }
}
.srv-leader__photo-img {
    width: 100%;
    height: 100%;
    border-radius: 4rem;
    display: block;
    object-fit: cover;
    min-height: 350px;
    transition:all .5s;
}
.srv-leader__photo:hover .srv-leader__photo-img{
    transform:scale(1.05);
}

/* Info */
.srv-leader__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.srv-leader__name {
    font-size: 26px;
    font-weight: 900;
    color: var(--shop-color-main);
    text-transform: uppercase;
    margin: 0 0 6px 0;
    line-height: 1.1;
}
@media (min-width: 768px) {
    .srv-leader__name { font-size: 32px; }
}
@media (min-width: 1024px) {
    .srv-leader__name { font-size: 38px; }
}

.srv-leader__role {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--shop-color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.srv-leader__sub-role {
    font-size: 12px;
    font-weight: 600;
    color: var(--body-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}
.srv-leader-right .srv-leader__name,
.srv-leader-right .srv-leader__role{
    text-align:right;
}
.srv-leader__detail {
    color: var(--body-color);
}
.srv-leader__detail > p{
            padding: 2rem;
    font-style: italic;
    background: rgb(249, 250, 251);
    border-radius: 3rem;
    margin:2rem 0;
}
.srv-leader-left .srv-leader__detail > p{
    border-left: 9px solid var(--shop-color-main);
}
.srv-leader-right .srv-leader__detail > p{
    border-right: 9px solid var(--shop-color-main);
}

/* Blockquote — red left border accent bar */
.srv-leader__detail blockquote {
    position: relative;
    font-style: italic;
    padding: 16px 20px 16px 28px;
    margin: 16px 0 20px 0;
    background: rgba(0,0,0,0.02);
    border-radius: 8px;
    line-height: 1.7;
    border: none;
    font-size: 14px;
}
.srv-leader__detail blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: var(--shop-color-accent);
    border-radius: 2px;
}

/* Highlight list — red dots, 2 columns */
.srv-leader__detail ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 480px) {
    .srv-leader__detail ul { grid-template-columns: 1fr 1fr; }
}
.srv-leader__detail ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--section-color-title);
    line-height: 1.4;
}
.srv-leader__detail ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--shop-color-accent);
    flex-shrink: 0;
    margin-top: 3px;
}

/* --- img-right variant: reverse order on desktop --- */
@media (min-width: 768px) {
  
}
@media (max-width:767px){
    .srv-leader__detail > p{
        margin:1rem 0;
    }
}


/* ============================================
   MODULE 8: service — Doctors / Expert Team
   ============================================ */
.srv-doctors__heading {
    text-align: left;
    margin-bottom: 20px;
}

.srv-doctors__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.srv-doctors__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.srv-doctors__card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
@media (min-width: 576px) {
    .srv-doctors__card {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
}

.srv-doctors__avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.srv-doctors__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srv-doctors__info {
    text-align: center;
}
@media (min-width: 576px) {
    .srv-doctors__info { text-align: left; }
}

.srv-doctors__name {
    font-size: 18px;
    font-weight: 800;
    color: var(--section-color-title);
    text-transform: uppercase;
    margin: 0 0 4px 0;
}
.srv-doctors__specialty {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--shop-color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.srv-doctors__bio {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    margin: 0;
}
.srv-doctors__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--shop-color-accent);
    text-decoration: none;
}
.srv-doctors__link:hover {
    text-decoration: underline;
}
/* ============================================
   PAGE COMMON — Cấu trúc tái sử dụng cho mọi trang phụ
   Dùng cho: contact, information, news, product detail...
   ============================================ */

/* --- Page Hero (Banner đầu trang) --- */
.page-hero {
    padding: 28px 0 20px;
    text-align: center;
}
.page-hero__title {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--shop-color-main);
    margin: 0 0 12px;
    letter-spacing: 1px;
}
.page-hero__divider {
    width: 60px;
    height: 4px;
    background-color: var(--shop-color-accent);
    margin: 0 auto 16px;
    border-radius: 2px;
}
.page-hero__desc {
    max-width: 560px;
    margin: 0 auto;
    color: #666;
    line-height: 1.7;
}

/* --- Page Body (Vùng nội dung chính) --- */
.page-body {
    padding: 32px 0 48px;
}

/* --- Page Card (Thẻ nội dung chung) --- */
.page-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.page-card--dark {
    background: var(--shop-color-main);
    color: #fff;
}
.page-card__title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 24px;
    letter-spacing: 0.5px;
}
.page-card__title--bar {
    padding-left: 16px;
    border-left: 4px solid var(--shop-color-accent);
}

/* --- Page Section Title (Tiêu đề mục trong body) --- */
.page-section__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--section-color-title);
    margin: 0 0 24px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .page-hero { padding: 60px 0 48px; }
    .page-hero__title { font-size: 36px; }
    .page-card { padding: 32px 28px; }
}
@media (min-width: 1024px) {
    .page-hero { padding: 72px 0 56px; }
    .page-hero__title { font-size: 42px; }
    .page-card { padding: 36px 32px; }
}

/* --- Product Card (prd__) --- */
.prd__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.prd__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.prd__thumb-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}
.prd__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.prd__card:hover .prd__thumb {
    transform: scale(1.05);
}
.prd__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--shop-color-accent);
    z-index: 2;
}
.prd__badge--sale {
    top: auto;
    bottom: 10px;
    right: 10px;
    background: #dc3545;
}
.prd__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.prd__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.prd__name a {
    color: var(--body-color);
    text-decoration: none;
}
.prd__name a:hover {
    color: var(--shop-color-main);
}
.prd__desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    flex: 1;
}
.prd__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}
.prd__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.prd__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--shop-color-accent);
}
.prd__price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}
.prd__contact-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--shop-color-accent);
    text-decoration: none;
    text-transform: uppercase;
}
.prd__contact-link:hover {
    text-decoration: underline;
}
.prd__quickview-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: var(--body-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 13px;
}
.prd__quickview-btn:hover {
    background: var(--shop-color-accent);
    color: #fff;
}

