/* ==========================================================
   Seth Products — shared design tokens
   (Matches the main Seth Fastener Tools site: navy #0f437f,
   Archivo for headings, Inter for body copy.)
   ========================================================== */
:root{
  --seth-navy:#0f437f;
  --seth-navy-dark:#0a3160;
  --seth-text-gray:#555;
  --seth-btn-green:#23b75e;
  --seth-btn-yellow:#dfbf3f;
}

.seth-products-grid,
.seth-product-page,
.seth-product-archive{
  font-family:'Inter', sans-serif;
  color:#333;
}

.seth-products-grid h1, .seth-products-grid h2, .seth-products-grid h3,
.seth-product-page h1, .seth-product-page h2, .seth-product-page h3,
.seth-product-archive h1, .seth-product-archive h2, .seth-product-archive h3{
  font-family:'Archivo', sans-serif;
  color:var(--seth-navy);
}

/* ---------- Product grid (shortcode + archive) ---------- */
.seth-products-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:30px;
  margin:30px 0;
}

.seth-product-card{
  background:#fff;
  display:flex;
  flex-direction:column;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
.seth-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,.1);
}
.seth-product-card__img{
  height:230px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#fff;
}
.seth-product-card__img img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.seth-product-card__label{
  background:var(--seth-navy);
  color:#fff;
  text-align:center;
  font-weight:700;
  padding:12px 8px;
}

@media (max-width:900px){
  .seth-products-grid{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width:480px){
  .seth-products-grid{gap:14px;}
  .seth-product-card__img{height:150px;}
}

/* ---------- Page title banner (navy, with breadcrumb) ---------- */
.seth-title-banner{
  background:var(--seth-navy);
  padding:55px 25px 45px;
  text-align:center;
}
.seth-title-banner h1{
  font-family:'Archivo', sans-serif;
  color:#fff;
  font-size:34px;
  font-weight:800;
  margin-bottom:16px;
}
.seth-breadcrumb{
  font-family:'Inter', sans-serif;
  font-size:14px;
  color:#e4ebf5;
}
.seth-breadcrumb a{
  color:#fff;
  font-weight:600;
  text-decoration:none;
}
.seth-breadcrumb a:hover{ text-decoration:underline; }
.seth-breadcrumb .sep{
  font-size:8px;
  margin:0 12px;
  position:relative;
  top:-3px;
  color:#cddaeb;
}
.seth-breadcrumb .current{ color:#e4ebf5; }

/* ---------- Single product page shell ---------- */
.seth-product-page{
  max-width:950px;
  margin:0 auto;
  padding:60px 25px 90px;
}

/* Main card: image, title, description, CTA */
.seth-product-card-main{
  background:#fff;
  box-shadow:0 10px 40px rgba(15,67,127,.10);
  border-radius:4px;
  padding:45px 55px 50px;
  margin-bottom:35px;
}
.seth-product-card-main__img{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:35px;
}
.seth-product-card-main__img img{
  max-width:100%;
  max-height:520px;
  object-fit:contain;
}
.seth-product-card-main h2{
  font-size:26px;
  font-weight:800;
  color:var(--seth-navy);
  margin-bottom:14px;
}
.seth-meta-line{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  font-size:14px;
  font-weight:600;
  color:var(--seth-navy-dark);
  margin-bottom:16px;
}
.seth-product-card-main .seth-excerpt,
.seth-product-card-main .seth-excerpt p{
  font-size:15px;
  line-height:1.85;
  color:var(--seth-text-gray);
  margin-bottom:0;
}
.seth-product-card-main .seth-cta-row{
  margin-top:26px;
}

@media (max-width:700px){
  .seth-product-card-main{ padding:32px 22px 36px; }
  .seth-title-banner h1{ font-size:26px; }
}

/* ---------- Product hero (legacy 2-col layout, kept for reuse) ---------- */
.seth-product-breadcrumb{
  font-size:13px;
  color:#888;
  margin-bottom:25px;
}
.seth-product-breadcrumb a{ color:var(--seth-navy); text-decoration:none; }
.seth-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.seth-product-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:flex-start;
  padding-bottom:50px;
  border-bottom:1px solid #eee;
}
.seth-product-hero__gallery{
  background:#fff;
  border:1px solid #eee;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  min-height:380px;
}
.seth-product-hero__gallery img{
  max-width:100%;
  max-height:420px;
  object-fit:contain;
}

.seth-product-hero__info .seth-cat{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
  color:var(--seth-navy);
  background:#eaf1fb;
  padding:5px 14px;
  border-radius:20px;
  margin-bottom:14px;
  text-transform:uppercase;
}
.seth-product-hero__info h1{
  font-size:32px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:10px;
}
.seth-product-hero__info .seth-model{
  font-size:14px;
  color:#888;
  margin-bottom:20px;
}
.seth-product-hero__info .seth-price-note{
  display:inline-block;
  font-size:15px;
  font-weight:700;
  color:var(--seth-navy-dark);
  margin-bottom:22px;
}
.seth-product-hero__info .seth-excerpt{
  font-size:15px;
  line-height:1.8;
  color:var(--seth-text-gray);
  margin-bottom:26px;
}

.seth-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.seth-btn{
  display: inline-block;
    padding: 10px 34px;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 26px;
    font-weight: 700; 
    transition: .2s;
}
.seth-btn:hover{ background:var(--seth-navy); color:#fff; }

.seth-btn--solid:hover{ opacity:.9; }

/* Specifications (nested inside .seth-product-card-main) */
.seth-product-specs h2{
  font-size:22px;
  font-weight:800;
  color:var(--seth-navy);
  margin-bottom:20px;
}
.seth-product-specs ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 30px;
}
.seth-product-specs li{
  font-size:14.5px;
  line-height:1.6;
  color:var(--seth-text-gray);
  padding-left:22px;
  position:relative;
}
.seth-product-specs li::before{
  content:"";
  position:absolute;
  left:0; top:8px;
  width:9px; height:9px;
  border-radius:50%;
  background:var(--seth-btn-green);
}

/* Related products */
.seth-related-products{
  padding-top:15px;
}
.seth-related-products h2{
  font-size:24px;
  font-weight:800;
  margin-bottom:22px;
  text-align:center;
}

@media (max-width:800px){
  .seth-product-hero{grid-template-columns:1fr; gap:30px;}
  .seth-product-specs ul{grid-template-columns:1fr;}
}
