:root{
  --yellow:#F5C518;
  --yellow-dark:#DBAE00;
  --black:#111111;
  --dark:#1B1B19;
  --text:#1F1F1D;
  --text-secondary:#5B5B58;
  --text-muted:#8A8A86;
  --bg:#FDFDFB;
  --surface:#FFFFFF;
  --surface-alt:#F6F5F0;
  --border: rgba(17,17,17,0.10);
  --border-strong: rgba(17,17,17,0.18);
  --radius:10px;
  --success-bg:#EAF3DE; --success-text:#27500A;
  --warning-bg:#FAEEDA; --warning-text:#633806;
  --info-bg:#E6F1FB; --info-text:#0C447C;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Lato", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
h1,h2,h3,h4{margin:0 0 12px; font-weight:700; line-height:1.25; color:var(--black);}
p{margin:0 0 12px; color:var(--text-secondary);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{margin:0; padding:0; list-style:none;}

.container{max-width:1120px; margin:0 auto; padding:0 24px;}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:999px; font-size:14px; font-weight:700;
  border:1.5px solid transparent; cursor:pointer; white-space:nowrap;
}
.btn-yellow{background:var(--yellow); color:var(--black);}
.btn-yellow:hover{background:var(--yellow-dark);}
.btn-outline-dark{border-color:var(--black); color:var(--black); background:transparent;}
.btn-outline-dark:hover{background:var(--black); color:#fff;}
.btn-outline-light{border-color:rgba(255,255,255,0.55); color:#fff; background:transparent;}
.btn-outline-light:hover{background:rgba(255,255,255,0.12);}
.btn-block{width:100%;}

/* Header */
.site-header{position:sticky; top:0; z-index:50; background:var(--black);}
.header-inner{display:flex; align-items:center; justify-content:space-between; height:76px;}
.logo{font-size:20px; font-weight:700; color:#fff; letter-spacing:0.2px;}
.logo span{color:var(--yellow);}
.main-nav{display:flex; align-items:center; gap:28px;}
.main-nav a{font-size:20px; font-weight:700; text-transform:uppercase; color:rgba(255,255,255,0.82); padding:6px 2px; border-bottom:2px solid transparent;}
.main-nav a:hover, .main-nav a.active{color:#fff; border-bottom-color:var(--yellow);}
.header-actions{display:flex; align-items:center; gap:6px;}
.header-auth{display:flex; align-items:center; gap:8px;}
@media(max-width:768px){.header-auth{display:none;}}
.icon-btn{
  width:38px; height:38px; border-radius:50%; border:none; background:transparent;
  color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:18px;
}
.icon-btn:hover{background:rgba(255,255,255,0.10);}
.menu-toggle{display:none;}
.search-bar{max-height:0; overflow:hidden; background:var(--dark); transition:max-height .2s ease;}
.search-bar.open{max-height:80px;}
.search-bar input{
  flex:1; height:42px; border-radius:8px; border:1.5px solid rgba(255,255,255,0.18);
  background:rgba(255,255,255,0.06); color:#fff; padding:0 14px; font-size:14px; font-family:inherit;
}
.search-bar input::placeholder{color:rgba(255,255,255,0.5);}

/* Hero */
.hero{background:var(--black); color:#fff; padding:0 0 0; overflow:hidden;}
.hero-split{display:flex; align-items:flex-end; min-height:0; gap:0;}
.hero-photo{width:294px; flex-shrink:0; height:auto; display:block; margin-bottom:32px;}
.hero-text{flex:1; padding:32px 48px 32px; display:flex; flex-direction:column; justify-content:center;}
.hero .eyebrow{color:var(--yellow); font-weight:700; font-size:13px; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px;}
.hero h1{color:#fff; font-size:40px; max-width:600px; margin:0 0 16px; line-height:1.2;}
.hero p{color:rgba(255,255,255,0.72); font-size:16px; max-width:500px; margin:0 0 30px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}

/* Hero marquee */
.hero-marquee-wrap{
  width:100%; overflow:hidden;
  padding:32px 0 0;
  mask-image:linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.hero-marquee-track{
  display:flex; gap:40px; width:max-content;
  animation: marquee 28s linear infinite;
}
.hero-marquee-track:hover{ animation-play-state:paused; }
.hero-marquee-item{
  flex-shrink:0; width:280px; height:200px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.04); border-radius:16px;
  padding:16px; border:1px solid rgba(255,255,255,0.08);
}
.hero-marquee-item img{
  max-width:100%; max-height:100%; object-fit:contain;
  filter: drop-shadow(0 4px 24px rgba(245,197,24,0.15));
}
@keyframes marquee{
  0%  { transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}
.page-hero{background:var(--black); color:#fff; padding:20px 0; text-align:center;}
.page-hero h1{color:#fff; font-size:32px; margin-bottom:8px;}
.page-hero p{color:rgba(255,255,255,0.7); max-width:520px; margin:0 auto;}

/* Sections */
.section{padding:76px 0;}
.section-alt{background:var(--surface-alt);}
.section-head{max-width:640px; margin:0 auto 44px; text-align:center;}
.eyebrow{display:inline-block; font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--yellow-dark); background:rgba(245,197,24,0.16); padding:5px 12px; border-radius:999px; margin-bottom:12px;}
.section h2{font-size:28px;}
.section-head p{margin:0;}

/* Grid & cards */
.grid{display:grid; gap:20px;}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr));}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr));}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr));}

.card{background:var(--surface); border:0.5px solid var(--border); border-radius:12px; padding:26px 24px;}
.card .icon-tile{width:44px; height:44px; border-radius:10px; background:rgba(245,197,24,0.16); color:var(--yellow-dark); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:16px;}
.card h3{font-size:17px; margin-bottom:8px;}
.card p{font-size:14px; margin-bottom:0;}

/* Stats */
.stats{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:20px; margin-top:40px;}
.stat-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px 20px 22px;
  text-align:center;
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
  transition:transform .25s, box-shadow .25s;
  position:relative;
  overflow:hidden;
}
.stat-box::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:var(--yellow);
  border-radius:14px 14px 0 0;
}
.stat-box:hover{transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,0.11);}
.stat-num{font-size:38px; font-weight:900; color:var(--black); line-height:1; margin-bottom:10px; display:flex; align-items:baseline; justify-content:center; gap:2px;}
.stat-count{color:var(--yellow-dark);}
.stat-plus{color:var(--black); font-size:28px; font-weight:900;}
.stat-label{font-size:13px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.06em;}

/* About split */
.about-split{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
.avatar-tile{aspect-ratio:1; background:var(--surface-alt); border-radius:16px; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:52px;}

/* Network map */
.network-map-wrap{border-radius:14px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,0.10); border:1px solid var(--border);}
#networkMap{height:380px; width:100%;}
.map-filters{display:flex; flex-wrap:wrap; gap:8px; padding:12px 14px; background:var(--surface); border-bottom:1px solid var(--border);}
.map-filter-btn{display:flex; align-items:center; gap:6px; padding:5px 13px; border-radius:20px; border:1px solid var(--border); background:var(--surface-alt); font-size:12px; font-weight:600; cursor:pointer; color:var(--text-secondary); transition:all .18s;}
.map-filter-btn.active{background:var(--black); color:#fff; border-color:var(--black);}
.map-dot{display:inline-block; width:9px; height:9px; border-radius:50%; flex-shrink:0;}

/* Network action buttons */
.network-actions{display:flex; flex-direction:row; gap:12px; margin-top:24px;}
.network-actions .btn-yellow,
.network-actions .btn-dark{flex:1; justify-content:center; padding:13px 20px; font-size:14px; font-weight:700; border-radius:8px; display:inline-flex; align-items:center; gap:8px; cursor:pointer; text-decoration:none; transition:background .2s, color .2s, border-color .2s;}
.network-actions .btn-yellow{background:var(--yellow); color:var(--black); border:2px solid var(--yellow);}
.network-actions .btn-yellow:hover{background:transparent; color:var(--yellow-dark); border-color:var(--yellow-dark);}
.btn-dark{background:var(--black); color:var(--yellow); border:2px solid var(--black);}
.btn-dark:hover{background:transparent; color:var(--black); border-color:var(--black);}

/* Partner modal */
.partner-modal-overlay{position:fixed; inset:0; background:rgba(0,0,0,0.55); z-index:1000; display:flex; align-items:center; justify-content:center; padding:20px;}
.partner-modal-overlay.hidden{display:none;}
.partner-modal{background:var(--surface); border-radius:16px; width:100%; max-width:760px; max-height:90vh; overflow-y:auto; padding:36px; position:relative; box-shadow:0 20px 60px rgba(0,0,0,0.25);}
.partner-modal h2{margin-bottom:6px;}
.partner-modal p{color:var(--text-secondary); font-size:14px; margin-bottom:20px;}
.partner-modal-close{position:absolute; top:16px; right:16px; background:var(--yellow); border:none; border-radius:50%; width:36px; height:36px; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--black); line-height:1;}
.partner-modal-close:hover{background:var(--yellow-dark);}
.partner-search-row{display:flex; gap:12px; align-items:flex-end; margin-bottom:16px; flex-wrap:wrap;}
.partner-search-row .form-field{margin:0; flex:1; min-width:120px;}
.partner-search-row .btn{flex-shrink:0; height:42px;}
.pm-filters{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px;}
#partnerMap{height:360px; border-radius:10px; overflow:hidden; border:1px solid var(--border);}
.pm-note{font-size:12px; color:var(--text-muted); margin-top:10px; margin-bottom:0; display:flex; align-items:center; gap:6px;}

/* Testimonial / references */
.ref-logos{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:16px; margin-bottom:40px;}
.ref-logo{background:var(--surface); border:0.5px solid var(--border); border-radius:12px; height:110px; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-weight:700; font-size:14px; padding:8px 16px; overflow:hidden;}
.ref-logo img{max-width:100%; max-height:90px; width:100%; object-fit:contain; display:block;}
.testimonial{background:var(--surface); border:0.5px solid var(--border); border-radius:12px; padding:24px;}
.testimonial p{color:var(--text); font-style:italic; font-size:14px;}
.testimonial .who{display:flex; align-items:center; gap:10px; margin-top:14px;}
.avatar-sm{width:36px; height:36px; border-radius:50%; background:rgba(245,197,24,0.22); color:var(--yellow-dark); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px;}
.who .name{font-weight:700; font-size:13px; color:var(--black);}
.who .role{font-size:12px; color:var(--text-muted);}

/* Contact */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:44px;}
.contact-info-item{display:flex; gap:14px; margin-bottom:20px;}
.contact-info-item i{font-size:20px; color:var(--yellow-dark);}
.contact-info-item .t{font-weight:700; font-size:14px; color:var(--black);}
.contact-info-item .d{font-size:13px; color:var(--text-secondary);}
.form-field{margin-bottom:14px;}
.form-field label{display:block; font-size:12px; font-weight:700; color:var(--text-secondary); margin-bottom:6px;}
.form-field input, .form-field select, .form-field textarea{
  width:100%; border-radius:8px; border:1.5px solid var(--border-strong); background:var(--surface);
  padding:11px 13px; font-size:14px; font-family:inherit; color:var(--text);
}
.form-field textarea{resize:vertical; min-height:110px;}

/* CTA banner */
.cta-banner{background:var(--black); border-radius:16px; padding:48px; text-align:center; color:#fff;}
.cta-banner h2{color:#fff; font-size:26px;}
.cta-banner p{color:rgba(255,255,255,0.68); max-width:480px; margin:0 auto 24px;}

/* Filters / marketplace */
.filter-panel{background:var(--surface-alt); border-radius:12px; padding:20px 22px; margin-bottom:22px;}
.filter-row{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px; align-items:end;}
.filter-row label{display:block; font-size:12px; color:var(--text-secondary); margin-bottom:5px;}
.filter-row select{width:100%; height:40px; border-radius:8px; border:1.5px solid var(--border-strong); background:var(--surface); padding:0 10px; font-family:inherit; font-size:13px;}
.chip-row{display:flex; gap:8px; margin-top:14px; flex-wrap:wrap;}
.chip{font-size:12px; padding:5px 12px; border-radius:999px; background:var(--surface); border:1.5px solid var(--border-strong); color:var(--text-secondary);}
.chip.active{background:var(--yellow); border-color:var(--yellow); color:var(--black); font-weight:700;}

.listing-card{background:var(--surface); border:0.5px solid var(--border); border-radius:12px; overflow:hidden; cursor:pointer; transition:box-shadow .2s, transform .2s;}
.listing-card:hover{box-shadow:0 8px 28px rgba(0,0,0,0.10); transform:translateY(-2px);}
.listing-thumb{height:150px; background:var(--surface-alt); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:30px; position:relative;}

/* Carousel */
.listing-carousel{position:relative; height:200px; background:var(--surface-alt); overflow:hidden;}
.cs-slide{position:absolute; inset:0; display:none; align-items:center; justify-content:center;}
.cs-slide.active{display:flex;}
.cs-slide img{width:100%; height:100%; object-fit:contain;}
.cs-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  background:rgba(0,0,0,0.35); color:#fff; border:none; border-radius:50%;
  width:32px; height:32px; font-size:20px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center; z-index:2; transition:background .15s;
}
.cs-arrow:hover{background:rgba(0,0,0,0.6);}
.cs-prev{left:8px;}
.cs-next{right:8px;}
.cs-dots{position:absolute; bottom:8px; left:50%; transform:translateX(-50%); display:flex; gap:5px; z-index:2;}
.cs-dot{width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,0.5); cursor:pointer; transition:background .15s;}
.cs-dot.active{background:#fff;}
.listing-carousel .badge{position:absolute; top:10px; left:10px; z-index:2;}

/* Modale dettaglio */
.listing-modal-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:200;
  display:flex; align-items:center; justify-content:center; padding:16px;
}
.listing-modal{
  background:var(--surface); border-radius:16px; max-width:600px; width:100%;
  max-height:90vh; overflow-y:auto; position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,0.3);
}
.lm-close{
  position:absolute; top:12px; right:14px; z-index:10;
  background:rgba(0,0,0,0.5); color:#fff; border:none; border-radius:50%;
  width:32px; height:32px; font-size:20px; cursor:pointer; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.lm-close:hover{background:rgba(0,0,0,0.8);}
.lm-carousel{position:relative; height:280px; background:var(--surface-alt); border-radius:16px 16px 0 0; overflow:hidden;}
.lm-body{padding:24px;}
.lm-title{font-size:22px; font-weight:900; margin-bottom:6px;}
.lm-price{font-size:26px; font-weight:900; color:var(--black); margin-bottom:20px;}
.lm-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
.lm-field span{font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; color:var(--text-muted); display:block;}
.lm-field strong{font-size:14px; color:var(--black); margin-top:2px; display:block;}
.badge{position:absolute; top:10px; left:10px; font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px;}
.btn-fav{position:absolute; top:10px; right:10px; z-index:3; width:34px; height:34px; border-radius:50%; background:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 1px 4px rgba(0,0,0,.18); transition:transform .15s;}
.btn-fav:hover{transform:scale(1.12);}
.btn-fav svg{width:18px;height:18px;fill:none;stroke:#aaa;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .15s,fill .15s;}
.btn-fav.saved svg{stroke:#e53935;fill:#e53935;}
.badge-success{background:var(--success-bg); color:var(--success-text);}
.badge-warning{background:var(--warning-bg); color:var(--warning-text);}
.badge-info{background:var(--info-bg); color:var(--info-text);}
.listing-body{padding:16px;}
.listing-body .title{font-weight:700; font-size:15px; margin-bottom:2px; color:var(--black);}
.listing-body .meta{font-size:12px; color:var(--text-muted); margin-bottom:10px;}
.listing-body .price-row{display:flex; align-items:center; justify-content:space-between;}
.listing-body .price{font-size:17px; font-weight:700; color:var(--black);}

/* Blog */
.blog-card{background:var(--surface); border:0.5px solid var(--border); border-radius:12px; overflow:hidden;}
.blog-thumb{height:150px; background:var(--surface-alt); display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:28px;}
.blog-body{padding:18px;}
.blog-tag{display:inline-block; font-size:11px; font-weight:700; color:var(--yellow-dark); background:rgba(245,197,24,0.16); padding:3px 10px; border-radius:999px; margin-bottom:10px;}
.blog-body h3{font-size:16px; margin-bottom:8px;}
.blog-body .excerpt{font-size:13px; margin-bottom:12px;}
.blog-body .date{font-size:12px; color:var(--text-muted);}

/* FAQ */
.faq-list{max-width:760px; margin:0 auto;}
.faq-item{border-bottom:0.5px solid var(--border);}
.faq-q{display:flex; align-items:center; justify-content:space-between; padding:20px 4px; cursor:pointer; font-weight:700; font-size:15px; color:var(--black);}
.faq-q i{transition:transform .18s ease; color:var(--yellow-dark); font-size:18px;}
.faq-item.open .faq-q i{transform:rotate(45deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .22s ease;}
.faq-a p{padding:0 4px 20px; font-size:14px;}
.faq-cats{display:flex; gap:8px; justify-content:center; margin-bottom:36px; flex-wrap:wrap;}

/* Footer */
.site-footer{background:var(--black); color:rgba(255,255,255,0.65); padding:56px 0 0;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:36px;}
.footer-logo{color:#fff;}
.footer-text{font-size:13px; color:rgba(255,255,255,0.55); max-width:320px;}
.social-links{display:flex; gap:10px; margin-top:16px;}
.social-links a{width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; font-size:15px;}
.social-links a:hover{background:var(--yellow); color:var(--black);}
.footer-title{color:#fff; font-weight:700; font-size:13px; margin-bottom:14px;}
.footer-grid a, .footer-grid p{display:block; font-size:13px; color:rgba(255,255,255,0.6); margin-bottom:10px;}
.footer-grid a:hover{color:var(--yellow);}
.footer-bottom{border-top:0.5px solid rgba(255,255,255,0.12); padding:18px 0; text-align:center; font-size:12px; color:rgba(255,255,255,0.45);}

/* Mode toggle (vendi / compra) */
.mode-toggle{display:flex; gap:12px; justify-content:center; padding:8px 0 4px;}
.mode-btn{
  display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 0; border-radius:999px;
  border:1.5px solid transparent; background:var(--yellow); font-weight:700;
  font-size:14px; color:var(--black); cursor:pointer; font-family:inherit;
  width:220px;
}
.mode-btn:hover{background:var(--yellow-dark);}
.mode-btn.active{background:var(--black); color:#fff;}
.mode-btn.active:hover{background:var(--black);}
.hidden{display:none !important;}

/* Sell form */
.sell-form{max-width:720px; margin:0 auto; background:var(--surface); border:0.5px solid var(--border); border-radius:16px; padding:36px 40px;}
.sell-form .form-row{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px;}
.req-star{color:#C0392B;}
.address-group{display:grid; grid-template-columns:2fr 1fr 1.4fr 1fr 1fr; gap:8px;}
.radio-group{display:flex; gap:20px; align-items:center; height:44px;}
.radio-label{display:flex; align-items:center; gap:6px; font-size:14px; color:var(--text); cursor:pointer;}
.radio-label input{width:16px; height:16px;}
.field-hint{font-size:12px; color:var(--text-muted); margin:6px 0 0;}
.field-error{font-size:12px; color:#C0392B; margin:4px 0 0; min-height:14px;}
.file-list{margin:8px 0 0; padding-left:18px; font-size:12px; color:var(--text-secondary);}
.file-list li{margin-bottom:2px;}

/* Upload area */
.upload-area{
  border:2px dashed var(--border-strong); border-radius:12px;
  padding:32px 20px; text-align:center; cursor:pointer;
  transition:border-color .2s, background .2s;
}
.upload-area:hover, .upload-area.drag-over{
  border-color:var(--yellow-dark); background:rgba(245,197,24,0.05);
}

/* Photo preview grid */
.photo-preview-grid{
  display:grid; grid-template-columns:repeat(auto-fill, minmax(100px, 1fr));
  gap:10px; margin-top:12px;
}
.photo-thumb{
  position:relative; aspect-ratio:1; border-radius:8px; overflow:hidden;
  border:1.5px solid var(--border-strong); background:var(--surface-alt);
}
.photo-thumb img{width:100%; height:100%; object-fit:cover; display:block;}
.photo-remove{
  position:absolute; top:4px; right:4px; width:22px; height:22px;
  border-radius:50%; background:rgba(0,0,0,0.6); color:#fff;
  border:none; cursor:pointer; font-size:14px; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.photo-remove:hover{background:rgba(180,0,0,0.8);}
.photo-name{
  position:absolute; bottom:0; left:0; right:0;
  font-size:9px; color:#fff; background:rgba(0,0,0,0.5);
  padding:2px 4px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.photo-add{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; cursor:pointer; border:2px dashed var(--border-strong);
  background:transparent; color:var(--text-muted); font-size:12px;
}
.photo-add:hover{border-color:var(--yellow-dark); color:var(--yellow-dark);}
.photo-add i{font-size:24px;}
.form-success{font-size:13px; color:var(--success-text); text-align:center; margin:14px 0 0; min-height:16px;}

/* Product scroll */
.product-scroll-wrap {
  overflow: hidden;
  width: 100%;
  margin: 40px 0 8px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.product-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: productScroll 28s linear infinite;
}
.product-scroll-wrap:hover .product-scroll-track {
  animation-play-state: paused;
}
.product-scroll-item {
  flex-shrink: 0;
  width: 260px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
@keyframes productScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* Responsive */
@media (max-width:900px){
  .main-nav{position:fixed; top:76px; left:0; right:0; background:var(--black); flex-direction:column; align-items:flex-start; padding:16px 24px; gap:16px; display:none;}
  .main-nav.open{display:flex;}
  .menu-toggle{display:flex;}
  .grid-3, .grid-4, .grid-2{grid-template-columns:repeat(2, minmax(0,1fr));}
  .about-split, .contact-grid{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(3, minmax(0,1fr));}
  .ref-logos{grid-template-columns:repeat(2, minmax(0,1fr));}
  .filter-row{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .sell-form{padding:28px 22px;}
  .sell-form .form-row{grid-template-columns:1fr;}
  .address-group{grid-template-columns:1fr 1fr;}
  .mode-toggle{flex-direction:column; align-items:stretch;}
}
@media (max-width:560px){
  .grid-3, .grid-4, .grid-2{grid-template-columns:1fr;}
  .hero h1{font-size:30px;}
  .filter-row{grid-template-columns:1fr;}
}
