
:root {
    --primary: #FF6600;
    --secondary: #003399;
    --dark: #111111;
    --light-bg: #f7f7f9;
    --white: #ffffff;
    --text: #333333;
    --muted: #777777;
    --border: #e8e8e8;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; margin: 0; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.bg-gray { background: var(--light-bg); }
.section-padding { padding: 64px 0; }

.top-bar { background: #efefef; padding: 10px 0; border-bottom: 1px solid #ddd; font-size: 0.9rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.top-info, .top-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.phone-link { color: var(--secondary); font-weight: 700; }

.navbar { background: var(--secondary); color: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.10); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.logo { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; white-space: nowrap; }
.logo span { color: var(--primary); }

.search-container { flex: 1; display: flex; margin: 0 20px; }
.search-container input { flex: 1; padding: 12px 14px; border: none; outline: none; border-radius: 6px 0 0 6px; font-size: 0.95rem; }
.search-container button { border: none; background: var(--primary); color: var(--white); padding: 0 20px; font-weight: 700; border-radius: 0 6px 6px 0; cursor: pointer; }

.main-nav ul { list-style: none; display: flex; gap: 18px; align-items: center; margin: 0; padding: 0; }
.main-nav a { font-weight: 700; font-size: 0.95rem; opacity: .95; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); opacity: 1; }

.hero-pro, .page-hero {
    background: #07102a;
    color: var(--white);
}
.hero-pro { padding: 0; min-height: 520px; display: flex; align-items: stretch; }
.page-hero { padding: 70px 0; }
.page-hero-catalog {
    background: linear-gradient(rgba(0, 51, 153, 0.86), rgba(0, 51, 153, 0.86)) !important;
}

/* Split hero layout */
.hero-pro .container { display: flex; align-items: center; gap: 0; width: 100%; max-width: 100%; padding: 0; }
.hero-split-text { flex: 1; padding: 80px 48px 80px 5%; display: flex; flex-direction: column; justify-content: center; }
.hero-split-image { flex: 0 0 48%; max-width: 48%; position: relative; overflow: hidden; min-height: 520px; }
.hero-split-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-split-image::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 60px; background: linear-gradient(to right, #07102a, transparent); z-index: 2; }

.hero-content, .page-hero-content { max-width: 760px; }
.badge-promo { display: inline-block; background: var(--primary); color: var(--white); padding: 6px 12px; border-radius: 6px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; }
.hero-content h1, .page-hero-content h1 { margin: 18px 0 16px; line-height: 1.1; font-weight: 900; }
.hero-content h1 { font-size: 3.3rem; }
.page-hero-content h1 { font-size: 2.5rem; }
.hero-content p, .page-hero-content p { opacity: 0.92; font-size: 1.08rem; max-width: 700px; margin: 0 0 30px; line-height: 1.6; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary, .btn-outline, .btn-block, .filter-btn, .cat-item, .product-card, .main-nav a { transition: all .25s ease; }
.btn-primary, .btn-outline { display: inline-block; padding: 14px 28px; border-radius: 6px; font-weight: 800; }
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.btn-primary:hover, .search-container button:hover { opacity: .92; }

.benefits-bar { position: relative; z-index: 5; margin-top: -36px; }
.benefits-bar .container { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); padding: 28px 18px; display: flex; gap: 18px; justify-content: space-between; }
.benefit-card { flex: 1; min-width: 0; display: flex; gap: 14px; align-items: center; }
.benefit-card .icon { font-size: 2rem; flex-shrink: 0; }
.benefit-card h4 { margin: 0 0 6px; color: var(--secondary); font-size: 1rem; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.section-title { margin: 0 0 36px; text-align: center; color: var(--secondary); font-size: 2rem; font-weight: 900; text-transform: uppercase; }
.category-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.cat-item { background: var(--light-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 20px; text-align: center; cursor: pointer; }
.cat-item:hover { transform: translateY(-4px); border-color: var(--primary); background: var(--white); box-shadow: var(--shadow); }
.cat-item span { display: block; font-size: 2.8rem; margin-bottom: 10px; }
.cat-item h4 { margin: 0; color: var(--secondary); font-size: 1.08rem; font-weight: 800; }

.catalog-toolbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 28px 0 22px; }
.catalog-toolbar-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.catalog-intro h2 { margin: 0 0 8px; color: var(--secondary); font-size: 1.65rem; font-weight: 900; }
.catalog-intro p { margin: 0; color: #666; }
.filters-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.filter-btn { border: 1px solid #d8d8d8; background: var(--white); color: var(--dark); padding: 10px 16px; border-radius: 999px; font-size: .9rem; font-weight: 700; cursor: pointer; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

.catalog-section { padding: 36px 0 70px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; align-items: stretch; }
.product-card { position: relative; display: flex; flex-direction: column; height: 100%; border-radius: var(--radius); background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.badge-hot { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--secondary); color: var(--white); padding: 4px 9px; border-radius: 999px; font-size: .72rem; font-weight: 800; }
.badge-homepage { background: #d62828; }
.img-wrapper { height: 190px; width: 100%; display: flex; align-items: center; justify-content: center; background: #fff; border-bottom: 1px solid var(--border); padding: 12px; }
.img-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.img-error { opacity: 0.5; filter: grayscale(100%); }
.card-info { padding: 14px; display: flex; flex-direction: column; height: 100%; }
.category-label { color: #888; text-transform: uppercase; font-size: .75rem; font-weight: 800; letter-spacing: .3px; }
.product-name { margin: 6px 0 14px; color: var(--dark); font-size: 1rem; line-height: 1.35; flex-grow: 1; }
.price-container { margin-bottom: 15px; }
.price-value { color: var(--primary); font-size: 1.18rem; font-weight: 900; }
.price-unit { color: #666; font-size: .84rem; margin-left: 4px; }
.price-request { color: var(--secondary); font-style: italic; font-weight: 700; }
.btn-block { display: block; width: 100%; margin-top: auto; text-align: center; padding: 12px 14px; border-radius: 6px; background: var(--secondary); color: var(--white); font-size: .86rem; font-weight: 800; }
.btn-block:hover { background: var(--primary); }

.no-results { grid-column: 1 / -1; text-align: center; padding: 50px 20px; background: #f9f9f9; border-radius: 12px; color: #555; }
.no-results h3 { margin: 0 0 10px; color: var(--secondary); }
.no-results p { margin: 0; color: #666; }

.help-box { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.help-box h3 { margin: 0 0 10px; color: var(--secondary); font-size: 1.4rem; }
.help-box p { margin: 0; color: #666; line-height: 1.6; max-width: 760px; }

.contact-section { padding: 50px 0 70px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
.contact-card, .map-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); }
.contact-card h2, .map-card h2 { margin: 0 0 18px; color: var(--secondary); font-size: 1.7rem; }
.contact-list { display: grid; gap: 16px; }
.contact-item { padding: 16px; border-radius: 10px; background: var(--light-bg); border: 1px solid var(--border); }
.contact-item strong { display: block; margin-bottom: 6px; color: var(--secondary); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.map-placeholder { min-height: 320px; border-radius: 10px; background: linear-gradient(135deg, #e9eefc, #f7f9ff); border: 1px dashed #c7d2f5; display: flex; align-items: center; justify-content: center; text-align: center; color: #4960a8; font-weight: 700; padding: 20px; }

.footer-pro { background: var(--dark); color: var(--white); padding-top: 70px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 42px; padding-bottom: 40px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about p, .footer-contact p { color: #ccc; line-height: 1.7; margin: 0 0 10px; }
.footer-links h4, .footer-contact h4 { margin: 0 0 16px; font-size: 1.1rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { color: #ccc; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { background: #000; border-top: 1px solid #222; padding: 18px 0; text-align: center; font-size: .82rem; color: #ccc; }

@media (max-width: 1024px) {
    .navbar .container { flex-wrap: wrap; }
    .search-container { order: 3; width: 100%; margin: 0; }
    .main-nav ul { gap: 14px; }
    .contact-grid, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .top-bar .container { flex-direction: column; align-items: flex-start; gap: 8px; }
    .top-info { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hero-content h1 { font-size: 2.3rem; }
    .page-hero-content h1 { font-size: 2rem; }
    .hero-btns, .contact-actions { flex-direction: column; align-items: flex-start; }
    .benefits-bar .container, .catalog-toolbar-top, .help-box { flex-direction: column; align-items: flex-start; }
    .filter-btn { width: 100%; text-align: center; }
    .search-container { display: none; }
    .section-title { font-size: 1.65rem; }
    .hero-pro { padding: 0; min-height: auto; }
    .hero-pro .container { flex-direction: column; }
    .hero-split-text { padding: 48px 24px 32px; order: 2; }
    .hero-split-image { display: block; flex: 0 0 auto; max-width: 100%; min-height: auto; width: 100%; order: 1; }
    .hero-split-image img { width: 100%; height: auto; max-height: 380px; object-fit: cover; object-position: top center; }
    .hero-split-image::before { display: none; }
}


.badge-homepage {
  background: #d62828;
}

.no-results h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--secondary);
}

.no-results p {
  margin: 0;
  color: #666;
}

.product-card .img-wrapper img {
  display: block;
}


.logo-image {
    display: inline-flex;
    align-items: center;
}
.logo-image img {
    height: 58px;
    width: auto;
    display: block;
}
.catalog-search-row {
    margin: 0 0 18px 0;
}
.btn-outline-secondary {
    border-color: var(--secondary);
    color: var(--secondary);
    background: var(--white);
}
.btn-outline-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary-link {
    color: var(--secondary);
    font-weight: 700;
}
.map-embed {
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #eef2fb;
}
.map-note {
    margin: 14px 0 0;
    color: #666;
    line-height: 1.6;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    opacity: 0.96;
}
@media (max-width: 1024px) {
    .logo-image img { height: 52px; }
}
@media (max-width: 768px) {
    .logo-image img { height: 48px; }
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 13px 16px;
        font-size: 0.9rem;
    }
}


.section-title-left { text-align: left; }
.store-real-header { margin-bottom: 26px; }
.store-real-header p { margin: -10px 0 0; color: #666; max-width: 880px; line-height: 1.7; }
.store-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.store-gallery-grid-contact {
  grid-template-columns: repeat(3, 1fr);
}
.store-photo-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  min-height: 180px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-photo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.store-photo-card-large { min-height: 180px; }
.store-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .store-gallery-grid,
  .store-gallery-grid-contact { grid-template-columns: repeat(2, 1fr); }
  .store-photo-card,
  .store-photo-card-large { min-height: 150px; }
}
@media (max-width: 500px) {
  .store-gallery-grid,
  .store-gallery-grid-contact { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

/* Butoane navigatie mai mari sub harta */
.map-nav-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.map-nav-btns a {
  flex: 1;
  min-width: 140px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.map-nav-btns a:hover { opacity: 0.88; }
.btn-maps { background: #4285F4; color: #fff; }
.btn-waze { background: #00BFFF; color: #fff; }


.header-actions { display:flex; align-items:center; gap:12px; }
.cart-link { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--secondary); border-radius:999px; padding:10px 14px; font-weight:800; border:1px solid rgba(255,255,255,.3); }
.cart-link-count { min-width:22px; height:22px; border-radius:999px; background:var(--primary); color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:.78rem; }
.product-card-actions { display:grid; grid-template-columns:1fr; gap:10px; margin-top:auto; }
.btn-card-primary, .btn-card-secondary, .btn-block-large { display:block; width:100%; text-align:center; border-radius:6px; padding:12px 14px; font-weight:800; cursor:pointer; }
.btn-card-primary, .btn-block-large { background:var(--secondary); color:#fff; border:none; }
.btn-card-primary:hover, .btn-block-large:hover { background:var(--primary); color:#fff; }
.btn-card-secondary { border:1px solid var(--border); background:var(--white); color:var(--secondary); }
.btn-card-secondary:hover { border-color:var(--secondary); background:#f5f8ff; }
.product-name a { color:inherit; }
.img-zoom-trigger { border:none; cursor:zoom-in; }
.lightbox { position:fixed; inset:0; background:rgba(0,0,0,.78); display:none; align-items:center; justify-content:center; z-index:2000; padding:24px; }
.lightbox.open { display:flex; }
.lightbox-image { max-width:min(1100px, 92vw); max-height:86vh; border-radius:12px; box-shadow:0 20px 60px rgba(0,0,0,.35); background:#fff; }
.lightbox-close { position:absolute; top:18px; right:18px; width:44px; height:44px; border:none; border-radius:999px; background:#fff; color:#111; font-size:2rem; line-height:1; cursor:pointer; }
.site-toast { position:fixed; left:50%; bottom:86px; transform:translateX(-50%) translateY(20px); background:#111827; color:#fff; padding:14px 18px; border-radius:999px; box-shadow:0 12px 32px rgba(0,0,0,.18); opacity:0; pointer-events:none; transition:all .25s ease; z-index:1800; }
.site-toast.visible { opacity:1; transform:translateX(-50%) translateY(0); }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:start; }
.product-main-image { width:100%; min-height:480px; border:1px solid var(--border); border-radius:14px; background:#fff; display:flex; align-items:center; justify-content:center; padding:24px; cursor:zoom-in; }
.product-main-image img { max-width:100%; max-height:430px; object-fit:contain; }
.zoom-note { margin:10px 0 0; color:#666; font-size:.95rem; }
.product-detail-category { display:inline-block; font-size:.82rem; text-transform:uppercase; letter-spacing:.4px; color:var(--secondary); font-weight:800; margin-bottom:12px; }
.product-detail-info h1 { margin:0 0 16px; font-size:2.3rem; line-height:1.1; color:var(--secondary); }
.product-detail-price { font-size:1.8rem; font-weight:900; color:var(--primary); margin-bottom:18px; }
.product-detail-badges { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:18px; }
.detail-chip { background:#f4f7ff; color:var(--secondary); border:1px solid #d9e2ff; padding:8px 12px; border-radius:999px; font-size:.88rem; font-weight:700; }
.product-detail-text { color:#555; line-height:1.7; }
.product-detail-list { margin:18px 0 24px; padding-left:18px; color:#555; line-height:1.8; }
.product-detail-actions { display:flex; gap:12px; flex-wrap:wrap; }
.cart-layout, .checkout-layout { display:grid; grid-template-columns:1.5fr .9fr; gap:28px; align-items:start; }
.cart-items, .checkout-form-card, .cart-summary, .empty-cart-box { background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow); padding:28px; }
.cart-items h1, .checkout-form-card h1 { margin:0 0 10px; color:var(--secondary); font-size:2rem; }
.cart-note { margin:0 0 20px; color:#666; }
.cart-list { display:grid; gap:16px; }
.cart-item { display:grid; grid-template-columns:130px 1fr auto; gap:18px; align-items:center; border:1px solid var(--border); border-radius:12px; padding:16px; }
.cart-item img { width:130px; height:110px; object-fit:contain; background:#fff; }
.cart-item-info h3 { margin:0 0 6px; }
.cart-item-info p { margin:0 0 14px; color:#666; }
.cart-qty-row { display:flex; align-items:center; gap:12px; }
.cart-qty-row input { width:90px; padding:10px 12px; border:1px solid var(--border); border-radius:8px; }
.cart-item-meta { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.cart-remove, .btn-ghost-link { color:var(--secondary); font-weight:700; background:none; border:none; cursor:pointer; }
.cart-summary h2 { margin:0 0 18px; color:var(--secondary); }
.summary-row { display:flex; justify-content:space-between; gap:18px; padding:12px 0; border-bottom:1px solid var(--border); color:#444; }
.summary-row.total { font-size:1.1rem; font-weight:800; color:var(--secondary); }
.btn-block-large { margin-top:18px; }
.btn-ghost-link { display:inline-block; margin-top:14px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-grid label { display:grid; gap:8px; font-weight:700; color:#333; }
.form-grid label input { width:100%; padding:13px 14px; border:1px solid var(--border); border-radius:8px; font:inherit; }
.form-grid .full { grid-column:1 / -1; }
.payment-box { margin-top:24px; padding:18px; border:1px solid var(--border); border-radius:12px; background:#fafafa; }
.payment-box h3 { margin:0 0 12px; color:var(--secondary); }
.payment-option { display:flex; gap:10px; align-items:center; margin-top:10px; font-weight:600; }
.checkout-summary-list { display:grid; gap:10px; }
.summary-mini-item { display:flex; justify-content:space-between; gap:12px; padding-bottom:10px; border-bottom:1px solid var(--border); color:#444; }
.empty-cart-box { text-align:center; }
.empty-cart-box h1 { margin-top:0; color:var(--secondary); }
.search-container-catalog { max-width:640px; margin:0; display:flex; }
@media (max-width: 1024px) { .product-detail-grid, .cart-layout, .checkout-layout { grid-template-columns:1fr; } .header-actions { width:100%; justify-content:space-between; } }
@media (max-width: 768px) { .form-grid { grid-template-columns:1fr; } .form-grid .full { grid-column:auto; } .product-main-image { min-height:320px; } .cart-item { grid-template-columns:1fr; } .cart-item img { width:100%; height:200px; } .cart-item-meta { align-items:flex-start; } .main-nav ul { flex-wrap:wrap; } .header-actions { width:100%; flex-direction:column; align-items:flex-start; } .cart-link { padding:9px 12px; }  }


.contact-actions-center { justify-content: center; }
.legal-card { background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow); padding:32px; }
.legal-card h2 { margin:28px 0 12px; color:var(--secondary); font-size:1.25rem; }
.legal-card h2:first-child { margin-top:0; }
.legal-card p { margin:0; color:#555; line-height:1.8; }
.menu-toggle { display:none; width:46px; height:46px; border:1px solid rgba(255,255,255,.32); background:transparent; border-radius:10px; padding:10px; cursor:pointer; }
.menu-toggle span { display:block; height:2px; margin:5px 0; background:#fff; border-radius:999px; transition:transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .navbar .container { flex-wrap:wrap; }
  .header-actions { width:100%; justify-content:space-between; align-items:center; position:relative; }
  .menu-toggle { display:inline-flex; flex-direction:column; justify-content:center; align-items:stretch; }
  .main-nav { display:none; width:100%; background:#fff; border-radius:12px; overflow:hidden; box-shadow:0 14px 30px rgba(0,0,0,.18); }
  .main-nav.open { display:block; }
  .main-nav ul { flex-direction:column; align-items:stretch; gap:0; }
  .main-nav li + li { border-top:1px solid #eef0f5; }
  .main-nav a { display:block; padding:14px 16px; color:var(--secondary); }
  .main-nav a.active, .main-nav a:hover { background:#f5f8ff; color:var(--secondary); }
}


.hero-brand {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.02;
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-subtext {
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 0 30px;
    color: rgba(255,255,255,.92);
    max-width: 700px;
}

.benefit-link {
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    padding: 6px;
}

.benefit-link:hover {
    background: rgba(15, 61, 145, 0.04);
}

.site-credit {
    margin: 8px 0 0;
    font-size: 0.8rem;
    color: #bfc7d5;
}

.site-credit a {
    color: #ffffff;
    text-decoration: none;
}

.site-credit a:hover {
    color: #ffd2b0;
}

@media (max-width: 768px) {
    .hero-brand {
        font-size: 2.7rem;
    }

    .hero-tagline {
        font-size: 1.12rem;
    }
}


.hero-subtext { max-width: 760px; font-size: 1.08rem; line-height: 1.75; color: rgba(255,255,255,.94); }
.hero-content { max-width: 760px; }
.benefit-link { transition: transform .2s ease, box-shadow .2s ease; }
.benefit-link:hover { transform: translateY(-3px); }
.product-highlight-box { display:grid; gap:6px; margin:20px 0 24px; padding:16px 18px; border-radius:12px; border:1px solid #d9e2ff; background:#f5f8ff; color:var(--secondary); }
.product-highlight-box strong { font-size:1rem; }

@media (max-width: 768px) {
  .search-container { display:flex; width:100%; margin:0; }
  .search-container input { min-width:0; }
  .hero-brand { font-size: 2.7rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-subtext { font-size: 1rem; }
}


.section-subtitle.centered{max-width:720px;margin:0 auto 28px;text-align:center;color:#5f6368}.category-grid-full .cat-item p{margin:10px 0 14px;color:#5f6368;font-size:14px;line-height:1.5}.category-grid-full .cat-item strong{font-size:14px}.contact-card-form,.special-order-side{height:100%}.form-lead{margin-bottom:18px;color:#5f6368}.custom-request-form{display:flex;flex-direction:column;gap:14px}.form-grid-two{display:grid;grid-template-columns:1fr 1fr;gap:14px}.custom-request-form input,.custom-request-form select,.custom-request-form textarea{width:100%;padding:14px 16px;border:1px solid #d0d5dd;border-radius:12px;font:inherit;background:#fff}.custom-request-form textarea{resize:vertical;min-height:140px}.form-note{font-size:14px;color:#5f6368;margin-top:6px}.form-success-message{margin-top:14px;padding:14px 16px;border-radius:12px;background:#eefbf2;color:#1f6b39;font-weight:500}.special-order-side p{margin-bottom:18px;color:#5f6368;line-height:1.6}@media (max-width: 768px){.form-grid-two{grid-template-columns:1fr}}

/* Subcategorii catalog - curate, fără repetări */
.subcategory-filters {
  margin-top: 16px;
}
.subcategory-title {
  font-weight: 800;
  color: #0b3f91;
  margin-bottom: 10px;
  font-size: 1rem;
}
.subcategory-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.subcategory-chip {
  border: 1px solid #d7dce5;
  background: #fff;
  color: #222;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}
.subcategory-chip:hover,
.subcategory-chip.active {
  background: #0b3f91;
  border-color: #0b3f91;
  color: #fff;
}


/* Categoria Parchet, Mochetă și Covoare - subcategorii vizuale premium */
.subcategory-premium-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.subcategory-description {
  margin: -4px 0 16px;
  color: #666;
  font-size: 0.98rem;
}
.subcategory-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.subcategory-visual-card {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  min-height: 150px;
  cursor: pointer;
  text-align: center;
  transition: all .22s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}
.subcategory-visual-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #f3f4f6;
}
.subcategory-visual-card strong {
  display: block;
  color: #0b3f91;
  font-size: 0.95rem;
  line-height: 1.2;
}
.subcategory-visual-card small {
  display: block;
  margin-top: 5px;
  color: #666;
  font-weight: 600;
}
.subcategory-visual-card:hover,
.subcategory-visual-card.active {
  border-color: #0b3f91;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 63, 145, 0.16);
}
.subcategory-visual-card.active {
  background: #eef5ff;
}
.subcategory-visual-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 82px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 2rem;
  background: #f3f4f6;
}
@media (max-width: 640px) {
  .subcategory-premium-panel {
    padding: 14px;
    border-radius: 18px;
  }
  .subcategory-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .subcategory-visual-card {
    min-height: 138px;
    padding: 10px;
  }
  .subcategory-visual-card img,
  .subcategory-visual-icon {
    height: 70px;
  }
}

/* Ajustare buton ofertă */
.product-card button,
.add-to-cart,
button[onclick] {
  font-weight: 800;
}


/* ===== HERO PREMIUM CLEAN ===== */

.hero-clean {
    padding: 0;
    margin: 0;
}

.hero-image-full {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: center;
}

.hero-image-full img {
    width: 100%;
    height: 78vh;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(2,8,25,0.82) 0%,
        rgba(2,8,25,0.55) 35%,
        rgba(2,8,25,0.20) 65%,
        rgba(2,8,25,0.10) 100%
    );
}

.hero-floating-content {
    position: absolute;
    left: 7%;
    max-width: 520px;
    z-index: 3;
}

.hero-floating-content h1 {
    font-size: 4rem;
    line-height: 1.05;
    color: white;
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero-floating-content p {
    color: rgba(255,255,255,0.92);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-btns-clean {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.navbar {
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {

    .navbar .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo img {
        max-height: 52px;
    }

    .search-container {
        margin-top: 10px;
    }

    .hero-image-full {
        min-height: 72vh;
    }

    .hero-image-full img {
        height: 72vh;
        object-position: center;
    }

    .hero-floating-content {
        left: 6%;
        right: 6%;
        bottom: 9%;
        max-width: none;
    }

    .hero-floating-content h1 {
        font-size: 2.3rem;
        line-height: 1.1;
    }

    .hero-floating-content p {
        font-size: 1rem;
    }

    .hero-btns-clean {
        flex-direction: column;
    }
}


@media (max-width: 768px) {

  .mobile-menu-btn,
  .menu-toggle,
  .hamburger,
  .nav-toggle {
      background: #ff7a00 !important;
      color: white !important;
      border-radius: 14px !important;
      padding: 12px 16px !important;
      min-width: 56px !important;
      min-height: 56px !important;
      box-shadow: 0 8px 24px rgba(255,122,0,0.35);
  }

  .nav-links,
  .desktop-menu {
      display: none !important;
  }

  .hero-floating-content h1 {
      font-size: 2.1rem !important;
      max-width: 320px;
  }

  .hero-floating-content p {
      font-size: 1rem !important;
      max-width: 300px;
  }
}


/* ===== FINAL HERO IMAGE WITH BUILT-IN TEXT ===== */
.hero-floating-content {
    display: none !important;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(2,8,25,0.10) 0%,
        rgba(2,8,25,0.04) 45%,
        rgba(2,8,25,0.02) 100%
    ) !important;
}

.hero-image-full,
.hero-image-full img {
    height: 78vh !important;
    min-height: 560px;
}

.hero-image-full img {
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
    .hero-image-full,
    .hero-image-full img {
        height: 58vh !important;
        min-height: 430px;
    }

    .hero-image-full img {
        object-position: left center !important;
    }

    .navbar .container {
        gap: 10px;
    }

    .cart-btn,
    .cart-link,
    .cart-icon {
        transform: scale(1.06);
    }
}


/* ===== HERO RESPONSIVE FINAL: DESKTOP + MOBILE IMAGE ===== */
.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imaginea are text inclus, nu mai afișăm text HTML peste ea */
.hero-floating-content {
    display: none !important;
}

.hero-overlay {
    background: transparent !important;
}

.hero-image-full {
    height: 78vh !important;
    min-height: 560px !important;
}

.hero-image-full > img,
.hero-image-full > picture,
.hero-image-full picture img {
    height: 78vh !important;
    min-height: 560px !important;
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 768px) {
    .hero-image-full {
        height: auto !important;
        min-height: auto !important;
        display: block !important;
    }

    .hero-image-full > picture,
    .hero-image-full picture img {
        height: auto !important;
        min-height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
        object-position: center top !important;
    }

    .hero-overlay {
        display: none !important;
    }
}


/* ===== MOBILE PREMIUM HEADER FIX ===== */
@media (max-width: 768px) {

    .navbar .container{
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        gap: 10px !important;
    }

    .logo-image img{
        height: 62px !important;
    }

    .logo{
        font-size: 1.7rem !important;
    }

    .search-container{
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .hero-pro{
        margin-top: 0 !important;
    }

}
