/* ==========================================================================
   CSS Variables & Reset — MỘC NHẬT MINH KH Premium Theme
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* === Primary: Xanh Lá Cổ Thụ (Forest Green from Logo) === */
    --primary: #115e24;
    --primary-light: #166534;
    --primary-hover: #0f4c1e;
    --primary-glow: rgba(17, 94, 36, 0.12);

    /* === Accent 1: Xanh Rêu/Lá Nhẹ (Moss Green) === */
    --moss: #166534;
    --moss-light: #15803d;
    --moss-hover: #14532d;
    --moss-glow: rgba(22, 101, 52, 0.15);
    
    /* === Accent 2: Đỏ Mặt Trời (Sun Red from Logo) === */
    --gold: #e31a22;
    --gold-light: #fca5a5;

    /* === Neutral Palette (Matching the Logo's Warmth) === */
    --text-main: #222c24;      /* Deep green-charcoal */
    --text-muted: #626e65;     /* Muted sage/grey */
    --bg-main: #faf9f2;        /* Warm pale cream/yellowish off-white */
    --bg-light: #f4f2e6;       /* Warm stone/cream-beige */
    --border-color: #e6e3ce;   /* Soft warm beige border */

    /* === Typography === */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* === Transitions & Radius === */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;          /* Clean, sharp, premium corners */
    --radius-md: 8px;
    --radius-lg: 16px;

    /* === Shadow System === */
    --shadow-sm: 0 2px 8px rgba(17, 94, 36, 0.03);
    --shadow-md: 0 8px 24px rgba(17, 94, 36, 0.05);
    --shadow-lg: 0 16px 40px rgba(17, 94, 36, 0.07);
    --shadow-hover: 0 24px 50px rgba(17, 94, 36, 0.1);
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* === Scroll Reveal Animation === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   Header Modernization (Redesigned)
   ========================================================================== */
.header {
    background-color: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Design */
.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo a:hover .brand-logo-img {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Search Bar */
.search-bar form {
    display: flex;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    width: 400px;
    transition: var(--transition);
}

.search-bar form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background-color: var(--bg-main);
}

.search-bar input {
    flex-grow: 1;
    border: none;
    padding: 12px 24px;
    outline: none;
    font-size: 13px;
    background: transparent;
    font-family: var(--font-main);
    color: var(--text-main);
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar button {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.search-bar button:hover {
    color: var(--primary);
}

/* Header Right Info */
.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-box, .cart-box, .language-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box i {
    font-size: 20px;
    color: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    color: var(--text-muted);
}

.contact-text strong {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 700;
}

.cart-box {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.cart-box:hover {
    transform: translateY(-2px);
}

.cart-box i {
    font-size: 22px;
    color: var(--text-main);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--primary-light);
    color: var(--bg-main);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.language-box {
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    gap: 4px;
}

/* Navigation Bar */
.nav-bar {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-menu > li > a {
    display: block;
    padding: 16px 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-main);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu > li > a:hover, 
.nav-menu > li > a.active {
    color: var(--primary);
}

.nav-menu > li > a:hover::after, 
.nav-menu > li > a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-main);
    min-width: 240px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
    border: 1px solid var(--border-color);
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background-color: var(--bg-light);
    padding-left: 24px;
}

/* Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: var(--text-muted);
}

.dropdown-submenu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-submenu:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   Banner Slider (Premium Look)
   ========================================================================== */
.banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slider {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
}

.slide {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    position: relative;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-img {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 37, 32, 0.7) 0%, rgba(44, 37, 32, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 80px;
    z-index: 3;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.slide-content-bottom h1 {
    font-family: var(--font-serif);
    font-size: 52px;
    color: var(--bg-main);
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(44, 37, 32, 0.3);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(250, 248, 245, 0.9);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--text-main);
    box-shadow: var(--shadow-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--bg-main);
    transform: translateY(-50%) scale(1.08);
}

.slider-btn.prev { left: 40px; }
.slider-btn.next { right: 40px; }

/* ==========================================================================
   Features Section (Pillars)
   ========================================================================== */
.features {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    flex: 1;
    cursor: pointer;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--bg-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 6px 16px var(--primary-glow);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: translateY(-4px) rotate(-8deg);
    box-shadow: 0 12px 24px rgba(92, 61, 36, 0.25);
    background: linear-gradient(135deg, var(--gold), var(--primary));
}

.feature-item span {
    font-weight: 700;
    font-size: 12px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.feature-item:hover span {
    color: var(--primary);
}

/* ==========================================================================
   Section Title
   ========================================================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section-title h2 {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title::before, .section-title::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

/* ==========================================================================
   Categories Grid & Cards
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.category-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(44, 37, 32, 0.95), transparent);
    color: var(--bg-main);
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Featured Products Grid & Items
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-item {
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    padding: 16px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
    transform: translateY(-6px);
}

.product-img {
    height: 240px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-title {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    margin-top: auto;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 12px;
}

.new-price, .contact-price {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 16px;
}

.btn-buy {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    width: 100%;
}

.product-item:hover .btn-buy {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-main);
}

/* ==========================================================================
   News Editorial Section
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-card {
    background: var(--bg-main);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: transparent;
}

.news-img-wrap {
    overflow: hidden;
}

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

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

.news-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-main);
}

.news-card:hover .news-title {
    color: var(--primary-light);
}

.news-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date i {
    color: var(--gold);
}

.news-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Certificates Slider
   ========================================================================== */
.certificate-slider {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.cert-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 16px;
    background: var(--bg-main);
    transition: var(--transition);
}

.cert-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.cert-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   Footer & Newsletter (Visual rest in Moss Green & Espresso)
   ========================================================================== */
.newsletter-bar {
    background-color: var(--moss);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(250, 248, 245, 0.05);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-text {
    color: var(--bg-main);
}

.newsletter-text h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 400;
}

.newsletter-text p {
    font-size: 13px;
    color: rgba(250, 248, 245, 0.7);
}

.newsletter-form {
    display: flex;
    width: 400px;
    background: rgba(250, 248, 245, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(250, 248, 245, 0.15);
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 12px 24px;
    color: var(--bg-main);
    outline: none;
    font-family: var(--font-main);
    font-size: 13px;
}

.newsletter-form input::placeholder {
    color: rgba(250, 248, 245, 0.5);
}

.newsletter-form button {
    background: var(--gold);
    border: none;
    color: var(--bg-main);
    padding: 0 24px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
    color: var(--text-main);
}

/* Main Footer */
.footer-main {
    background-color: #24201c; /* Deep Espresso */
    padding: 80px 0;
    color: #a0978f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    background-color: #fff;
    padding: 6px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: block;
}

.footer-company-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--bg-main);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 13px;
    color: #a0978f;
    margin-bottom: 12px;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 13px;
    color: var(--bg-main);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 13px;
    color: #a0978f;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--bg-main);
    transform: translateX(4px);
}

/* Map */
.map-container {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(250, 248, 245, 0.1);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1714;
    padding: 24px 0;
    color: rgba(250, 248, 245, 0.35);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hotline-btn-footer {
    background: var(--primary);
    color: var(--bg-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hotline-btn-footer:hover {
    background-color: var(--primary-light);
}

.zalo-btn-footer {
    background: #0068ff;
    color: var(--bg-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.copyright {
    font-size: 12px;
}

.admin-lock-link {
    color: rgba(250, 248, 245, 0.3);
    margin-left: 8px;
}

.admin-lock-link:hover {
    color: var(--gold-light);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .category-grid, .product-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .features {
        flex-wrap: wrap;
        padding: 24px;
    }
    .feature-item {
        width: 33.33%;
        margin-bottom: 24px;
    }
    .certificate-slider {
        grid-template-columns: repeat(3, 1fr);
    }
    .slide-img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .search-bar form {
        width: 100%;
    }
    .header-right {
        width: 100%;
        justify-content: center;
    }
    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
        padding: 12px 0;
    }
    .newsletter-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .newsletter-form {
        width: 100%;
    }
    .slide-img {
        height: 350px;
    }
    .slide-content-bottom h1 {
        font-size: 32px;
    }
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .category-grid, .product-grid, .news-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        width: 50%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .certificate-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    .bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   Floating Contact Bar
   ========================================================================== */
.floating-contact-bar {
    position: fixed;
    bottom: 40px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-main);
    font-size: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.floating-btn.hotline-btn {
    background-color: var(--primary);
    animation: quick-shake 2.5s infinite;
}

.floating-btn.zalo-btn {
    background-color: #0068ff;
    padding: 0;
    overflow: hidden;
}

@keyframes quick-shake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10% { transform: scale(1.08) rotate(-8deg); }
    20% { transform: scale(1.08) rotate(8deg); }
    30% { transform: scale(1.08) rotate(-8deg); }
    40% { transform: scale(1.08) rotate(8deg); }
    50% { transform: scale(1) rotate(0deg); }
}
