:root{
  --bg:#ffffff;
  --fg:#000000;
  --muted:#666666;
  --border:#000000;
  --accent:#0b8f3a;
  --max:1100px;
  --radius:0px;
}

/* =========================
   RESET
========================= */
*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

/* =========================
   LAYOUT
========================= */
.container{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
}

/* =========================
   TOPBAR
========================= */
.topbar{
  background:#000;
  color:#fff;
}

.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:6px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.topbar-actions{
  display:flex;
  gap:8px;
  align-items:center;
}

.topbar-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:transform .2s ease;
}

.topbar-icon svg{
  width:18px;
  height:18px;
  fill:#fff;
}

.topbar-icon.insta{
  background:radial-gradient(circle at 30% 30%, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.topbar-icon.whatsapp{
  background:#25D366;
}

.topbar-icon:hover{
  transform:scale(1.08);
}

/* =========================
   HEADER
========================= */
.header{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  padding:22px 0 10px;
}

.header-nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

.header-btn{
  border:1px solid #000;
  padding:6px 12px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:#fff;
  color:#000;
  transition:all .2s ease;
}

.header-btn:hover{
  background:#000;
  color:#fff;
}

.logo img{
  width:100%;
  max-width:320px;
  height:auto;
  display:block;
}

/* =========================
   HERO SLIDER FULL WIDTH
========================= */
.hero-slider{
  position:relative;
  width:100vw;
  height:60vh;
  min-height:320px;
  max-height:520px;
  overflow:hidden;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);

  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}

.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .45s ease;
}

.hero-slide.is-active{
  opacity:1;
}

.hero-nav{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  pointer-events:none;
  padding:0 14px;
}

.hero-btn{
  pointer-events:auto;
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.9);
  background:rgba(0,0,0,.25);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  transition:background .2s ease;
}

.hero-btn:hover{
  background:rgba(0,0,0,.45);
}

.hero-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  display:flex;
  justify-content:center;
  gap:8px;
}

.hero-dot{
  width:10px;
  height:10px;
  border:1px solid rgba(255,255,255,.95);
  background:rgba(0,0,0,.25);
  border-radius:999px;
  cursor:pointer;
  padding:0;
}

.hero-dot.is-active{
  background:#fff;
}

/* =========================
   TYPO / BLOCS
========================= */
.section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin:22px 0 14px;
}

.section-title h1,
.section-title h2{
  margin:0;
  font-size:18px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.small{
  font-size:13px;
  color:var(--muted);
}

.title{
  font-weight:600;
}

.price{
  font-weight:700;
}

/* =========================
   GRID / CARDS
========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}

.card{
  border:1px solid var(--border);
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background:#fff;
  min-width:0;
}

.card .img{
  width:100%;
  aspect-ratio:3 / 4;
  border:1px solid var(--border);
  overflow:hidden;
  background:#f5f5f5;
  display:flex;
  align-items:center;
  justify-content:center;
}

.card .img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}

.card:hover .img img{
  transform:scale(1.03);
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  padding:2px 8px;
  font-size:12px;
  text-transform:uppercase;
  white-space:nowrap;
}

.badge.sold{
  opacity:.55;
}

/* =========================
   BUTTONS
========================= */
.btn{
  border:1px solid var(--border);
  padding:10px 14px;
  background:#fff;
  color:#000;
  cursor:pointer;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:all .2s ease;
}

.btn:hover{
  background:#000;
  color:#fff;
}

.btn.accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.btn.accent:hover{
  filter:brightness(.92);
  background:var(--accent);
  color:#fff;
}

/* =========================
   FORMS
========================= */
.form{
  max-width:760px;
  display:grid;
  gap:10px;
}

.input,
textarea,
select{
  width:100%;
  border:1px solid var(--border);
  background:#fff;
  color:#000;
  padding:10px 12px;
  appearance:none;
  border-radius:0;
}

textarea{
  min-height:140px;
  resize:vertical;
}

label.small{
  display:block;
  margin-bottom:4px;
}

/* =========================
   PRODUCT PAGE
========================= */
.gallery{
  display:grid;
  gap:10px;
}

.main-photo{
  border:1px solid var(--border);
  aspect-ratio:3 / 2;
  overflow:hidden;
  background:#f5f5f5;
}

.main-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.thumbs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:2px;
}

.thumbs button{
  border:1px solid var(--border);
  padding:0;
  width:70px;
  height:70px;
  flex:0 0 70px;
  background:#fff;
  cursor:pointer;
}

.thumbs img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   TABLES / ADMIN-LIKE PUBLIC BLOCKS
========================= */
table{
  width:100%;
  border-collapse:collapse;
}

th,
td{
  vertical-align:top;
}

/* =========================
   FOOTER FULL WIDTH
========================= */
.footer{
  width:100%;
  margin-top:100px;
  background:#000;
  color:#fff;
  overflow-x:hidden;
}

.footer-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:60px 18px;
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:60px;
}

.footer-col{
  min-width:0;
}

.footer h3{
  margin:0 0 20px;
  font-size:14px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.footer-links ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
  word-break:break-word;
}

.footer a:hover{
  opacity:.75;
}

.footer-trust{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:30px;
}

.trust-item{
  display:flex;
  gap:15px;
  align-items:flex-start;
  min-width:0;
}

.trust-icon{
  width:36px;
  height:36px;
  border:1px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 36px;
}

.trust-icon svg{
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-bottom{
  border-top:1px solid #333;
  padding:20px 18px;
  text-align:center;
  font-size:13px;
  color:#aaa;
}

/* =========================
   HELPERS
========================= */
.text-center{
  text-align:center;
}

.mt-10{ margin-top:10px; }
.mt-14{ margin-top:14px; }
.mt-18{ margin-top:18px; }
.mt-20{ margin-top:20px; }

.mb-10{ margin-bottom:10px; }
.mb-14{ margin-bottom:14px; }
.mb-18{ margin-bottom:18px; }
.mb-20{ margin-bottom:20px; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1000px){
  .grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width:900px){
  .footer-inner{
    grid-template-columns:1fr;
    gap:40px;
    padding:44px 18px;
  }

  .footer-trust{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width:700px){
  .container{
    padding:14px;
  }

  .topbar-inner{
    padding:6px 14px;
  }

  .logo img{
    max-width:220px;
  }

  .header{
    gap:12px;
    padding:18px 0 10px;
  }

  .header-nav{
    gap:6px;
  }

  .header-btn{
    font-size:11px;
    padding:5px 10px;
  }

  .hero-slider{
    height:42vh;
    min-height:220px;
  }

  .grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .section-title{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:450px){
  .grid{
    grid-template-columns:1fr;
  }

  .topbar-icon{
    width:32px;
    height:32px;
  }

  .topbar-icon svg{
    width:17px;
    height:17px;
  }

  .hero-btn{
    width:38px;
    height:38px;
  }
}