/* shop-15.css — mirrors your Material Safety look */
:root{
  --card-radius: 14px;
  --card-shadow: 0 8px 24px rgba(0,0,0,.12);
  --border: 1px solid rgba(0,0,0,.08);
  --surface: #fff;
  --ink: #1f2937; /* slate-800 */
  --muted: #6b7280; /* slate-500 */
  --accent: #0f766e; /* teal-700 */
  --accent-weak: #14b8a6; /* teal-500 */
  --maxw: 1400px;
  --gap: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0}

.shop15-wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 2.5vw, 28px);
  color: var(--ink);
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,Apple Color Emoji,Segoe UI Emoji;
}

.shop15-wrap h1,
.shop15-wrap h2,
.shop15-wrap h3{
  margin: 0 0 .4rem 0;
  line-height: 1.2;
}
.shop15-wrap h1{font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 800;}
.shop15-wrap h2{font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 700; color: var(--accent);}
.shop15-wrap h3{font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 600; color: var(--muted);}

.shop15-wrap p{margin: .5rem 0; font-size: clamp(.95rem, 1.1vw, 1rem);}

.no-space{
  
margin:0

}

/* Horizontal rule styled like your other pages */
.shop-hr{
  border: 0;
  border-top: var(--border);
  margin: 12px 0 18px;
}

/* Quick Links (nine items) */
.row-nine{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
  margin: 10px 0 6px;
  
}
.row-nine a{
  text-decoration: none;
  
}
.row-nine p{
  border: var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
  text-align: center;
  font-weight: 700;
  font-size: larger;
  color: var(--accent);
  transition: transform .08s ease, box-shadow .12s ease;
}
.row-nine p:hover{ transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.14); }

/* Header height graphic + icon blurb */
.header-graphic{
  display: grid;
  gap: 10px;
  place-items: center;
  margin: 8px 0 2px;
}
.height-graphic-text{
  display:block;
  max-width: 100%;
  height: auto;       /* keep native height behavior, allow responsive downscale */
  width: auto;
  object-fit: contain;
  
  background: var(--surface);
}

/* Informational blurb next to small icon */
.frame-choices.lead{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px;
  padding: 5px;
  
  background: var(--surface);
}
.frame-choices-icon{
  width: auto;
  height: auto;
  max-height: 275px;   /* preserve natural height; width auto */
  object-fit: contain;
  border-radius: 10px;
}

/* Grid of product cards */
.shop-grid{
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}
@media (max-width: 1100px){ .shop-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 680px){  .shop-grid{ grid-template-columns: 1fr; } }

/* Card */
.shop-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

/* Product image: keep natural height, width auto, but responsive downscale */
.shop-card img.frame-width{
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  border-radius: 10px;
}

/* Text + form */
.shop-text{
  display: grid;
  gap: 6px;
}
.shop-text p{margin:0}
.shop-text p:first-child{font-weight:700}
.shop-text form{
  display: grid;
  gap: 6px;
  padding-top: 4px;
}
.shop-text select,
.shop-text input[type="text"],
.shop-text input[type="submit"]{
  font: inherit;
}
.shop-text select,
.shop-text input[type="text"]{
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid #cbd5e1; /* slate-300 */
  background: #fff;
  width: 100%;
}
.shop-text input[type="submit"]{
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: transform .08s ease, box-shadow .12s ease, opacity .2s ease;
  box-shadow: 0 6px 16px rgba(15,118,110,.24);
}
.shop-text input[type="submit"]:hover{ transform: translateY(-1px); }
.shop-text label{display:inline-flex; align-items:center; gap:6px}

/* Notes / warnings */
#cannot-connect-text-18{
  color: #b45309; /* amber-700 */
  font-size: large;
  font-weight: 700;
}
#height-text{
  color: var(--accent-weak);
  font-weight: 700;
}

/* tiny helper on inline hr spacing consistency */
.hr-tight{ margin: 6px 0 10px; }




.finishes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.finishes-grid a img {
  height: 58px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid #ccc;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finishes-grid a img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.frame-description {

  margin: 20px;
  padding: 20px;
  text-align: center;

}












/* === Shopping grid: 4 columns desktop, responsive down === */
.shop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* was 3 */
}

/* Make frame description look like other cards */
.shop-grid > .frame-description {
  padding: 14px;
  border-radius: var(--card-radius);
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

/* Match font scaling to product cards */
.shop-grid > .frame-description h1 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 800;
}
.shop-grid > .frame-description h3 {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 600;
}
.shop-grid > .frame-description p {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

/* Breakpoints: 3 cols → 2 cols → 1 col */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
}




















/*This was added CSS for 18inch section...may not be needed*/



.starter-height-section {
  max-width: 1400px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.height-banner img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.starter-modular-note {
  text-align: left;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
}

.shop-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.frame-description,
.shop-card,
.reference-card {
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 1rem;
}

.frame-description img,
.shop-card img,
.reference-card img,
.finish-row img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.important-note {
  margin-top: 1rem;
  background: #fff5a8;
  border: 1px solid #e0cf66;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.frame-desc-text,
.price,
.sku,
.finish-note,
.reference-note,
.wall-note p {
  text-align: center;
}

.shop-card h3 {
  text-align: center;
  margin: 1rem 0 0.5rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0.35rem 0;
}

.sku {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-form label {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-form select,
.product-form input[type="text"] {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  box-sizing: border-box;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-row input[type="text"] {
  width: 60px;
  text-align: center;
}

.reference-section {
  margin: 2rem 0;
}

.reference-section h4 {
  margin-bottom: 1rem;
  text-align: left;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.finish-row {
  display: grid;
  grid-template-columns: repeat(9, minmax(90px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.finish-row a {
  display: block;
}

.wall-note {
  max-width: 1000px;
  margin: 2rem auto 0;
}

@media (max-width: 1200px) {
  .shop-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .finish-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-grid-4,
  .reference-grid,
  .finish-row {
    grid-template-columns: 1fr;
  }

  .starter-modular-note,
  .reference-section h4 {
    text-align: center;
  }
}

/* Two-up image row (Scoop Specs + Full Extension) — responsive */
.shop15-wrap .two-up {
  max-width: 1150px;
  margin: 0 auto;
  padding: 8px;
}

.shop15-wrap .two-up .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.shop15-wrap .two-up .image-grid img {
  display: block;
  width: 100%;
  max-width: 543px;
  height: auto;
}

@media (max-width: 768px) {
  .shop15-wrap .two-up .image-grid {
    grid-template-columns: 1fr;
  }
}