/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; color: #333; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 80px; right: 20px; background: #2e7d32; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; z-index: 9999; opacity: 0; transition: opacity 0.3s; border: none; }
.back-to-top.visible { opacity: 1; }

/* ===== TOP BAR ===== */
.top-bar { background: #1b5e20; color: #fff; padding: 6px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar .lang-switch a { color: #fff; margin-left: 12px; padding: 3px 10px; border: 1px solid rgba(255,255,255,0.3); border-radius: 3px; font-size: 12px; }
.top-bar .lang-switch a:hover, .top-bar .lang-switch a.active { background: rgba(255,255,255,0.15); }
.top-bar .contact-info span { margin-right: 20px; }
.top-bar .contact-info i { margin-right: 5px; }

/* ===== HEADER ===== */
.header { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 55px; }
.logo-text h1 { font-size: 20px; color: #2e7d32; line-height: 1.2; }
.logo-text p { font-size: 11px; color: #666; }
.header-right { display: flex; align-items: center; gap: 15px; }
.header-right .btn-inquiry { background: #ff6f00; color: #fff; padding: 8px 20px; border-radius: 4px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; }
.header-right .btn-inquiry:hover { background: #e65100; }
.header-right .phone { color: #2e7d32; font-weight: bold; font-size: 14px; }

/* ===== NAVIGATION ===== */
.main-nav { background: #2e7d32; }
.main-nav .container { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; width: 100%; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 12px 18px; color: #fff; font-size: 14px; font-weight: 500; transition: background 0.2s; white-space: nowrap; }
.nav-list > li > a:hover, .nav-list > li.active > a { background: #1b5e20; }
.nav-list > li > a i { margin-left: 5px; font-size: 10px; }

/* Mega Menu */
.mega-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-top: 3px solid #2e7d32; z-index: 999; min-width: 900px; padding: 20px; }
.nav-list > li:hover .mega-menu { display: flex; flex-wrap: wrap; gap: 20px; }
.mega-menu .mega-col { min-width: 200px; flex: 1; }
.mega-menu .mega-col h4 { color: #2e7d32; font-size: 14px; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 2px solid #e8f5e9; }
.mega-menu .mega-col ul li a { display: block; padding: 4px 0; color: #555; font-size: 13px; transition: color 0.2s; }
.mega-menu .mega-col ul li a:hover { color: #2e7d32; padding-left: 5px; }

/* Dropdown */
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-top: 3px solid #2e7d32; z-index: 999; min-width: 220px; }
.nav-list > li:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 8px 16px; color: #555; font-size: 13px; border-bottom: 1px solid #f0f0f0; }
.dropdown-menu li a:hover { background: #e8f5e9; color: #2e7d32; }

/* Mobile menu toggle */
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 12px 18px; }

/* ===== HERO / BANNER ===== */
.hero { position: relative; overflow: hidden; height: 420px; }
.hero-slider { display: flex; transition: transform 0.6s ease; height: 100%; }
.hero-slide { min-width: 100%; height: 100%; position: relative; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide .overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(27,94,32,0.85), rgba(27,94,32,0.3)); display: flex; align-items: center; padding: 0 60px; }
.hero-slide .overlay h2 { color: #fff; font-size: 36px; max-width: 600px; line-height: 1.3; }
.hero-slide .overlay p { color: rgba(255,255,255,0.9); font-size: 16px; margin-top: 15px; max-width: 500px; }
.hero-slide .overlay .btn-hero { display: inline-block; margin-top: 20px; background: #ff6f00; color: #fff; padding: 12px 30px; border-radius: 4px; font-weight: bold; font-size: 15px; }
.hero-slide .overlay .btn-hero:hover { background: #e65100; }
.hero-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.hero-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; border: none; }
.hero-dots .dot.active { background: #fff; }
.hero-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 15px; transform: translateY(-50%); z-index: 10; }
.hero-arrows button { background: rgba(0,0,0,0.4); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.hero-arrows button:hover { background: rgba(0,0,0,0.7); }

/* ===== SECTION COMMON ===== */
.section { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 35px; }
.section-title h2 { font-size: 28px; color: #2e7d32; position: relative; display: inline-block; padding-bottom: 10px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: #ff6f00; }
.section-title p { color: #777; margin-top: 10px; font-size: 15px; }
.section-alt { background: #f5f9f5; }

/* ===== ABOUT US ===== */
.about-section { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-img { flex: 1; min-width: 300px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.about-img img { width: 100%; height: 350px; object-fit: cover; }
.about-content { flex: 1; min-width: 300px; }
.about-content h3 { color: #2e7d32; font-size: 22px; margin-bottom: 15px; }
.about-content p { color: #555; margin-bottom: 12px; font-size: 15px; }
.about-content .btn-readmore { display: inline-block; margin-top: 10px; background: #2e7d32; color: #fff; padding: 10px 25px; border-radius: 4px; font-weight: bold; }
.about-content .btn-readmore:hover { background: #1b5e20; }

/* ===== FEATURED PRODUCTS ===== */
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.product-card .card-img { height: 220px; overflow: hidden; background: #f5f5f5; display: flex; align-items: center; justify-content: center; }
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .card-img .placeholder-img { width: 100%; height: 100%; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 40px; color: #2e7d32; }
.product-card .card-body { padding: 14px 16px; }
.product-card .card-body h4 { font-size: 15px; color: #333; margin-bottom: 10px; min-height: 40px; }
.product-card .card-body .btn-inquiry-sm { display: inline-block; background: #ff6f00; color: #fff; padding: 6px 16px; border-radius: 3px; font-size: 12px; font-weight: bold; }
.product-card .card-body .btn-inquiry-sm:hover { background: #e65100; }
.product-card .card-body .btn-view { display: inline-block; background: #2e7d32; color: #fff; padding: 6px 16px; border-radius: 3px; font-size: 12px; margin-right: 5px; }
.product-card .card-body .btn-view:hover { background: #1b5e20; }

/* ===== PRODUCT GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.gallery-item { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; text-align: center; transition: transform 0.3s; }
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.gallery-item .gallery-img { height: 170px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 42px; color: #2e7d32; }
.gallery-item p { padding: 12px; font-size: 14px; color: #333; font-weight: 500; }

/* ===== CATEGORY SECTION ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.category-card { background: linear-gradient(135deg, #e8f5e9, #fff); border: 1px solid #c8e6c9; border-radius: 10px; padding: 25px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(46,125,50,0.15); }
.category-card .cat-icon { font-size: 48px; margin-bottom: 12px; }
.category-card h3 { color: #2e7d32; font-size: 16px; margin-bottom: 8px; }
.category-card p { color: #777; font-size: 13px; }
.category-card .cat-count { display: inline-block; margin-top: 10px; background: #2e7d32; color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 12px; }

/* ===== RECENTLY VIEWED ===== */
.recent-grid { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.recent-grid .product-card { min-width: 220px; flex-shrink: 0; }

/* ===== CONTACT INFO BAR ===== */
.contact-bar { background: #1b5e20; color: #fff; padding: 15px 0; }
.contact-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.contact-bar .info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.contact-bar .info-item i { font-size: 20px; color: #a5d6a7; }

/* ===== FOOTER ===== */
.footer { background: #263238; color: #ccc; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid #2e7d32; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #a5d6a7; padding-left: 5px; }
.footer-col p { font-size: 14px; line-height: 1.7; }
.footer-col .contact-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-col .contact-detail i { color: #a5d6a7; margin-top: 3px; }
.footer-bottom { margin-top: 30px; padding: 15px 0; border-top: 1px solid #37474f; text-align: center; font-size: 13px; color: #888; }
.footer-bottom a { color: #a5d6a7; }

/* ===== FIXED INQUIRY BUTTON ===== */
.fixed-inquiry { position: fixed; right: 4px; bottom: 16px; z-index: 9999; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.2); padding: 14px; }
.fixed-inquiry a { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #333; font-size: 12px; font-weight: bold; }
.fixed-inquiry a i { font-size: 24px; color: #2e7d32; }

/* ===== COMPANY PROFILE PAGE ===== */
.profile-section { padding: 40px 0; }
.profile-header { background: linear-gradient(135deg, #1b5e20, #2e7d32); color: #fff; padding: 60px 0; text-align: center; }
.profile-header h1 { font-size: 32px; }
.profile-header p { margin-top: 10px; font-size: 16px; opacity: 0.9; }
.profile-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.profile-content .info-box { background: #f5f9f5; border-radius: 8px; padding: 25px; border-left: 4px solid #2e7d32; }
.profile-content .info-box h3 { color: #2e7d32; margin-bottom: 10px; }
.profile-content .info-box p { color: #555; font-size: 14px; }
.profile-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.profile-table td { padding: 10px 15px; border: 1px solid #e0e0e0; font-size: 14px; }
.profile-table td:first-child { background: #e8f5e9; font-weight: bold; color: #2e7d32; width: 200px; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 40px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-form { background: #f5f9f5; padding: 30px; border-radius: 8px; }
.contact-form h3 { color: #2e7d32; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-size: 14px; color: #555; font-weight: bold; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; font-family: inherit; }
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: #2e7d32; outline: none; box-shadow: 0 0 0 2px rgba(46,125,50,0.1); }
.btn-submit { background: #2e7d32; color: #fff; padding: 12px 30px; border: none; border-radius: 4px; font-size: 15px; font-weight: bold; cursor: pointer; }
.btn-submit:hover { background: #1b5e20; }
.contact-info-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; }
.contact-info-box h3 { color: #2e7d32; margin-bottom: 20px; }
.contact-info-box .info-row { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-box .info-row i { color: #2e7d32; font-size: 20px; margin-top: 2px; }
.contact-info-box .info-row div h4 { font-size: 14px; color: #333; }
.contact-info-box .info-row div p { font-size: 14px; color: #666; }

/* ===== PRODUCTS PAGE ===== */
.products-header { background: linear-gradient(135deg, #1b5e20, #2e7d32); color: #fff; padding: 40px 0; text-align: center; }
.products-header h1 { font-size: 28px; }
.product-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 25px 0; }
.product-filter .filter-btn { padding: 8px 18px; border: 1px solid #2e7d32; border-radius: 20px; background: #fff; color: #2e7d32; cursor: pointer; font-size: 13px; transition: all 0.2s; }
.product-filter .filter-btn:hover, .product-filter .filter-btn.active { background: #2e7d32; color: #fff; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail { padding: 40px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.product-detail-left { position: sticky; top: 100px; }
.pd-slider { position: relative; border: 1px dashed #ccc; border-radius: 8px; overflow: hidden; background: #f9f9f9; }
.pd-slider .pd-main-img { width: 100%; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 80px; color: #2e7d32; background: #f5f5f5; overflow: hidden; position: relative; }
.pd-slider .pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-slider .pd-share-btn { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.9); border: 1px solid #ddd; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: #555; z-index: 5; }
.pd-slider .pd-share-btn:hover { background: #fff; color: #2e7d32; }
.pd-slider-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 8px; transform: translateY(-50%); z-index: 5; pointer-events: none; }
.pd-slider-arrows button { pointer-events: all; background: rgba(0,0,0,0.35); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer; }
.pd-slider-arrows button:hover { background: rgba(0,0,0,0.6); }
.pd-thumbnails { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.pd-thumbnails .pd-thumb { width: 70px; height: 70px; border: 2px solid #e0e0e0; border-radius: 6px; overflow: hidden; cursor: pointer; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #f5f5f5; font-size: 28px; }
.pd-thumbnails .pd-thumb.active { border-color: #2e7d32; }
.pd-thumbnails .pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-img-buttons { display: flex; gap: 12px; margin-top: 16px; }
.pd-img-buttons .btn-send-inquiry { display: inline-flex; align-items: center; gap: 8px; background: #2e7d32; color: #fff; padding: 12px 32px; border-radius: 4px; font-weight: bold; font-size: 15px; border: none; cursor: pointer; flex: 1; justify-content: center; }
.pd-img-buttons .btn-send-inquiry:hover { background: #1b5e20; }
.pd-img-buttons .btn-send-inquiry i { font-size: 18px; }
.pd-img-buttons .btn-callback { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #2e7d32; padding: 12px 32px; border-radius: 4px; font-weight: bold; font-size: 15px; border: 2px solid #2e7d32; cursor: pointer; flex: 1; justify-content: center; }
.pd-img-buttons .btn-callback:hover { background: #e8f5e9; }
.product-detail-info h1 { font-size: 26px; color: #333; margin-bottom: 8px; }

/* Price Banner */
.pd-price-banner { background: #f5f9f5; border: 1px solid #c8e6c9; border-radius: 6px; padding: 18px 22px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.pd-price-banner .pd-price { font-size: 22px; color: #2e7d32; font-weight: bold; }
.pd-price-banner .pd-price span { font-size: 13px; color: #777; font-weight: normal; }
.pd-price-banner .btn-get-quote { background: #ff6f00; color: #fff; padding: 10px 24px; border-radius: 4px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.pd-price-banner .btn-get-quote:hover { background: #e65100; }

/* Section Blocks */
.pd-section { margin-bottom: 25px; }
.pd-section-title { font-size: 17px; color: #2e7d32; font-weight: bold; padding: 10px 16px; background: #e8f5e9; border-left: 4px solid #2e7d32; margin-bottom: 0; }
.pd-table { width: 100%; border-collapse: collapse; }
.pd-table td { padding: 9px 14px; border: 1px solid #e0e0e0; font-size: 14px; color: #444; }
.pd-table td:first-child { background: #fafafa; font-weight: 600; color: #555; width: 42%; }
.pd-table tr:hover td { background: #f9fdf9; }
.pd-table td:first-child:hover { background: #f0f7f0; }

/* Key Features */
.pd-features { padding: 16px 20px; background: #fff; border: 1px solid #e0e0e0; border-top: none; }
.pd-features ul { padding-left: 18px; list-style: disc; }
.pd-features ul li { margin-bottom: 6px; font-size: 14px; color: #555; }

/* Action Buttons Row */
.pd-actions { display: flex; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.pd-actions .btn-inquiry { display: inline-flex; align-items: center; gap: 6px; background: #ff6f00; color: #fff; padding: 12px 28px; border-radius: 4px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; }
.pd-actions .btn-inquiry:hover { background: #e65100; }
.pd-actions .btn-secondary { display: inline-flex; align-items: center; gap: 6px; background: #2e7d32; color: #fff; padding: 12px 28px; border-radius: 4px; font-weight: bold; font-size: 14px; border: none; cursor: pointer; }
.pd-actions .btn-secondary:hover { background: #1b5e20; }

/* More Products */
.more-products { margin-top: 40px; }
.more-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.more-product-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.more-product-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.1); }
.more-product-card .mp-img { height: 150px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.more-product-card .mp-body { padding: 12px 14px; }
.more-product-card .mp-body h4 { font-size: 14px; color: #333; margin-bottom: 4px; }
.more-product-card .mp-body .mp-price { font-size: 13px; color: #2e7d32; font-weight: bold; margin-bottom: 4px; }
.more-product-card .mp-body .mp-moq { font-size: 12px; color: #888; margin-bottom: 8px; }
.more-product-card .mp-body .btn-get-quote-sm { display: inline-block; background: #ff6f00; color: #fff; padding: 5px 14px; border-radius: 3px; font-size: 12px; font-weight: bold; }
.more-product-card .mp-body .btn-get-quote-sm:hover { background: #e65100; }

/* Quote Modal */
.quote-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; align-items: center; justify-content: center; }
.quote-modal-overlay.active { display: flex; }
.quote-modal { background: #fff; border-radius: 10px; padding: 30px; max-width: 480px; width: 90%; position: relative; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.quote-modal h3 { color: #2e7d32; margin-bottom: 18px; font-size: 20px; }
.quote-modal .close-modal { position: absolute; top: 12px; right: 16px; background: none; border: none; font-size: 22px; cursor: pointer; color: #999; }
.quote-modal .close-modal:hover { color: #333; }
.quote-modal .form-group { margin-bottom: 12px; }
.quote-modal .form-group label { display: block; margin-bottom: 4px; font-size: 13px; color: #555; font-weight: bold; }
.quote-modal .form-group input, .quote-modal .form-group textarea { width: 100%; padding: 9px 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; font-family: inherit; }
.quote-modal .form-group textarea { height: 80px; resize: vertical; }
.quote-modal .form-group input:focus, .quote-modal .form-group textarea:focus { border-color: #2e7d32; outline: none; }
.quote-modal .btn-submit { background: #2e7d32; color: #fff; padding: 10px 24px; border: none; border-radius: 4px; font-size: 14px; font-weight: bold; cursor: pointer; width: 100%; }
.quote-modal .btn-submit:hover { background: #1b5e20; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: #f5f5f5; padding: 12px 0; font-size: 13px; }
.breadcrumb a { color: #2e7d32; }
.breadcrumb span { color: #999; margin: 0 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .mega-menu { min-width: 100%; left: 0; }
  .profile-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 5px; }
  .header .container { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .nav-list { display: none; flex-direction: column; width: 100%; }
  .nav-list.open { display: flex; }
  .nav-list > li > a { padding: 10px 15px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .mega-menu { position: static; box-shadow: none; border-top: none; min-width: 100%; flex-direction: column; }
  .dropdown-menu { position: static; box-shadow: none; }
  .hero { height: 300px; }
  .hero-slide .overlay h2 { font-size: 24px; }
  .hero-slide .overlay { padding: 0 20px; }
  .about-section { flex-direction: column; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .more-products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .more-products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: 1fr; }
  .pd-img-buttons { flex-direction: column; }
}
