/* =========================================================================
   LAUGO ARMS BRASIL — Catálogo (shop landing, pistolas, acessórios)
   Loads after site.css + product.css.
   ========================================================================= */

/* Page intro / notice */
.shop-head { text-align: center; padding: clamp(40px,6vw,72px) 0 clamp(24px,3vw,36px); }
.shop-head h1 { font-family: var(--font-techno); font-weight: 600; font-size: clamp(26px,3.6vw,44px); letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin: 0; }
.shop-notice { max-width: 80ch; margin: 18px auto 0; font-size: 13px; color: var(--t-3); line-height: 1.7; }
.shop-notice b { color: var(--t-1); }

/* ---- Landing: two big category tiles ---- */
.cat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); padding: clamp(20px,3vw,40px) 0 clamp(64px,9vw,110px); }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cat-tile__media { width: 100%; aspect-ratio: 16/10; display: grid; place-items: center; }
.cat-tile__media image-slot { width: 100%; height: 100%; }
.cat-tile__name {
  font-family: var(--font-techno); font-weight: 600; font-size: clamp(22px,3vw,36px);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--red-bright);
  transition: color .18s var(--ease);
}
.cat-tile:hover .cat-tile__name { color: #fff; }

/* ---- Family divider with red brackets ---- */
.cat-divider { display: flex; align-items: center; justify-content: center; gap: clamp(16px,3vw,40px); margin: clamp(48px,7vw,90px) 0 clamp(28px,4vw,44px); }
.cat-divider:first-child { margin-top: clamp(12px,2vw,24px); }
.cat-divider__br { flex: 1; max-width: 200px; height: 1px; background: var(--red-bright); position: relative; }
.cat-divider__br::after { content: ""; position: absolute; top: 0; width: 1px; height: 20px; background: var(--red-bright); }
.cat-divider__br.left::after { right: 0; }
.cat-divider__br.right::after { left: 0; }
.cat-divider__lockup { text-align: center; flex-shrink: 0; }
.cat-divider__lockup .lockup-alien { font-size: clamp(28px,4.4vw,52px); letter-spacing: 0.12em; }
.cat-divider__lockup .lockup-sub { font-size: clamp(11px,1.6vw,20px); letter-spacing: 0.5em; margin-top: 6px; }
.cat-divider__lockup .lockup-sub::before, .cat-divider__lockup .lockup-sub::after { width: clamp(20px,5vw,70px); }
.cat-divider__lockup .lockup-tertiary { font-size: clamp(9px,1.2vw,13px); letter-spacing: 0.4em; margin-top: 8px; }

/* ---- Product grid (pistols / accessories) ---- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,48px) clamp(18px,2.5vw,32px); }
.cat-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cat-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.cat-card__media { width: 100%; aspect-ratio: 5/4; display: grid; place-items: center; transition: transform .35s var(--ease); }
.cat-card__media image-slot { width: 100%; height: 100%; }
.cat-card:hover .cat-card__media { transform: translateY(-8px); }
.cat-card__name { font-family: var(--font-ui); font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; line-height: 1.3; margin-top: 6px; }
.cat-card__price { font-family: var(--font-techno); font-size: 12px; letter-spacing: 0.08em; color: var(--t-3); }
.cat-card__price.sold { color: var(--t-4); }

/* Section padding */
.catalog { padding-bottom: clamp(64px,9vw,110px); }
.accessories { padding: clamp(8px,2vw,24px) 0 clamp(40px,6vw,72px); }

/* Pagination */
/* Out-of-stock badge + subcategory chips */
.cat-card { position: relative; }
.cat-card__media.oos { opacity: .55; }
.cat-badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-family: var(--font-techno); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,0.7); border: 1px solid var(--line); padding: 4px 8px; }
.subcats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 clamp(36px,5vw,56px); }
.subcats a { font-family: var(--font-techno); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t-2); border: 1px solid var(--line); padding: 9px 16px; transition: all .16s var(--ease); }
.subcats a:hover { border-color: var(--t-4); color: #fff; }
.subcats a.is-active { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: clamp(40px,6vw,64px); }
.pagination a { min-width: 36px; height: 36px; display: grid; place-items: center; padding: 0 10px; font-family: var(--font-techno); font-size: 13px; color: var(--t-2); border: 1px solid var(--line); transition: all .16s var(--ease); }
.pagination a:hover { border-color: var(--t-4); color: #fff; }
.pagination a.is-active { background: var(--red-bright); border-color: var(--red-bright); color: #fff; }

@media (max-width: 1080px) {
  .cat-tiles { grid-template-columns: 1fr; }
  .cat-grid, .cat-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cat-divider__br { max-width: 90px; }
}
@media (max-width: 560px) {
  .cat-grid, .cat-grid.cols-4 { grid-template-columns: 1fr 1fr; gap: 28px 14px; }
  .cat-divider { gap: 12px; }
  .cat-divider__br { max-width: 40px; }
}

.cat-card__media img { width:100%; height:100%; object-fit:contain; }

.cat-divider { display:flex; justify-content:center; }
.divider-img { width:100%; max-width:760px; height:auto; display:block; }
