:root {
    /* Màu sắc tự nhiên nhẹ nhàng */
    --primary-green: #7BA672;
    --light-green: #E8F4E4;
    --accent-gold: #B8AA8A;
    --cream-bg: #F5F3ED;
    --white: #FFFFFF;
    --text-dark: #3a4d38;
    --text-gray: #6b7f5a;
    --text-light: #8a9a7f;

    --shadow-sm: 0 2px 8px rgba(123, 166, 114, 0.06);
    --shadow-md: 0 4px 16px rgba(123, 166, 114, 0.1);
    --shadow-lg: 0 8px 32px rgba(123, 166, 114, 0.14);
    --shadow-xl: 0 16px 48px rgba(123, 166, 114, 0.18);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Quicksand', 'Rounded Mplus 1c', 'Arial Rounded MT Bold', sans-serif;
    --font-body: 'Lato', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-numbers: 'Roboto Mono', 'Courier New', monospace;
    --primary-color: #5a6c55;
    /* Màu xanh rêu của nút */
    --text-color: #555555;
    --bg-color: #f7f5f0;
    /* Màu nền be nhạt */

    /* --primary-color: #5a6c55; Màu xanh rêu của nút */
    --text-heading: #4a4a4a;
    --text-body: #555555;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    /* background: linear-gradient(135deg, #F5F3ED 0%, #E8F4E4 50%, #F5F3ED 100%); */
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

.stat-number,
.price-current,
.price-old,
.rating-text,
.cart-count,
.notification-badge {
    font-family: var(--font-numbers);
    font-weight: 600;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-green), var(--accent-gold));
    border-radius: 10px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(123, 166, 114, 0.06);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 24px rgba(123, 166, 114, 0.1);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.brand-logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-normal);
}

.navbar-brand {
    flex-shrink: 0;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu - Hiển thị khi hover, cầu nối để không mất hover khi di chuột xuống */
.nav-item.has-dropdown::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 320px;
    height: 20px;
    z-index: 1000;
}

/* Ghi đè Bootstrap .dropdown-menu - dùng display vì Bootstrap mặc định display:none */
.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--transition-normal);
    z-index: 1001;
    border: 1px solid var(--light-green);
    display: block; /* Ghi đè Bootstrap display:none */
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--transition-fast);
    text-transform: none;
    font-weight: 400;
}

.dropdown-item:hover {
    background: var(--light-green);
    transform: translateX(5px);
}

.dropdown-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.dropdown-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.nav-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    border-radius: 50%;
    position: relative;
    background: transparent;
}

.nav-icon:hover {
    color: var(--primary-green);
    background: var(--light-green);
    transform: scale(1.1);
}

.nav-icon i {
    font-size: 1.2rem;
}

.cart-count,
.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.search-close:hover {
    background: var(--primary-green);
    color: white;
    transform: rotate(90deg);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--cream-bg);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.search-box i {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 300;
}

.search-box input::placeholder {
    color: var(--text-light);
}

.search-box input:focus {
    outline: none;
}

.search-suggestions h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--light-green);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Notification Panel */
.notification-panel,
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.notification-panel.active,
.cart-panel.active {
    right: 0;
}

.notification-header,
.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--light-green);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification-header h4,
.cart-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.notification-close,
.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-green);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.notification-close:hover,
.cart-close:hover {
    background: var(--primary-green);
    color: white;
}

.notification-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.notification-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.notification-item:hover {
    background: var(--cream-bg);
}

.notification-item.unread {
    background: var(--light-green);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

.notification-content h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.notification-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Cart Panel */
.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-green);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream-bg);
    display: block;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.25rem;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.cart-item-name:hover {
    color: var(--primary-green);
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--light-green);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.total-amount {
    color: var(--primary-green);
}

.btn-checkout {
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* ========== Cart Sidebar - Bổ sung style ========== */
.cart-panel {
    overflow: hidden;
    border-left: 1px solid var(--light-green);
}

.cart-header {
    background: var(--cream-bg);
    padding: 1.25rem 1.5rem;
}

.cart-header h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.02em;
}

.cart-close {
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cart-empty {
    background: linear-gradient(180deg, #fff 0%, var(--cream-bg) 100%);
}

.cart-empty .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cart-empty .btn-primary {
    background: var(--primary-green);
    color: #fff;
}

.cart-empty .btn-primary:hover {
    background: #6a9462;
    color: #fff;
    transform: translateY(-1px);
}

.cart-items {
    min-height: 120px;
    max-height: calc(100vh - 280px);
    padding: 1rem 1.25rem;
    background: #fff;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: var(--cream-bg);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--light-green);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

.cart-item {
    transition: background 0.2s ease;
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    margin-bottom: 0.25rem;
}

.cart-item:hover {
    background: var(--cream-bg);
}

.cart-item-image {
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.cart-item:hover .cart-item-image {
    transform: scale(1.03);
}

.cart-item-details {
    padding-right: 0.25rem;
}

.cart-item-name {
    line-height: 1.35;
    transition: color 0.2s ease;
}

.cart-item-price {
    display: block;
    margin-top: 0.15rem;
}

.cart-footer {
    background: var(--cream-bg);
    padding: 1.25rem 1.5rem;
    border-top: 2px solid var(--light-green);
}

.cart-total {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.cart-total .total-amount {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-green);
}

.btn-checkout {
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 166, 114, 0.35);
}

/* HAMBURGER MENU - UPDATED: Chuyển thành icon X khi active */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all var(--transition-normal);
    display: block;
    position: absolute;
}

.hamburger span:nth-child(1) {
    top: 12px;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 12px;
}

/* Khi active, chuyển thành X */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-top: 76px;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg,  */
    /* rgba(245, 243, 237, 0.92) 0%,  */
    /* rgba(232, 244, 228, 0.88) 100%); */
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-top: 15px;
    /* margin-bottom: 1.5rem; */
    letter-spacing: -1px;
}

.hero-text {
    text-align: center;
}

.hero-title .highlight {
    color: var(--primary-green);
    position: relative;
    font-weight: 800;
}

/* .hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(212, 197, 160, 0.25);
    z-index: -1;
} */

.hero-description {
    font-size: 2.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    transform: translateY(0px);
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), #6a9562);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(123, 166, 114, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123, 166, 114, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
}

.btn-secondary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary-green), transparent);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(100px, -100px);
    }

    50% {
        transform: translate(-50px, -200px);
    }

    75% {
        transform: translate(150px, -150px);
    }
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(6) {
    top: 50%;
    left: 20%;
    animation-delay: 3s;
}

.particle:nth-child(7) {
    top: 70%;
    left: 40%;
    animation-delay: 5s;
}

.particle:nth-child(8) {
    top: 90%;
    left: 60%;
    animation-delay: 7s;
}

/* ==================== SECTION STYLES ==================== */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.title-accent {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==================== PHILOSOPHY SECTION ==================== */
.philosophy-section {
    padding: 8rem 0;
    /* background: linear-gradient(135deg, #FFFFFF 0%, #F5F3ED 100%); */
}

/* Philosophy: Desktop grid / Mobile swiper */
.philosophy-mobile-swiper {
    display: none;
}

@media (max-width: 767px) {
    .philosophy-desktop {
        display: none !important;
    }
    .philosophy-mobile-swiper {
        display: block;
        padding-bottom: 2.5rem;
    }
    .philosophy-mobile-swiper .feature-box {
        padding: 2rem 1.5rem;
    }
    .philosophy-mobile-swiper .swiper-slide {
        height: auto;
    }
    .philosophy-pagination .swiper-pagination-bullet {
        background: var(--primary-green, #7BA672);
    }
    .philosophy-pagination .swiper-pagination-bullet-active {
        background: var(--primary-green, #7BA672);
    }
}

/* Certification: Desktop grid / Mobile swiper */
.cert-mobile-swiper {
    display: none;
}

@media (max-width: 767px) {
    .cert-desktop {
        display: none !important;
    }
    .cert-mobile-swiper {
        display: block;
        padding-bottom: 2.5rem;
    }
    .cert-mobile-swiper .swiper-slide {
        height: auto;
    }
    .cert-pagination .swiper-pagination-bullet-active {
        background: var(--primary-green, #7BA672);
    }
}

/* Commitment: Desktop grid / Mobile swiper */
.commitment-mobile-swiper {
    display: none;
}

@media (max-width: 767px) {
    .commitment-desktop {
        display: none !important;
    }
    .commitment-mobile-swiper {
        display: block;
        padding-bottom: 2.5rem;
    }
    .commitment-mobile-swiper .swiper-slide {
        height: auto;
    }
    .commitment-pagination .swiper-pagination-bullet-active {
        background: var(--primary-green, #7BA672);
    }
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.philosophy-card {
    background: var(--cream-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all var(--transition-slow);
    border: 1px solid rgba(123, 166, 114, 0.08);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.philosophy-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-md);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 300;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.philosophy-card:hover .card-decoration {
    opacity: 1;
}

/* ==================== DOCTOR SECTION - REDESIGNED ==================== */


/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    margin-top: 19px;
    /* padding: 8rem 0; */
    /* background: linear-gradient(135deg, #E8F4E4 0%, #FFFFFF 50%, #F5F3ED 100%); */
}

.products-section .section-title {
    margin-bottom: 16px !important;
}

.products-section .swiper-pagination {
    bottom: 10px;
}

.products-slider {
    padding: 3rem 0 5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    height: 609px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 280px;
    background: var(--light-green);
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: var(--accent-gold);
    color: white;
    z-index: 2;
}

.product-badge.new {
    background: #6a9562;
}

.product-badge.hot {
    background: #d97706;
}

.product-badge.special {
    background: #8b5cf6;
}

.btn-wishlist {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    z-index: 2;
}

.btn-wishlist:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.btn-wishlist:hover i {
    color: white;
}

.btn-wishlist i {
    font-size: 1.2rem;
    color: var(--primary-green);
    transition: color var(--transition-fast);
}

.btn-wishlist.active {
    background: var(--accent-gold);
}

.btn-wishlist.active i {
    color: white;
}

.product-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.38rem;
}

.product-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.88rem;
    flex-shrink: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-gold);
}

.rating-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-top: auto; */
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-green);
    flex-shrink: 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-current {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
}

.price-old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all var(--transition-normal);
}

.btn-add-cart:hover {
    background: #6a9562;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    color: var(--primary-green);
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: white;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Nút bấm */
.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #455241;
    color: #fff;
    box-shadow: 0 5px 20px rgba(90, 108, 85, 0.4);
    transform: translateY(-2px);
}

/* Phần hình ảnh cô gái */
.image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Căn ảnh sang phải */
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    /* Để giống mẫu nhất, bạn cần một ảnh PNG tách nền */
    /* Nếu dùng ảnh JPG đè lên nền thì trông sẽ hơi cứng */
    object-fit: cover;
    filter: drop-shadow(5px 5px 15px rgba(0, 0, 0, 0.1));
    /* Đổ bóng nhẹ cho ảnh nổi lên */
}

/* Responsive cho Mobile */
@media (max-width: 991px) {
    .commitment-section {
        padding: 60px 0 9px;
        text-align: center;
        /* Căn giữa nội dung trên mobile */
    }

    .main-quote {
        font-size: 2rem;
    }

    .quote-mark-start {
        left: -10px;
        top: -30px;
        font-size: 4rem;
    }

    .commitment-list {
        display: inline-block;
        text-align: left;
        /* Danh sách vẫn căn trái cho dễ đọc */
        margin-top: 20px;
    }

    .image-wrapper {
        justify-content: center;
        margin-top: 50px;
    }
}


/* Container class */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 6rem 0;
    background: var(--cream-bg);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-logo {
    height: 80px;
    width: auto;
    margin: 0 auto 2rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.btn-newsletter {
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--text-dark);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: #c4b590;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.payment-icon {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.payment-icon:hover {
    opacity: 1;
}

/* ==================== FOOTER ==================== */
.footer-back-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, #455a42 0%, #3a4d38 100%);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(58,77,56,0.4), 0 0 0 0 rgba(184,170,138,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.footer-back-top--visible {
    opacity: 1;
    visibility: visible;
}

.footer-back-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(58,77,56,0.5), 0 0 0 4px rgba(184,170,138,0.2);
    background: linear-gradient(145deg, #4d6349 0%, #455a42 100%);
}

.footer-back-top i {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer main block */
.footer {
    position: relative;
    background: linear-gradient(180deg, #2d3b2a 0%, #3a4d38 12%, #3a4d38 100%);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,170,138,0.4), transparent);
    opacity: 0.8;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold), var(--primary-green));
    background-size: 200% 100%;
    animation: footerAccentShine 8s ease-in-out infinite;
}

@keyframes footerAccentShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-inner {
    padding: 0 0 0;
}

/* Newsletter strip */
.footer-newsletter {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-newsletter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.footer-newsletter-desc {
    color: rgba(255,255,255,0.72);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
    min-width: 280px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: 0;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.footer-newsletter-input:focus {
    outline: none;
    background: rgba(255,255,255,0.1);
    border-color: rgba(184,170,138,0.5);
}

.footer-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #6a9562 100%);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(123,166,114,0.3);
}

.footer-newsletter-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123,166,114,0.4);
}

.footer-newsletter-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.footer-newsletter-btn:hover i {
    transform: translateX(3px);
}

/* Footer main grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.25fr;
    gap: 3rem 2rem;
    padding: 2.5rem 0 2rem;
}

.footer-col-brand .footer-desc {
    max-width: 300px;
}

.footer-logo-wrap {
    margin-bottom: 1rem;
}

.footer-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.footer-col-brand:hover .footer-logo {
    opacity: 1;
}

.footer-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, var(--primary-green), #6a9562);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(123,166,114,0.35);
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.6rem;
}

.footer-list a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

/* Contact column */
.footer-contact-list {
    list-style: none;
    margin-bottom: 1.25rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-payment {
    margin-top: 0;
}

.footer-payment-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.footer-payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-payment-icon {
    padding: 0.35rem 0.65rem;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.03em;
}

.footer-payment-note {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin: 0;
}

/* Footer bar */
.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.85);
}

.footer-legal-sep {
    color: rgba(255,255,255,0.3);
    user-select: none;
}

@media (max-width: 992px) {
    .footer-newsletter-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .footer-newsletter-form {
        max-width: 100%;
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        padding: 2rem 0 1.5rem;
    }
    .footer-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-newsletter {
        padding: 1.5rem 0;
    }
    .footer-newsletter-form {
        flex-direction: column;
        min-width: 0;
    }
    .footer-newsletter-input {
        border-radius: 8px;
        border-right: 1px solid rgba(255,255,255,0.2);
    }
    .footer-newsletter-btn {
        border-radius: 8px;
    }
    .footer-inner {
        padding: 0;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
    }
    .footer-col-brand .footer-desc {
        max-width: none;
    }
    .footer-bar {
        padding: 0.875rem 0;
    }
    .footer-back-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

/* ==================== UTILITY ==================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green), #6a9562);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification.hide {
    animation: slideOut 0.3s ease;
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .doctor-card {
        grid-template-columns: 1fr;
    }

    .doctor-content {
        padding-right: 0;
        order: -1;
    }

    .doctor-visual {
        height: auto;
    }

    .doctor-photo {
        height: 500px;
    }

    .doctor-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .commitment-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-container {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: left var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-green);
        padding: 1rem 0;
    }

    .nav-item.has-dropdown::before {
        display: none;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 1rem 0 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
    }

    .brand-logo {
        height: 38px;
    }

    .hero-section {
        padding: 3rem 0 3rem;
        margin-top: 60px;
        background-size: auto!important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .philosophy-section,
    .doctor-section,
    .commitment-section,
    .newsletter-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .doctor-card {
        grid-template-columns: 1fr;
    }

    .doctor-visual {
        height: auto;
    }

    .doctor-photo {
        height: 400px;
    }

    .doctor-content {
        padding: 0;
    }

    .doctor-stats {
        grid-template-columns: 1fr;
    }

    .doctor-cta {
        flex-direction: column;
    }

    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .commitment-image {
        order: -1;
    }

    .commitment-photo {
        height: 400px;
    }

    .testimonial-card {
        height: 400px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .notification-panel,
    .cart-panel {
        width: 100%;
        right: -100%;
        max-width: 100%;
    }

    .cart-header,
    .cart-footer {
        padding: 1rem 1.25rem;
    }

    .cart-items {
        max-height: calc(100vh - 260px);
        padding: 0.75rem 1rem;
    }

    .cart-item {
        padding: 0.6rem 0;
    }

    .cart-item-image {
        width: 48px;
        height: 48px;
    }

    .cart-item-name {
        font-size: 0.85rem;
    }

    .cart-item-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .search-modal-content {
        padding: 2rem 1.5rem;
    }
}

/* Container chính */
.doctor-section {
    /* background-color: var(--bg-color); */
    background-image: url('assets/images/Gemini_Generated_Image_a5wtyna5wtyna5wt.png');
    /* Ảnh nền giả lập bóng lá cây */
    background-size: cover;
    background-position: center;
    background-blend-mode: soft-light;
    border-radius: 12px;
    /* Bo nhẹ góc */
    overflow: hidden;
    padding: 40px 0;
    /* margin: 100px 0; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Doctor Card Mobile Layout */
.doctor-card-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.doctor-img-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green) 0%, #5a9a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(58, 139, 126, 0.3);
    border: 4px solid #fff;
}

.doctor-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.doctor-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(58, 139, 126, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 500;
}

.badge-icon {
    color: var(--primary-green);
}

.quote-wrapper {
    position: relative;
    padding: 15px 0;
}

.quote-icon-end {
    font-size: 2rem;
    color: #ccc;
    line-height: 1;
    text-align: right;
    display: block;
    font-family: 'Playfair Display', serif;
}

.doctor-info {
    text-align: center;
    margin-bottom: 20px;
}

/* Phần nội dung chữ bên trái */
.content-box {
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tiêu đề có chân sang trọng */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Dấu ngoặc kép */
.quote-icon {
    font-size: 3rem;
    color: #ccc;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.quote-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    font-style: italic;
    /* Chữ nghiêng nhẹ ở đoạn trích dẫn */
    margin-bottom: 25px;
}

/* Tên bác sĩ */
.doctor-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #3e683e;
    margin-bottom: 5px;
    font-weight: 900;
}

.doctor-title {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Nút bấm */
.btn-consult {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    /* Bo tròn kiểu pill */
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.btn-consult:hover {
    background-color: #455241;
    color: #fff;
    transform: translateY(-2px);
}

/* Phần ảnh bác sĩ */
.doctor-img-container {
    height: 100%;
    min-height: 400px;
    position: relative;
    /* Đặt ảnh background là ảnh bác sĩ để dễ canh chỉnh responsive */
    /* Bạn thay link ảnh bác sĩ của bạn vào đây */
    background-image: url('https://img.freepik.com/free-photo/woman-doctor-wearing-lab-coat-with-stethoscope-isolated_1303-29791.jpg');
    background-size: cover;
    /* Hoặc contain nếu muốn thấy hết người */
    background-position: center top;
    background-repeat: no-repeat;
}

/* Hiệu ứng mờ dần để ghép ảnh nếu dùng ảnh thẻ img (Cách 2) - Ở đây dùng background cho dễ */

/* Responsive cho Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
    }

    .doctor-section {
        padding: 15px 0;
        border-radius: 8px;
    }

    .content-box {
        padding: 20px 15px;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: 5px;
    }

    .quote-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .doctor-name {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }

    .doctor-title {
        font-size: 0.75rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .btn-consult {
        padding: 8px 18px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .doctor-img-container {
        min-height: 200px;
        background-position: center 20%;
    }

    .doctor-section {
        padding: 20px 0;
        margin: 0;
        border-radius: 8px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .doctor-name {
        font-size: 1.3rem;
    }

    .doctor-title {
        font-size: 0.8rem;
    }

    .btn-consult {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .doctor-section {
        padding: 10px 0;
    }

    .doctor-card-mobile {
        gap: 12px;
    }

    .doctor-avatar {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }

    .doctor-avatar i {
        font-size: 1.8rem;
    }

    .doctor-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .content-box {
        padding: 15px 12px;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .quote-wrapper {
        padding: 8px 0;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .quote-icon-end {
        font-size: 1.5rem;
    }

    .quote-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .doctor-info {
        margin-bottom: 12px;
    }

    .doctor-name {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .doctor-title {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .btn-consult {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

:root {
    --primary-green: #3a8b7e;
    /* Xanh lá đậm thiên nhiên */
    --light-green: #e8f4f2;
    /* Xanh nhạt làm nền */
    --soft-green: #a8d5c0;
    /* Xanh lá nhạt */
    --cream: #fffaf0;
    /* Kem ấm áp */
    --white: #ffffff;
    /* Trắng tinh khiết */
    --text-dark: #2a3d45;
    /* Đen xanh cho chữ */
    --text-grey: #6c7a89;
    /* Xám nhạt */
    --text-light: #95a5a6;
    /* Xám sáng */
    --accent: #ff9a8b;
    /* Cam hồng nhẹ làm điểm nhấn */
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- SECTION STYLES --- */
.news-section {
    /* background: linear-gradient(135deg, var(--cream) 0%, var(--light-green) 100%); */
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Họa tiết lá trang trí */
.leaf-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    font-size: 150px;
    color: var(--primary-green);
    transform: rotate(45deg);
}

.leaf-2 {
    bottom: 10%;
    right: 5%;
    font-size: 120px;
    color: var(--soft-green);
    transform: rotate(-20deg);
}

.section-header-blog {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-subtitle {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 11px;
    margin-bottom: 15px;
    padding: 5px 15px;
    background-color: rgba(58, 139, 126, 0.1);
    border-radius: 20px;
}

.section-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 2.1rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-grey);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* --- CARD STYLES TỐI GIẢN & ĐẸP --- */
.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 500px;
    /* Chiều cao cố định */
    display: flex;
    flex-direction: column;
    margin: 10px;
    position: relative;
    border: 1px solid rgba(232, 244, 242, 0.5);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 139, 126, 0.15);
    border-color: var(--soft-green);
}

/* Phần hình ảnh - chiều cao cố định */
.card-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .card-img-container img {
    transform: scale(1.08);
}

/* Badge thể loại */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Phần nội dung - chiều cao cố định */
.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Ngày đăng */
.post-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-date i {
    color: var(--primary-green);
}

/* Tiêu đề bài viết */
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 3.5em;
    /* Chiều cao cố định cho 2 dòng */
}

.card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.card-title a:hover {
    color: var(--primary-green);
}

/* Mô tả ngắn */
.card-excerpt {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Giới hạn 3 dòng */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.8em;
    /* Chiều cao cố định cho 3 dòng */
}

/* Nút đọc thêm */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 0;
    width: fit-content;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 12px;
    border-bottom-color: var(--primary-green);
}

/* --- SWIPER CUSTOMIZATION --- */
.news-swiper {
    padding: 20px 10px 50px;
    position: relative;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(58, 139, 126, 0.3);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary-green);
    width: 30px;
    border-radius: 10px;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
    transition: all 0.3s;
    top: 45%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-prev {
    left: -25px;
}

.swiper-button-next {
    right: -25px;
}

/* Nút xem tất cả */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
    margin-top: 20px;
}

.view-all-btn:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(58, 139, 126, 0.2);
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1400px) {
    .news-card {
        height: 480px;
    }

    .card-img-container {
        height: 200px;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }

    .news-card {
        height: 460px;
    }
}

@media (max-width: 992px) {
    .news-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .news-card {
        height: 440px;
        margin: 8px;
    }

    .card-img-container {
        height: 180px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

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

    .news-card {
        height: 420px;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 1.15rem;
        height: 3.2em;
    }

    .card-excerpt {
        font-size: 0.9rem;
        height: 4.5em;
    }

    .leaf-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .news-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .news-card {
        height: 400px;
    }

    .card-img-container {
        height: 160px;
    }

    .card-title {
        -webkit-line-clamp: 2;
        height: 3em;
    }

    .card-excerpt {
        -webkit-line-clamp: 3;
        height: 4.2em;
    }
}

/* Đảm bảo tất cả card bằng nhau trong một hàng */
.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide>.news-card {
    width: 100%;
}


/* Tùy chỉnh CSS */
.philosophy-section {
    padding: 60px 0;
    /* background-color: #fff; Nền trắng */
    font-family: 'Roboto', sans-serif;
    /* Font mặc định cho nội dung */
    color: #555;
}

.main-title {
    font-family: 'Playfair Display', serif;
    /* Font giống trong ảnh */
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #4a4a4a;
}

.feature-box {
    padding: 0 20px;
}

.feature-icon {
    width: 80px;
    /* Kích thước icon, bạn có thể chỉnh lại cho khớp ảnh thật */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.feature-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    max-width: 250px;
    margin: 0 auto;
    /* Căn giữa đoạn văn bản */
}

/* Tạo đường kẻ dọc ngăn cách giữa các cột */
@media (min-width: 768px) {
    .border-end-custom {
        border-right: 1px solid #e0e0e0;
    }
}


/* Nền màu kem nhạt giống trong ảnh */
.certification-section {
    /* background-color: #fdfef5; */
    padding: 37px 0;
}

/* Phần tiêu đề có gạch ngang 2 bên */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
}

.section-header h2 {
    color: #4a6b46;
    /* Màu xanh rêu đậm */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 20px;
    font-size: 2rem;
    text-align: center;
}

.section-header::before,
.section-header::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dcdcdc;
    /* Màu đường kẻ */
    max-width: 150px;
    /* Độ dài đường kẻ */
}

/* Style cho từng Card sản phẩm */
.cert-card {
    background: transparent;
    border: none;
    text-align: center;
    margin-bottom: 30px;
}

.brand-label {
    font-size: 0.9rem;
    color: #EBC64B;
    /* Màu vàng của chữ Harinas */
    font-weight: bold;
    margin-bottom: 5px;
}

.brand-label span {
    color: #333;
    /* Màu đen của chữ Gian hàng chính hãng */
    font-weight: normal;
    border-left: 1px solid #ccc;
    padding-left: 8px;
    margin-left: 5px;
}

.cert-title {
    color: #4a6b46;
    /* Màu xanh rêu */
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Ảnh sản phẩm + giấy chứng nhận */
.cert-image {
    width: 100%;
    height: auto;
    /* max-width: 280px; */
    /* Giới hạn chiều rộng ảnh cho đẹp */
    margin: 0 auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Đổ bóng nhẹ cho đẹp */
}

/* --- PHẦN 3: REVIEW (DÙNG SWIPER) --- */
.review-section {
    background-color: var(--color-cream);
    padding-bottom: 6px;
    margin-top: 57px;
    /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
    position: relative;
}

/* Kích thước Swiper */
.swiper {
    width: 100%;
    padding: 20px 10px 40px 10px;
    /* Padding dưới để không bị cắt bóng đổ */
}

.review-box {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
    cursor: pointer;
}

.review-box:hover {
    transform: translateY(-5px);
}

.review-img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    /* Ảnh vuông */
    object-fit: cover;
}

/* Custom nút điều hướng Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-green);
    /* Màu mũi tên */
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Đẩy nút ra xa một chút khỏi nội dung nếu muốn */
.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.section-header-cer {
    margin-top: 17px;
    margin-bottom: 30px !important;
}

/* --- PHẦN 3: CAM KẾT (REDESIGNED) --- */
.commitment-section {
    padding: 60px 0 9px;
    /* background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-cream) 100%); */
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(58, 139, 126, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.commitment-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(58, 139, 126, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.commitment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(58, 139, 126, 0.15);
    border-color: var(--color-gold);
}

.commitment-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-light-green), var(--color-white));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--color-green);
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s;
}

.commitment-card:hover .commitment-icon {
    background: linear-gradient(135deg, var(--color-green), var(--color-dark-green));
    color: var(--color-white);
    transform: scale(1.1);
    border-color: var(--color-gold);
}

.commitment-text {
    font-size: 1.4rem;
    color: var(--color-dark-green);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.commitment-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.section-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 700px;
    margin: 5px auto 40px;
    position: relative;
    padding: 0 20px;
}

/* .section-quote::before {
            content: '❝';
            position: absolute;
            top: -20px;
            left: 0;
            font-size: 3rem;
            color: var(--color-gold);
            opacity: 0.5;
        }

        .section-quote::after {
            content: '❞';
            position: absolute;
            bottom: -40px;
            right: 0;
            font-size: 3rem;
            color: var(--color-gold);
            opacity: 0.5;
        } */

.section-header-commit {
    text-align: center !important;
    margin-bottom: -12px !important;
    position: relative !important;
    padding-bottom: 15px !important;
    display: block !important;
}

.banner-logo {
        max-width: 237px;
    text-align: center;
}

/* ==================== POLICY PAGES (Chính sách / Hướng dẫn) ==================== */
.policy-page-banner {
    background:
        radial-gradient(circle at top right, rgba(92, 149, 113, 0.18) 0%, transparent 48%),
        radial-gradient(circle at top left, rgba(155, 118, 83, 0.12) 0%, transparent 45%),
        linear-gradient(135deg, #f4fbf6 0%, #fcfaf6 100%);
    padding: 3.4rem 0 3.2rem;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-page-banner .container {
    position: relative;
    z-index: 1;
}

.policy-page-banner h1 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    margin: 0.75rem 0 0.65rem;
}

.policy-page-banner p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 1.03rem;
    max-width: 760px;
    margin-inline: auto;
}

.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a6f4f;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(42, 111, 79, 0.16);
    border-radius: 999px;
    padding: 0.42rem 0.8rem;
    box-shadow: 0 8px 22px rgba(60, 72, 88, 0.08);
}

.policy-badge i {
    font-size: 0.9rem;
}

.policy-content-wrap {
    padding: 2.1rem 0 4rem;
    max-width: 930px;
    margin: 0 auto;
}

.policy-content-wrap .policy-top-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    margin: 0 0 1.25rem;
}

.policy-content-wrap .policy-top-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-gray);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
}

.policy-content-wrap .policy-top-meta i {
    color: var(--primary-green);
}

.policy-content-wrap .policy-content {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    padding: 1rem 1.4rem;
    box-shadow: 0 16px 42px rgba(27, 44, 36, 0.08);
}

.policy-content-wrap .policy-section {
    margin-bottom: 1rem;
    padding: 1.3rem 1.15rem 1.2rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(244, 251, 246, 0.58) 0%, rgba(255, 255, 255, 1) 70%);
    border: 1px solid rgba(92, 149, 113, 0.12);
}

.policy-content-wrap .policy-section:last-child {
    margin-bottom: 0;
}

.policy-content-wrap .policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(92, 149, 113, 0.25);
}

.policy-content-wrap .policy-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.policy-content-wrap .policy-section p {
    color: var(--text-body);
    line-height: 1.82;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.policy-content-wrap .policy-section ul,
.policy-content-wrap .policy-section ol {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    color: var(--text-body);
    line-height: 1.82;
    font-size: 0.95rem;
}

.policy-content-wrap .policy-section li {
    margin-bottom: 0.45rem;
}

.policy-content-wrap .policy-section .policy-note {
    background: linear-gradient(135deg, rgba(231, 247, 237, 0.92) 0%, rgba(249, 253, 250, 0.95) 100%);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    margin: 1.25rem 0;
    font-size: 0.94rem;
    color: var(--text-dark);
}

.policy-content-wrap .policy-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.6rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
}

.policy-content-wrap .policy-nav a {
    color: #2f5f47;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1px solid rgba(92, 149, 113, 0.18);
    border-radius: 999px;
    padding: 0.46rem 0.78rem;
    transition: all 0.22s ease;
}

.policy-content-wrap .policy-nav a:hover {
    color: #244f3b;
    border-color: rgba(92, 149, 113, 0.45);
    background: rgba(231, 247, 237, 0.55);
}

.policy-content-wrap .policy-nav a.is-active {
    color: #fff;
    background: linear-gradient(135deg, #3e7d5d 0%, #5c9571 100%);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(62, 125, 93, 0.32);
}

.policy-content-wrap .policy-nav a i {
    font-size: 0.85rem;
}

.policy-content-wrap .policy-cta {
    text-align: center;
    margin-top: 1.3rem;
    padding-top: 1.6rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.16);
}

.policy-content-wrap .policy-cta .btn {
    margin: 0 0.32rem;
    min-width: 150px;
}

.mt-news-section {
    margin-top: 1.5rem !important;
}

@media (max-width: 768px) {
    .main-title {
        margin-bottom: 0px !important;
        font-size: 1.8rem !important;
    }
    .products-section {
        margin-top: 0px !important;
    }
    .products-section .btn-add-cart {
        display: none !important;
    }
    .philosophy-mobile-swiper .swiper-pagination {
        bottom: 35px!important;
    }
    .products-section .swiper {
        padding: 0px 0px 0px 0px!important;
    }
    .products-section .section-title {
        margin-bottom: 26px !important;
    }
    .section-header-cer {
        margin-bottom: 6px !important;
    }
    .philosophy-section {
        padding: 31px 0 33px!important;
    }
    .policy-page-banner {
        padding: 2rem 0;
        margin-top: 70px;
    }
    .policy-page-banner h1 {
        font-size: 1.5rem;
    }
    .policy-content-wrap {
        padding: 1.45rem 0 3rem;
    }
    .policy-content-wrap .policy-top-meta {
        justify-content: flex-start;
    }
    .policy-content-wrap .policy-content {
        border-radius: 14px;
        padding: 0.7rem 0.7rem;
    }
    .policy-content-wrap .policy-section {
        padding: 1rem 0.9rem;
        margin-bottom: 0.8rem;
    }
    .policy-content-wrap .policy-section h2 {
        font-size: 1.1rem;
    }
    .policy-content-wrap .policy-nav a {
        font-size: 0.88rem;
    }
    .policy-content-wrap .policy-cta .btn {
        min-width: 0;
        width: 100%;
        margin: 0.28rem 0;
    }

    .news-section .section-desc {
        margin: 0 auto!important;
    }
    .news-section .swiper {
        padding: 0 !important;
    }
    .news-section .swiper-pagination {
        bottom: 0px!important;
    }
    .news-section .card-excerpt {
        line-height: 1.4!important;
    }
    .mt-news-section {
        margin-top: 0rem !important;
    }
    .newsletter-section {
        padding: 2rem 0 !important;
    }
    .section-header-blog {
        margin-bottom: 25px;
    }
    .section-header h2 {
            font-size: 1.5rem;
    }

    .footer-newsletter {
        display: none !important;
    }

    .footer-main ul {
        margin: 0;
        padding: 0;
    }

    .container.product-hero {
        margin-top: 97px!important;
    }

    .product-hero .swiper {
        padding: 0px!important;
    }
}