html {
    max-width: 100vw;
    overflow-x: clip;
}

body {
    overflow-x: clip;
    max-width: 100vw;
}

:root {
    --primary: #3d9130;
    --primary-dark: #2c6e22;
    --accent: #ff8914;
    --accent-dark: #e07800;
    --green: #3d9130;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --border: #e8e8e8;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --radius: 4px;
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: clip; /* clip allows position: sticky to work properly */
    line-height: 1.5;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #f2f4f4;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

/* ===== HEADER ===== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 2px;
}

.logo-hk {
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    padding-left: 6px;
}

/* Search */
.search-wrapper {
    flex: 1;
    max-width: 580px;
    position: relative;
}

.search-container {
    display: flex;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}

.search-container input {
    flex: 1;
    padding: 9px 14px;
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--dark);
}

.search-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
    max-height: 420px;
    overflow-y: auto;
    padding: 8px 0;
}

.search-suggestions.active {
    display: block;
    animation: slideDown 0.2s ease-out;
}

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

.suggestion-item {
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8fafc;
}

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

.suggestion-item:hover {
    background: #f1f5f9;
}

.suggestion-img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #fdfdfd;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.suggestion-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Scrollbar styling for suggestions */
.search-suggestions::-webkit-scrollbar {
    width: 4px;
}
.search-suggestions::-webkit-scrollbar-track {
    background: #f1f5f9;
}
.search-suggestions::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.cb-label-mobile { display: none; }

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 11px;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.action-link i {
    font-size: 18px;
}

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

.mobile-nav-toggle {
    display: none;
}

.action-link.login-link {
    color: var(--primary);
    font-weight: 700;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ===== NAV BAR ===== */
.nav-bar {
    border-top: 1px solid var(--border);
    background: var(--white);
    overflow: visible;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-item > a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.nav-item > a:hover {
    background: #f0f7f7;
    color: var(--primary);
}

.nav-item:hover,
.nav-item:hover a {
    color: var(--primary);
}

.nav-item.hk-premium-link a {
    color: var(--primary);
}

/* Mega Menu Trigger */
.shop-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

.shop-category-btn i {
    font-size: 16px;
}

.mega-menu-trigger:hover .shop-category-btn {
    background: #f8fbfb;
    border-color: var(--primary);
}

.mobile-menu-close {
    display: none;
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2000;
    border: 1px solid #eee;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    min-height: 450px;
}

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

/* Mega Menu Sidebar */
.mega-menu-sidebar {
    width: 250px;
    background: #f7f9f9;
    padding: 15px 0;
    border-right: 1px solid #eee;
}

.mega-sidebar-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}

.mega-sidebar-item:hover, .mega-sidebar-item.active {
    background: #fff;
    color: var(--primary);
}

.mega-sidebar-item i {
    font-size: 11px;
    opacity: 0.5;
}

/* Mega Menu Content */
.mega-menu-content {
    flex: 1;
    padding: 25px 30px;
}

.mega-content-pane {
    display: none;
}

.mega-content-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mega-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-product-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.mega-product-item:hover {
    transform: translateY(-5px);
}

.mega-product-item .img-box {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #f0f0f0;
}

.mega-product-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mega-product-item p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
    border-radius: 0 0 4px 4px;
    min-width: 180px;
    z-index: 200;
    display: none;
    padding: 8px 0;
}

.dropdown-menu a {
    display: block;
    padding: 9px 16px;
    font-size: 13px;
    color: #444;
    font-weight: 400;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: #1a1a1a;
}

.slides-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 80px;
    position: relative;
    overflow: hidden;
}

.slide-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.slide-1 {
    background: linear-gradient(135deg, #0d1a0d 0%, #1a2e1a 40%, #0f3a18 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #1a1a1a 0%, #1e3a14 50%, #1b3a1b 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #253a16 50%, #1a2e0a 100%);
}

.slide-content {
    color: #fff;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.slide-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(255, 137, 20, 0.15);
    display: inline-block;
    padding: 4px 10px;
    border-radius: 2px;
    border-left: 3px solid var(--accent);
}

.slide-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.slide-content h1 span {
    color: var(--accent);
}

.slide-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.slide-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.slide-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ===== SECTION TITLES ===== */
.product-section {
    margin: 40px 0 0;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}

.section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.view-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.view-all:hover {
    color: var(--primary-dark);
}

/* ===== SECTION TABS ===== */
.section-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 24px;
    border: 1px solid #333;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #333;
    transition: all 0.2s ease;
    text-transform: capitalize;
}

.tab-btn:hover {
    background: #f8f8f8;
    border-color: #000;
}

.tab-btn.active {
    background: #1a1e24;
    color: #fff;
    border-color: #1a1e24;
}

/* ===== PRODUCT ROW (horizontal scroll) ===== */
.product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: rgba(61, 145, 48, 0.2);
}

/* Image area */
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

/* Category badge in image area */
.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #2c6e22;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    z-index: 5;
    border: 1.5px solid rgba(61, 145, 48, 0.1);
}

/* Info area */
.product-info {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    background: #fff;
}

.product-name {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    text-overflow: unset;
}

.product-subtitle {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.product-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 4px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.85;
}

/* Tag pills (Rating) */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.product-tag {
    font-size: 11px;
    font-weight: 700;
    color: #2c6e22;
    background: #f0f7ef;
    border: 1.5px solid rgba(61, 145, 48, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* CTA Buttons */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border: 2px solid #edeff2;
    background: #fff;
    color: #333;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cart:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.btn-buy {
    flex: 1;
    border: none;
    background: linear-gradient(135deg, #1a2e1a, #2c4a2c);
    color: #fff;
    padding: 10px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(26, 46, 26, 0.2);
}

.btn-buy:hover {
    background: linear-gradient(135deg, #2c4a2c, #3d6a3d);
    box-shadow: 0 6px 16px rgba(26, 46, 26, 0.3);
    transform: translateY(-1px);
}

/* ===== PROMO BANNERS ===== */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 24px 36px;
    margin: 40px 0;
    gap: 20px;
    flex-wrap: wrap;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 140px;
    position: relative;
}

.promo-dark {
    background: linear-gradient(135deg, #1a1a1a, #0f3a18);
    color: #fff;
}

.promo-light {
    background: linear-gradient(135deg, #eaf5e8, #d0edd0);
    color: var(--dark);
}

.promo-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.promo-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.promo-price {
    text-align: center;
}

.promo-price span {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.promo-price small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.promo-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 11px 28px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.promo-btn:hover {
    background: var(--accent-dark);
}

.promo-btn-dark {
    background: var(--primary);
    color: #fff;
}

/* ===== PROMO SLIDE (image-based swiper banners) ===== */
.promo-slide-wrap {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
}

.promo-slide-img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 20px;
    line-height: 1.4;
}

.promo-overlay-dark {
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 60%, transparent 100%);
    color: #fff;
}

.promo-overlay-light {
    background: linear-gradient(to top, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.4) 65%, transparent 100%);
    color: var(--dark);
}

.promo-slide-text h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}

.promo-slide-text p {
    font-size: 13px;
    margin: 0;
}

.promo-btn-dark:hover {
    background: var(--primary-dark);
}

/* ===== INFO BLOCKS ===== */
.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 16px;
    margin: 40px 0;
}

.info-card {
    border-radius: 8px;
    overflow: hidden;
}

.hk-premium-card {
    background: linear-gradient(135deg, #3d9130 0%, #2c6e22 100%);
    color: #fff;
}

.instant-card {
    background: #f5f5f5;
    border: 1px solid var(--border);
}

.info-card-body {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.hk-premium-card .info-card-body {
    flex-direction: column;
    align-items: flex-start;
}

.info-card-icon {
    font-size: 28px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.info-card-icon-orange {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.info-btn-white {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.info-btn-orange {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.info-btn-orange:hover {
    background: var(--accent-dark);
}

.info-card-img {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    margin: 40px 0;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #e8f5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}

.trust-item p {
    font-size: 11px;
    color: var(--gray);
}

/* ===== APP DOWNLOAD ===== */
.app-download {
    background: linear-gradient(135deg, #e8f5e5 0%, #f0ffe8 100%);
    padding: 60px 0;
    margin-top: 20px;
}

.app-download-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.app-phone-mock {
    flex-shrink: 0;
}

.phone-frame {
    width: 120px;
    height: 220px;
    border: 3px solid var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.app-content {
    flex: 1;
}

.app-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.app-content>p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.app-features {
    list-style: none;
    margin-bottom: 24px;
}

.app-features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-features li i {
    color: var(--green);
}

.app-badges {
    display: flex;
    gap: 12px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    transition: var(--transition);
}

.app-badge:hover {
    background: #333;
}

.app-badge i {
    font-size: 22px;
}

.app-badge small {
    display: block;
    font-size: 10px;
    color: #aaa;
}

.app-badge strong {
    font-size: 13px;
}

.app-doctor {
    flex-shrink: 0;
}

.doctor-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    width: 200px;
}

.doctor-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
}

.doctor-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.doctor-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 14px;
}

.doctor-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.doctor-btn:hover {
    background: var(--accent-dark);
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: #ccc;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 18px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-icon iconify-icon {
    display: flex;
    transition: transform 0.3s ease;
    z-index: 2;
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon:hover iconify-icon {
    transform: scale(1.1);
}

/* Brand Specific Hover Colors */
.social-icon.facebook:hover { background: #1877F2; }
.social-icon.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.twitter:hover { background: #1DA1F2; }
.social-icon.youtube:hover { background: #FF0000; }
.social-icon.linkedin:hover { background: #0077B5; }
.social-icon.whatsapp:hover { background: #25D366; }
.social-icon.pinterest:hover { background: #BD081C; }

.seo-text {
    padding: 30px 0;
    border-top: 1px solid #222;
    font-size: 11px;
    color: #555;
    line-height: 1.9;
}

.seo-text p {
    margin-bottom: 10px;
}

.seo-text strong {
    color: #888;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 16px 0;
    text-align: center;
    font-size: 11px;
    color: #444;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 9999;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== LOGIN MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(3px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 40px 40px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 18px;
    color: #888;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: #f5f5f5;
    color: var(--dark);
}

.modal-back {
    background: none;
    border: none;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.modal-back:hover {
    color: var(--primary);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 28px;
}

/* Phone Input */
.phone-input-wrap {
    margin-bottom: 20px;
}

.phone-field {
    position: relative;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    padding: 14px 14px 10px;
    transition: border-color 0.2s ease;
    cursor: text;
}

.phone-field:focus-within {
    border-color: var(--primary);
}

.phone-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.phone-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-prefix {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    flex-shrink: 0;
    padding-right: 10px;
    border-right: 1.5px solid #ddd;
}

.phone-input-row input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
}

/* OTP Button */
.otp-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    background: #ccc;
    color: #fff;
    letter-spacing: 0.3px;
}

.otp-btn:not(:disabled) {
    background: var(--primary);
    cursor: pointer;
}

.otp-btn:not(:disabled):hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 145, 48, 0.35);
}

.otp-btn:disabled {
    cursor: not-allowed;
}

/* OTP Boxes */
.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-box {
    width: 48px;
    height: 52px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.otp-box:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(61, 145, 48, 0.1);
}

.otp-box.filled {
    border-color: var(--primary);
    background: #f0faf0;
}

/* Terms */
.modal-terms {
    font-size: 11.5px;
    color: #999;
    text-align: center;
    line-height: 1.7;
}

.modal-terms a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: underline;
}

.modal-terms a:hover {
    color: var(--primary);
}

/* Resend */
.modal-resend {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-bottom: 16px;
}

.resend-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

.resend-btn:hover {
    text-decoration: underline;
}

/* Success Step */
.success-icon {
    text-align: center;
    font-size: 56px;
    color: var(--green);
    margin-bottom: 16px;
    animation: popIn 0.4s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Step visibility */
.modal-step {
    display: block;
}

.modal-step.hidden {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .product-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .product-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .info-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
    }

    .search-wrapper {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 8px;
    }

    .hero-slider {
        height: auto;
    }

    .slides-track {
        height: auto;
    }

    .slide {
        height: auto;
    }

    .slide-bg {
        padding: 0;
        display: block;
        position: relative;
        overflow: hidden;
    }

    .slide-img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: initial;
        display: block;
        z-index: 0;
    }

    .slide-content {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        max-width: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, transparent 100%);
        padding: 36px 16px 16px;
        z-index: 1;
    }

    .slide-content h1 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .slide-tag {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .slide-sub {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .slide-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .product-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        border-radius: 8px;
    }

    .card-badge {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: calc(100% - 24px);
        font-size: 9px;
        padding: 3px 8px;
    }

    .product-img-wrap {
        height: 180px;
        padding: 15px;
    }

    .product-info {
        padding: 12px 10px;
        gap: 4px;
    }

    .product-name {
        font-size: 14px;
        line-height: 1.3;
    }

    .product-subtitle {
        font-size: 11px;
    }

    .product-desc {
        font-size: 11px;
        margin: 2px 0 8px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-tags {
        margin-bottom: 12px;
        gap: 4px;
    }

    .product-tag {
        font-size: 10px;
        padding: 2px 8px;
    }

    .card-actions {
        gap: 6px;
    }

    .btn-cart, .btn-buy {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 6px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .footer-col { min-width: 0; }
    .footer-links a { word-wrap: break-word; white-space: normal; }



    .trust-strip {
        flex-direction: column;
        gap: 16px;
    }

    .app-download-inner {
        flex-direction: column;
    }

    .app-phone-mock {
        display: none;
    }

    .app-doctor {
        display: none;
    }

    .promo-banner {
        padding: 16px;
        min-height: 130px;
        border-radius: 8px;
        margin: 16px 0;
        align-items: flex-end;
    }

    .promo-text h3 {
        font-size: 16px;
    }

    .promo-text p {
        font-size: 12px;
    }

    .home-banner-slider,
    .top-banner-slider,
    .section-banner-slider {
        border-radius: 8px;
        overflow: hidden;
    }

    .home-banner-slider .swiper-slide,
    .top-banner-slider .swiper-slide,
    .section-banner-slider .swiper-slide {
        border-radius: 8px;
        overflow: hidden;
    }

    .promo-slide-text {
        padding: 24px 14px 12px;
    }

    .promo-slide-text h3 {
        font-size: 15px;
    }

    .promo-slide-text p {
        font-size: 11px;
    }

    .section-tabs {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 10px !important;
        padding: 4px 2px 8px !important;
        margin-bottom: 24px !important;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) #e8f5e9;
    }

    .section-tabs::-webkit-scrollbar {
        height: 3px;
    }

    .section-tabs::-webkit-scrollbar-track {
        background: #e8f5e9;
        border-radius: 2px;
    }

    .section-tabs::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 2px;
    }

    .tab-btn {
        flex-shrink: 0 !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
        border-radius: 40px !important; /* Pill style on mobile */
    }

    /* Use auto height and only hide overflow where absolutely necessary */
    header, #mainHeader, .main-header {
        height: auto !important;
        min-height: 0 !important;
    }

    .nav-bar {
        border: none !important;
        background: transparent !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .mobile-nav-toggle {
        background: var(--primary);
        color: #fff;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 4px;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .mobile-nav-toggle:hover {
        background: var(--primary-dark);
    }

/* Old slide out mobile menu styles removed to allow horizontal scroll list */

    .shop-category-btn {
        padding: 6px 10px !important;
        gap: 8px !important;
        border-radius: 6px !important;
    }
    
    .shop-category-btn span {
        white-space: normal !important;
        width: 55px;
        line-height: 1.2 !important;
        font-size: 11.5px !important;
        text-align: left;
    }
    
    .shop-category-btn i {
        font-size: 18px !important;
    }

    /* Fix for mega menu and any accidental wide elements */
    .mega-menu:not(.mobile-active), .mega-menu:not(.mobile-active) * {
        display: none !important;
    }

    .mega-menu.mobile-active {
        display: block !important;
        position: fixed !important;
        top: 100px; /* Adjust based on your header height */
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background: #fff !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .mega-menu.mobile-active .mega-menu-sidebar {
        width: 100% !important;
        height: auto !important;
        padding-bottom: 40px;
    }

    .mega-menu.mobile-active .mega-sidebar-item {
        padding: 16px 20px !important;
        border-bottom: 1px solid #f8f8f8;
        background: #fff !important;
    }

    .mega-menu.mobile-active .mega-menu-content {
        display: none !important;
    }

    .mobile-menu-close {
        display: flex !important;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: #333;
        font-size: 18px;
        z-index: 10001;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: all 0.2s ease;
    }
    .mobile-menu-close:hover {
        background: #f8f8f8;
        transform: scale(1.1);
    }

    .mega-menu-trigger {
        overflow: visible !important; /* Allow menu to show */
    }
}

@media (max-width: 1024px) {
     /* Hide mega menu earlier to prevent tablet overflow */
    /* Hide mega menu earlier to prevent tablet overflow */
    .mega-menu:not(.mobile-active) {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .product-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-img-wrap {
        height: 160px;
        padding: 10px;
    }

    .product-info {
        padding: 10px 8px;
    }

    .product-name {
        font-size: 13px;
    }

    .btn-cart, .btn-buy {
        padding: 7px 8px;
        font-size: 10px;
    }

    .header-actions {
        gap: 8px;
    }

    .trigger-callback {
        background: #f0f7f7;
        color: var(--primary);
        padding: 7px 10px;
        border-radius: 6px;
        font-size: 14px;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        width: auto;
        height: auto;
    }

    .trigger-callback i {
        font-size: 13px;
        flex-shrink: 0;
    }

    .trigger-callback .cb-label-desktop {
        display: none;
    }

    .trigger-callback .cb-label-mobile {
        display: inline;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2px;
    }
    .logo-text {
        font-size: 14px;
    }

    .action-link span {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 28px;
    }

    .footer-col { min-width: 0; }
    .footer-title { word-wrap: break-word; }
    .footer-links a { word-wrap: break-word; white-space: normal; }

    .modal-box {
        padding: 32px 20px 24px;
        margin: 0 12px;
        border-radius: 12px;
    }

    .otp-box {
        width: 40px;
        height: 46px;
        font-size: 18px;
    }

    .otp-inputs {
        gap: 7px;
    }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    margin: 60px 0;
    padding: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-meta h4 {
    font-size: 16px;
    margin: 0;
    color: var(--dark);
}

.testimonial-meta p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.testimonial-rating {
    margin-bottom: 15px;
    font-size: 14px;
}

.text-warning {
    color: #ffc107;
}

.text-muted {
    color: #e8e8e8;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.testimonial-message {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, #1a2e1a, #2c4a2c);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}
.contact-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.contact-section {
    padding: 80px 0;
    background: #f9f9f9;
}
.contact-success-alert {
    background: #e8f5e5;
    color: #2c6e22;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #c8e6c9;
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-success-alert i {
    font-size: 24px;
}
.contact-success-alert p {
    margin: 0;
    font-weight: 600;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form-row .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}
.contact-form-row .form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.contact-message-group {
    margin-bottom: 30px;
}
.contact-message-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}
.contact-message-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}
.contact-submit-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(61, 145, 48, 0.2);
}
.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    align-items: center;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-icon-location { background: #e8f5e5; color: var(--primary); }
.contact-icon-phone { background: #fff4e5; color: var(--accent); }
.contact-icon-email { background: #e5f5f5; color: #008080; }

.contact-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.contact-info-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.contact-info-text .secondary-text {
    opacity: 0.7;
}
.contact-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    .contact-hero h1 {
        font-size: 32px;
    }
    .contact-hero p {
        font-size: 16px;
    }
    .contact-section {
        padding: 40px 0;
    }
    .contact-form-card {
        padding: 25px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    background: linear-gradient(135deg, #1a2e1a, #2c4a2c);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}
.about-hero p {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}
.about-section {
    padding: 80px 0;
}
.about-who-section {
    background: #fff;
}
.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-title-underlined {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}
.about-title-underlined .title-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.about-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-stats-row {
    display: flex;
    gap: 20px;
}
.about-stat-card {
    text-align: center;
    background: #f9f9f9;
    padding: 15px 25px;
    border-radius: 10px;
    flex: 1;
}
.about-stat-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}
.primary-stat { color: var(--primary); }
.accent-stat { color: var(--accent); }
.about-stat-card .stat-label {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
    font-weight: 700;
    text-transform: uppercase;
}
.about-who-image-wrap {
    position: relative;
}
.about-who-image-wrap .image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.about-who-image-wrap img {
    width: 100%;
    display: block;
    border-radius: 20px;
}
.decor-dot {
    position: absolute;
    border-radius: 20px;
    z-index: 1;
}
.decor-primary {
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    opacity: 0.1;
}
.decor-accent {
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent);
    opacity: 0.1;
}

.about-cards-section {
    background: #f9f9f9;
}
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.about-card-v2 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}
.card-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 25px;
}
.icon-primary { background: #e8f5e5; color: var(--primary); }
.icon-accent { background: #fff4e5; color: var(--accent); }
.icon-teal { background: #e5f5f5; color: #008080; }

.about-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}
.about-card-v2 p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-certs-section {
    background: #fafafa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.certs-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
}
.certs-container {
    position: relative;
    z-index: 2;
}
.certs-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.certs-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 128, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.certs-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin: 0;
}
.certs-title-highlight {
    color: var(--primary);
    position: relative;
}
.certs-title-highlight svg {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 8px;
}
.certs-header p {
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}
.about-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}
.about-cert-item {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cert-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}
.cert-img-box {
    height: 262px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s;
}
.cert-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
}
.cert-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    margin-bottom: 15px;
}
.about-cert-item h4 {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cert-decor-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
}

.about-features-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.feature-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 10px;
}
.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}
.feature-item p {
    font-size: 12px;
    opacity: 0.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero h1 { font-size: 32px; }
    .about-hero p { font-size: 16px; }
    .about-section { padding: 50px 0; }
    .about-cards-grid { grid-template-columns: 1fr; }
    .certs-header h2 { font-size: 28px; }
    .about-certs-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }
    .cert-img-box { height: 180px; }
}

@media (max-width: 576px) {
    .about-stats-row {
        flex-direction: column;
    }
    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: none !important;
    }

    .nav-bar {
        display: block !important;
        height: auto !important;
        min-height: 48px !important;
        border-top: none;
        padding: 0 0 5px 0 !important;
        margin: 0 !important;
        position: relative;
        z-index: 10;
        overflow: visible !important;
    }

    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto !important;
        padding: 8px 16px 6px !important;
        margin: 0 -16px;
        gap: 8px;
        scrollbar-width: thin;
        scrollbar-color: var(--primary) #e8f5e9;
        -webkit-overflow-scrolling: touch;
    }

    .nav-list.mobile-open {
        display: flex;
    }

    .nav-list::-webkit-scrollbar {
        height: 3px;
    }

    .nav-list::-webkit-scrollbar-track {
        background: #e8f5e9;
        border-radius: 2px;
    }

    .nav-list::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 2px;
    }

    .nav-item {
        width: auto;
        margin-left: 0 !important;
        flex-shrink: 0;
        border-bottom: none;
    }

    .nav-item > a {
        white-space: nowrap;
        font-size: 13px !important; /* Mobile optimal */
        padding: 6px 10px !important; /* Reduced padding */
    }

    /* Override shop category button for mobile layout */
    .nav-item.mega-menu-trigger {
        padding: 0;
    }
    
    .shop-category-btn {
        width: auto;
        white-space: nowrap;
        padding: 6px 12px !important;
        font-size: 13px !important;
    }
    
    .shop-category-btn i {
        margin-right: 6px;
        font-size: 14px !important;
    }

    .mega-menu {
        width: 100vw;
        left: -16px;
    }
}

.hidden { display: none !important; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.p-0 { padding: 0; }
.container-fluid { width: 100%; }