/* ============================================
   TechnoCNC v2 Design System
   Font: Inter | Primary: #0091D5 | Dark: #1A2535
   ============================================ */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 15px; color: #333; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; transition: all 0.3s ease; font-family: 'Inter', sans-serif; }
.btn-primary { background: #0091D5; color: #fff; }
.btn-primary:hover { background: #007BB8; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,145,213,0.4); color: #fff; }
.btn-orange { background: #FF6B00; color: #fff; }
.btn-orange:hover { background: #E55E00; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255,107,0,0.4); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 32px; font-weight: 800; color: #1A2535; margin-bottom: 12px; }
.section-title p { font-size: 16px; color: #666; max-width: 600px; margin: 0 auto; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar { background: #1A2535; padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.7); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: rgba(255,255,255,0.7); }
.top-bar-left a:hover { color: #fff; }
.top-bar-left i { margin-right: 6px; color: #0091D5; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { color: rgba(255,255,255,0.5); font-size: 14px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); }
.top-bar-right a:hover { color: #fff; border-color: #0091D5; background: rgba(0,145,213,0.2); }

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header { background: #fff; padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.main-header .container { display: flex; align-items: center; gap: 20px; }
.logo-area { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.logo-area img { height: 50px; }
.logo-tagline { border-left: 3px solid #0091D5; padding-left: 12px; }
.logo-tagline span { font-size: 13px; font-weight: 700; color: #0091D5; display: block; line-height: 1.2; }
.logo-tagline small { font-size: 12px; color: #666; }
.v2-search-bar { flex: 1; max-width: 480px; margin: 0 auto; position: relative; }
.v2-search-bar form { display: flex; border: 2px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: border-color 0.3s; }
.v2-search-bar form:focus-within { border-color: #0091D5; }
.v2-search-bar input[type="search"] { flex: 1; padding: 10px 16px; border: none; outline: none; font-size: 14px; font-family: 'Inter', sans-serif; background: #fff; }
.v2-search-bar .search-submit-btn { background: #0091D5; color: #fff; border: none; padding: 0 18px; cursor: pointer; font-size: 16px; transition: background 0.3s; }
.v2-search-bar .search-submit-btn:hover { background: #007BB8; }
.v2-search-bar #clearBtn { position: absolute; right: 50px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #999; font-size: 14px; display: none; }
.v2-search-bar #SearchUL { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border: 1px solid #e0e0e0; border-top: none; border-radius: 0 0 8px 8px; max-height: 300px; overflow-y: auto; z-index: 1001; list-style: none; display: none; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.v2-search-bar #SearchUL li a { display: block; padding: 10px 16px; color: #444; font-size: 14px; }
.v2-search-bar #SearchUL li a:hover { background: #f0f8ff; color: #0091D5; }
.v2-search-bar #SearchUL li a i { margin-right: 8px; color: #999; }
.header-actions { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.cart-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: #f5f5f5; color: #333; font-size: 20px; transition: all 0.3s; }
.cart-btn:hover { background: #0091D5; color: #fff; }
.cart-badge { position: absolute; top: -5px; right: -5px; background: #FF6B00; color: #fff; font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav { background: #0091D5; position: sticky; top: 82px; z-index: 999; }
.main-nav .container { display: flex; align-items: center; }
.nav-links { display: flex; list-style: none; flex: 1; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 6px; padding: 14px 18px; color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; transition: all 0.3s; }
.nav-links > li > a:hover, .nav-links > li.active > a { color: #fff; background: rgba(255,255,255,0.12); }
.nav-links > li > a .fa-caret-down { font-size: 12px; opacity: 0.7; }
.nav-links .v2-dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 260px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 0 0 8px 8px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; list-style: none; padding: 8px 0; margin: 0; }
.nav-links > li:hover .v2-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.v2-dropdown li a { display: block; padding: 10px 20px; color: #444; font-size: 14px; border-left: 3px solid transparent; }
.v2-dropdown li a:hover { background: #f0f8ff; color: #0091D5; border-left-color: #0091D5; }
.v2-dropdown li.active a { color: #0091D5; border-left-color: #0091D5; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; padding: 14px; }
.mobile-search-link { display: none; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section { background: linear-gradient(135deg, rgba(0,69,124,0.95), rgba(0,145,213,0.75)), url('../img/bg.jpg') center/cover no-repeat; min-height: 520px; display: flex; align-items: center; padding: 60px 0; color: #fff; }
.hero-section .container { display: flex; align-items: center; gap: 50px; }
.hero-content { flex: 1.2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.hero-badge i { color: #FFD700; }
.hero-content h1 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 .highlight { color: #7DD8FF; }
.hero-content > p { font-size: 17px; line-height: 1.7; opacity: 0.9; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats-card { flex: 0.8; background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 35px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.stat-item { text-align: center; padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.stat-item .number { font-size: 36px; font-weight: 800; display: block; }
.stat-item .label { font-size: 13px; opacity: 0.8; margin-top: 4px; display: block; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar { background: #fff; padding: 30px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.stats-bar .container { display: flex; justify-content: space-around; text-align: center; }
.stats-bar-item .num { font-size: 32px; font-weight: 800; color: #0091D5; }
.stats-bar-item .txt { font-size: 14px; color: #666; margin-top: 4px; }

/* ============================================
   SHOWCASE SLIDER
   ============================================ */
.v2-showcase { padding: 50px 0; background: #F7FAFC; }
.v2-showcase-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.v2-showcase-header h2 { font-size: 26px; font-weight: 800; color: #1A2535; margin: 0; }
.v2-showcase-header h2 i { color: #0091D5; margin-right: 10px; }
.v2-showcase-nav { display: flex; gap: 8px; }
.v2-showcase-nav button { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #0091D5; background: #fff; color: #0091D5; font-size: 16px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.v2-showcase-nav button:hover { background: #0091D5; color: #fff; }
.v2-showcase-item { border-radius: 16px; overflow: hidden; border: 1px solid #e8e8e8; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.06); transition: all 0.3s ease; }
.v2-showcase-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.v2-showcase-item img { width: 100%; height: auto; min-height: 200px; max-height: 420px; object-fit: contain; background: linear-gradient(135deg, #f7fafc 0%, #eef2f7 100%); display: block; transition: transform 0.4s ease; }
.v2-showcase-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
    .v2-showcase-header { flex-direction: column; gap: 12px; align-items: flex-start; }
    .v2-showcase-item img { height: 200px; }
}
.v2-slider .carousel-indicators li { border-color: #0091D5; }
.v2-slider .carousel-indicators .active { background-color: #0091D5; }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.v2-categories { padding: 80px 0 50px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cat-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.cat-card-img { height: 200px; overflow: hidden; background: #f7fafc; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-body { padding: 20px; }
.cat-card-body h3 { font-size: 18px; font-weight: 700; color: #1A2535; margin-bottom: 8px; }
.cat-card-body h3 a { color: #1A2535; }
.cat-card-body h3 a:hover { color: #0091D5; }
.cat-card-link { color: #0091D5; font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.cat-card-link i { transition: transform 0.3s; }
.cat-card:hover .cat-card-link i { transform: translateX(4px); }

/* ============================================
   ABOUT COMPANY
   ============================================ */
/* ---- Home About Section ---- */
.v2-home-about { padding: 80px 0; background: #F7FAFC; }
.v2-ha-single { max-width: 900px; margin: 0 auto; text-align: center; }
.v2-ha-badge { display: inline-flex; align-items: center; gap: 8px; background: #E8F5FC; color: #0091D5; padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.v2-ha-badge i { font-size: 15px; }
.v2-ha-single h2 { font-size: 32px; font-weight: 800; color: #1A2535; line-height: 1.3; margin-bottom: 24px; }
.v2-ha-text { text-align: left; margin-bottom: 32px; }
.v2-ha-text p { font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 12px; }
.v2-ha-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.v2-ha-stat { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 18px 16px; transition: all 0.3s; }
.v2-ha-stat:hover { border-color: #0091D5; box-shadow: 0 6px 20px rgba(0,145,213,0.12); transform: translateY(-3px); }
.v2-ha-stat-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #0091D5, #004E7C); color: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.v2-ha-stat-info { text-align: left; }
.v2-ha-stat-num { display: block; font-size: 24px; font-weight: 900; color: #1A2535; line-height: 1.1; }
.v2-ha-stat-label { display: block; font-size: 12px; color: #888; font-weight: 500; margin-top: 2px; }
.v2-ha-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.v2-ha-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #1A2535; padding: 10px 14px; background: #fff; border-radius: 10px; border: 1px solid #e8e8e8; text-align: left; }
.v2-ha-feat i { color: #27ae60; font-size: 16px; flex-shrink: 0; }
.v2-ha-btn { padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }
.v2-ha-btn i { transition: transform 0.25s; }
.v2-ha-btn:hover i { transform: translateX(4px); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { padding: 80px 0; background: #F7FAFC; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.why-card { background: #fff; padding: 35px 25px; border-radius: 12px; text-align: center; border: 1px solid #e8e8e8; transition: all 0.3s ease; }
.why-card:hover { border-color: #0091D5; box-shadow: 0 8px 25px rgba(0,145,213,0.12); transform: translateY(-4px); }
.why-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: #E8F5FC; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #0091D5; }
.why-card h3 { font-size: 17px; font-weight: 700; color: #1A2535; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #777; line-height: 1.6; }

/* ============================================
   WORKING PROCESS
   ============================================ */
/* ---- Working Process Section ---- */
.v2-process { padding: 80px 0; background: linear-gradient(135deg, #0a1628 0%, #004E7C 50%, #006DAA 100%); color: #fff; position: relative; overflow: hidden; }
.v2-process::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(0,145,213,0.08); }
.v2-process::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: rgba(0,145,213,0.06); }
.v2-process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.v2-process-line { display: none; }
.v2-process-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 28px 22px; text-align: center; transition: all 0.35s; position: relative; overflow: hidden; }
.v2-process-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, rgba(0,145,213,0.6), transparent); opacity: 0; transition: opacity 0.35s; }
.v2-process-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-6px); border-color: rgba(0,145,213,0.4); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.v2-process-card:hover::before { opacity: 1; }
.v2-process-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, #0091D5, #00b4ff); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(0,145,213,0.4); transition: transform 0.35s; }
.v2-process-card:hover .v2-process-icon { transform: scale(1.1) rotate(-5deg); }
.v2-process-step-num { font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px; }
.v2-process-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.v2-process-card p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 18px; }
.v2-process-card img { width: 100%; border-radius: 12px; border: 2px solid rgba(255,255,255,0.1); transition: border-color 0.35s; }
.v2-process-card:hover img { border-color: rgba(0,145,213,0.5); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section { padding: 60px 0; background: #0091D5; color: #fff; text-align: center; }
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-section p { opacity: 0.85; margin-bottom: 25px; font-size: 15px; }

/* ============================================
   TOP SELLING PRODUCTS
   ============================================ */
.v2-selling { padding: 80px 0; background: #fff; }
.v2-sell-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 35px; padding-right: 100px; position: relative; }
.v2-sell-header h2 { font-size: 30px; font-weight: 800; color: #1A2535; margin: 0 0 6px; }
.v2-sell-header p { font-size: 15px; color: #888; margin: 0; }
.v2-sell-viewall { display: inline-flex; align-items: center; gap: 8px; color: #0091D5; font-size: 14px; font-weight: 600; text-decoration: none; padding: 10px 20px; border: 2px solid #0091D5; border-radius: 10px; transition: all 0.25s; white-space: nowrap; }
.v2-sell-viewall:hover { background: #0091D5; color: #fff; }
.v2-sell-viewall i { transition: transform 0.25s; }
.v2-sell-viewall:hover i { transform: translateX(4px); }
.v2-sell-grid { position: relative; }
.v2-sell-grid .owl-nav { position: absolute; top: -70px; right: 0; display: flex; gap: 8px; }
.v2-sell-grid .owl-nav button { width: 42px; height: 42px; border-radius: 50%; background: #E8F5FC !important; color: #0091D5 !important; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: all 0.25s; border: 1px solid #d0e8f5 !important; }
.v2-sell-grid .owl-nav button:hover { background: #0091D5 !important; color: #fff !important; }
.v2-sell-grid .owl-nav button span { font-size: 0; }
.v2-sell-grid .owl-stage-outer { overflow: hidden; }
.v2-sell-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; position: relative; display: flex; flex-direction: column; transition: all 0.3s; }
.v2-sell-card:hover { border-color: #0091D5; box-shadow: 0 12px 32px rgba(0,145,213,0.12); transform: translateY(-6px); }
.v2-sell-badge { position: absolute; top: 14px; left: 14px; padding: 4px 12px; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; color: #fff; z-index: 2; letter-spacing: 0.5px; }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; z-index: 2; }
.badge-hot { background: #FF4444; color: #fff; }
.badge-new { background: #0091D5; color: #fff; }
.v2-sell-img { display: flex; align-items: center; justify-content: center; height: 190px; background: #F7FAFC; overflow: hidden; padding: 16px; }
.v2-sell-img img { max-height: 160px; max-width: 90%; object-fit: contain; transition: transform 0.35s; }
.v2-sell-card:hover .v2-sell-img img { transform: scale(1.08); }
.v2-sell-body { padding: 14px 16px 8px; flex: 1; }
.v2-sell-code { font-size: 11px; color: #0091D5; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 5px; }
.v2-sell-name { font-size: 14px; font-weight: 600; color: #1A2535; line-height: 1.4; text-decoration: none; display: block; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 39px; }
.v2-sell-name:hover { color: #0091D5; }
.v2-sell-footer { padding: 12px 16px 16px; display: flex; align-items: center; gap: 8px; border-top: 1px solid #f0f0f0; }
.v2-sell-cart-btn { flex: 1; padding: 10px 14px; background: #0091D5; color: #fff; border: none; border-radius: 10px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 7px; font-family: 'Inter', sans-serif; }
.v2-sell-cart-btn:hover { background: #007bb5; box-shadow: 0 4px 12px rgba(0,145,213,0.25); }
.v2-sell-view-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid #e8e8e8; border-radius: 10px; color: #888; font-size: 16px; transition: all 0.25s; background: #fff; text-decoration: none; flex-shrink: 0; }
.v2-sell-view-btn:hover { border-color: #0091D5; color: #0091D5; background: #E8F5FC; }
.product-img-v2 { height: 180px; background: #F7FAFC; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img-v2 img { max-height: 160px; max-width: 90%; transition: transform 0.3s; }
.product-card-v2:hover .product-img-v2 img { transform: scale(1.05); }
.product-body-v2 { padding: 16px; }
.product-code { font-size: 12px; color: #999; margin-bottom: 4px; }
.product-name-v2 { font-size: 14px; font-weight: 600; color: #1A2535; line-height: 1.4; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name-v2 a { color: #1A2535; }
.product-name-v2 a:hover { color: #0091D5; }
.product-actions-v2 { display: flex; gap: 8px; }
.product-actions-v2 .btn-cart { flex: 1; padding: 9px 14px; background: #0091D5; color: #fff; border: none; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 6px; font-family: 'Inter', sans-serif; }
.product-actions-v2 .btn-cart:hover { background: #007BB8; }
.product-actions-v2 .btn-view { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; border-radius: 8px; color: #666; font-size: 15px; transition: all 0.3s; background: #fff; cursor: pointer; }
.product-actions-v2 .btn-view:hover { border-color: #0091D5; color: #0091D5; }

/* ============================================
   TRUSTED CUSTOMERS
   ============================================ */
/* ---- Trusted Clients Section ---- */
.v2-clients { padding: 80px 0; background: #F7FAFC; }
.v2-clients-header { text-align: center; margin-bottom: 40px; }
.v2-clients-badge { display: inline-flex; align-items: center; gap: 8px; background: #E8F5FC; color: #0091D5; padding: 8px 20px; border-radius: 30px; font-size: 13px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.v2-clients-header h2 { font-size: 30px; font-weight: 800; color: #1A2535; margin: 0 0 10px; }
.v2-clients-header p { font-size: 15px; color: #888; margin: 0; }
.v2-client-item { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; height: 100px; display: flex; align-items: center; justify-content: center; padding: 16px; transition: all 0.3s; }
.v2-client-item:hover { border-color: #0091D5; box-shadow: 0 6px 20px rgba(0,145,213,0.1); transform: translateY(-3px); }
.v2-client-item img { max-height: 60px; max-width: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.55; transition: all 0.35s; }
.v2-client-item:hover img { filter: grayscale(0%); opacity: 1; }
.v2-clients-cta { text-align: center; margin-top: 30px; }
.v2-clients-link { display: inline-flex; align-items: center; gap: 8px; color: #0091D5; font-size: 15px; font-weight: 600; text-decoration: none; padding: 10px 24px; border: 2px solid #0091D5; border-radius: 10px; transition: all 0.25s; }
.v2-clients-link:hover { background: #0091D5; color: #fff; }
.v2-clients-link i { transition: transform 0.25s; }
.v2-clients-link:hover i { transform: translateX(4px); }
.v2-clients-carousel .owl-stage { display: flex; align-items: center; }

/* ============================================
   YOUTUBE VIDEO
   ============================================ */
.v2-video { padding: 40px 0; }
.v2-video .videowrapper { float: none; clear: both; width: 100%; position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.v2-video .videowrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ============================================
   FOOTER
   ============================================ */
.v2-footer { background: #1A2535; color: rgba(255,255,255,0.6); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background: #0091D5; border-radius: 2px; }
.footer-about img { height: 45px; margin-bottom: 15px; }
.footer-about p { font-size: 13px; line-height: 1.7; margin-bottom: 15px; }
.footer-visitors p { font-size: 13px; margin-bottom: 4px; }
.footer-visitors span { color: #0091D5; font-weight: 600; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: all 0.3s; }
.footer-links li a:hover { color: #fff; padding-left: 4px; }
.footer-links li a i { margin-right: 8px; color: #0091D5; width: 16px; }
.footer-contact dl { margin-bottom: 18px; }
.footer-contact dt { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.footer-contact dt i { margin-right: 8px; color: #0091D5; }
.footer-contact dd { font-size: 13px; margin-left: 24px; }
.footer-contact dd a { color: rgba(255,255,255,0.6); }
.footer-contact dd a:hover { color: #fff; }
.disclaimer-section { background: #151E2B; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.disclaimer-section p { margin-bottom: 6px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); font-size: 15px; transition: all 0.3s; }
.footer-social a:hover { background: #0091D5; border-color: #0091D5; color: #fff; }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float { position: fixed; bottom: 25px; left: 25px; z-index: 9999; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 14px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); color: #fff; }
.whatsapp-float i { font-size: 22px; }
.back-to-top-v2 { position: fixed; bottom: 25px; right: 25px; z-index: 9999; width: 45px; height: 45px; background: #0091D5; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 12px rgba(0,145,213,0.3); transition: all 0.3s; }
.back-to-top-v2:hover { background: #007BB8; transform: translateY(-3px); color: #fff; }

/* ============================================
   PROFILE MODAL (keep existing)
   ============================================ */
.modal-content { border-radius: 12px; }
.modal-header { border-bottom: 1px solid #eee; padding: 18px 24px; }
.modal-header .modal-title { font-weight: 700; font-size: 18px; }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid #eee; padding: 16px 24px; }
.modal .form-control { border-radius: 8px; padding: 10px 14px; border: 1px solid #ddd; font-family: 'Inter', sans-serif; }
.modal .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }

/* ============================================
   MOBILE SEARCH MODAL
   ============================================ */
.v2-mobile-search .modal-body { padding: 20px; }
.v2-mobile-search .input-group { display: flex; border: 2px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.v2-mobile-search .input-group input { flex: 1; border: none; padding: 10px 14px; outline: none; font-family: 'Inter', sans-serif; }
.v2-mobile-search .input-group button { background: #0091D5; color: #fff; border: none; padding: 0 16px; cursor: pointer; }
.v2-mobile-search #SearchULMo { list-style: none; padding: 0; margin: 8px 0 0; max-height: 250px; overflow-y: auto; }
.v2-mobile-search #SearchULMo li a { display: block; padding: 8px 12px; color: #444; font-size: 14px; border-radius: 6px; }
.v2-mobile-search #SearchULMo li a:hover { background: #f0f8ff; color: #0091D5; }

/* ============================================
   ALERT NOTIFICATION
   ============================================ */
#alertDiv { position: fixed; top: 100px; right: 20px; z-index: 10000; max-width: 400px; }
#alertDiv:empty { display: none; }
#alertDiv .alert { position: relative; border-radius: 8px; font-size: 14px; line-height: 1.5; padding: 16px 42px 16px 18px; margin: 0; box-shadow: 0 6px 20px rgba(0,0,0,0.15); border: 1px solid transparent; }
#alertDiv .alert strong { font-weight: 400; }
#alertDiv .alert-success { background: #e8f6ec; border-color: #b7e0c2; color: #1d6f36; }
#alertDiv .alert-danger { background: #fdeaea; border-color: #f3c2c2; color: #a32626; }
#alertDiv .alert-info { background: #e9f3fb; border-color: #bcd9ef; color: #1c5a8a; }
#alertDiv .alert .close { position: absolute; top: 8px; right: 10px; width: 22px; height: 22px; padding: 0; border: none; background: transparent; color: inherit; opacity: 0.55; font-size: 16px; font-weight: 700; line-height: 22px; text-align: center; cursor: pointer; border-radius: 4px; }
#alertDiv .alert .close:hover { opacity: 1; background: rgba(0,0,0,0.08); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-section .container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 32px; }
    .hero-content > p { margin: 0 auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-stats-card { width: 100%; max-width: 400px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-sell-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-sell-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .product-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .v2-process-timeline { grid-template-columns: 1fr 1fr; }
    .v2-ha-stats-row { grid-template-columns: 1fr 1fr; }
    .v2-ha-single h2 { font-size: 26px; }
    .v2-ha-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .top-bar-left { flex-direction: column; gap: 4px; font-size: 12px; }
    .logo-tagline { display: none; }
    .v2-search-bar { display: none; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0091D5; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
    .nav-links.show { display: flex; }
    .nav-links > li > a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links .v2-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(0,0,0,0.1); min-width: auto; }
    .v2-dropdown li a { color: rgba(255,255,255,0.8); padding-left: 35px; }
    .v2-dropdown li a:hover { background: rgba(255,255,255,0.1); color: #fff; }
    .mobile-toggle { display: block; }
    .mobile-search-link { display: block; }
    .stats-bar .container { flex-wrap: wrap; gap: 20px; }
    .stats-bar-item { flex: 0 0 45%; }
    .hero-content h1 { font-size: 28px; }
    .cat-grid, .product-grid-v2, .v2-sell-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; gap: 15px; text-align: center; }
    .v2-process-timeline { grid-template-columns: 1fr; }
    .v2-ha-stats-row { grid-template-columns: 1fr; }
    .v2-ha-single h2 { font-size: 22px; }
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 12px; border-radius: 50%; }
}

/* ============================================
   INNER PAGES - LEGACY CLASS OVERRIDES
   Restyle old CI3 classes for v2 design
   ============================================ */

/* --- Common Section Wrappers --- */
.career--section,
.cart--section,
.page--header--section,
.product--section,
.contact--form { font-family: 'Inter', sans-serif; }

.pt--10 { padding-top: 10px; }
.pt--20 { padding-top: 20px; }
.pt--30 { padding-top: 30px; }
.pt--40 { padding-top: 40px; }
.pt--50 { padding-top: 50px; }
.pt--60 { padding-top: 60px; }
.pt--70 { padding-top: 70px; }
.pt--80 { padding-top: 80px; }
.pb--10 { padding-bottom: 10px; }
.pb--20 { padding-bottom: 20px; }
.pb--30 { padding-bottom: 30px; }
.pb--40 { padding-bottom: 40px; }
.pb--50 { padding-bottom: 50px; }
.pb--60 { padding-bottom: 60px; }
.pb--80 { padding-bottom: 80px; }
.mb-80 { margin-bottom: 80px; }
.mr--5 { margin-right: 5px; }
.ml--8 { margin-left: 8px; }
.mobile-mt-20 { }
@media (max-width: 768px) { .mobile-mt-20 { margin-top: 20px; } }

/* --- Section Titles (used everywhere) --- */
.section--title h2 { font-size: 28px; font-weight: 800; color: #1A2535; margin-bottom: 12px; }
.section--title p { font-size: 15px; color: #666; line-height: 1.6; }

/* --- Breadcrumb --- */
.breadcrumb { background: transparent; padding: 10px 0; margin-bottom: 20px; font-size: 14px; border-radius: 0; border-bottom: 1px solid #eee; }
.breadcrumb li a { color: #0091D5; font-weight: 500; }
.breadcrumb li.active h5 { font-size: 14px; font-weight: 600; color: #1A2535; display: inline; margin: 0; }
.breadcrumb > li + li::before { color: #999; }

/* --- Background Colors --- */
.bg--c-lighterblue { background: #F7FAFC; }
.bg--c-main { background: #0091D5; }
.bg--overlay { position: relative; background-size: cover; background-position: center; }
.bg--overlay::before { content: ''; position: absolute; inset: 0; background: rgba(0,78,124,0.85); }
.bg--overlay > * { position: relative; z-index: 1; }

/* ============================================
   LEFT SIDEBAR
   ============================================ */
.category_sidebar { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.category_title { font-size: 16px !important; font-weight: 700 !important; color: #1A2535 !important; margin-bottom: 15px !important; padding-bottom: 12px; border-bottom: 2px solid #0091D5; }
.category_title .count { float: right; }
.category_title .category_menu { width: 20px; cursor: pointer; }
.nav--widget ul.nav { list-style: none; padding: 0; margin: 0; }
.nav--widget ul.nav li { border-bottom: 1px solid #f0f0f0; }
.nav--widget ul.nav li:last-child { border: none; }
.nav--widget ul.nav li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 5px; color: #555; font-size: 14px; transition: all 0.3s; }
.nav--widget ul.nav li a:hover { color: #0091D5; padding-left: 10px; background: transparent; }
.nav--widget ul.nav li a .text { flex: 1; }
.nav--widget ul.nav li a .count { background: #E8F5FC; color: #0091D5; font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 12px; }
.best_seller { padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.best_seller ul { list-style: none; padding: 0; margin: 0; }
.best_seller ul li { display: flex; gap: 12px; align-items: center; }
.best_seller .product_image { flex-shrink: 0; }
.best_seller .product_image img { width: 55px; height: 55px; object-fit: cover; border-radius: 8px; border: 1px solid #eee; }
.best_seller .pro_text a { color: #1A2535; font-size: 13px; font-weight: 500; }
.best_seller .pro_text a:hover { color: #0091D5; }
.best_seller .pro_text span { font-size: 12px; color: #999; }

/* ============================================
   CONTACT US / TEAM PAGE
   ============================================ */
.team--section { background: #F7FAFC; }
.team--members .row { display: flex; flex-wrap: wrap; gap: 0; }
.team--member { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 25px; margin-bottom: 20px; transition: all 0.3s; }
.team--member:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }
.team--member h4 { font-size: 16px; font-weight: 700; color: #0091D5; margin-bottom: 15px; }
.team--member .img img { width: 80px; height: 80px; object-fit: cover; border: 3px solid #E8F5FC; }
.team--member .name h3 { font-size: 15px; font-weight: 700; color: #1A2535; margin-bottom: 5px; }
.team--member .role p { font-size: 13px; color: #666; margin-bottom: 3px; }
.team--member .role a { color: #0091D5; }
.team--member > p { font-size: 13px; color: #777; line-height: 1.5; }
.contact-box { padding: 0 10px; }

/* Contact Form */
.contact--form { padding: 60px 0; background: #fff; }
.contact--form .title { margin-bottom: 40px; }
.contact--form .title h2 { font-size: 28px; font-weight: 800; color: #1A2535; }
.contact--form .title p { color: #666; font-size: 15px; margin-top: 10px; }
.contact--form .form-control { border-radius: 8px; padding: 12px 16px; border: 1px solid #ddd; font-family: 'Inter', sans-serif; font-size: 14px; height: auto; transition: border-color 0.3s; }
.contact--form .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }
.contact--form textarea.form-control { min-height: 120px; resize: vertical; }
.contact--form .btn { border-radius: 8px; padding: 12px 28px; font-weight: 600; font-size: 15px; }
.contact--form .btn-default.active { background: #0091D5; color: #fff; border: none; }
.contact--form .btn-default.active:hover { background: #007BB8; }
.contact--form .refreshCaptcha { font-size: 18px; color: #0091D5; margin: 0 10px; }
.contact--form img { border-radius: 12px; }

/* Google Map */
.contact--form + iframe,
iframe[src*="google.com/maps"] { border-radius: 0; margin-top: 0; }

/* ============================================
   CAREER / POLICY / EQUIPMENT LIST PAGES
   ============================================ */
.career--section { background: #fff; }
.career--section .career_html { font-size: 15px; line-height: 1.8; color: #555; }
.career--section .career_html h1, .career--section .career_html h2, .career--section .career_html h3 { color: #1A2535; font-weight: 700; }
.career--section .career_html table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.career--section .career_html table th { background: #0091D5; color: #fff; padding: 12px 16px; font-size: 14px; font-weight: 600; }
.career--section .career_html table td { padding: 10px 16px; border-bottom: 1px solid #eee; font-size: 14px; }
.career--section .career_html table tr:hover td { background: #f7fafc; }
.career--section .media-container { background: #F7FAFC; padding: 25px; border-radius: 12px; margin-top: 20px; }
.career--section .media-container a { color: #0091D5; font-weight: 600; }

/* ============================================
   CART / INQUIRY PAGE
   ============================================ */
.cart--section { background: #fff; }
.cart--section .checkout--title h3 { font-size: 22px; font-weight: 700; color: #1A2535; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 2px solid #0091D5; }
.cart--section .table { border-radius: 12px; overflow: hidden; border: 1px solid #e8e8e8; }
.cart--section .table thead th { background: #1A2535; color: #fff; padding: 14px 16px; font-size: 14px; font-weight: 600; border: none; }
.cart--section .table tbody td { padding: 12px 16px; vertical-align: middle; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.cart--section .table tbody tr:hover td { background: #f7fafc; }
.cart--section .table img { border-radius: 8px; }
.cart--section .form-control { border-radius: 8px; padding: 10px 14px; border: 1px solid #ddd; font-family: 'Inter', sans-serif; }
.cart--section .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }
.cart--section .btn-default.active,
.cart--section .btn-primary { background: #0091D5; color: #fff; border: none; border-radius: 8px; padding: 12px 28px; font-weight: 600; }
.cart--section .btn-default.active:hover,
.cart--section .btn-primary:hover { background: #007BB8; }
.switch-field { display: flex; gap: 0; }
.switch-field label { padding: 10px 20px; background: #f5f5f5; cursor: pointer; font-size: 14px; font-weight: 500; border: 1px solid #ddd; transition: all 0.3s; }
.switch-field label:first-of-type { border-radius: 8px 0 0 8px; }
.switch-field label:last-of-type { border-radius: 0 8px 8px 0; }
.switch-field input:checked + label { background: #0091D5; color: #fff; border-color: #0091D5; }
.switch-field input[type="radio"] { display: none; }

/* ============================================
   PRODUCTS LISTING PAGE
   ============================================ */
.productCardMain { }
.productCardList { list-style: none; padding: 0; margin: 0; }
.productCardList li { margin-bottom: 15px; }
.ProductCard { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; display: flex; gap: 15px; padding: 15px; transition: all 0.3s; }
.ProductCard:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ProductCard .productImage { flex-shrink: 0; width: 120px; height: 120px; overflow: hidden; border-radius: 8px; background: #f7fafc; display: flex; align-items: center; justify-content: center; }
.ProductCard .productImage img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ProductCard .productDetails { flex: 1; }
.ProductCard .productDetails h4 { font-size: 15px; font-weight: 600; color: #1A2535; margin: 0 0 8px; line-height: 1.4; }
.ProductCard .productDetails h4 a { color: #1A2535; }
.ProductCard .productDetails h4 a:hover { color: #0091D5; }
.ProductCard .itemCodeWpBtn { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ProductCard .itemCodeWpBtn h5 { font-size: 13px; color: #999; margin: 0; font-weight: 500; }
.productCardBtns { display: flex; gap: 8px; align-items: center; margin-top: 8px; }
.productAddToCartBtn { background: #0091D5; color: #fff; border: none; border-radius: 8px; padding: 8px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.productAddToCartBtn:hover { background: #007BB8; }
.productAddToCartBtn.hide { display: none; }
.whatsappBtn { background: #25D366; color: #fff; border: none; border-radius: 8px; width: 36px; height: 36px; font-size: 18px; cursor: pointer; transition: all 0.3s; }
.whatsappBtn:hover { background: #1DA851; }
.cartQuantity { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.cartQuantity a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: #f5f5f5; color: #333; font-size: 16px; font-weight: 700; }
.cartQuantity a:hover { background: #e0e0e0; }
.cartQuantity .quantity__input { width: 45px; text-align: center; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-size: 14px; font-weight: 600; font-family: 'Inter', sans-serif; height: 32px; }
.partingLine { display: none; }

/* Cart sidebar */
.cartCardSection { }
.cartCard { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 20px; }
.cartCard h2 { font-size: 18px; font-weight: 700; color: #1A2535; margin-bottom: 15px; padding-bottom: 12px; border-bottom: 2px solid #0091D5; }
.cartCard.emptyCart { text-align: center; }
.cartCard.emptyCart img { max-width: 150px; margin: 15px 0; opacity: 0.6; }
.cartCard.emptyCart p { font-size: 13px; color: #999; }
.cartListing { list-style: none; padding: 0; margin: 0; max-height: 350px; overflow-y: auto; }
.cartListing li { padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.cartProduct h6 { font-size: 13px; color: #1A2535; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.cartProduct h6 span { color: #999; font-weight: 400; }
.totalItems { display: flex; justify-content: space-between; padding: 15px 0; border-top: 2px solid #eee; margin-top: 10px; }
.totalItems h4 { font-size: 16px; font-weight: 700; color: #1A2535; margin: 0; }
.checkOutBtn { margin-top: 10px; }
.checkOutBtn button { width: 100%; background: #FF6B00; color: #fff; border: none; border-radius: 8px; padding: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; }
.checkOutBtn button:hover { background: #E55E00; }
.checkOutBtn a { text-decoration: none; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product--details { padding: 40px 0; }
.product--details-img { border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; padding: 20px; background: #fff; }
.product--details-img img { max-width: 100%; }
.product--details-info h1, .product--details-info h2 { font-size: 24px; font-weight: 700; color: #1A2535; margin-bottom: 15px; line-height: 1.3; }
.product--details-info .product--details-nav { margin-bottom: 20px; }
.product--details-info .nav-tabs { border-bottom: 2px solid #e8e8e8; }
.product--details-info .nav-tabs > li > a { border: none; border-radius: 0; color: #666; font-weight: 500; font-size: 14px; padding: 12px 20px; margin: 0; transition: all 0.3s; }
.product--details-info .nav-tabs > li.active > a,
.product--details-info .nav-tabs > li > a:hover { color: #0091D5; border: none; border-bottom: 3px solid #0091D5; background: transparent; }
.product--details-content { padding: 20px 0; font-size: 15px; line-height: 1.7; color: #555; }
.product--details-content table { width: 100%; border-collapse: collapse; }
.product--details-content table th { background: #1A2535; color: #fff; padding: 10px 14px; font-size: 13px; }
.product--details-content table td { padding: 10px 14px; border-bottom: 1px solid #eee; font-size: 14px; }
.product--add-to-cart .btn { border-radius: 8px; font-weight: 600; }
.product--add-to-cart .btn-primary { background: #0091D5; border: none; }
.product--add-to-cart .btn-primary:hover { background: #007BB8; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery--section { padding: 40px 0; }
.gallery__column { display: flex; flex-wrap: wrap; gap: 15px; }
.gallery__link { display: block; border-radius: 12px; overflow: hidden; border: 2px solid #e8e8e8; transition: all 0.3s; }
.gallery__link:hover { border-color: #0091D5; box-shadow: 0 6px 20px rgba(0,145,213,0.15); transform: translateY(-3px); }
.gallery__image { width: 100%; height: auto; transition: transform 0.3s; }
.gallery__link:hover .gallery__image { transform: scale(1.05); }

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-member { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 30px; margin-bottom: 20px; transition: all 0.3s; position: relative; }
.testimonials-member:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.testimonials-member p { font-size: 15px; color: #555; line-height: 1.8; font-style: italic; }
.testimonials-member p span { font-size: 28px; color: #0091D5; font-weight: 700; line-height: 0; vertical-align: middle; }
.testim-author { font-size: 15px; font-weight: 700; color: #0091D5; margin-top: 15px; }

/* ============================================
   DOWNLOAD / BROCHURE PAGE
   ============================================ */
.products--section .thumbnail { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: all 0.3s; margin-bottom: 20px; }
.products--section .thumbnail:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.products--section .thumbnail .info-card { padding: 15px; background: #f7fafc; text-align: center; }
.products--section .thumbnail .info-card img { border-radius: 8px; }
.products--section .thumbnail .caption { padding: 15px; }
.products--section .thumbnail .caption p { font-size: 14px; color: #1A2535; font-weight: 500; }
.products--section .thumbnail .caption .btn-primary.active { background: #0091D5; border: none; border-radius: 8px; font-weight: 600; font-size: 13px; padding: 8px 16px; }
.products--section .thumbnail .caption .btn-primary.active:hover { background: #007BB8; }

/* ============================================
   PAYMENT PAGES
   ============================================ */
.career--section .card,
.payment-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 30px; text-align: center; transition: all 0.3s; cursor: pointer; }
.career--section .card:hover,
.payment-card:hover { border-color: #0091D5; box-shadow: 0 8px 25px rgba(0,145,213,0.12); transform: translateY(-3px); }
.career--section .card img { max-height: 60px; margin-bottom: 15px; }

/* PayPal Smart Button */
#smart-button-container { max-width: 500px; margin: 0 auto; background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 30px; }
#smart-button-container .form-group { margin-bottom: 20px; }
#smart-button-container label { font-weight: 600; color: #1A2535; font-size: 14px; }
#smart-button-container .form-control { border-radius: 8px; padding: 10px 14px; border: 1px solid #ddd; }
#smart-button-container .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }

/* Google Pay Tabs */
.product--details-nav .nav-tabs { border-bottom: 2px solid #e8e8e8; margin-bottom: 25px; }
.product--details-nav .nav-tabs > li > a { border: none; color: #666; font-weight: 600; padding: 12px 25px; font-size: 15px; }
.product--details-nav .nav-tabs > li.active > a { color: #0091D5; border-bottom: 3px solid #0091D5; background: transparent; }

/* Payment Status */
.success-container { text-align: center; padding: 40px; }
.success-icon { font-size: 80px; color: #25D366; margin-bottom: 20px; }
.success-container h2 { font-size: 28px; font-weight: 700; color: #1A2535; }
.success-container p { font-size: 16px; color: #666; }

/* ============================================
   FOLLOW US / SOCIAL MEDIA
   ============================================ */
.socialMediaLinks a { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid #e8e8e8; margin: 10px; font-size: 24px; color: #666; transition: all 0.3s; }
.socialMediaLinks a:hover { border-color: #0091D5; color: #0091D5; background: #E8F5FC; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,145,213,0.2); }
.socialMediaLinks a img { max-width: 30px; max-height: 30px; }

/* ============================================
   TRUSTED CUSTOMERS PAGE (Gallery style)
   ============================================ */
.gallery { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.gallery__column { flex: 0 0 auto; }
.gallery__link img { border-radius: 12px; border: 2px solid #e8e8e8; transition: all 0.3s; filter: grayscale(50%); }
.gallery__link:hover img { filter: grayscale(0%); border-color: #0091D5; }

/* ============================================
   PAGINATION (used on gallery, certification, categories)
   ============================================ */
.pagination--nav { text-align: center; }
.pagination { display: inline-flex; gap: 4px; padding: 0; margin: 20px 0; list-style: none; }
.pagination li { }
.pagination li a,
.pagination li span { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: #666; background: #fff; border: 1px solid #e0e0e0; transition: all 0.3s; }
.pagination li a:hover { background: #E8F5FC; color: #0091D5; border-color: #0091D5; }
.pagination li.active a,
.pagination li.active span { background: #0091D5; color: #fff; border-color: #0091D5; }

/* ============================================
   FORMS (Global overrides for inner pages)
   ============================================ */
.form-control { border-radius: 8px !important; padding: 10px 14px; border: 1px solid #ddd; font-family: 'Inter', sans-serif; font-size: 14px; transition: border-color 0.3s, box-shadow 0.3s; }
.form-control:focus { border-color: #0091D5 !important; box-shadow: 0 0 0 3px rgba(0,145,213,0.1) !important; }
.btn-default.active { background: #0091D5; color: #fff; border: none; border-radius: 8px; }
.btn-default.active:hover { background: #007BB8; color: #fff; }
.btn-primary { background: #0091D5; border-color: #0091D5; border-radius: 8px; }
.btn-primary:hover, .btn-primary:focus { background: #007BB8; border-color: #007BB8; }
.btn-product { background: #0091D5; color: #fff; border: none; border-radius: 8px; font-weight: 600; }
.btn-product:hover { background: #007BB8; color: #fff; }

/* ============================================
   TABLES (Global)
   ============================================ */
.table { border-radius: 12px; overflow: hidden; }
.table > thead > tr > th { background: #1A2535; color: #fff; border: none; font-size: 14px; font-weight: 600; padding: 14px 16px; }
.table > tbody > tr > td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; font-size: 14px; }
.table > tbody > tr:hover > td { background: #f7fafc; }
.table-bordered { border: 1px solid #e8e8e8; }

/* ============================================
   MODALS (Global override)
   ============================================ */
.modal-content { border-radius: 12px; border: none; box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.modal-header { border-bottom: 1px solid #eee; padding: 18px 24px; }
.modal-header .modal-title { font-weight: 700; font-size: 18px; color: #1A2535; }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid #eee; padding: 16px 24px; }

/* ============================================
   DISTRIBUTOR FORM (iframe)
   ============================================ */
.distributor-iframe { border-radius: 12px; border: 1px solid #e8e8e8; }

/* ============================================
   SLICK SLIDER OVERRIDES
   ============================================ */
.slick-slide { outline: none; }
.slick-dots li button:before { color: #0091D5; }
.slick-dots li.slick-active button:before { color: #0091D5; }
.slick-prev:before, .slick-next:before { color: #0091D5; }

/* ============================================
   OWL CAROUSEL OVERRIDES
   ============================================ */
.owl-carousel .owl-nav button { width: 40px; height: 40px; background: #0091D5 !important; color: #fff !important; border-radius: 50% !important; font-size: 18px !important; margin: 0 5px; transition: all 0.3s; }
.owl-carousel .owl-nav button:hover { background: #007BB8 !important; }
.owl-carousel .owl-dots .owl-dot span { background: #ddd; }
.owl-carousel .owl-dots .owl-dot.active span { background: #0091D5; }

/* ============================================
   FANCYBOX OVERRIDES
   ============================================ */
.fancybox-overlay { background: rgba(26,37,53,0.85); }

/* ============================================
   ABOUT US CAROUSEL
   ============================================ */
.bs-slider .item img { width: 100%; max-height: 500px; object-fit: cover; }
.bs-slider .carousel-control { background: none !important; }
.bs-slider .carousel-indicators li { border-color: #0091D5; }
.bs-slider .carousel-indicators .active { background: #0091D5; }

/* ============================================
   OLD THUMBNAIL CARDS (categories listing, home products)
   ============================================ */
.thumbnail { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; transition: all 0.3s; padding: 0; }
.thumbnail:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.thumbnail .info-card { overflow: hidden; }
.thumbnail .info-card .front img { width: 100%; transition: transform 0.3s; }
.thumbnail:hover .info-card .front img { transform: scale(1.05); }
.thumbnail .caption { padding: 15px; }
.thumbnail .caption p { font-size: 14px; font-weight: 500; color: #1A2535; }
.thumbnail .caption p a { color: #1A2535; }
.thumbnail .caption p a:hover { color: #0091D5; }

/* ============================================
   XZOOM (Product detail zoom)
   ============================================ */
.xzoom-container { border-radius: 12px; overflow: hidden; }
.xzoom-thumbs img { border-radius: 6px; border: 2px solid #e8e8e8; cursor: pointer; transition: border-color 0.3s; }
.xzoom-thumbs img:hover, .xzoom-thumbs img.active { border-color: #0091D5; }

/* ============================================
   MISC / UTILITY
   ============================================ */
.text-c--main { color: #0091D5; }
.bg--c-main { background: #0091D5; }
.plr--0 { padding-left: 0; padding-right: 0; }
.remove-p-xs { }
@media (max-width: 768px) { .remove-p-xs { padding: 0; } .plr--0 { padding-left: 15px; padding-right: 15px; } }
.gutter--10 > [class*="col-"] { padding-left: 5px; padding-right: 5px; }
.display-flex-center { display: flex; align-items: center; }
.d-flex { display: flex; align-items: center; gap: 10px; }
.m-zeropad { margin: 0; padding: 0; }
.hide { display: none; }
.error { color: #e74c3c; }
.text-white { color: #fff; }
a.btn-link { color: #0091D5; }
a.btn-link:hover { color: #007BB8; }

/* ============================================
   CALL TO ACTION (legacy)
   ============================================ */
.call-to-action { background: #0091D5; color: #fff; }
.call-to-action h2, .call-to-action h3 { color: #fff; font-weight: 700; }
.call-to-action .btn-primary { background: #FF6B00; border: none; }
.call-to-action .btn-primary:hover { background: #E55E00; }
.call-to-action .note { margin-top: 15px; opacity: 0.8; }

/* Header cart button (legacy) */
.header--cart-btn .btn-ink { background: #0091D5; color: #fff; border-radius: 8px; padding: 8px 14px; font-weight: 600; }
.header--cart-btn .btn-ink:hover { background: #007BB8; }

/* ============================================
   PRODUCT OTP MODAL
   ============================================ */
#mobileOtp { letter-spacing: 12px; font-size: 20px; font-weight: 700; text-align: center; }
.mobileModalMain { max-width: 420px; margin: 80px auto; }
.mobileModalMain .modal-content { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.mModalProductPage { padding: 0; }
.mModalHead { background: linear-gradient(135deg, #004E7C 0%, #0091D5 100%); padding: 35px 30px 25px; text-align: center; color: #fff; position: relative; }
.mModalHead h4 { font-size: 14px; font-weight: 400; margin: 0 0 8px; opacity: 0.85; letter-spacing: 0.5px; }
.mModalHead h2 { font-size: 22px; font-weight: 700; margin: 0; line-height: 1.3; }
.btn-back { position: absolute; left: 15px; top: 15px; color: rgba(255,255,255,0.8); font-size: 14px; background: none; border: none; cursor: pointer; padding: 5px 10px; transition: color 0.3s; }
.btn-back:hover { color: #fff; }
.mModalBody { padding: 25px 30px 15px; }
.mModalBody .mobile-section span { font-size: 13px; color: #888; display: block; margin-top: 8px; }
.mModalBody .mobile-section span .mobCheckIcon { color: #25D366; margin-right: 4px; }
.mModalBody .form-control { border: 1px solid #ddd; border-radius: 10px; padding: 12px 15px; font-size: 15px; height: auto; transition: border-color 0.3s, box-shadow 0.3s; }
.mModalBody .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }
.mModalBody .otp-section h4 { font-size: 14px; color: #555; margin-bottom: 10px; }
.mModalBody .otp-section .form-control { width: 180px; height: 50px; margin: 15px auto; display: inline-block; letter-spacing: 12px; font-size: 20px; font-weight: 700; text-align: center; border-radius: 10px; }
.mModalBody .name-section { margin-top: 12px; }
.mModalBody label.error { color: #e74c3c; font-size: 13px; margin-top: 5px; }
.mModalFooter { padding: 15px 30px 25px; text-align: center; }
.mModalFooter .popup-btn { background: linear-gradient(135deg, #0091D5, #007BB8); color: #fff; border: none; border-radius: 10px; padding: 14px 30px; font-size: 16px; font-weight: 600; width: 100%; cursor: pointer; transition: transform 0.2s, box-shadow 0.3s; }
.mModalFooter .popup-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,145,213,0.35); }
.mModalFooter .popup-btn:active { transform: translateY(0); }
#closeMModal { position: absolute; right: 12px; top: 10px; color: rgba(255,255,255,0.7); font-size: 20px; background: none; border: none; cursor: pointer; z-index: 1; }
#closeMModal:hover { color: #fff; }

/* intl-tel-input overrides */
.mModalBody .intl-tel-input, .mModalBody .iti { width: 100%; }
.iti { width: 100% !important; display: block !important; }
.iti .form-control { width: 100% !important; }
.form-group .iti { margin-bottom: 0; }
.form-group .iti + .error,
.form-group .iti + span + .error,
.form-group #phone-error + .error,
.form-group label.error[for="uPhone"],
.form-group div.error[for="uPhone"] { display: block; clear: both; }
#phone-error { display: block; }
.mModalBody .iti__selected-flag { border-radius: 10px 0 0 10px; padding-left: 12px; }

/* ============================================
   PRODUCT DETAIL PAGE - Additional
   ============================================ */
.product--single { margin-bottom: 30px; }
.product--img-gallery { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 15px; }
.product--img-gallery img.xzoom { max-width: 100%; border-radius: 8px; }
.product--summery { padding-left: 15px; }
.product--summery .desc { margin-bottom: 20px; }
.product--summery table { font-size: 14px; }
.product--summery table td { padding: 6px 8px; vertical-align: top; }
.productPageTitle h2 { font-size: 22px; font-weight: 700; color: #1A2535; margin-bottom: 20px; line-height: 1.4; }
.productPageTitle h2 small a { color: #0091D5; font-size: 13px; }
.left_main { position: relative; }
.left_title { font-size: 22px; font-weight: 700; color: #1A2535; }
.prise-view-btn a { color: #0091D5; font-weight: 600; cursor: pointer; }
.prise-view-btn a:hover { color: #007BB8; text-decoration: underline; }
.get-latest-price { color: #0091D5; text-decoration: underline; font-weight: 700; }
.get-latest-price:hover { text-decoration: none; color: #007BB8; }

/* Product detail tabs */
.product--details-nav .nav-tabs { border-bottom: 2px solid #e8e8e8; margin-bottom: 0; }
.product--details-nav .nav-tabs > li { margin-bottom: -2px; }
.product--details-content { padding: 20px 0; }

/* Share button */
.a2a_dd { color: #0091D5; }
.a2a_dd:hover { color: #007BB8; }

/* Product Image */
.product--img { border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.product--img img { width: 100%; border-radius: 12px; }

/* About Us page */
.about-us--content { font-size: 15px; color: #555; line-height: 1.8; }
.about-us--content h2, .about-us--content h3 { color: #1A2535; font-weight: 700; margin-bottom: 15px; }

/* Google Translate */
.google-lang-width { float: right; }

/* Carousel (Bootstrap 3 inner pages) */
.carousel-inner .item img { width: 100%; }
.carousel-control { background: none !important; }
.carousel-indicators li { border-color: #0091D5; }
.carousel-indicators .active { background: #0091D5; }

/* ============================================
   RESPONSIVE INNER PAGES
   ============================================ */
@media (max-width: 992px) {
    .product--summery { padding-left: 0; margin-top: 20px; }
    .ProductCard { flex-direction: column; }
    .ProductCard .productImage { width: 100%; height: 180px; }
}
@media (max-width: 768px) {
    .section--title h2 { font-size: 22px; }
    .team--members .row { flex-direction: column; }
    .contact-box { padding: 0; }
    .productPageTitle h2 { font-size: 18px; }
    .product--img-gallery { margin-bottom: 20px; }
}

/* ============================================
   FOLLOW US PAGE (v2)
   ============================================ */
.v2-follow-section { padding: 80px 0; background: #F7FAFC; }
.v2-social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.v2-social-card { display: block; background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.v2-social-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.v2-social-cover { height: 180px; background-size: cover; background-position: center; transition: transform 0.4s; }
.v2-social-card:hover .v2-social-cover { transform: scale(1.03); }
.v2-social-info { padding: 20px; display: flex; align-items: center; gap: 15px; }
.v2-social-icon { font-size: 28px; color: #0091D5; flex-shrink: 0; }
.v2-social-icon i { font-size: 28px; }
.v2-social-info h4 { font-size: 16px; font-weight: 700; color: #1A2535; margin: 0; }
.v2-redirect-notice { text-align: center; padding: 20px; background: #E8F5FC; border-radius: 12px; margin-bottom: 30px; font-size: 16px; color: #0091D5; font-weight: 600; }
@media (max-width: 768px) { .v2-social-grid { grid-template-columns: 1fr; } }
@media (max-width: 992px) { .v2-social-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   PAYMENT METHOD PAGE (v2)
   ============================================ */
.v2-payment-section { padding: 80px 0; background: #F7FAFC; }
.v2-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 800px; margin: 0 auto; }
.v2-payment-card { background: #fff; border: 2px solid #e8e8e8; border-radius: 16px; padding: 35px 25px; text-align: center; cursor: pointer; transition: all 0.3s ease; position: relative; }
.v2-payment-card:hover { border-color: #0091D5; box-shadow: 0 8px 25px rgba(0,145,213,0.12); transform: translateY(-4px); }
.v2-payment-card.selected { border-color: #0091D5; background: #f0f8ff; box-shadow: 0 8px 25px rgba(0,145,213,0.15); }
.v2-payment-card input[type="radio"] { position: absolute; top: 15px; right: 15px; width: 18px; height: 18px; accent-color: #0091D5; }
.v2-payment-icon { margin-bottom: 15px; }
.v2-payment-icon img { height: 50px; object-fit: contain; }
.v2-payment-card h4 { font-size: 16px; font-weight: 700; color: #1A2535; margin-bottom: 6px; }
.v2-payment-card p { font-size: 13px; color: #999; margin: 0; }
@media (max-width: 768px) { .v2-payment-grid { grid-template-columns: 1fr; max-width: 350px; } }

/* ============================================
   PAYMENT STATUS PAGE (v2)
   ============================================ */
.v2-payment-status { padding: 80px 0; background: #F7FAFC; }
.v2-status-card { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 50px 40px; text-align: center; box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.v2-status-icon { font-size: 72px; margin-bottom: 20px; }
.v2-status-success .v2-status-icon { color: #25D366; }
.v2-status-failure .v2-status-icon { color: #e74c3c; }
.v2-status-card h2 { font-size: 28px; font-weight: 800; color: #1A2535; margin-bottom: 10px; }
.v2-status-subtitle { font-size: 15px; color: #666; margin-bottom: 25px; }
.v2-status-details { background: #F7FAFC; border-radius: 12px; padding: 20px; margin-bottom: 25px; text-align: left; }
.v2-detail-row { padding: 8px 0; border-bottom: 1px solid #eee; font-size: 14px; color: #555; display: flex; justify-content: space-between; }
.v2-detail-row:last-child { border: none; }
.v2-detail-row strong { color: #1A2535; }
.v2-status-contact { margin-bottom: 25px; }
.v2-status-contact p { font-size: 14px; color: #666; margin-bottom: 6px; }
.v2-status-contact p i { color: #0091D5; margin-right: 8px; width: 16px; text-align: center; }

/* ============================================
   TRUSTED CUSTOMERS PAGE (v2)
   ============================================ */
.v2-trusted-section { padding: 60px 0; }
.v2-client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.v2-client-card { background: #fff; border: 2px solid #e8e8e8; border-radius: 14px; overflow: hidden; padding: 15px; text-align: center; transition: all 0.3s ease; }
.v2-client-card:hover { border-color: #0091D5; box-shadow: 0 8px 25px rgba(0,145,213,0.12); transform: translateY(-4px); }
.v2-client-card img { width: 100%; height: auto; border-radius: 8px; filter: grayscale(40%); transition: filter 0.3s; }
.v2-client-card:hover img { filter: grayscale(0%); }
@media (max-width: 992px) { .v2-client-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .v2-client-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   DOWNLOAD CATALOGUE PAGE (v2)
   ============================================ */
.v2-download-section { padding: 80px 0; background: #F7FAFC; }
.v2-brochure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.v2-brochure-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; transition: all 0.3s ease; }
.v2-brochure-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.v2-brochure-preview { height: 200px; background: #f7fafc; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
.v2-brochure-preview img { max-height: 170px; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.v2-brochure-card:hover .v2-brochure-preview img { transform: scale(1.05); }
.v2-brochure-body { padding: 18px; text-align: center; }
.v2-brochure-body h4 { font-size: 14px; font-weight: 600; color: #1A2535; margin-bottom: 12px; min-height: 38px; line-height: 1.4; }
.v2-brochure-body .btn { font-size: 13px; padding: 8px 18px; }
@media (max-width: 992px) { .v2-brochure-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .v2-brochure-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT DETAIL PAGE (v2 - Clean Redesign)
   ============================================ */
.v2-pd { padding: 25px 0 60px; background: #f8fafb; }
.v2-pd-breadcrumb { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.v2-pd-translate { flex-shrink: 0; }
.v2-edit-link { color: #0091D5; font-size: 13px; margin-left: 8px; }

/* Main Product Card */
.v2-pd-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.v2-pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Gallery */
.v2-pd-gallery-col { }
.v2-pd-main-image { background: #F7FAFC; border-radius: 14px; padding: 20px; display: flex; align-items: center; justify-content: center; min-height: 350px; overflow: hidden; }
.v2-pd-main-image img.xzoom { max-width: 100%; max-height: 400px; object-fit: contain; border-radius: 8px; }
.v2-pd-thumbs { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.v2-pd-thumb { display: block; width: 68px; height: 68px; border: 2px solid #e8e8e8; border-radius: 10px; overflow: hidden; background: #F7FAFC; display: flex; align-items: center; justify-content: center; transition: border-color 0.3s, box-shadow 0.3s; }
.v2-pd-thumb:hover, .v2-pd-thumb.active { border-color: #0091D5; box-shadow: 0 2px 8px rgba(0,145,213,0.2); }
.v2-pd-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Info Column */
.v2-pd-info-col { }
.v2-pd-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.v2-pd-title-row h1 { font-size: 22px; font-weight: 800; color: #1A2535; line-height: 1.35; margin: 0; flex: 1; }
.v2-pd-share a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #E8F5FC; color: #0091D5; border-radius: 10px; font-size: 18px; transition: all 0.25s; }
.v2-pd-share a:hover { background: #0091D5; color: #fff; }
.v2-pd-itemcode { font-size: 13px; color: #888; margin-bottom: 16px; }
.v2-pd-itemcode span { font-weight: 600; color: #666; }

/* Price Box */
.v2-pd-price-box { background: linear-gradient(135deg, #f0f8ff 0%, #e8f5fc 100%); border: 1px solid #d0e8f5; border-radius: 12px; padding: 18px; margin-bottom: 18px; }
.v2-pd-price-main { }
.v2-pd-price-line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 6px 0; }
.v2-pd-price-tag { font-size: 13px; font-weight: 600; color: #666; min-width: 100px; }
.v2-pd-price-value { font-size: 26px; font-weight: 800; color: #1A2535; }
.v2-pd-price-gst { font-size: 13px; font-weight: 600; color: #666; }
.v2-pd-price-mrp { font-size: 13px; color: #999; text-decoration: line-through; }
.v2-pd-price-final { font-size: 14px; color: #666; }
.v2-pd-price-final small { font-size: 12px; color: #999; }
.v2-pd-unlock { display: inline-flex; align-items: center; gap: 6px; color: #0091D5; font-weight: 600; font-size: 14px; background: #fff; padding: 6px 16px; border-radius: 8px; border: 1px solid #0091D5; transition: all 0.25s; }
.v2-pd-unlock:hover { background: #0091D5; color: #fff; text-decoration: none; }
.v2-pd-stock { margin-top: 10px; padding-top: 10px; border-top: 1px solid #d0e8f5; font-size: 14px; color: #27ae60; }
.v2-pd-stock i { margin-right: 4px; }
.v2-pd-payment { margin-bottom: 16px; }

/* Action Buttons */
.v2-pd-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.v2-pd-actions-row { display: flex; gap: 10px; }
.v2-pd-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; height: 44px; border-radius: 10px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.25s; text-decoration: none; white-space: nowrap; }
.v2-pd-btn i { font-size: 16px; }
.v2-pd-btn-wa { background: #25D366; color: #fff; }
.v2-pd-btn-wa:hover { background: #1DA851; color: #fff; }
.v2-pd-btn-brochure { background: #f5f5f5; color: #555; border: 1px solid #ddd; }
.v2-pd-btn-brochure:hover { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.v2-pd-actions .productCartBtn { display: flex; align-items: center; gap: 12px; }
.v2-pd-actions .productCartBtn .v2-pd-btn-cart { height: 50px; padding: 0 36px; background: #0091D5; color: #fff; border-radius: 10px; font-size: 15px; font-weight: 700; letter-spacing: 0.3px; }
.v2-pd-actions .productCartBtn .v2-pd-btn-cart:hover { background: #007bb5; box-shadow: 0 4px 14px rgba(0,145,213,0.3); }
.v2-pd-actions .cartQuantity { height: 50px; border-radius: 10px; overflow: hidden; border: 1px solid #ddd; display: inline-flex; background: #fff; }
.v2-pd-actions .cartQuantity .quantity__minus,
.v2-pd-actions .cartQuantity .quantity__plus { width: 44px; height: 100%; background: #fff; color: #0091D5; font-size: 22px; font-weight: 600; border-radius: 0; border: none; cursor: pointer; transition: background 0.2s; }
.v2-pd-actions .cartQuantity .quantity__minus:hover,
.v2-pd-actions .cartQuantity .quantity__plus:hover { background: #E8F5FC; }
.v2-pd-actions .cartQuantity .quantity__input { width: 48px; height: 100%; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee; font-size: 16px; font-weight: 700; color: #1A2535; text-align: center; background: #fafafa; }

/* Video */
.v2-pd-video { margin-top: 20px; border-radius: 14px; overflow: hidden; background: #000; }
.v2-pd-video iframe { width: 100%; height: 260px; display: block; }

/* ---- Tabs ---- */
.v2-pd-tabs-wrapper { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; margin-bottom: 30px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.v2-pd-tabs-nav { display: flex; border-bottom: 2px solid #f0f0f0; background: #fafbfc; }
.v2-pd-tab { padding: 16px 28px; font-size: 14px; font-weight: 600; color: #666; text-decoration: none; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.25s; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.v2-pd-tab:hover { color: #0091D5; background: #f0f8ff; }
.v2-pd-tab.active { color: #0091D5; border-bottom-color: #0091D5; background: #fff; }
.v2-pd-tab i { font-size: 15px; }
.v2-pd-tabs-content { padding: 0; }
.v2-pd-tab-pane { display: none; padding: 28px; }
.v2-pd-tab-pane.active { display: block; }

/* Spec Table */
.v2-spec-table { width: 100%; border-collapse: collapse; }
.v2-spec-table tr { border-bottom: 1px solid #f0f0f0; }
.v2-spec-table tr:last-child { border: none; }
.v2-spec-table th { padding: 12px 16px; background: #F7FAFC; color: #1A2535; font-size: 14px; font-weight: 600; width: 35%; vertical-align: top; border-right: 1px solid #f0f0f0; }
.v2-spec-table td { padding: 12px 16px; color: #555; font-size: 14px; line-height: 1.6; }
.v2-spec-table tr:first-child th { border-radius: 8px 0 0 0; }
.v2-spec-table tr:first-child td { border-radius: 0 8px 0 0; }

/* Description Content */
.v2-pd-desc-content { font-size: 15px; line-height: 1.8; color: #555; }
.v2-pd-desc-content img { max-width: 100%; border-radius: 8px; margin: 10px 0; }
.v2-pd-desc-content table { width: 100%; border-collapse: collapse; margin: 10px 0; }
.v2-pd-desc-content table th, .v2-pd-desc-content table td { padding: 10px 14px; border: 1px solid #e8e8e8; font-size: 14px; }

/* ---- Inquiry Form ---- */
.v2-pd-inquiry { background: #fff; border: 1px solid #e8e8e8; border-radius: 16px; padding: 30px; margin-bottom: 30px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.v2-pd-inquiry-header { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; }
.v2-pd-inquiry-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #0091D5, #004E7C); color: #fff; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.v2-pd-inquiry-header h3 { font-size: 20px; font-weight: 700; color: #1A2535; margin: 0 0 4px; }
.v2-pd-inquiry-header p { font-size: 14px; color: #888; margin: 0; }
.v2-pd-inquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-pd-inquiry-grid label { font-size: 13px; font-weight: 600; color: #1A2535; margin-bottom: 6px; display: block; }
.v2-pd-captcha-row { display: flex; align-items: flex-end; gap: 12px; }
.v2-pd-captcha-inner { display: flex; align-items: center; gap: 10px; flex: 1; }
.v2-pd-captcha-inner .form-control { max-width: 140px; }
.v2-pd-captcha-display { font-size: 20px; font-weight: 800; color: #1A2535; background: #F7FAFC; padding: 8px 16px; border-radius: 10px; border: 1px solid #e8e8e8; white-space: nowrap; min-width: 100px; text-align: center; }
.v2-pd-captcha-refresh { font-size: 18px; color: #0091D5; transition: transform 0.3s; flex-shrink: 0; }
.v2-pd-captcha-refresh:hover { transform: rotate(180deg); }
.v2-pd-submit-row { display: flex; align-items: flex-end; }
.v2-pd-submit-row .btn { white-space: nowrap; }
.v2-pd-submit-row { display: flex; align-items: flex-end; }
.v2-pd-submit-row .btn { white-space: nowrap; }

/* ---- Related Products ---- */
.v2-pd-related { margin-bottom: 30px; }
.v2-pd-related h3 { font-size: 20px; font-weight: 700; color: #1A2535; margin-bottom: 22px; }
.v2-pd-related h3 i { color: #0091D5; margin-right: 8px; }
.v2-pd-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ---- OTP Modal ---- */
.v2-otp-modal { border-radius: 20px; overflow: hidden; max-width: 420px; margin: 60px auto; }
.v2-otp-close { position: absolute; top: 16px; right: 16px; background: rgba(0,0,0,0.06); border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; color: #999; cursor: pointer; z-index: 10; transition: all 0.25s; }
.v2-otp-close:hover { background: rgba(0,0,0,0.1); color: #333; }
.v2-otp-header { background: linear-gradient(135deg, #004E7C, #0091D5); padding: 35px 30px 25px; text-align: center; color: #fff; }
.v2-otp-header h3 { font-size: 16px; font-weight: 400; margin: 0 0 6px; opacity: 0.85; }
.v2-otp-header h2, .v2-otp-header p { font-size: 14px; opacity: 0.8; margin: 0; }
.v2-otp-header p { font-size: 22px; font-weight: 800; margin: 0; opacity: 1; }
.v2-otp-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.v2-otp-back { background: rgba(255,255,255,0.15); border: none; color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 13px; cursor: pointer; position: absolute; top: 16px; left: 16px; }
.v2-otp-back:hover { background: rgba(255,255,255,0.25); }
.v2-otp-body { padding: 25px 30px 10px; }
.v2-otp-hint { display: block; font-size: 13px; color: #888; margin-bottom: 12px; }
.v2-otp-phone-wrap { margin-bottom: 12px; }
/* intl-tel-input styling inside modal */
.v2-otp-phone-wrap .iti { width: 100%; }
.v2-otp-phone-wrap .iti .form-control { width: 100%; height: 46px; border: 2px solid #e0e0e0; border-radius: 10px; font-size: 16px; font-weight: 600; padding-left: 52px; letter-spacing: 1px; transition: border-color 0.3s; color: #1A2535; }
.v2-otp-phone-wrap .iti .form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }
.v2-otp-phone-wrap .iti__flag-container { border-radius: 10px 0 0 10px; }
.v2-otp-phone-wrap .iti__selected-flag { padding: 0 8px 0 14px; border-radius: 10px 0 0 10px; }
.v2-otp-phone-wrap .iti__country-list { border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); max-height: 200px; z-index: 10000; }
.v2-otp-phone-wrap .iti__country { padding: 8px 14px; }
.v2-otp-phone-wrap .iti__country:hover { background: #E8F5FC; }
.v2-otp-phone-wrap .iti__country.iti__highlight { background: #E8F5FC; }
.v2-otp-secure { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #27ae60; }
.v2-otp-secure i { font-size: 14px; }
.v2-otp-verify { text-align: center; padding: 10px 0; }
.v2-otp-verify-icon { width: 50px; height: 50px; background: #E8F5FC; color: #0091D5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; }
.v2-otp-verify h4 { font-size: 18px; font-weight: 700; color: #1A2535; margin: 0 0 8px; }
.v2-otp-verify p { font-size: 14px; color: #888; margin: 0 0 18px; }
.v2-otp-input { width: 180px !important; height: 50px; text-align: center; font-size: 24px; font-weight: 700; letter-spacing: 8px; border-radius: 12px; margin: 0 auto 10px; display: block; }
.v2-otp-footer { padding: 10px 30px 25px; }
.v2-otp-footer .btn { border-radius: 12px; padding: 14px; font-size: 16px; font-weight: 700; }

@media (max-width: 768px) {
    .v2-pd-grid { grid-template-columns: 1fr; gap: 20px; }
    .v2-pd-card { padding: 18px; }
    .v2-pd-title-row h1 { font-size: 18px; }
    .v2-pd-main-image { min-height: 220px; }
    .v2-pd-actions-row { flex-wrap: wrap; }
    .v2-pd-actions .cartQuantity { width: 100%; }
    .v2-pd-tabs-nav { overflow-x: auto; }
    .v2-pd-tab { padding: 12px 18px; font-size: 13px; }
    .v2-pd-inquiry-grid { grid-template-columns: 1fr; }
    .v2-pd-inquiry-header { flex-direction: column; text-align: center; }
    .v2-pd-related-grid { grid-template-columns: repeat(2, 1fr); }
    .v2-pd-breadcrumb { flex-direction: column; align-items: flex-start; gap: 8px; }
    .v2-otp-modal { margin: 20px; }
}

/* ============================================
   PRODUCT LISTING PAGE (v2)
   ============================================ */
.v2-products-section { padding: 30px 0 60px; }
.v2-products-layout { display: grid; grid-template-columns: 250px 1fr 280px; gap: 25px; }

/* --- Sidebar --- */
.v2-sidebar { position: sticky; top: 120px; }
.v2-sidebar-widget { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; margin-bottom: 18px; overflow: hidden; }
.v2-sidebar-title { background: linear-gradient(135deg, #004E7C, #0091D5); color: #fff; padding: 14px 18px; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.v2-sidebar-title i.fa { font-size: 15px; }
.v2-sidebar-toggle { margin-left: auto; font-size: 12px; transition: transform 0.3s; }
.v2-sidebar-title[aria-expanded="false"] .v2-sidebar-toggle { transform: rotate(-90deg); }
.v2-category-list { list-style: none; padding: 0; margin: 0; }
.v2-category-list li { border-bottom: 1px solid #f0f0f0; }
.v2-category-list li:last-child { border: none; }
.v2-category-list li a { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px; color: #444; font-size: 13px; transition: all 0.25s; text-decoration: none; }
.v2-category-list li a:hover { background: #E8F5FC; color: #0091D5; padding-left: 22px; }
.v2-category-list li.active a { background: #E8F5FC; color: #0091D5; font-weight: 600; border-left: 3px solid #0091D5; }
.v2-cat-count { background: #f0f0f0; color: #666; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 12px; min-width: 28px; text-align: center; }
.v2-category-list li.active .v2-cat-count,
.v2-category-list li a:hover .v2-cat-count { background: #0091D5; color: #fff; }

/* Bestseller & Latest */
.v2-bestseller-list { padding: 10px; }
.v2-bestseller-item { display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-radius: 10px; transition: background 0.25s; text-decoration: none; }
.v2-bestseller-item:hover { background: #F7FAFC; }
.v2-bestseller-item img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; border: 1px solid #eee; flex-shrink: 0; }
.v2-bestseller-info { overflow: hidden; }
.v2-bestseller-name { display: block; font-size: 13px; font-weight: 600; color: #1A2535; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.v2-bestseller-cat { font-size: 11px; color: #888; margin-top: 3px; display: block; }

/* --- Toolbar --- */
.v2-products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding: 10px 16px; background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; }
.v2-products-count { font-size: 14px; color: #666; font-weight: 500; }
.v2-view-toggle { display: flex; gap: 4px; }
.v2-view-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid #ddd; border-radius: 8px; background: #fff; color: #999; font-size: 16px; cursor: pointer; transition: all 0.25s; }
.v2-view-btn:hover { border-color: #0091D5; color: #0091D5; }
.v2-view-btn.active { background: #0091D5; border-color: #0091D5; color: #fff; }

/* --- Product Grid Cards --- */
.v2-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.v2-pcard { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; display: flex; flex-direction: column; }
.v2-pcard:hover { border-color: #0091D5; box-shadow: 0 8px 24px rgba(0,145,213,0.12); transform: translateY(-4px); }
.v2-pcard-img { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; background: #F7FAFC; overflow: hidden; padding: 12px; }
.v2-pcard-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.v2-pcard:hover .v2-pcard-img img { transform: scale(1.06); }
.v2-pcard-body { padding: 14px 16px 8px; flex: 1; }
.v2-pcard-code { font-size: 11px; color: #0091D5; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 5px; }
.v2-pcard-name { font-size: 14px; font-weight: 600; color: #1A2535; line-height: 1.4; text-decoration: none; display: block; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 39px; }
.v2-pcard-name:hover { color: #0091D5; }
.v2-pcard-footer { padding: 10px 14px 14px; border-top: 1px solid #f0f0f0; }
.v2-pcard-footer-row { display: flex; align-items: center; gap: 6px; }
.v2-pcard-footer .productCartBtn { flex: 1; min-width: 0; }
.v2-pcard-footer .btn-primary { font-size: 13px; padding: 8px 10px; border-radius: 8px; width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.v2-pcard-btns { display: flex; gap: 4px; flex-shrink: 0; }
.v2-pcard-icon-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: 15px; text-decoration: none; transition: all 0.25s; flex-shrink: 0; }
.v2-pcard-icon-btn.whatsapp { background: #e6f9ee; color: #25D366; }
.v2-pcard-icon-btn.whatsapp:hover { background: #25D366; color: #fff; }
.v2-pcard-icon-btn.view { background: #f0f0f0; color: #666; }
.v2-pcard-icon-btn.view:hover { background: #0091D5; color: #fff; }

/* Full-width product layout (no cart sidebar) */
.v2-products-layout-full { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }
.v2-products-content-full { min-width: 0; }
.v2-products-grid-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.v2-cart-float-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; background: #0091D5; color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.v2-cart-float-btn:hover { background: #007bb5; color: #fff; text-decoration: none; }
@media (max-width: 1024px) { .v2-products-grid-full { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .v2-products-layout-full { grid-template-columns: 1fr; }
  .v2-products-grid-full { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) { .v2-products-grid-full { grid-template-columns: 1fr; } }

.v2-pcard-footer .cartQuantity { display: none; }
.v2-pcard-footer .cartQuantity[style*="flex"] { display: flex !important; flex-direction: row !important; align-items: center !important; border: 1px solid #0091D5; border-radius: 8px; overflow: hidden; height: 34px; width: 100%; }
.v2-pcard-footer .cartQuantity .quantity__minus,
.v2-pcard-footer .cartQuantity .quantity__plus { display: flex !important; align-items: center; justify-content: center; flex: 1; height: 34px; background: #E8F5FC; color: #0091D5; font-size: 18px; font-weight: 700; text-decoration: none; transition: background 0.2s; cursor: pointer; padding: 0; border: none; }
.v2-pcard-footer .cartQuantity .quantity__minus:hover,
.v2-pcard-footer .cartQuantity .quantity__plus:hover { background: #0091D5; color: #fff; }
.v2-pcard-footer .cartQuantity .quantity__input { flex: 1; height: 34px; border: none; border-left: 1px solid #0091D5; border-right: 1px solid #0091D5; text-align: center; font-size: 14px; font-weight: 700; color: #1A2535; background: #fff; padding: 0; max-width: 50px; }

/* --- Product List View (toggle) --- */
.v2-products-list-view { display: flex; flex-direction: column; gap: 12px; }
.v2-products-list-view .v2-pcard { flex-direction: row; border-radius: 12px; }
.v2-products-list-view .v2-pcard-img { width: 120px; height: 100px; flex-shrink: 0; border-radius: 0; }
.v2-products-list-view .v2-pcard-body { padding: 12px 16px; }
.v2-products-list-view .v2-pcard-footer { border-top: none; border-left: 1px solid #f0f0f0; flex-direction: column; padding: 12px; justify-content: center; min-width: 140px; }

/* Quantity Controls */
.cartQuantity { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 8px; overflow: hidden; }
.quantity__minus, .quantity__plus { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: #f5f5f5; color: #333; font-size: 16px; font-weight: 700; text-decoration: none; transition: background 0.2s; cursor: pointer; }
.quantity__minus:hover, .quantity__plus:hover { background: #0091D5; color: #fff; }
.quantity__input { width: 40px; height: 32px; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; text-align: center; font-size: 14px; font-weight: 600; outline: none; }

/* Products loading indicator */
.v2-products-loading { text-align: center; padding: 20px; color: #888; font-size: 14px; }
.v2-products-loading i { margin-right: 6px; }

/* --- Cart Sidebar --- */
.v2-cart-sidebar { position: sticky; top: 120px; }
.v2-cart-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; }
.v2-cart-header { background: linear-gradient(135deg, #004E7C, #0091D5); color: #fff; padding: 14px 18px; font-size: 14px; font-weight: 700; }
.v2-cart-header i { margin-right: 6px; }
.v2-cart-empty-body { padding: 25px; text-align: center; }
.v2-cart-empty-body img { width: 100px; opacity: 0.6; margin-bottom: 12px; }
.v2-cart-empty-body p { font-size: 13px; color: #888; margin: 0; }
.v2-cart-list { list-style: none; padding: 0; margin: 0; max-height: 350px; overflow-y: auto; }
.v2-cart-list li { border-bottom: 1px solid #f0f0f0; }
.v2-cart-list li:last-child { border: none; }
.v2-cart-item { padding: 12px 16px; }
.v2-cart-item-info { margin-bottom: 8px; }
.v2-cart-item-code { font-size: 11px; color: #0091D5; font-weight: 600; display: block; }
.v2-cart-item-name { font-size: 13px; color: #333; line-height: 1.3; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2-cart-item .cartQuantity { display: inline-flex; }
.v2-cart-footer { padding: 16px; border-top: 1px solid #eee; }
.v2-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 14px; font-weight: 700; color: #1A2535; }
.v2-cart-footer .btn { border-radius: 8px; font-weight: 600; }

/* Cart visibility */
.cartWithItems { display: none; }

@media (max-width: 1024px) {
    .v2-products-layout { grid-template-columns: 220px 1fr; }
    .v2-cart-sidebar { display: none; }
    .v2-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .v2-products-layout { grid-template-columns: 1fr; }
    .v2-sidebar { position: static; }
    .v2-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .v2-pcard-img { height: 130px; }
    .v2-pcard-name { font-size: 13px; min-height: auto; }
    .v2-products-list-view .v2-pcard { flex-direction: column; }
    .v2-products-list-view .v2-pcard-img { width: 100%; height: 130px; }
    .v2-products-list-view .v2-pcard-footer { border-left: none; border-top: 1px solid #f0f0f0; flex-direction: row; min-width: auto; }
    .v2-view-toggle { display: none; }
}
@media (max-width: 480px) {
    .v2-products-grid { grid-template-columns: 1fr; }
}

/* ============================================
   INNER PAGES LAYOUT (Gallery, Certification, Categories)
   ============================================ */
.v2-inner-page { padding: 30px 0 60px; }
.v2-inner-layout { display: grid; grid-template-columns: 250px 1fr; gap: 25px; }
.v2-inner-content { }
.v2-page-header { margin-bottom: 25px; }
.v2-page-header h1 { font-size: 26px; font-weight: 700; color: #1A2535; margin: 0 0 10px; }
.v2-page-header h1 i { color: #0091D5; margin-right: 8px; }
.v2-page-header h2 { font-size: 26px; font-weight: 700; color: #1A2535; margin: 0 0 10px; }
.v2-page-header h2 i { color: #0091D5; margin-right: 8px; }
.v2-page-header .breadcrumb { background: none; padding: 0; margin: 0; font-size: 13px; }
.v2-page-header .breadcrumb a { color: #0091D5; }
.v2-page-header .breadcrumb .active { color: #888; }
.v2-page-subtitle { color: #666; font-size: 15px; margin-top: 5px; }
.v2-intro-text { background: #F7FAFC; border: 1px solid #e8e8e8; border-radius: 12px; padding: 20px; margin-bottom: 25px; }
.v2-intro-text p { font-size: 14px; color: #555; line-height: 1.7; margin: 0; }
.v2-gallery-grid { }
.v2-pagination { text-align: center; padding: 25px 0; }
.v2-pagination .pagination { display: inline-flex; gap: 4px; }
.v2-pagination .pagination li a { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border-radius: 8px; border: 1px solid #e8e8e8; color: #444; font-size: 14px; text-decoration: none; transition: all 0.25s; }
.v2-pagination .pagination li a:hover { background: #0091D5; color: #fff; border-color: #0091D5; }
.v2-pagination .pagination li.active a { background: #0091D5; color: #fff; border-color: #0091D5; }

@media (max-width: 768px) {
    .v2-inner-layout { grid-template-columns: 1fr; }
    .v2-page-header h1 { font-size: 22px; }
}

/* ============================================
   CART / GET QUOTES PAGE
   ============================================ */
.v2-cart-page { padding: 30px 0 60px; }
.v2-cart-table-wrap { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; overflow: hidden; margin-bottom: 30px; }
.v2-cart-table { margin: 0; }
.v2-cart-table thead th { background: linear-gradient(135deg, #004E7C, #0091D5); color: #fff; font-size: 13px; font-weight: 600; padding: 14px 16px; border: none; }
.v2-cart-table tbody td { padding: 14px 16px; vertical-align: middle; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.v2-cart-table tbody tr:hover { background: #F7FAFC; }
.v2-cart-form { background: #F7FAFC; border: 1px solid #e8e8e8; border-radius: 14px; padding: 30px; }
.v2-cart-form h3 { font-size: 20px; font-weight: 700; color: #1A2535; margin-bottom: 25px; }
.v2-cart-form h3 i { color: #0091D5; margin-right: 8px; }
.v2-cart-form label { font-size: 14px; font-weight: 600; color: #1A2535; margin-bottom: 6px; display: block; }
.v2-switch-field { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 1px solid #ddd; width: fit-content; }
.v2-switch-field input[type="radio"] { display: none; }
.v2-switch-field label { padding: 10px 24px; font-size: 14px; font-weight: 600; color: #666; background: #fff; cursor: pointer; transition: all 0.25s; margin: 0; }
.v2-switch-field input[type="radio"]:checked + label { background: #0091D5; color: #fff; }

/* ============================================
   CONTACT US PAGE
   ============================================ */
.v2-contact-page { padding: 40px 0 50px; }
.v2-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-bottom: 40px; }
.v2-team-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 25px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.3s, box-shadow 0.3s; }
.v2-team-card:hover { border-color: #0091D5; box-shadow: 0 4px 16px rgba(0,145,213,0.1); }
.v2-team-photo { flex-shrink: 0; }
.v2-team-photo img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid #E8F5FC; }
.v2-team-info h3 { font-size: 16px; font-weight: 700; color: #1A2535; margin: 0 0 4px; }
.v2-team-info h4 { font-size: 13px; font-weight: 600; color: #0091D5; margin: 0 0 8px; }
.v2-team-role { display: inline-block; background: #E8F5FC; color: #0091D5; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 12px; margin-bottom: 8px; }
.v2-team-contact { margin-bottom: 8px; }
.v2-team-contact a { display: block; color: #444; font-size: 13px; padding: 2px 0; text-decoration: none; }
.v2-team-contact a:hover { color: #0091D5; }
.v2-team-contact i { width: 18px; color: #0091D5; }
.v2-team-address { font-size: 12px; color: #888; line-height: 1.5; margin: 0; }

.v2-contact-form-section { padding: 50px 0 0; background: #F7FAFC; }
.v2-contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; align-items: start; }
.v2-contact-form-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 30px; }
.v2-contact-image { border-radius: 14px; overflow: hidden; }
.v2-contact-image img { width: 100%; border-radius: 14px; }
.v2-map { margin: 0; }
.v2-map iframe { display: block; }

@media (max-width: 768px) {
    .v2-team-grid { grid-template-columns: 1fr; }
    .v2-team-card { flex-direction: column; text-align: center; }
    .v2-contact-grid { grid-template-columns: 1fr; }
    .v2-contact-image { display: none; }
}

/* ============================================
   CONTENT PAGES (Career, Equipment, Policy, etc.)
   ============================================ */
.v2-content-section { padding: 40px 0 60px; }
.v2-content-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 30px; line-height: 1.8; font-size: 15px; color: #444; }
.v2-content-card h1, .v2-content-card h2, .v2-content-card h3 { color: #1A2535; margin-bottom: 15px; }
.v2-content-card table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.v2-content-card table th { background: #F7FAFC; padding: 10px 14px; font-size: 14px; font-weight: 600; border: 1px solid #e8e8e8; color: #1A2535; }
.v2-content-card table td { padding: 10px 14px; font-size: 14px; border: 1px solid #e8e8e8; }
.v2-content-card img { max-width: 100%; border-radius: 8px; }

/* About Us Hero */
.v2-about-hero { background: linear-gradient(135deg, #004E7C 0%, #0091D5 100%); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.v2-about-hero h1 { font-size: 36px; font-weight: 800; color: #fff; margin: 0 0 10px; }
.v2-about-hero p { font-size: 17px; color: rgba(255,255,255,0.8); margin: 0; }

/* About Grid */
.v2-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.v2-about-image img { width: 100%; border-radius: 14px; }

/* FAQ Accordion */
.v2-about-faq { }
.v2-faq-item { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; }
.v2-faq-item:hover { border-color: #0091D5; }
.v2-faq-question { padding: 18px 20px; font-size: 15px; font-weight: 600; color: #1A2535; cursor: pointer; display: flex; align-items: center; gap: 10px; }
.v2-faq-question i { color: #0091D5; transition: transform 0.3s; font-size: 12px; }
.v2-faq-item.active .v2-faq-question i { transform: rotate(90deg); }
.v2-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 20px; }
.v2-faq-item.active .v2-faq-answer { max-height: 500px; padding: 0 20px 18px; }
.v2-faq-answer p { font-size: 14px; color: #666; line-height: 1.7; }

/* Testimonials */
.v2-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.v2-testimonial-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 30px; position: relative; transition: border-color 0.3s, box-shadow 0.3s; }
.v2-testimonial-card:hover { border-color: #0091D5; box-shadow: 0 4px 16px rgba(0,145,213,0.1); }
.v2-testimonial-quote { color: #0091D5; font-size: 28px; opacity: 0.3; margin-bottom: 10px; }
.v2-testimonial-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 15px; font-style: italic; }
.v2-testimonial-author { font-size: 14px; font-weight: 700; color: #1A2535; }

/* Google Pay Tabs */
.v2-gpay-tabs { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 1px solid #e8e8e8; }
.v2-gpay-tab { flex: 1; padding: 12px 20px; text-align: center; font-size: 14px; font-weight: 600; color: #666; background: #fff; text-decoration: none; transition: all 0.25s; }
.v2-gpay-tab:hover { background: #F7FAFC; color: #0091D5; }
.v2-gpay-tab.active { background: #0091D5; color: #fff; }

/* Bootstrap 3 compatibility — provide missing BS3 grid/utilities via v2 CSS */
.row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }
.row::after { content: ""; display: table; clear: both; }
[class*="col-"] { position: relative; padding-left: 15px; padding-right: 15px; float: left; min-height: 1px; }
.col-md-1 { width: 8.333%; } .col-md-2 { width: 16.666%; } .col-md-3 { width: 25%; } .col-md-4 { width: 33.333%; }
.col-md-5 { width: 41.666%; } .col-md-6 { width: 50%; } .col-md-7 { width: 58.333%; } .col-md-8 { width: 66.666%; }
.col-md-9 { width: 75%; } .col-md-10 { width: 83.333%; } .col-md-11 { width: 91.666%; } .col-md-12 { width: 100%; }
.col-sm-1 { width: 8.333%; } .col-sm-2 { width: 16.666%; } .col-sm-3 { width: 25%; } .col-sm-4 { width: 33.333%; }
.col-sm-5 { width: 41.666%; } .col-sm-6 { width: 50%; } .col-sm-7 { width: 58.333%; } .col-sm-8 { width: 66.666%; }
.col-sm-9 { width: 75%; } .col-sm-10 { width: 83.333%; } .col-sm-11 { width: 91.666%; } .col-sm-12 { width: 100%; }
.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; width: 100%; box-sizing: border-box; }
.form-control { display: block; width: 100%; padding: 10px 14px; font-size: 14px; border: 1px solid #ddd; border-radius: 8px; transition: border-color 0.3s, box-shadow 0.3s; box-sizing: border-box; outline: none; font-family: 'Inter', sans-serif; }
.form-control:focus { border-color: #0091D5; box-shadow: 0 0 0 3px rgba(0,145,213,0.1); }
.form-group { margin-bottom: 15px; }
.btn { display: inline-block; padding: 10px 24px; font-size: 14px; font-weight: 600; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; transition: all 0.3s; font-family: 'Inter', sans-serif; text-align: center; }
.btn-primary { background: #0091D5; color: #fff; }
.btn-primary:hover { background: #007BB8; color: #fff; }
.btn-default { background: #f0f0f0; color: #444; }
.btn-default:hover { background: #e0e0e0; }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 14px 30px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hide, .hidden { display: none !important; }
.breadcrumb { list-style: none; padding: 0; margin: 0; display: flex; gap: 5px; font-size: 13px; flex-wrap: wrap; }
.breadcrumb li::after { content: "/"; margin-left: 5px; color: #ccc; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li a { color: #0091D5; text-decoration: none; }
.breadcrumb li.active { color: #888; }
.breadcrumb li h5 { margin: 0; font-size: 13px; font-weight: 400; display: inline; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 14px; border: 1px solid #e8e8e8; }
.table-bordered th, .table-bordered td { border: 1px solid #e8e8e8; }
.table-striped tbody tr:nth-child(odd) { background: #F7FAFC; }
.table thead th { background: #F7FAFC; font-weight: 600; font-size: 14px; }
.error { color: #e74c3c; }
label.error { color: #e74c3c; font-size: 13px; margin-top: 4px; display: block; }
/* Bootstrap 3 Modal CSS (required for JS modals) */
.modal { display: none; overflow: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; }
.modal.fade .modal-dialog { transform: translate(0, -25%); transition: transform 0.3s ease-out; }
.modal.in .modal-dialog { transform: translate(0, 0); }
.modal-open .modal { overflow-x: hidden; overflow-y: auto; }
.modal-dialog { position: relative; width: auto; margin: 30px auto; max-width: 600px; }
.modal-sm { max-width: 400px; }
.modal-lg { max-width: 900px; }
.modal-content { position: relative; background: #fff; border: none; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); outline: 0; overflow: hidden; }
.modal-header { padding: 20px 24px 15px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; }
.modal-header .modal-title { font-size: 18px; font-weight: 700; color: #1A2535; margin: 0; }
.modal-header .close { background: none; border: none; font-size: 24px; color: #999; cursor: pointer; padding: 0; line-height: 1; }
.modal-header .close:hover { color: #333; }
.modal-body { padding: 24px; }
.modal-footer { padding: 15px 24px 20px; border-top: 1px solid #eee; text-align: right; }
.modal-footer .btn { margin-left: 8px; }
.modal-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1040; }
.modal-backdrop.fade { opacity: 0; transition: opacity 0.15s; }
.modal-backdrop.in { opacity: 1; }
.modal-open { overflow: hidden; }
.fade { opacity: 0; transition: opacity 0.15s linear; }
.fade.in { opacity: 1; }
.collapse { display: none; }
.collapse.in { display: block; }
.collapsing { position: relative; height: 0; overflow: hidden; transition: height 0.35s ease; }
.d-flex { display: flex; align-items: center; }

@media (max-width: 768px) {
    .v2-about-grid { grid-template-columns: 1fr; }
    .v2-about-hero h1 { font-size: 26px; }
    .v2-testimonials-grid { grid-template-columns: 1fr; }
    [class*="col-md-"] { width: 100%; }
    [class*="col-sm-"] { width: 100%; }
}
