:root {
    --primary-color: #3b742b;     /* Deep Teal / Xanh hoa sen Vietnam Airlines */
    --primary-dark: #244a1b;      /* Darker Teal */
    --primary-light: #4e9739;     /* Lighter Teal */
    --secondary-color: #c5a059;   /* Lotus Gold / Vàng kim thượng hạng */
    --secondary-hover: #b38d47;   /* Deep Gold */
    --accent-gold: #f4ece1;       /* Light champagne gold */
    --light-bg: #ffffff;          /* Pure White background */
    --grey-bg: #f8f9fa;           /* Soft Light Grey background */
    --dark-bg: #ffffff;           /* Changed from dark blue to pure white for White Theme */
    --text-main: #2b3a42;
    --text-muted: #6c757d;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(59, 116, 43, 0.05);
    --box-shadow-hover: 0 15px 40px rgba(59, 116, 43, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
}

/* --- Premium Navigation Header --- */
.navbar {
    background-color: var(--primary-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    transition: var(--transition);
    border-bottom: none;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--secondary-color) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    font-weight: 300;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 800 !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.5) !important;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2) !important;
}

/* Navbar outline light overloads for language switch */
.navbar .btn-outline-light {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--secondary-color) !important;
}

/* Header Utilities */
.header-icon-btn {
    color: #fff;
    font-size: 1.25rem;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    background: transparent;
    border: none;
}

.header-icon-btn:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

/* Membership Ribbon info */
.member-banner-ribbon {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 12px;
    letter-spacing: 1px;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

/* --- Premium Buttons --- */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    font-family: var(--font-body);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 116, 43, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 116, 43, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--primary-dark) !important;
    font-family: var(--font-body);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover) !important;
    border-color: var(--secondary-hover) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* --- Hero Banner Section with Ken Burns Zoom & Dynamic Effects --- */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--text-main);
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../uploads/hero_bg.jpg') no-repeat center center/cover;
    transform: scale(1.03);
    animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--primary-dark);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 35px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-section .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpHero 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.03) translate(0, 0) rotate(0deg);
    }
    50% {
        transform: scale(1.16) translate(-0.8%, -0.4%) rotate(0.4deg);
    }
    100% {
        transform: scale(1.03) translate(0, 0) rotate(0deg);
    }
}

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

/* --- Premium Cards (Products & Posts) --- */
.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid rgba(59, 116, 43, 0.05);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(197, 160, 89, 0.3);
}

.product-img-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: var(--grey-bg);
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.product-title a:hover {
    color: var(--secondary-color);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-sold-live {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-sold-live i {
    color: var(--secondary-color);
    animation: pulse 1.5s infinite;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-discounted {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc3545;
}

.product-price-old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 5px;
}

/* --- Product Detail Custom Layout --- */
.detail-gallery {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.detail-info-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(59, 116, 43, 0.05);
}

.detail-price-box {
    background-color: var(--accent-gold);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--secondary-color);
}

.member-discount-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

/* --- Custom Cart & Checkout Styles --- */
.cart-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 20px;
    overflow: hidden;
    max-width: 120px;
}

.quantity-control button {
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.quantity-control button:hover {
    background-color: var(--grey-bg);
}

.quantity-control input {
    border: none;
    text-align: center;
    width: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.quantity-control input:focus {
    outline: none;
}

/* --- Premium Footer --- */
.footer {
    background-color: #ffffff;
    color: var(--text-main);
    padding: 70px 0 30px;
    font-size: 0.9rem;
    border-top: 5px solid var(--secondary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03);
}

.footer h5 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Admin Sidebar & Layout --- */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background-color: #ffffff;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.03);
    z-index: 10;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-sidebar-header {
    padding: 24px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-sidebar-header h5 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.admin-nav {
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.admin-nav-item:hover, 
.admin-nav-item.active {
    color: var(--primary-color);
    background-color: rgba(59, 116, 43, 0.04);
    border-left-color: var(--secondary-color);
}

.admin-nav-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: var(--secondary-color);
}

.admin-content {
    flex-grow: 1;
    background-color: var(--grey-bg);
    padding: 30px;
    overflow-y: auto;
}

/* --- Animations --- */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(3deg); }
    66% { transform: translateY(-6px) rotate(-2deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(10px) rotate(-4deg); }
    66% { transform: translateY(5px) rotate(3deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes particleDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.15; }
    50% { transform: translate(30px, -40px) scale(1.3); opacity: 0.08; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.15; }
}

/* --- Values / Why Choose Airfood Section --- */
.values-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary-color) 45%, var(--primary-light) 75%, var(--primary-dark) 100%);
}

/* Animated mesh background */
.values-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(197, 160, 89, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(22, 126, 150, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 60% 10%, rgba(197, 160, 89, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating geometric particles */
.values-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleDrift linear infinite;
}

.values-particle:nth-child(1) {
    width: 200px; height: 200px;
    top: -60px; left: -60px;
    background: radial-gradient(circle, rgba(197,160,89,0.15), transparent 70%);
    animation-duration: 8s;
}

.values-particle:nth-child(2) {
    width: 300px; height: 300px;
    bottom: -80px; right: -80px;
    background: radial-gradient(circle, rgba(22,126,150,0.2), transparent 70%);
    animation-duration: 12s;
    animation-delay: -4s;
}

.values-particle:nth-child(3) {
    width: 150px; height: 150px;
    top: 40%; left: 50%;
    background: radial-gradient(circle, rgba(197,160,89,0.1), transparent 70%);
    animation-duration: 10s;
    animation-delay: -2s;
}

/* Section heading */
.values-heading-wrap {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.values-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.values-title span {
    background: linear-gradient(90deg, var(--secondary-color), #f0d080, var(--secondary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.values-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

.values-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #f0d080);
    border-radius: 3px;
    margin: 20px auto 0;
}

/* Value Cards */
.value-card-wrap {
    position: relative;
    z-index: 2;
}

.value-card-wrap.animate-in .value-card {
    animation: slideInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.value-card-wrap:nth-child(1).animate-in .value-card { animation-delay: 0.05s; }
.value-card-wrap:nth-child(2).animate-in .value-card { animation-delay: 0.2s; }
.value-card-wrap:nth-child(3).animate-in .value-card { animation-delay: 0.35s; }

.value-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 44px 32px 40px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Card top accent line */
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

/* Card inner glow on hover */
.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(197, 160, 89, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(197, 160, 89, 0.2);
}

.value-card:hover::after {
    opacity: 1;
}

/* Icon area */
.value-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
}

.value-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    transition: var(--transition);
}

/* Animated ring */
.value-icon-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    animation: ringPulse 2.5s ease-out infinite;
}

.value-card:nth-child(1) .value-icon-ring { animation-delay: 0s; }
.value-card:nth-child(2) .value-icon-ring { animation-delay: 0.8s; }
.value-card:nth-child(3) .value-icon-ring { animation-delay: 1.6s; }

.value-icon {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
}

.value-card:nth-child(1) .value-icon { animation-delay: 0s; }
.value-card:nth-child(2) .value-icon { animation-delay: 1.3s; }
.value-card:nth-child(3) .value-icon { animation-delay: 0.7s; }

.value-card:hover .value-icon {
    transform: scale(1.15);
    color: #f0d080;
    filter: drop-shadow(0 0 12px rgba(197, 160, 89, 0.6));
    animation-play-state: paused;
}

.value-card:hover .value-icon-bg {
    background: rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

/* Card text */
.value-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.value-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Number badge */
.value-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
}

/* --- Responsive Utilities --- */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .admin-sidebar {
        width: 70px;
    }
    .admin-sidebar span {
        display: none;
    }
    .admin-sidebar-header h5 {
        font-size: 0.9rem;
        text-align: center;
    }
    .admin-nav-item {
        padding: 15px;
        justify-content: center;
    }
    .admin-nav-item i {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    .detail-info-card {
        padding: 20px;
    }
    .product-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .values-title {
        font-size: 1.9rem;
    }
    .values-section {
        padding: 60px 0;
    }
    .value-card {
        padding: 32px 22px 28px;
    }
}

@media (max-width: 767.98px) {
    .values-title {
        font-size: 2.1rem;
    }
    .value-card-wrap + .value-card-wrap {
        margin-top: 0;
    }
}

/* ============================================================
   UNIFIED PAGE STYLES — consistent across all inner pages
   ============================================================ */

/* --- Page Hero Banner (shared breadcrumb header) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 55%, var(--primary-light) 100%);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 90% 50%, rgba(197,160,89,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 10% 80%, rgba(22,126,150,0.25) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(197,160,89,0.12);
    border: 1px solid rgba(197,160,89,0.3);
    padding: 5px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 24px;
    max-width: 520px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.page-hero .breadcrumb-item a:hover { color: var(--secondary-color); }

.page-hero .breadcrumb-item.active {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

.page-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(197,160,89,0.3);
    position: relative;
    margin-left: auto;
    animation: float 5s ease-in-out infinite;
}

.page-hero-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1.5px dashed rgba(197,160,89,0.2);
    animation: spin 20s linear infinite;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.page-hero-icon i {
    font-size: 4rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 4px 16px rgba(197,160,89,0.5));
}

/* --- Unified Section Headings --- */
.section-heading { text-align: center; margin-bottom: 56px; }
.section-heading .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 12px;
}
.section-heading h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 14px;
}
.section-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    margin: 16px auto 0;
}

/* --- About Stats Bar --- */
.about-stats-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}
.about-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197,160,89,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.about-stat-item { text-align: center; position: relative; z-index: 2; padding: 20px; }
.about-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}
.about-stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* --- About Feature Cards --- */
.about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(59,116,43,0.06);
    box-shadow: 0 8px 30px rgba(59,116,43,0.06);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.about-feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(59,116,43,0.1); border-color: rgba(197,160,89,0.2); }
.about-feature-card:hover::before { opacity: 1; }
.about-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(59,116,43,0.08), rgba(197,160,89,0.1));
    margin-bottom: 20px;
    transition: var(--transition);
}
.about-feature-card:hover .about-feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    transform: scale(1.08);
}
.about-feature-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.about-feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* --- Guide Step Cards --- */
.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(59,116,43,0.06);
    box-shadow: 0 6px 25px rgba(59,116,43,0.05);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.step-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(59,116,43,0.12); border-color: rgba(197,160,89,0.3); }
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(59,116,43,0.25);
}
.step-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.step-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* --- News Cards (Homepage) --- */
.news-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(59,116,43,0.05);
    box-shadow: 0 6px 24px rgba(59,116,43,0.06);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(59,116,43,0.1); border-color: rgba(197,160,89,0.2); }
.news-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.news-card-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img { transform: scale(1.05); }
.news-card-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--secondary-color); margin-bottom: 10px; }
.news-card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); line-height: 1.45; margin-bottom: 10px; }
.news-card-excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.83rem; font-weight: 700; color: var(--primary-color); text-decoration: none; margin-top: 16px; transition: gap 0.2s ease, color 0.2s ease; }
.news-card-link:hover { color: var(--secondary-color); gap: 10px; }

/* --- Contact Page --- */
.contact-info-card {
    background: linear-gradient(160deg, #f0f8fb 0%, #ffffff 100%);
    border: 1px solid rgba(59,116,43,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: 0 8px 30px rgba(59,116,43,0.06);
    height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(59,116,43,0.1), rgba(197,160,89,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--primary-color); flex-shrink: 0;
    transition: var(--transition);
}
.contact-info-item:hover .contact-info-icon { background: linear-gradient(135deg, var(--primary-color), var(--primary-light)); color: #fff; }
.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid rgba(59,116,43,0.06);
    box-shadow: 0 8px 30px rgba(59,116,43,0.06);
}
.contact-form-wrap .form-control {
    border: 1.5px solid rgba(59,116,43,0.12);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form-wrap .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(59,116,43,0.1); }

/* --- Inner page wrapper --- */
.inner-page-section { padding: 72px 0 80px; }
.inner-page-section.bg-light-teal { background: linear-gradient(180deg, #f0f8fb 0%, #ffffff 100%); }

/* --- Responsive --- */
@media (max-width: 767.98px) {
    .page-hero { padding: 48px 0 40px; }
    .page-hero-title { font-size: 2rem; }
    .page-hero-icon { display: none; }
    .about-stat-number { font-size: 2.2rem; }
    .contact-form-wrap { padding: 28px 20px; }
    .section-heading h2 { font-size: 1.8rem; }
}

/* --- Premium Brand Identity: Dropdown & Link Overrides to Eliminate Bootstrap Blue --- */
.dropdown-menu {
    border-radius: 12px !important;
    padding: 8px 0 !important;
    overflow: hidden;
}

.dropdown-item {
    color: var(--text-main) !important;
    transition: var(--transition) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(59, 116, 43, 0.08) !important; /* Subtle Vietnam Airlines teal hover background */
    color: var(--primary-color) !important; /* Mòng két text */
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important; /* Premium Vietnam Airlines teal background */
    color: #fff !important; /* White text */
}

/* Global Breadcrumb Overrides for non-banner pages */
.breadcrumb-item a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.25) !important;
}

/* --- Floating Actions & Sale Modal Styles --- */
.floating-actions-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-floating-action {
    border: none;
    outline: none;
    border-radius: 50px;
    height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 52px;
    overflow: hidden;
}

.btn-floating-action i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-floating-action span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, margin-left 0.4s ease;
    display: inline-block;
    opacity: 0;
    margin-left: 0;
}

.btn-floating-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.26);
    width: auto;
    padding: 0 22px;
}

.btn-floating-action:hover span {
    max-width: 200px;
    opacity: 1;
    margin-left: 8px;
}

/* Colors & animations */
.btn-promo-pulse {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: promoPulse 2s infinite;
}

.btn-hotline-pulse {
    background: linear-gradient(135deg, #d9534f, #c9302c);
    text-decoration: none;
    animation: hotlinePulse 2s infinite;
}

.btn-hotline-pulse:hover {
    color: #fff !important;
}

@keyframes promoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 116, 43, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(59, 116, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 116, 43, 0);
    }
}

@keyframes hotlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(217, 83, 79, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.animate-bounce {
    animation: bounce 2s infinite ease-in-out;
}

@media (max-width: 575.98px) {
    .floating-actions-wrapper {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }
    .btn-floating-action {
        height: 46px;
        width: 46px;
    }
    .btn-floating-action i {
        font-size: 1.1rem;
    }
}

/* --- Premium Values Cards Redesign Custom Styles --- */
.value-card-divider {
    width: 50px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--secondary-color) 20%, var(--secondary-color) 80%, transparent);
    margin: 18px auto;
    opacity: 0.8;
}

.value-card-list {
    margin: 20px 0 0;
    padding-left: 0;
    list-style: none;
    text-align: left;
    display: inline-block;
    width: 100%;
}

.value-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.value-card-item:last-child {
    margin-bottom: 0;
}

.value-card-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.value-card-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--secondary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 0.65rem;
    flex-shrink: 0;
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
}

.value-card-item:hover .value-card-check {
    background: var(--secondary-color);
    color: var(--primary-dark);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.5);
}

/* Override .value-card padding and layout to make it extremely premium vertical card */
.value-card-wrap {
    margin-top: 45px !important;
    position: relative;
}

.value-card {
    padding: 70px 24px 30px !important; /* Spacing for the overlapping icon circle */
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(36, 74, 27, 0.35) !important; /* Dark teal glassmorphic bg */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.35) !important; /* Gold border */
    border-radius: 24px !important; /* Card rounded corner matching mockup */
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: visible !important; /* Do not clip overlapping icon */
}

/* Hover effects matching mockup layout */
.value-card:hover {
    background: rgba(36, 74, 27, 0.55) !important;
    border-color: rgba(197, 160, 89, 0.7) !important;
    transform: translateY(-10px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 20px rgba(197, 160, 89, 0.25) !important;
}

/* Link Wrapper overrides to remove blue links and default outlines */
.value-card-link-wrapper,
.value-card-link-wrapper:hover,
.value-card-link-wrapper:focus {
    text-decoration: none !important;
    display: block;
    height: 100%;
    outline: none;
}
.value-card-link-wrapper * {
    text-decoration: none !important;
}

/* Circular top icon wrap centered and overlapping top border */
.value-icon-wrap {
    position: absolute !important;
    top: -45px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 90px !important;
    height: 90px !important;
    margin: 0 !important;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.value-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #1d3b16 !important; /* Solid dark teal background to cover card top border under the circle */
    border: 2.5px solid #c5a059 !important; /* Gold border circle matching mockup */
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.35) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover .value-icon-bg {
    background: rgba(197, 160, 89, 0.15) !important;
    border-color: #f0d080 !important;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.6) !important;
}

/* Standard icon styling inside the circles */
.value-icon {
    font-size: 2rem !important;
    color: var(--secondary-color) !important;
    z-index: 2;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15) !important;
    color: #f0d080 !important;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.6)) !important;
}

/* Category Main Image Styles - clean rounded, no boxed border */
.value-card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin: 10px 0 20px;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover .value-card-main-img {
    transform: scale(1.07);
}

.value-card:hover .value-card-img-wrap {
    border: none !important;
    box-shadow: none !important;
}

/* Bottom Icon Styles */
.value-card-bottom-icon-wrap {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.value-bottom-icon {
    font-size: 1.15rem;
    color: var(--secondary-color);
    opacity: 0.65;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover .value-bottom-icon {
    opacity: 1;
    transform: translateY(2px) scale(1.15);
    color: #f0d080;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.75));
}

/* Ensure uploaded images scale properly inside concentric rings */
.value-icon-wrap img.value-icon {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 4px rgba(197, 160, 89, 0.4));
    transition: var(--transition);
}

.value-card:hover .value-icon-wrap img.value-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.7));
}

/* ==========================================================================
   Social Auth Styling & Premium Buttons (Zalo, Facebook, Google)
   ========================================================================== */

.social-auth-separator {
    position: relative;
    text-align: center;
    margin: 25px 0 20px;
    z-index: 1;
}

.social-auth-separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
    z-index: -1;
}

.social-auth-separator span {
    background: #fff;
    padding: 0 15px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #8c98a4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.btn-social:active {
    transform: translateY(0);
}

.btn-social i {
    font-size: 1.15rem;
    position: absolute;
    left: 20px;
}

/* 1. Google Button Style */
.btn-social-google {
    background: #ffffff;
    color: #495057;
    border: 1px solid #dee2e6;
}

.btn-social-google:hover {
    background: #f8f9fa;
    border-color: #ced4da;
    color: #212529;
}

.btn-social-google i {
    color: #ea4335;
}

/* 2. Facebook Button Style */
.btn-social-facebook {
    background: #1877f2;
    color: #ffffff;
    border: 1px solid #1877f2;
}

.btn-social-facebook:hover {
    background: #1565c0;
    border-color: #1565c0;
    color: #ffffff;
}

/* 3. Zalo Button Style */
.btn-social-zalo {
    background: #0068ff;
    color: #ffffff;
    border: 1px solid #0068ff;
}

.btn-social-zalo:hover {
    background: #0050d2;
    border-color: #0050d2;
    color: #ffffff;
}

.btn-social-zalo .zalo-icon-svg {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Auth Simulation Screens (Ken Burns + Mesh Background) */
.social-sim-body {
    background: radial-gradient(circle at 30% 30%, #0e4c5b 0%, #072931 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-sim-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.social-sim-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.social-conn-line {
    position: relative;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.social-pulse-beam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    animation: beamTravel 2s infinite linear;
}

@keyframes beamTravel {
    0% { left: -100%; }
    100% { left: 200%; }
}

.social-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-user-option {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.social-user-option:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Premium Complete Form card */
.social-complete-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(59, 116, 43, 0.15);
    border: 1px solid rgba(59, 116, 43, 0.05);
}

/* Hero Carousel Styles */
.hero-slider-bg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 5s ease-in-out;
    transform: scale(1.0);
}

.carousel-item.active .hero-slider-bg {
    transform: scale(1.05);
}

/* Glassmorphic Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 54px;
    height: 54px;
    background: rgba(59, 116, 43, 0.25) !important; /* Transparent Teal */
    border: 1.5px solid rgba(197, 160, 89, 0.35) !important; /* Soft Gold border */
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 25px !important;
    opacity: 0.8 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1) !important;
    z-index: 15 !important;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(59, 116, 43, 0.7) !important; /* Solid Teal */
    border-color: rgba(197, 160, 89, 0.95) !important; /* Bright Gold */
    transform: translateY(-50%) scale(1.08) !important;
    opacity: 1 !important;
    box-shadow: 0 8px 32px 0 rgba(197, 160, 89, 0.2) !important;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 20px !important;
    height: 20px !important;
    filter: invert(72%) sepia(21%) saturate(945%) hue-rotate(6deg) brightness(98%) contrast(92%) !important; /* Gold arrow */
}

/* Dynamic subtle overlay to let the images pop */
.hero-section .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Product Catalog Category Sliders Layout */
.scroll-smooth-row {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    padding-left: 5px;
    padding-right: 5px;
}
.scroll-smooth-row::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/* Glassmorphic Category Slider Arrows */
.slider-container-wrapper {
    position: relative;
}

.slider-arrow-btn {
    position: absolute;
    width: 44px;
    height: 44px;
    background: rgba(59, 116, 43, 0.75) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.4) !important;
    color: #f7d279 !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%) !important;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.slider-arrow-btn:hover {
    background: rgba(59, 116, 43, 0.95) !important;
    border-color: rgba(197, 160, 89, 0.9) !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.25);
}

.slider-arrow-btn.prev-btn {
    left: -22px;
}

.slider-arrow-btn.next-btn {
    right: -22px;
}

/* Product slider card styling to keep them uniform in horizontal scrolling */
.product-slider-card {
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px; /* Fallback */
}

.product-slider-card:hover {
    transform: translateY(-5px);
}

/* Slide item out of stock overlay style */
.product-slider-card .product-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-slider-card .product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Responsive grid width for horizontal scroll items */
@media (max-width: 575.98px) {
    .product-slider-card {
        width: 82vw; /* Show 1.2 cards for horizontal swiping on mobile */
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .product-slider-card {
        width: calc((100% - 16px) / 2); /* 2 items visible */
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-slider-card {
        width: calc((100% - 2 * 16px) / 3); /* 3 items visible */
    }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .product-slider-card {
        width: calc((100% - 3 * 16px) / 4); /* 4 items visible */
    }
}
@media (min-width: 1200px) {
    .product-slider-card {
        width: calc((100% - 4 * 16px) / 5); /* 5 items visible */
    }
}

@media (max-width: 768px) {
    .slider-arrow-btn {
        display: none !important; /* Hide arrows on touch screens, swipe is native */
    }
}
