.sh-cig{
  --cig-ink:#2D2A26;--cig-ink2:#5A5045;--cig-muted:#9C8B7A;
  --cig-line:#EAE2D8;--cig-cream:#FBF8F3;--cig-gold:#C9A77D;
  --cig-green:#2F6B3A;--cig-greenbg:#EAF3E4;
  background:var(--cig-cream);
  border:1px solid var(--cig-line);
  border-radius:16px;
  padding:22px 22px 16px;
  margin:30px 0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}
.sh-cig *{box-sizing:border-box;}

.sh-cig-head{display:flex;align-items:center;gap:14px;margin:0 0 18px;}
.sh-cig-badge{
  flex:0 0 auto;width:44px;height:44px;border-radius:12px;background:var(--cig-ink);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F4EDE3' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h3l1.5-2h7L17 8h3v11H4z'/%3E%3Ccircle cx='12' cy='13' r='3.2'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:24px 24px;
}
.sh-cig-htext{flex:1;min-width:0;}
.sh-cig-title{font-size:19px;font-weight:700;color:var(--cig-ink);margin:0;letter-spacing:-.01em;line-height:1.2;}
.sh-cig-sub{font-size:13px;color:var(--cig-muted);margin:2px 0 0;line-height:1.35;}
.sh-cig-pill{
  flex:0 0 auto;display:inline-flex;align-items:center;gap:5px;
  background:var(--cig-greenbg);color:var(--cig-green);
  font-size:12px;font-weight:700;padding:6px 11px;border-radius:999px;white-space:nowrap;
}
.sh-cig-pill::before{
  content:"";width:12px;height:12px;flex:0 0 auto;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6B3A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:contain;
}

.sh-cig-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:12px;margin:0;}
.sh-cig-card{margin:0;padding:0;}
.sh-cig-media{
  position:relative;display:block;width:100%;padding:0;border:0;margin:0;
  aspect-ratio:3/4;border-radius:12px;overflow:hidden;background:#E8E0D6;cursor:zoom-in;
}
.sh-cig-media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease;}
.sh-cig-card:hover .sh-cig-media img{transform:scale(1.06);}
.sh-cig-media::after{
  content:"\2605";position:absolute;top:8px;left:8px;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(45,42,38,.82);color:#F6D89A;font-size:11px;line-height:1;
  padding:4px 7px;border-radius:999px;pointer-events:none;
}
.sh-cig-cap{font-size:12px;color:var(--cig-muted);line-height:1.35;padding:8px 2px 0;margin:0;}

.sh-cig-foot{
  display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;
  margin-top:16px;padding-top:12px;border-top:1px solid var(--cig-line);
}
.sh-cig-count{font-size:12.5px;color:var(--cig-ink2);font-weight:600;}
.sh-cig-credit{font-size:12px;color:var(--cig-muted);display:inline-flex;align-items:center;gap:5px;}
.sh-cig-credit::before{
  content:"";width:13px;height:13px;flex:0 0 auto;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F6B3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:contain;
}

/* Lightbox */
.sh-cig-lb{
  position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;
  background:rgba(28,25,22,.92);opacity:0;visibility:hidden;transition:opacity .22s ease;
  padding:24px;
}
.sh-cig-lb.is-open{opacity:1;visibility:visible;}
.sh-cig-lb-img{max-width:min(92vw,1100px);max-height:88vh;border-radius:10px;display:block;box-shadow:0 20px 60px rgba(0,0,0,.5);}
.sh-cig-lb-cap{
  position:absolute;left:0;right:0;bottom:18px;text-align:center;
  color:#F4EDE3;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  padding:0 24px;text-shadow:0 1px 3px rgba(0,0,0,.6);
}
.sh-cig-lb-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  width:46px;height:46px;border-radius:999px;border:0;cursor:pointer;
  background:rgba(255,255,255,.14);color:#fff;font-size:22px;line-height:1;
  display:flex;align-items:center;justify-content:center;transition:background .15s ease;
}
.sh-cig-lb-btn:hover{background:rgba(255,255,255,.28);}
.sh-cig-lb-prev{left:16px;}
.sh-cig-lb-next{right:16px;}
.sh-cig-lb-close{top:16px;right:16px;transform:none;width:42px;height:42px;font-size:20px;}
.sh-cig-lb-count{position:absolute;top:22px;left:22px;color:#F4EDE3;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;opacity:.85;}

@media (max-width:600px){
  .sh-cig{padding:18px 16px 14px;}
  .sh-cig-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;}
  .sh-cig-title{font-size:17px;}
  .sh-cig-lb-btn{width:40px;height:40px;}
}
@media (prefers-reduced-motion:reduce){
  .sh-cig-media img,.sh-cig-lb{transition:none;}
  .sh-cig-card:hover .sh-cig-media img{transform:none;}
}
