:root {
    --primary-teal: #31adad;
    --primary-pink: #ff2d8d;
    --gradient-bg: linear-gradient(135deg, #31adad, #ff2d8d);
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-dark: #2a2a2a;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.pink {
    color: var(--primary-pink);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

/* Main Navbar */
.main-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

.navbar-brand-custom {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-item-custom {
    position: relative;
    white-space: nowrap;
}

.nav-link-custom {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s;
}

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

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 250px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
}

.nav-item-custom:hover .dropdown-menu-custom {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item-custom {
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.dropdown-item-custom:hover {
    background: linear-gradient(135deg, rgba(49, 173, 173, 0.1), rgba(255, 45, 141, 0.1));
    color: var(--primary-pink);
    padding-left: 1.3rem;
}

.write-btn {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.write-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 141, 0.4);
    color: white;
}

/* Hero Section */
.hero-sectionx {
    background: linear-gradient(135deg, #2a3f4d 0%, #1a1a2e 50%, #2d1b3d 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(49, 173, 173, 0.15), transparent 70%),
        radial-gradient(ellipse at center right, rgba(255, 45, 141, 0.15), transparent 70%);
    pointer-events: none;
}

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

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .office-text {
    background: linear-gradient(135deg, #5fd4d4, #31adad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .chair-text {
    background: linear-gradient(135deg, #e88cc7, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Search Bar */
.search-wrapper {
    position: relative;
    max-width: 550px;
    margin-bottom: 3rem;
}

.search-bar {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-right: 70px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-bar:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(49, 173, 173, 0.15);
    color: white;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 45, 141, 0.4);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-value i {
    font-size: 1.3rem;
}

.stat-value.pink i {
    color: var(--primary-pink);
}

.stat-value.teal i {
    color: var(--primary-teal);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

/* Hero Image */
.hero-image-wrapperx {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-chair-boxx img {
    --tw-shadow-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 25px 50px -12px var(--tw-shadow-color);
}

.hero-chair-boxx {
    width: 100%;
    max-width: 594px;
    height: 390px;
    border-radius: 30px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        -10px 20px 20px -30px rgba(255, 45, 145, 0.6),
        0 10px 30px 15px rgba(60, 176, 173, 0.5),
        -20px -15px 20px rgba(255, 45, 145, 0.8),
        0 0 50px rgba(60, 176, 173, 0.5);
    background: linear-gradient(135deg, rgba(60, 176, 173, 0.2), rgba(255, 45, 145, 0.2));
}



.hero-chair-boxx img {
    border-radius: 15px;
    width: 116%;
    /* height: 85%; */
    object-fit: contain;
    filter: brightness(1.1) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.expert-badgex {
    position: absolute;
    bottom: -15px;
    right: 0px;
    background: white;
    padding: 1rem 1.3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
}

.expert-badgex i {
    font-size: 3rem;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expert-badge-textx {
    display: flex;
    flex-direction: column;
}

.expert-badge-textx small {
    font-size: 1rem;
    color: var(--text-gray);
}

.expert-badge-textx strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Articles Section */
.articles-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44vw;
    height: 4px;
    background: linear-gradient(90deg, #31adad 0%, #ff2d8d 100%);
    border-radius: 2px;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.filter-pill {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-pill:hover,
.filter-pill.active {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 173, 173, 0.3);
}

/* Article Card */
.article-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 3px solid transparent;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(49, 173, 173, 0.25);
    border-color: var(--primary-teal);
}

.article-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.article-card:hover .article-title {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-excerpt {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
}

.article-date {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1;
}

.article-stats {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.read-time {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.article-card:hover .arrow-btn {
    transform: scale(1.1);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.widget-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.quiz-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 45, 141, 0.3);
}

.comparison-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

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

.comparison-views {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Hot Deals Widget */
.deals-widget {
    background: linear-gradient(135deg, rgba(49, 173, 173, 0.1), rgba(255, 45, 141, 0.1));
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* .deal-item {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
        } */

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

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.deal-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.deal-badge {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.deal-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.view-deals-btn {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid;
    border-image: linear-gradient(135deg, #31adad, #ff2d8d) 1;
    border-radius: 50px;
    background: transparent;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.view-deals-btn:hover {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    -webkit-text-fill-color: white;
    color: white;
}

/* Help Widget */
.help-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.help-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(49, 173, 173, 0.1), rgba(255, 45, 141, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.help-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.help-text p {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin: 0;
}

/* Featured Widget */
.featured-widget {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.featured-badge {
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

.featured-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.featured-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-current {
    font-size: 2rem;
    font-weight: 900;
}

.featured-old {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.featured-discount {
    background: var(--primary-pink);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.shop-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #31adad, #ff2d8d);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 45, 141, 0.4);
}

/* Footer */
.footer-v2 {
    background: linear-gradient(135deg, #090a0d 0%, #0a1428 100%);
    color: #e5e7eb;
    padding: 3.5rem 0 1.3rem;
}

.footer-top-v2 {
    padding-bottom: 1.2rem;
}

.footer-brand-head-v2 {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.footer-badge-v2 {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.footer-logo-v2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
}

.footer-text-v2 {
    margin: 0 0 1.4rem;
    color: rgba(226, 232, 240, 0.75);
    line-height: 1.7;
    max-width: 320px;
}

.footer-social-v2 {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
}

.footer-title-v2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0.4rem 0 1.1rem;
}

.footer-links-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-v2 li {
    margin-bottom: 0.9rem;
}

.footer-links-v2 a {
    color: rgba(226, 232, 240, 0.70);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-v2 a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-contact-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.footer-contact-ico {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(49, 173, 173, 0.85), rgba(255, 45, 141, 0.85));
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    flex: 0 0 auto;
}

.footer-contact-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.70);
    margin-bottom: 0.15rem;
}

.footer-contact-text strong {
    display: block;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.footer-divider-v2 {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 1.6rem 0 1.6rem;
}

.footer-cats-v2 {
    padding: 0.2rem 0 1.4rem;
}

.footer-cats-title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
}

.footer-chips-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-chip-v2 {
    padding: 0.55rem 1.05rem;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-chip-v2:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.14);
}

.footer-bottom-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy-v2 {
    margin: 0;
    color: rgba(226, 232, 240, 0.60);
    font-size: 0.92rem;
}

.footer-bottom-links-v2 {
    display: flex;
    gap: 1.6rem;
}

.footer-bottom-links-v2 a {
    color: rgba(226, 232, 240, 0.70);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-bottom-links-v2 a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .footer-bottom-v2 {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-sectionx {
        padding: 3rem 0 2rem;
    }

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

    .hero-stats {
        /* flex-direction: column; */
        gap: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }
}

/* =================== HERO SECTION - MOBILE RESPONSIVE =================== */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-sectionx {
        padding: 3.5rem 0;
    }

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

    .hero-chair-box {
        max-width: 500px;
        height: 340px;
        padding: 2rem;
    }

    .expert-badge {
        padding: 0.9rem 1.1rem;
        bottom: -12px;
        right: -10px;
    }

    .expert-badge i {
        font-size: 2.5rem;
    }

    .expert-badge-text small {
        font-size: 0.9rem;
    }

    .expert-badge-text strong {
        font-size: 1.3rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero-sectionx {
        padding: 3rem 0 2.5rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .search-wrapper {
        margin-bottom: 2rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-value i {
        font-size: 1.1rem;
    }

    /* Image Section - Stack on tablet */
    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .hero-chair-box {
        max-width: 450px;
        height: 300px;
        margin: 0 auto;
    }

    .expert-badge {
        bottom: -10px;
        right: 10px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .hero-sectionx {
        padding: 2.5rem 0 2rem;
    }

    .articles-section {
        padding: 1rem 0 !important;
    }

    .section-title {
        /* margin-top: -10px !important; */
    }

    .trending-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.2rem;
    }

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

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.3rem;
    }

    .search-wrapper {
        margin-bottom: 1.5rem;
    }

    .hero-chair-boxx {
        width: 100%;
        max-width: 400px;
        height: 390px;
        border-radius: 30px;
        padding: 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow:
            -10px 20px 20px -30px rgba(255, 45, 145, 0.6),
            0 10px 30px 15px rgba(60, 176, 173, 0.5),
            -20px -15px 20px rgba(255, 45, 145, 0.8),
            0 0 50px rgba(60, 176, 173, 0.5);
        background: linear-gradient(135deg, rgba(60, 176, 173, 0.2), rgba(255, 45, 145, 0.2));
    }

    .search-bar {
        padding: 0.9rem 1.3rem;
        padding-right: 65px;
        font-size: 0.9rem;
    }

    .search-btn {
        width: 45px;
        height: 45px;
    }

    /* Stats - Horizontal scroll or wrap */
    .hero-stats {
        gap: 1.5rem;
        /* flex-wrap: wrap; */
        justify-content: center;
    }

    .stat-item {
        min-width: 120px;
        text-align: center;
    }

    .stat-value {
        font-size: 1.3rem;
        justify-content: center;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Image */
    .hero-chair-box {
        max-width: 100%;
        height: 280px;
        padding: 1.5rem;
    }

    .hero-chair-box img {
        width: 100%;
    }

    .expert-badge {
        padding: 0.8rem 1rem;
        bottom: -8px;
        right: 5px;
    }

    .expert-badge i {
        font-size: 2rem;
    }

    .expert-badge-text small {
        font-size: 0.8rem;
    }

    .expert-badge-text strong {
        font-size: 1.1rem;
    }
}

/* Mobile Portrait (376px - 575px) */
@media (max-width: 575px) {
    .hero-sectionx {
        padding: 2rem 0 3rem;
    }

    .hero-section::before {
        width: 80%;
    }

    .trending-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .search-wrapper {
        max-width: 100%;
    }

    .search-bar {
        padding: 0.85rem 1.2rem;
        padding-right: 60px;
        font-size: 0.85rem;
    }

    .search-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }

    /* Stats - Vertical stack */
    .hero-stats {
        /* flex-direction: column; */
        gap: 0.2rem !important;
        /* align-items: center; */
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    /* Image */
    .hero-image-wrapperx {
        margin-top: 1.5rem;
    }

    .hero-chair-boxx {
        height: 250px;
        padding: 1.2rem;
        border-radius: 20px;
    }

    .hero-chair-boxx img {
        width: 110%;
        border-radius: 12px;
    }

    .expert-badgex {
        padding: 0.7rem 0.9rem;
        bottom: -30px;
        right: 100px;
        border-radius: 12px;
    }

    .expert-badgex i {
        font-size: 1.8rem;
    }

    .expert-badge-textx small {
        font-size: 0.75rem;
    }

    .expert-badge-textx strong {
        font-size: 1rem;
    }
}

/* Small Mobile (320px - 375px) */
@media (max-width: 375px) {
    .hero-sectionx {
        padding: 1.8rem 0 1.3rem;
    }

    .trending-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

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

    .hero-description {
        font-size: 0.8rem;
    }

    .search-bar {
        padding: 0.8rem 1.1rem;
        padding-right: 55px;
        font-size: 0.8rem;
    }

    .search-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-value i {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-chair-box {
        height: 220px;
        padding: 1rem;
    }

    .expert-badge {
        padding: 0.6rem 0.8rem;
        bottom: -5px;
    }

    .expert-badge i {
        font-size: 1.6rem;
    }

    .expert-badge-text small {
        font-size: 0.7rem;
    }

    .expert-badge-text strong {
        font-size: 0.95rem;
    }
}

/* Extra Small (< 320px) */
@media (max-width: 319px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-chair-box {
        height: 200px;
    }

    .expert-badge {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        padding: 0.5rem;
    }

    .expert-badge i {
        font-size: 1.4rem;
    }

}

/* Landscape Orientation Fix (for mobile) */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-sectionx {
        padding: 1.5rem 0;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
    }

    .hero-chair-box {
        height: 220px;
    }

    .expert-badge {
        position: static;
        margin-top: 0.5rem;
    }
}