:root{
--bg: #f6efe8; /* warm paper */
--bg-2:#f3e9df; /* soft cream */
--panel:#ffffff; /* card surface */
--muted:#6b7280; /* slate-500 */
--text:#1f2937; /* gray-800 */
--accent:#eab308;/* amber-500 */
--accent-2:#f59e0b;/* amber-400 */
--danger:#dc2626; /* red-600 */
--ok:#059669; /* emerald-600 */
}
*{box-sizing:border-box}
html,body{
  height:100%
}

body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,"Helvetica Neue",Arial; 
  color:var(--text); 
  background:linear-gradient(180deg,var(--bg),var(--bg-2));
}


/* FAINT CHEETAH BACKGROUND for home */
:root{ --leopard-scale: 420px; /* change for bigger/smaller spots */ }
body.cheetah{
background-image:
linear-gradient(180deg, rgba(246,239,232,.86), rgba(243,233,223,.86)), /* soft fade so pattern stays faint */
url('leopard-print.png'); /* <-- place the generated image here */
background-repeat: no-repeat, repeat;
background-size: cover, var(--leopard-scale) var(--leopard-scale);
background-position: center, top left;
background-attachment: scroll, fixed; /* gentle parallax on desktop */
}


.wrap{
  max-width:1100px;
  margin:0 auto;
  padding:32px 16px 56px
}


.site-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text)
}

.logo{
  width:40px; height:40px;
  display:inline-block;
  background-image: url('pfp.jpg');
  background-size: contain;    /* fit the whole png */
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;          /* make 0 for square, 50% for circle */
  box-shadow: none;            /* remove the old glow */
}
.brand-text{
  font-weight:800;
  letter-spacing:.3px
}

.nav a{
  color:var(--text);
  opacity:.95;
  margin-left:14px;
  text-decoration:none;
  border:1px solid rgba(234,179,8,.35);
  padding:8px 10px;
  border-radius:10px;
  background:rgba(250,204,21,.10)
}

.nav a[aria-current="page"]{
  background:rgba(250,204,21,.2)
}


.card{
  background:linear-gradient(
    180deg,
    rgba(
      255,255,255,.96
      ),
    rgba(
      255,255,255,.9
      )
      );
  border:1px solid rgba(
    148,163,184,.28
    );
  border-radius:18px;
  box-shadow:0 12px 40px rgba(0,0,0,.08)
}

.panel{
  padding:22px
}

/* Ensure hero card padding matches panels even if something overrides it */
.hero-content.panel{
  padding:22px!important
}

.hero-content.panel>*:first-child{
  margin-top:0
}

.hero-content.panel>*:last-child{
  margin-bottom:0
}

.muted{
  color:var(--muted)
}

.actions{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:10px
}
.btn{
  display:inline-block;
  text-decoration:none;
  border:0;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer
}
.btn-primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#111827;
  box-shadow:0 10px 24px rgba(245,158,11,.22),inset 0 -8px 24px rgba(0,0,0,.08)
}

.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(148,163,184,.35)
}

.hint{
  font-size:.9rem;
  color:var(--muted)
}

.divider{
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(148,163,184,.3),transparent);
  margin:14px 0
}



.hero{
  display:grid;
  place-items:center;
  padding:0 0 22px
}

.hero-content h1{
  margin-top:0
}


.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:22px
}

.grid-2{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px
}

@media (max-width:940px){
  .grid-3{grid-template-columns:1fr}.grid-2{grid-template-columns:1fr}
}


/* Catalog */
.catalog .product img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-top-left-radius:18px;
  border-top-right-radius:18px;
  border-bottom:1px solid rgba(148,163,184,.18)
}

.price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:10px}
.price{font-weight:800}
.p-16{padding:16px}


/* Form layout */
form{display:grid;gap:16px}
fieldset{border:1px dashed rgba(148,163,184,.35);border-radius:14px;padding:16px}
legend{padding:0 8px;color:var(--muted);font-size:.9rem}
label{display:block;font-weight:600;margin-bottom:6px}
.req::after{content:" *";color:var(--accent)}
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
input[type=url],
textarea,select{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid rgba(148,163,184,.35);
  background:#fff;
  color:var(--text);
  outline:none
}

textarea{
  min-height:120px;
  resize:vertical
}

.row{display:grid;grid-template-columns:repeat(12,1fr);gap:12px}

.col-6{grid-column:span 6}.col-4{grid-column:span 4}.col-8{grid-column:span 8}.col-12{grid-column:span 12}

@media (max-width:720px){.col-6,.col-4,.col-8{grid-column:span 12}}

.inline{display:flex;flex-wrap:wrap;gap:10px 16px}

.chip{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid rgba(148,163,184,.35);background:#fff}

.hint{font-size:.85rem}

.error{color:var(--danger);font-size:.9rem}

.thumbs{display:flex;gap:10px;flex-wrap:wrap}

.thumbs img{width:70px;height:70px;object-fit:cover;border-radius:10px;border:1px solid rgba(148,163,184,.35)}

.success,.fail{display:none;margin-top:12px;padding:12px;border-radius:12px}

.success{background:rgba(5,150,105,.08);border:1px solid rgba(5,150,105,.35)}

.fail{background:rgba(220,38,38,.08);border:1px solid rgba(220,38,38,.35)}

.visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap}

.site-footer{
  margin-top:28px;
  text-align:center
}

.homefooter{
  font-size: 18px;
  font-style: italic;
}