/* =============================================
   VHANDY ECO - Inner Pages CSS
   ============================================= */

/* PAGE BANNER */
.page-banner { background: linear-gradient(135deg, #3A5A40 0%, #4A7050 50%, #5A8060 100%); padding: 60px 0; text-align: center; }
.page-banner.small { padding: 30px 0; text-align: left; }
.page-banner h1 { font-family: var(--font-heading); font-size: 38px; color: var(--white); margin-bottom: 10px; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; }

/* SHOP */
.shop-section { padding: 60px 0; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; }
.sidebar-widget { background: var(--cream); border-radius: var(--radius); padding: 25px; margin-bottom: 20px; }
.sidebar-widget h4 { font-size: 18px; font-weight: 600; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.cat-list li { margin-bottom: 8px; }
.cat-list a { display: flex; justify-content: space-between; padding: 8px 12px; border-radius: 8px; font-size: 14px; transition: var(--transition); }
.cat-list a:hover, .cat-list a.active { background: var(--green); color: var(--white); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.result-count { font-size: 14px; color: var(--gray); }
.shop-sort select { padding: 8px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; outline: none; }
.shop-grid { grid-template-columns: repeat(3, 1fr); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 60px; color: var(--gray-light); margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; margin-bottom: 10px; }
.empty-state p { color: var(--gray); margin-bottom: 20px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.page-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-size: 14px; font-weight: 500; background: var(--cream); color: var(--charcoal); transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--green); color: var(--white); }

/* PRODUCT DETAIL */
.product-detail { padding: 50px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.pd-main-img { border-radius: var(--radius); overflow: hidden; background: #f8f8f8; aspect-ratio: 1; position: relative; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.pd-main-img:hover img { transform: scale(1.02); }

/* Zoom Icon on Main Image */
.pd-zoom-icon { position: absolute; bottom: 15px; right: 15px; width: 42px; height: 42px; border-radius: 50%; background: rgba(0,0,0,0.5); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; cursor: pointer; transition: var(--transition); z-index: 5; opacity: 0; }
.pd-main-img:hover .pd-zoom-icon { opacity: 1; }
.pd-zoom-icon:hover { background: var(--green); transform: scale(1.1); }

/* ========== LIGHTBOX ========== */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(10px); z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.lightbox-overlay.active { opacity: 1; visibility: visible; }

.lightbox-close { position: absolute; top: 20px; right: 25px; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 22px; cursor: pointer; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 10; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); transform: rotate(90deg); }

.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 20px; cursor: pointer; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 10; }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

.lightbox-content { display: flex; align-items: center; justify-content: center; width: 100%; height: calc(100% - 120px); padding: 20px 80px; }
.lightbox-img-wrap { max-width: 900px; max-height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 8px; }
.lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; transition: transform 0.3s ease; cursor: zoom-in; }
.lightbox-img.zoomed { transform: scale(2); cursor: zoom-out; }

.lightbox-counter { position: absolute; top: 25px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; letter-spacing: 2px; }

.lightbox-thumbs { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; padding: 8px 12px; background: rgba(255,255,255,0.08); border-radius: 10px; backdrop-filter: blur(5px); max-width: 80%; overflow-x: auto; }
.lb-thumb { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); flex-shrink: 0; opacity: 0.5; }
.lb-thumb:hover, .lb-thumb.active { border-color: var(--white); opacity: 1; }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbnails { display: flex; gap: 10px; margin-top: 15px; }
.pd-thumb { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--green); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-family: var(--font-heading); font-size: 30px; margin: 10px 0 5px; line-height: 1.3; }
.pd-sku { font-size: 13px; color: var(--gray); margin-bottom: 15px; }
.pd-price { margin: 15px 0; padding: 15px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.pd-price .old-price { font-size: 18px; }
.pd-price .new-price { font-size: 28px; }
.sale-tag { background: var(--red); color: var(--white); padding: 3px 10px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-left: 10px; }
.pd-short-desc { color: var(--gray); line-height: 1.7; margin: 15px 0; }
.pd-meta { background: var(--cream); border-radius: 8px; padding: 15px 20px; margin: 20px 0; }
.pd-meta p { font-size: 14px; margin-bottom: 6px; }
.pd-meta strong { color: var(--charcoal); }
.pd-actions { display: flex; gap: 12px; margin: 25px 0 20px; flex-wrap: wrap; }
.pd-share { display: flex; align-items: center; gap: 12px; padding-top: 15px; border-top: 1px solid #eee; }
.pd-share span { font-size: 14px; color: var(--gray); }
.pd-share a, .pd-share button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray); background: none; cursor: pointer; transition: var(--transition); }
.pd-share a:hover, .pd-share button:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.pd-tabs { margin-top: 40px; }
.tab-buttons { display: flex; gap: 5px; border-bottom: 2px solid #eee; }
.tab-btn { padding: 12px 25px; background: none; border: none; font-size: 15px; font-weight: 600; cursor: pointer; color: var(--gray); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-content { display: none; padding: 25px 0; }
.tab-content.active { display: block; }
.rich-content { line-height: 1.8; color: var(--gray); }
.rich-content p { margin-bottom: 15px; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 12px 15px; border-bottom: 1px solid #eee; font-size: 14px; }
.info-table td:first-child { font-weight: 600; width: 180px; color: var(--charcoal); }

/* CONTACT */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.contact-info-col h2 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 10px; }
.contact-info-list { margin-top: 25px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 20px; }
.ci-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 3px; }
.contact-info-item p { font-size: 14px; color: var(--gray); }
.contact-info-item a:hover { color: var(--green); }
.contact-social { display: flex; gap: 10px; margin-top: 20px; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gray); transition: var(--transition); }
.contact-social a:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.zalo-icon { font-size: 12px !important; font-weight: 700; }
.contact-form-col { background: var(--cream); border-radius: var(--radius); padding: 35px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: var(--font-body); outline: none; transition: var(--transition); background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(107,155,125,0.1); }
.form-group textarea { resize: vertical; }
.contact-map { margin-top: 30px; }

/* NEWS DETAIL */
.news-detail-section, .news-section, .exhibition-section { padding: 60px 0; }
.news-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.nd-header h1 { font-family: var(--font-heading); font-size: 32px; line-height: 1.3; margin-bottom: 15px; }
.nd-meta { display: flex; gap: 20px; font-size: 13px; color: var(--gray); margin-bottom: 25px; flex-wrap: wrap; }
.nd-meta i { color: var(--green); margin-right: 5px; }
.nd-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 25px; }
.nd-featured-img img { width: 100%; }
.nd-tags { margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; }
.nd-tags i { color: var(--green); margin-right: 8px; }
.tag { background: var(--green-pale); color: var(--green); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; margin-right: 5px; }
.nd-share { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 15px; border-top: 1px solid #eee; }
.nd-share span { font-size: 14px; color: var(--gray); }
.nd-share a, .nd-share button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray); background: none; cursor: pointer; transition: var(--transition); }
.nd-share a:hover, .nd-share button:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.news-sidebar .sidebar-widget { background: var(--cream); border-radius: var(--radius); padding: 25px; }
.news-sidebar h4 { font-size: 18px; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--green); }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 15px; }
.sp-img { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sp-img img { width: 100%; height: 100%; object-fit: cover; }
.sp-info h5 { font-size: 14px; font-weight: 600; margin-bottom: 5px; line-height: 1.3; }
.sp-info span { font-size: 12px; color: var(--green); }
.sidebar-post:hover .sp-info h5 { color: var(--green); }

/* EXHIBITION DETAIL */
.exd-header { text-align: center; margin-bottom: 30px; }
.exd-header h1 { font-family: var(--font-heading); font-size: 34px; margin: 15px 0; }
.exd-meta { display: flex; justify-content: center; gap: 25px; font-size: 14px; color: var(--gray); flex-wrap: wrap; }
.exd-meta i { color: var(--green); margin-right: 5px; }
.exd-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 30px; max-height: 500px; }
.exd-cover img { width: 100%; height: 100%; object-fit: cover; }
.exd-content { max-width: 800px; margin: 0 auto 40px; }
.exd-video { margin: 40px 0; }
.exd-video h3, .exd-gallery h3 { font-size: 20px; margin-bottom: 15px; }
.exd-video h3 i, .exd-gallery h3 i { color: var(--green); margin-right: 8px; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius); overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.filter-tab { padding: 10px 25px; border-radius: 50px; font-size: 14px; font-weight: 500; border: 2px solid #ddd; transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* ABOUT */
.about-story { padding: 80px 0; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card { background: var(--white); padding: 35px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.mission-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--green); }
.mission-card h3 { font-size: 20px; margin-bottom: 10px; }
.mission-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.about-stats { padding: 80px 0; background: var(--green); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { color: var(--white); }
.stat-number { font-family: var(--font-heading); font-size: 50px; font-weight: 700; }
.stat-plus { font-size: 30px; font-weight: 700; color: rgba(255,255,255,0.8); }
.stat-item p { font-size: 15px; opacity: 0.9; margin-top: 5px; }

/* =============================================
   AUTH PAGES (Login / Register)
   ============================================= */
.auth-section { padding: 60px 0; background: var(--cream); min-height: 60vh; }
.auth-wrapper { max-width: 500px; margin: 0 auto; }
.auth-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.auth-card.register-card { max-width: none; }
.register-card ~ .auth-footer, .auth-section .register-card { max-width: none; }
.auth-section:has(.register-card) .auth-wrapper { max-width: 680px; }
.auth-header { text-align: center; margin-bottom: 30px; }
.auth-logo { width: 60px; height: 60px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; }
.auth-logo i { font-size: 28px; color: var(--white); }
.auth-header h1 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 5px; }
.auth-header p { color: var(--gray); font-size: 14px; }
.auth-form .form-group label i { color: var(--green); margin-right: 5px; }
.password-wrapper { position: relative; }
.password-wrapper input { padding-right: 45px; }
.toggle-password { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gray); cursor: pointer; font-size: 16px; padding: 5px; }
.toggle-password:hover { color: var(--green); }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--gray); }
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); }
.checkbox-label a { color: var(--green); font-weight: 500; }
.checkbox-label a:hover { text-decoration: underline; }
.forgot-link { color: var(--green); font-weight: 500; }
.forgot-link:hover { text-decoration: underline; }
.btn-full { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }
.auth-divider { text-align: center; margin: 25px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: #eee; }
.auth-divider span { position: relative; background: var(--white); padding: 0 15px; color: var(--gray); font-size: 13px; }
.auth-social { display: flex; gap: 12px; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--white); transition: var(--transition); }
.social-btn.facebook { background: #1877F2; }
.social-btn.facebook:hover { background: #166fe5; }
.social-btn.google { background: #DB4437; }
.social-btn.google:hover { background: #c53929; }
.auth-footer { text-align: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid #eee; font-size: 14px; color: var(--gray); }
.auth-footer a { color: var(--green); font-weight: 600; }
.auth-footer a:hover { text-decoration: underline; }

/* Radio group */
.radio-group { display: flex; gap: 12px; }
.radio-label { flex: 1; cursor: pointer; }
.radio-label input { display: none; }
.radio-label span { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 2px solid #ddd; border-radius: 8px; font-size: 14px; font-weight: 500; transition: var(--transition); text-align: center; }
.radio-label input:checked + span { border-color: var(--green); background: var(--green-pale); color: var(--green); }
.radio-label span i { font-size: 16px; }
.b2b-fields { border: 1px solid #eee; border-radius: var(--radius); padding: 20px; margin-bottom: 15px; background: #fafafa; }
/* =============================================
   ACCOUNT PAGE (Tabs Layout)
   ============================================= */
.account-section { padding: 50px 0; }
.account-grid { display: grid; grid-template-columns: 300px 1fr; gap: 35px; }
.account-sidebar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; height: fit-content; position: sticky; top: 100px; }
.account-user { text-align: center; padding: 30px 20px 20px; border-bottom: 1px solid #eee; }
.account-user h3 { font-size: 18px; margin-bottom: 3px; margin-top: 12px; }
.account-user p { font-size: 13px; color: var(--gray); }

/* Avatar */
.account-avatar-wrap { position: relative; width: 90px; height: 90px; margin: 0 auto; }
.avatar-img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; border: 3px solid var(--green-pale); }
.avatar-placeholder { width: 90px; height: 90px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--green); }
.avatar-upload-btn { position: absolute; bottom: 0; right: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; cursor: pointer; transition: var(--transition); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.avatar-upload-btn:hover { background: var(--green-dark); transform: scale(1.1); }
.avatar-upload-btn form { display: none; }
.avatar-upload-btn input[type="file"] { position: absolute; opacity: 0; width: 28px; height: 28px; cursor: pointer; }

/* User Badge */
.user-badge { display: inline-block; margin-top: 8px; padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; background: var(--green-pale); color: var(--green); text-transform: uppercase; letter-spacing: 1px; }
.user-badge.partner { background: #fff3cd; color: #856404; }
.user-badge.vip { background: #fce4ec; color: #c62828; }

/* Navigation */
.account-nav { padding: 10px 0; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 14px; color: var(--gray); transition: var(--transition); position: relative; }
.account-nav a:hover, .account-nav a.active { background: var(--green-pale); color: var(--green); font-weight: 500; }
.account-nav a.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); }
.account-nav a i { width: 20px; text-align: center; }
.nav-count { margin-left: auto; background: var(--green); color: var(--white); padding: 1px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; }
.logout-link { border-top: 1px solid #eee; }
.logout-link:hover { color: var(--red) !important; background: #fef0f0 !important; }

/* Content */
.account-content { background: var(--white); border-radius: var(--radius); padding: 35px; box-shadow: var(--shadow); }
.account-content h2 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--green); display: flex; align-items: center; gap: 10px; }
.account-content h2 i { color: var(--green); }
.account-form .form-row { margin-bottom: 0; }
.tab-desc { color: var(--gray); font-size: 14px; margin-bottom: 25px; line-height: 1.6; }
.form-section-title { font-size: 16px; font-weight: 600; color: var(--green); margin: 25px 0 15px; padding-top: 20px; border-top: 1px solid #eee; display: flex; align-items: center; gap: 8px; }
.form-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.form-meta { background: var(--cream); border-radius: 8px; padding: 12px 18px; margin: 20px 0; font-size: 13px; color: var(--gray); display: flex; gap: 25px; flex-wrap: wrap; }
.form-meta i { color: var(--green); margin-right: 5px; }
.disabled-input { background: #f5f5f5 !important; cursor: not-allowed; }
.password-form { max-width: 500px; }

/* Inquiry Cards */
.inquiry-list { display: flex; flex-direction: column; gap: 15px; }
.inquiry-card { background: var(--cream); border-radius: 12px; padding: 18px 22px; transition: var(--transition); border-left: 4px solid var(--green); }
.inquiry-card:hover { box-shadow: var(--shadow); transform: translateX(3px); }
.inquiry-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.inquiry-id { font-weight: 700; color: var(--charcoal); font-size: 15px; }
.inquiry-status { padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.status-new { background: #e3f2fd; color: #1565c0; }
.status-processing { background: #fff3e0; color: #e65100; }
.status-quoted { background: #e8f5e9; color: #2e7d32; }
.status-completed { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #fce4ec; color: #c62828; }
.inquiry-body { margin-bottom: 8px; }
.inquiry-product { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.inquiry-product a { color: var(--green); }
.inquiry-product a:hover { text-decoration: underline; }
.inquiry-product i, .inquiry-type i { color: var(--green); margin-right: 5px; width: 16px; }
.inquiry-type { font-size: 13px; color: var(--gray); margin-bottom: 6px; }
.inquiry-message { font-size: 13px; color: var(--gray); line-height: 1.5; }
.inquiry-footer { font-size: 12px; color: var(--gray-light); }
.inquiry-footer i { margin-right: 4px; }

/* =============================================
   B2B INQUIRY PAGE
   ============================================= */
.inquiry-section { padding: 60px 0; }
.inquiry-layout { display: grid; grid-template-columns: 340px 1fr; gap: 40px; }
.inquiry-info-card { background: var(--white); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); margin-bottom: 20px; text-align: center; transition: var(--transition); }
.inquiry-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.iic-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 24px; color: var(--green); }
.inquiry-info-card h3 { font-size: 17px; margin-bottom: 8px; }
.inquiry-info-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.inquiry-contact-box { background: var(--green); color: var(--white); border-radius: var(--radius); padding: 25px; margin-top: 20px; }
.inquiry-contact-box h4 { font-size: 16px; margin-bottom: 15px; }
.inquiry-contact-box h4 i { margin-right: 8px; }
.inquiry-contact-box p { font-size: 14px; margin-bottom: 10px; }
.inquiry-contact-box p i { width: 20px; text-align: center; margin-right: 8px; opacity: 0.8; }
.inquiry-contact-box a { color: var(--white); text-decoration: underline; }
.inquiry-contact-box a:hover { opacity: 0.9; }
.inquiry-form-col { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); }
.inquiry-form-header { margin-bottom: 30px; }
.inquiry-form-header h2 { font-family: var(--font-heading); font-size: 26px; margin-bottom: 8px; }
.inquiry-form-header h2 i { color: var(--green); margin-right: 10px; }
.inquiry-form-header p { color: var(--gray); font-size: 14px; }
.form-section { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid #eee; }
.form-section:last-of-type { border-bottom: none; }
.form-section h3 { font-size: 16px; font-weight: 600; margin-bottom: 18px; color: var(--green); }
.form-section h3 i { margin-right: 8px; }
.inquiry-upload { border: 2px dashed #ddd; border-radius: 12px; padding: 30px; text-align: center; cursor: pointer; transition: var(--transition); position: relative; }
.inquiry-upload:hover { border-color: var(--green); background: var(--green-pale); }
.inquiry-upload input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.inquiry-upload i { font-size: 32px; color: var(--green); display: block; margin-bottom: 8px; }
.inquiry-upload p { font-size: 13px; color: var(--gray); }
.inquiry-success { text-align: center; padding: 60px 20px; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: #d4edda; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon i { font-size: 40px; color: #28a745; }
.inquiry-success h2 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 12px; color: var(--charcoal); }
.inquiry-success p { color: var(--gray); font-size: 15px; line-height: 1.6; margin-bottom: 25px; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

