﻿/* ============================================
   VALPAS.RO — Catalog Materiale de Constructii
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary:    #2b2d42;
    --orange:     #ff6a00;
    --orange-h:   #e05d00;
    --gray-bg:    #f8f9fa;
    --gray-light: #f4f5f7;
    --gray-text:  #555555;
    --green:      #2a9d8f;
    --border:     #e1e4e8;
    --white:      #ffffff;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
    --shadow-md:  0 5px 15px rgba(0,0,0,.08);
    --radius:     5px;
    --radius-lg:  8px;
}

html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body { background: var(--gray-bg); color: #333333; line-height: 1.6; font-family: 'Segoe UI', system-ui, sans-serif; overflow-x: hidden; overflow-x: clip; touch-action: pan-y; }
.page-wrapper { overflow-x: hidden; overflow-x: clip; width: 100%; max-width: 100vw; position: relative; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* UTILITIES */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: 30px; font-weight: 800; color: var(--primary); }
.section-sub { color: var(--gray-text); margin-top: 8px; font-size: 16px; }
.text-center { text-align: center; }

/* TOPBAR - ascuns */
.topbar { background: #1a1a2e; color: rgba(255,255,255,.8); font-size: 12px; width: 100%; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 7px 16px; display: flex; justify-content: space-between; align-items: center; gap: 8px; min-width: 0; }
.topbar-left { display: flex; align-items: center; gap: 7px; min-width: 0; overflow: hidden; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-sep { opacity: .35; }
.topbar a, .topbar span { color: rgba(255,255,255,.8); text-decoration: none; font-size: 12px; }
.topbar a:hover { color: var(--orange); }
.topbar svg { vertical-align: middle; opacity: .7; flex-shrink: 0; }
.topbar-link { display: flex; align-items: center; gap: 5px; }
.topbar-social { display: flex; align-items: center; padding: 2px 4px; opacity: .8; transition: opacity .2s; }
.topbar-social:hover { opacity: 1; color: var(--orange) !important; }
.topbar-fb { display: inline-flex; align-items: center; background: #1877f2; color: #fff !important; font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: -.2px; padding: 4px 14px; border-radius: 20px; text-decoration: none; transition: background .2s; }
.topbar-fb:hover { background: #1558b0; color: #fff !important; }
@media (max-width: 600px) { .topbar-left span:first-of-type { display: none; } .topbar-sep:first-of-type { display: none; } }

/* SITE NOTICE BANNER */
.site-notice { background: #fff3cd; border-bottom: 2px solid #f0a500; color: #7a5a00; font-size: 13.5px; font-weight: 600; width: 100%; }
.site-notice-inner { max-width: 1200px; margin: 0 auto; padding: 9px 16px; display: flex; align-items: center; gap: 8px; justify-content: center; text-align: center; }
.site-notice-icon { font-size: 16px; flex-shrink: 0; }
@media (max-width: 600px) { .site-notice-inner { font-size: 12.5px; padding: 8px 12px; } }

/* HEADER */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.05); position: sticky; top: 0; z-index: 1000; width: 100%; overflow: visible; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 12px 16px; display: flex; justify-content: space-between; align-items: center; min-height: 64px; position: relative; overflow: visible; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo span { color: var(--orange); }
.logo-img { height: auto; max-height: 54px; width: auto !important; max-width: 180px !important; display: block; object-fit: contain; }

/* LOGO CARD (V2) */
.logo-card-wrap { position: absolute; left: 16px; top: 0; z-index: 20; }
.logo-card {
  display: inline-flex; align-items: center; justify-content: flex-start;
  background: var(--white);
  padding: 10px 36px 32px 24px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  text-decoration: none;
  transform-origin: top left;
  transition: padding-bottom .3s ease, border-radius .3s ease, box-shadow .3s ease, transform .3s ease;
}
header.scrolled .logo-card {
  padding-bottom: 10px;
  border-radius: 0 0 20px 20px;
  box-shadow: none;
}
/* logo mobil: ascuns pe desktop, vizibil pe mobil */
.logo.logo-mobile { display: none; }
@media (max-width: 767px) {
  .logo-card-wrap { display: none; }
  .logo.logo-mobile { display: flex; }
}
nav#mainNav { display: flex; align-items: center; gap: 4px; }
nav#mainNav a { font-weight: 600; font-size: 15.5px; color: var(--primary); padding: 8px 14px; border-radius: 6px; transition: color .2s; background: none !important; line-height: 1; position: relative; }
nav#mainNav a::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--orange); width: 0%; transition: width .25s ease; }
nav#mainNav a:hover::after, nav#mainNav a.active::after { width: calc(100% - 28px); }
nav#mainNav a:hover, nav#mainNav a.active { color: var(--orange); background: none !important; }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: var(--radius) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 14px 24px; font-weight: 600; color: var(--primary); border-bottom: 1px solid var(--gray-light); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav.open { display: block; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: background .2s, transform .15s, box-shadow .2s; text-decoration: none; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(232,98,10,.3); }
.btn-primary:hover { background: var(--orange-h); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-secondary:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: #253d5e; }
.btn-sm { padding: 8px 18px !important; font-size: 13px !important; }

/* HERO */
.hero { color: var(--white); padding: 100px 20px; text-align: center; background: linear-gradient(rgba(43,45,66,.85), rgba(43,45,66,.85)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover; width: 100%; overflow: hidden; }
.hero .container { width: 100%; max-width: 100%; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badge { display: none; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 18px; margin-bottom: 35px; color: #dddddd; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FEATURES STRIP */
.features-strip { max-width: 1200px; margin: -50px auto 60px; padding: 0 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; position: relative; z-index: 10; }
.feature-item { background: var(--white); padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); text-align: center; border-top: 4px solid var(--orange); }
.feature-item .fi-icon { display: none; }
.feature-item strong { display: block; font-size: 18px; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.feature-item p { color: var(--gray-text); font-size: 14px; }

/* CATEGORIES */
.categories-section { padding: 0 0 60px; }
.categories-section .head { text-align: center; margin-bottom: 30px; }
/* CATEGORY CAROUSEL */
.cat-carousel-section { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 50px; overflow: hidden; }
.cat-carousel-track {
    display: flex; gap: 14px;
    overflow-x: auto; scroll-behavior: smooth;
    padding: 6px 2px 14px; scrollbar-width: none;
    width: 100%; min-width: 0;
}
.cat-carousel-track::-webkit-scrollbar { display: none; }
.cat-card {
    flex: 0 0 170px;
    background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
    padding: 10px 14px; text-align: center; transition: all .2s;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); text-decoration: none; min-height: 44px;
}
.cat-card:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,106,0,.15); }
.cat-name { font-size: 14px; font-weight: 700; display: block; }
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-65%);
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border); cursor: pointer;
    font-size: 20px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all .2s; color: var(--primary);
}
.carousel-arrow:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.carousel-arrow.prev { left: 4px; }
.carousel-arrow.next { right: 4px; }

/* FEATURED */
.featured-section { padding: 0 0 72px; }
.featured-section .head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 25px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,.05); }
.product-image { width: 100%; height: 200px; background: #fff; border-bottom: 1px solid #e0e5ea; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; color: #888; position: relative; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; z-index: 1; }
.product-img-placeholder { font-size: 48px; opacity: 0.35; user-select: none; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; mix-blend-mode: multiply; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-category { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: #888; font-weight: 700; margin-bottom: 5px; }
.product-name { font-size: 17px; color: var(--primary); font-weight: 700; line-height: 1.3; margin-bottom: 10px; }
.product-name a { color: inherit; }
.product-specs { font-size: 13px; color: var(--gray-text); margin-bottom: 20px; }
.product-specs li { display: flex; justify-content: space-between; padding: 3px 0; border-bottom: 1px dashed #eee; }
.product-specs li span { font-weight: 600; color: #333; }
.product-action, .product-actions { margin-top: auto; display: flex; justify-content: flex-end; }
.product-action-e5 { width: 100%; }
.btn-plus { font-size: 16px; font-weight: 700; line-height: 1; margin-right: 4px; }
.btn-add-list { display: flex; align-items: center; justify-content: center; background: var(--orange); color: #fff; border: none; padding: 9px 12px; border-radius: var(--radius); transition: background .2s; cursor: pointer; }
.btn-add-list svg { width: 18px; height: 18px; transition: transform .2s; }
.btn-add-list:hover { background: var(--orange-h, #c9520a); }
.btn-add-list:hover svg { transform: scale(1.15); }
.btn-add-list.added { background: #16a34a; }
.e5-add-btn.added { background: #16a34a; }
.product-action-e5 { display: flex; gap: 6px; align-items: center; }
.e5-variant-sel { flex: 1; min-width: 0; appearance: none; background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center; border: 1.5px solid #e0e5ea; color: var(--primary); font-size: 12px; font-weight: 600; padding: 9px 26px 9px 10px; border-radius: var(--radius); cursor: pointer; outline: none; transition: border-color .2s; }
.e5-variant-sel:focus { border-color: var(--orange); }
.e5-add-btn { flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--orange); color: #fff; border: none; padding: 9px 12px; border-radius: var(--radius); cursor: pointer; transition: background .2s; }
.e5-add-btn svg { width: 18px; height: 18px; transition: transform .2s; }
.e5-add-btn:hover { background: var(--orange-h, #c9520a); }
.e5-add-btn:hover svg { transform: scale(1.15); }
.stock-badge { position: absolute; top: 10px; left: 10px; background: var(--green); color: var(--white); padding: 4px 8px; font-size: 11px; font-weight: 700; border-radius: 3px; text-transform: uppercase; z-index: 2; pointer-events: none; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--primary), #2a4a75); color: var(--white); padding: 72px 24px; text-align: center; margin-bottom: 72px; }
.cta-band h2 { font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CONTACT SECTION */
.contact-section { padding: 0 0 80px; }
.contact-section .head { text-align: center; margin-bottom: 48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 48px; height: 48px; background: #fff5ef; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.info-body h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 15px; }
.info-body p, .info-body a { font-size: 14px; color: var(--gray-text); }
.info-body a:hover { color: var(--orange); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* FORM */
.form-card { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 600; color: var(--primary); font-size: 14px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid #ccc; border-radius: var(--radius); font-size: 15px; transition: border-color .2s; font-family: inherit; color: #2d3748; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 14px; font-size: 16px; font-weight: 700; border-radius: var(--radius); cursor: pointer; transition: background .2s; margin-top: 8px; }
.btn-submit:hover { background: var(--orange-h); }

/* FOOTER */
/* ── Static pages ── */
.static-page-content { max-width: 860px; margin: 0 auto; padding: 0 24px 60px; }
.static-page-content section { margin-bottom: 40px; }
.static-page-content h2 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--orange); display: inline-block; }
.static-page-content h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin: 20px 0 10px; }
.static-page-content p { font-size: 14px; line-height: 1.75; color: #444; margin-bottom: 12px; }
.static-page-content ul { padding-left: 20px; display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.static-page-content ul li { font-size: 14px; line-height: 1.65; color: #444; }
.static-page-content a { color: var(--orange); text-decoration: none; }
.static-page-content a:hover { text-decoration: underline; }
.cookies-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 16px; }
.cookies-table th { background: var(--primary); color: #fff; text-align: left; padding: 10px 12px; font-weight: 600; }
.cookies-table td { padding: 9px 12px; border-bottom: 1px solid #eee; color: #444; vertical-align: top; }
.cookies-table tr:nth-child(even) td { background: #f9f9f9; }
.cookies-table code { background: #f0f0f0; padding: 2px 6px; border-radius: 4px; font-size: 12px; font-family: monospace; }

/* ── Cookie banner ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100vw; z-index: 9999; background: #1a1a2e; color: #fff; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,.3); transform: translateY(100%); transition: transform .35s ease; box-sizing: border-box; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.8); flex: 1; min-width: 0; }
.cookie-banner-text a { color: var(--orange); text-decoration: none; margin-left: 8px; white-space: nowrap; }
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn { padding: 9px 20px; border-radius: 6px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; transition: opacity .2s; }
.cookie-btn:hover { opacity: .85; }
.cookie-btn-accept { background: var(--orange); color: #fff; }
.cookie-btn-reject { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

footer { background: var(--primary); color: var(--white); margin-top: 60px; }
.footer-main { max-width: 1240px; margin: 0 auto; padding: 48px 24px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,.65); }
.footer-contact a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 8px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-list li { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.45; }
.footer-list li strong { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-list a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.footer-list a:hover { color: var(--orange); }
.footer-inner { display: none; }
.footer-bottom { max-width: 1240px; margin: 0 auto; color: rgba(255,255,255,.3); font-size: 12px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.08); padding: 16px 24px; flex-wrap: wrap; gap: 10px; }
.footer-bottom span:last-child { display: block; }
.footer-bottom-anpc { display: flex; align-items: center; gap: 10px; }
.footer-bottom-anpc a { display: inline-flex; opacity: .75; transition: opacity .2s; }
.footer-bottom-anpc a:hover { opacity: 1; }
.footer-bottom-anpc img { display: block; border: 0; height: 36px; width: auto; }

/* PAGE HEADER */
.page-header { background: var(--primary); color: var(--white); padding: 52px 24px; text-align: center; }
.page-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,.7); font-size: 16px; }

/* CATALOG PAGE */
.catalog-wrapper { max-width: 1240px; margin: 40px auto 80px; padding: 0 24px; display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.mobile-cat-filter { display: none; }
.sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; height: fit-content; position: sticky; top: 84px; }
.sidebar-title { font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .5px; }
.filter-group { margin-bottom: 26px; }
.filter-group-title { font-size: 11px; font-weight: 700; color: var(--gray-text); text-transform: uppercase; letter-spacing: .7px; border-bottom: 2px solid var(--gray-light); padding-bottom: 8px; margin-bottom: 12px; }
.filter-links li { margin-bottom: 6px; }
.filter-links a { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-text); padding: 5px 0; transition: color .2s; }
.filter-links a:hover, .filter-links a.active { color: var(--orange); font-weight: 600; }
.filter-links .count { background: var(--gray-light); color: var(--primary); font-size: 11px; padding: 2px 7px; border-radius: 10px; font-weight: 600; }
.catalog-main { display: flex; flex-direction: column; gap: 30px; }
.catalog-content { display: flex; flex-direction: column; gap: 14px; }
.catalog-top-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.catalog-search-form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.catalog-search-wrap { position: relative; display: flex; align-items: center; border: 1px solid #ccc; border-radius: var(--radius); overflow: hidden; transition: border-color .2s; background: #fff; }
.catalog-search-wrap:focus-within { border-color: var(--orange); }
.catalog-search-icon { position: absolute; left: 10px; width: 16px; height: 16px; color: #aaa; pointer-events: none; flex-shrink: 0; }
.catalog-search-input { border: none; outline: none; padding: 8px 8px 8px 34px; font-size: 14px; color: var(--primary); width: 220px; background: transparent; min-width: 0; }
.catalog-search-clear { display: flex; align-items: center; padding: 0 10px; color: #bbb; text-decoration: none; flex-shrink: 0; }
.catalog-search-clear svg { width: 14px; height: 14px; }
.catalog-search-clear:hover { color: var(--orange); }

.catalog-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; }
.results-count { font-size: 14px; color: var(--gray-text); }
.results-count strong { color: var(--primary); }
.sort-select { padding: 7px 12px; border: 1px solid #ccc; border-radius: var(--radius); font-size: 14px; color: var(--primary); outline: none; }
.sort-select:focus { border-color: var(--orange); }

/* PROMOTII PAGE */
.promo-banner-container { max-width: 1200px; margin: 30px auto; padding: 0 24px; }
.promo-banner {
  width: 100%; min-height: 280px;
  background: linear-gradient(135deg, var(--primary) 0%, #4a4e69 100%);
  border-radius: var(--radius-lg); display: flex; align-items: center;
  padding: 50px; position: relative; overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.promo-banner::after {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 400px; height: 400px; background: var(--orange);
  opacity: .1; border-radius: 50%;
}
.banner-content { position: relative; z-index: 2; max-width: 600px; color: var(--white); }
.banner-badge {
  background: var(--orange); color: var(--white); padding: 5px 12px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  border-radius: 4px; display: inline-block; margin-bottom: 14px; letter-spacing: 1px;
}
.banner-content h2 { font-size: 32px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.banner-content p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 24px; }
.btn-banner {
  display: inline-block; background: var(--white); color: var(--primary);
  padding: 12px 28px; font-weight: 700; border-radius: var(--radius);
  text-decoration: none; border: 2px solid var(--white); transition: all .2s;
}
.btn-banner:hover { background: transparent; color: var(--white); }

.promo-section { max-width: 1200px; margin: 40px auto 80px; padding: 0 24px; }
.section-title-promo {
  font-size: 22px; color: var(--primary); margin-bottom: 24px;
  font-weight: 700; border-left: 5px solid var(--orange); padding-left: 14px;
}
.promo-card { position: relative; }
.discount-tag {
  position: absolute; top: 12px; right: 12px;
  background: #e63946; color: var(--white);
  padding: 4px 10px; font-weight: 700; font-size: 12px;
  border-radius: 4px; z-index: 10;
}
.price-box {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin-bottom: 16px; background: var(--gray-light);
  padding: 10px 12px; border-radius: var(--radius);
}
.price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.price-new { font-size: 17px; color: #e63946; font-weight: 800; }
.price-unit { font-size: 12px; color: var(--gray-text); font-weight: 400; }
.promo-empty {
  text-align: center; padding: 80px 20px; color: var(--gray-text);
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.promo-empty h3 { font-size: 20px; margin-bottom: 10px; color: var(--primary); }
.promo-empty a { color: var(--orange); font-weight: 600; }

/* PRODUCT DETAIL */
.breadcrumb { max-width: 1240px; margin: 20px auto 0; padding: 0 24px; font-size: 13px; color: var(--gray-text); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { margin: 0 6px; color: #ccc; }
.product-page { max-width: 1240px; margin: 20px auto 60px; padding: 0 24px; }
.product-main { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: grid; grid-template-columns: minmax(320px,440px) 1fr; gap: 48px; margin-bottom: 28px; }
.main-image { width: 100%; height: 360px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 100px; margin-bottom: 14px; overflow: hidden; }
.main-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumbs img { width: 70px; height: 56px; object-fit: cover; border: 2px solid var(--border); border-radius: 5px; cursor: pointer; transition: border-color .2s; }
.thumbs img.active, .thumbs img:hover { border-color: var(--orange); }
.product-brand { font-size: 12px; font-weight: 700; text-transform: uppercase; color: #999; letter-spacing: .5px; margin-bottom: 6px; }
.product-title { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1.25; margin-bottom: 14px; }
.product-meta { display: flex; gap: 20px; font-size: 14px; padding: 12px 0; border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light); margin-bottom: 20px; }
.badge-stock { color: var(--green); font-weight: 700; }
.product-desc { color: var(--gray-text); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.order-box { background: var(--gray-light); padding: 22px; border-radius: var(--radius-lg); margin-bottom: 20px; }
.order-note { font-size: 13px; color: var(--gray-text); font-style: italic; margin-bottom: 14px; }
.qty-row { display: flex; gap: 12px; align-items: center; }
/* VARIANTS */
.variants-box { margin-bottom: 18px; max-width: 100%; overflow: hidden; }
.variants-label { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .4px; }
.variants-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
    background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
    padding: 8px 18px; font-size: 14px; font-weight: 600; color: var(--primary);
    cursor: pointer; transition: all .2s;
}
.variant-btn:hover { border-color: var(--orange); color: var(--orange); }
.variant-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.variant-btn-disabled, .variant-btn:disabled { opacity: .35; cursor: not-allowed; pointer-events: none; }
.variant-attr-group { margin-bottom: 14px; }
.variant-select { width: 100%; max-width: 100%; box-sizing: border-box; appearance: none; background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center; border: 2px solid var(--border); border-radius: var(--radius); color: var(--primary); font-size: 14px; font-weight: 600; padding: 10px 36px 10px 14px; cursor: pointer; outline: none; transition: border-color .2s; }
.variant-select:focus { border-color: var(--orange); }
.unit-label { font-size: 14px; font-weight: 700; color: var(--primary); min-width: 30px; }
.qty-input { display: flex; align-items: center; border: 1px solid #ccc; background: var(--white); border-radius: var(--radius); overflow: hidden; height: 48px; }
.qty-input button { background: none; border: none; width: 40px; height: 100%; font-size: 20px; cursor: pointer; font-weight: 700; color: var(--primary); }
.qty-input button:hover { background: #e9ecef; }
.qty-input input { width: 52px; height: 100%; border: none; border-left: 1px solid #ccc; border-right: 1px solid #ccc; text-align: center; font-size: 16px; font-weight: 700; outline: none; }
.btn-add-quote { flex-grow: 1; background: var(--orange); color: var(--white); border: none; height: 48px; font-size: 15px; font-weight: 700; border-radius: var(--radius); cursor: pointer; transition: background .2s; box-shadow: 0 4px 14px rgba(232,98,10,.3); }
.btn-add-quote:hover { background: var(--orange-h); }

/* TABS */
.product-tabs { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.tabs-nav { display: flex; background: var(--gray-light); border-bottom: 1px solid var(--border); }
.tab-btn-nav { padding: 14px 24px; font-weight: 600; font-size: 14px; color: var(--gray-text); cursor: pointer; background: none; border: none; border-right: 1px solid var(--border); border-top: 3px solid transparent; transition: color .2s; }
.tab-btn-nav.active { background: var(--white); color: var(--orange); border-top-color: var(--orange); }
.tab-panel { padding: 28px; display: none; }
.tab-panel.active { display: block !important; }
.tech-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tech-table tr:nth-child(even) { background: var(--gray-light); }
.tech-table td { padding: 10px 14px; border: 1px solid var(--border); }
.tech-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }

/* QUOTE FAB */
.quote-fab { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.fab-btn { background: var(--orange); color: var(--white); border: none; padding: 14px 22px; border-radius: 30px; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 6px 22px rgba(232,98,10,.45); display: flex; align-items: center; gap: 8px; transition: background .2s, transform .15s; }
.fab-btn:hover { background: var(--orange-h); transform: translateY(-2px); }
.fab-count { background: var(--white); color: var(--orange); font-size: 12px; font-weight: 800; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 100px; right: 28px; z-index: 999; width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(37,211,102,.45); transition: background .2s, transform .15s; text-decoration: none; }
.whatsapp-fab:hover { background: #1ebe5a; transform: translateY(-2px); }
.quote-drawer { position: fixed; bottom: 0; right: 0; width: min(400px, 100vw); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg) var(--radius-lg) 0 0; box-shadow: 0 -10px 40px rgba(0,0,0,.14); transform: translateY(100%); transition: transform .3s; max-height: 88vh; display: flex; flex-direction: column; z-index: 998; }
.quote-drawer.open { transform: translateY(0); }
.drawer-head { padding: 16px 20px; border-bottom: 3px solid var(--orange); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.drawer-head h3 { font-size: 15px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.drawer-head-count { background: var(--orange); color: var(--white); font-size: 12px; font-weight: 800; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.drawer-close { background: none; border: none; font-size: 22px; cursor: pointer; color: #aaa; line-height: 1; }
.drawer-close:hover { color: var(--primary); }
.drawer-body { padding: 0; overflow-y: auto; flex-grow: 1; }
.drawer-empty { text-align: center; color: #bbb; padding: 40px 0; font-size: 14px; }
.drawer-item { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 11px 20px; border-bottom: 1px solid #f0f0f0; align-items: center; transition: background .15s; }
.drawer-item:hover { background: #fffbf7; }
.drawer-item-name { font-size: 13px; font-weight: 700; color: var(--primary); line-height: 1.3; margin-bottom: 4px; }
.drawer-item-dim { display: inline-block; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.drawer-item-dim.neutral { background: var(--gray-light); color: var(--primary); border: 1px solid var(--border); }
.drawer-item-controls { display: flex; align-items: center; gap: 5px; }
.drawer-qty-wrap { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.drawer-qty-btn { background: none; border: none; width: 28px; height: 28px; font-size: 16px; font-weight: 700; cursor: pointer; color: var(--primary); display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.drawer-qty-btn:hover { background: var(--orange); color: var(--white); }
.drawer-qty-val { font-size: 13px; font-weight: 700; color: var(--primary); padding: 0 8px; min-width: 28px; text-align: center; }
.drawer-item-unit { font-size: 11px; color: #aaa; }
.drawer-item-remove { background: none; border: none; color: #ddd; cursor: pointer; font-size: 18px; line-height: 1; padding: 0 2px; transition: color .15s; }
.drawer-item-remove:hover { color: #e74c3c; }
.drawer-foot { padding: 14px 20px; border-top: 1px solid var(--border); flex-shrink: 0; }
.drawer-total-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--gray-text); margin-bottom: 10px; }
.drawer-total-row strong { color: var(--primary); }
.btn-send-quote { display: block; width: 100%; background: var(--orange); color: var(--white); border: none; padding: 13px; font-size: 14px; font-weight: 700; border-radius: var(--radius); cursor: pointer; text-align: center; transition: background .2s; }
.btn-send-quote:hover { background: var(--orange-h); }
.btn-clear-quote { display: block; width: 100%; background: none; border: none; color: #bbb; font-size: 12px; text-align: center; cursor: pointer; margin-top: 8px; }
.btn-clear-quote:hover { color: #e74c3c; }

/* QUOTE PAGE */
.quote-page { max-width: 860px; margin: 44px auto 70px; padding: 0 24px; }
.quote-page h1 { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.quote-page .sub { color: var(--gray-text); margin-bottom: 32px; font-size: 16px; }
.quote-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 24px; overflow: hidden; }
.quote-table-head { background: var(--primary); color: var(--white); padding: 14px 20px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }
.q-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.q-table th { background: var(--gray-light); padding: 10px 14px; text-align: left; font-weight: 700; color: var(--primary); border-bottom: 1px solid var(--border); }
.q-table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }

/* SUCCESS PAGE */
.success-page { max-width: 600px; margin: 90px auto; text-align: center; padding: 0 24px; }
.success-icon { font-size: 76px; margin-bottom: 22px; }
.success-page h1 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.success-page p { color: var(--gray-text); font-size: 16px; margin-bottom: 30px; }

/* CONTACT PAGE */
.contact-page { max-width: 1240px; margin: 48px auto 80px; padding: 0 24px; }
/* CONTACT PAGE — new layout */
.contact-container { max-width: 1200px; margin: 40px auto 80px; padding: 0 24px; }
.locations-title { font-size: 24px; color: var(--primary); font-weight: 700; text-align: center; margin-bottom: 25px; }
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; margin-bottom: 50px; }
.location-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,.02); display: flex; flex-direction: column; }
.contact-map { width: 100%; height: 220px; border-bottom: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.location-info h3 { color: var(--primary); font-size: 20px; font-weight: 700; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-bg); }
.info-line { margin-bottom: 10px; font-size: 15px; color: var(--gray-text); display: flex; gap: 6px; }
.info-line strong { width: 90px; color: var(--primary); flex-shrink: 0; }
.location-actions { margin-top: auto; display: flex; gap: 10px; padding-top: 15px; }
.btn-contact { flex: 1; text-align: center; padding: 11px; border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 14px; transition: all .2s; }
.btn-call { background: var(--primary); color: var(--white); }
.btn-call:hover { background: var(--orange); color: var(--white); }
.btn-map { border: 2px solid var(--orange); color: var(--orange); }
.btn-map:hover { background: var(--orange); color: var(--white); }
.contact-bottom-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-bottom: 40px; }
.general-info-box h2, .contact-form-box h2 { font-size: 22px; color: var(--primary); font-weight: 700; margin-bottom: 16px; }
.general-info-box > p { color: var(--gray-text); font-size: 15px; margin-bottom: 20px; }
.legal-data { background: var(--gray-bg); padding: 20px; border-radius: var(--radius); font-size: 14px; }
.legal-data ul { list-style: none; }
.legal-data li { margin-bottom: 8px; }
.legal-data li strong { color: var(--primary); }
/* old contact classes kept for compat */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--primary); color: var(--white); padding: 36px; border-radius: var(--radius-lg); }
.contact-info-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 15px; }
.contact-item-dark { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.icon-dark { width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-dark h4 { font-weight: 700; margin-bottom: 4px; font-size: 13px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .4px; }
.contact-item-dark p, .contact-item-dark a { color: var(--white); font-size: 15px; }
.contact-item-dark a:hover { color: var(--orange); }
.contact-map-full { border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.contact-map-full iframe { width: 100%; height: 240px; border: 0; display: block; }

/* MOBILE */
@media (max-width: 1024px) {
    .features-strip { grid-template-columns: repeat(2,1fr); }
    .catalog-wrapper { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .mobile-cat-filter { display: flex; align-items: center; gap: 10px; padding: 0 24px; margin: 16px auto 0; max-width: 1240px; }
    .mobile-cat-filter label { font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }
    .mobile-cat-filter select { flex: 1; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; background: var(--white); color: var(--primary); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; }
    .contact-bottom-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .catalog-top-bar { flex-direction: column; align-items: stretch; }
  .catalog-search-form { flex-direction: column; align-items: stretch; }
  .catalog-search-wrap { width: 100%; }
  .catalog-search-input { width: 100%; flex: 1; }
  .sort-select { width: 100%; }
    .hero { padding: 70px 20px; min-height: auto; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .features-strip { grid-template-columns: 1fr; margin: -20px 16px 40px; }
    .categories-grid { grid-template-columns: repeat(2,1fr); }
    nav#mainNav { display: none; }
    .hamburger { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-main { grid-template-columns: 1fr; }
    .main-image { height: 280px; font-size: 80px; }
    .qty-row { flex-direction: column; }
    .qty-input { width: 100%; justify-content: center; }
    .quote-drawer { width: 100%; right: 0; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .featured-section .head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .cta-band { padding: 48px 20px; margin-bottom: 40px; }
    .cta-band h2 { font-size: 24px; }
    .cta-band p { font-size: 15px; }
    .product-main-info { grid-template-columns: 1fr; }
    .promo-banner { padding: 30px 20px; }
    .banner-content h2 { font-size: 24px; }
    .btn-banner { display: block; text-align: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .topbar-inner { padding: 6px 16px; }
    .nav-container { padding: 8px 16px; }
    .section-title { font-size: 24px; }
    .page-header { padding: 36px 20px; }
    .page-header h1 { font-size: 26px; }
    .contact-strip { grid-template-columns: 1fr; gap: 16px; }
    .footer-main { padding: 36px 20px 24px; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 22px; }
    .hero p { font-size: 14px; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn { text-align: center; justify-content: center; }
    .features-strip { grid-template-columns: 1fr; margin: -20px 12px 32px; }
    .section-title { font-size: 22px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cat-carousel-section { padding: 0 36px; }
    .topbar-left { gap: 5px; font-size: 11px; }
    .topbar-fb { font-size: 11px; padding: 3px 10px; }
    .cookie-banner { flex-direction: column; align-items: flex-start; padding: 14px 16px; gap: 12px; }
    .cookie-banner-actions { width: 100%; justify-content: stretch; }
    .cookie-banner-actions .cookie-btn { flex: 1; text-align: center; }
    .quote-fab { bottom: 16px; right: 16px; }
    .whatsapp-fab { bottom: 86px; right: 16px; width: 48px; height: 48px; }
    .product-info { padding: 8px; }
    .product-name { font-size: 11px; margin-bottom: 4px; }
    .product-category { font-size: 11px; margin-bottom: 3px; }
    .product-specs { display: none; }
    .btn-add-list { font-size: 10px; padding: 6px 4px; }
    .e5-variant-sel { font-size: 10px; padding: 7px 22px 7px 6px; }
    .e5-add-btn { font-size: 10px; padding: 7px 8px; }
    .product-image { height: 100px; font-size: 40px; }
    .stock-badge { font-size: 9px; padding: 2px 5px; }
}

/* ── PHP pages extras ── */
.product-img-wrap { display: block; position: relative; height: 200px; overflow: hidden; background: #f5f5f5; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-img-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 60px; background: #f5f5f5; }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 14px; }
.btn-details { flex: 1; text-align: center; padding: 10px; border: 2px solid var(--primary); color: var(--primary); border-radius: var(--radius); font-weight: 700; font-size: 13px; text-decoration: none; transition: all .2s; }
.btn-details:hover { background: var(--primary); color: var(--white); }
.btn-add-quote { flex: 1; }
.breadcrumb-bar { background: var(--gray-bg); border-bottom: 1px solid var(--border); }
.breadcrumb-bar .container { padding: 12px 24px; font-size: 13px; color: var(--gray-text); }
.breadcrumb-bar a { color: var(--primary); text-decoration: none; }
.breadcrumb-bar a::after { content: ' »'; color: #bbb; margin: 0 4px 0 4px; }
.breadcrumb-bar a:hover { color: var(--orange); }
.quick-specs-list { list-style: none; margin-top: 16px; font-size: 14px; }
.quick-specs-list li { display: flex; gap: 8px; padding: 6px 0; border-bottom: 1px dashed var(--border); }
.quick-specs-list li strong { min-width: 140px; color: var(--primary); }
.section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.link-all { color: var(--orange); font-weight: 600; font-size: 14px; text-decoration: none; }
.link-all:hover { text-decoration: underline; }
.contact-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 28px; }
.contact-item strong { display: block; font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--gray-text); }
@media(max-width:768px) { .contact-strip { grid-template-columns: 1fr; } }