:root {
      --bg-dark: #1C1F24;
      --bg-mid: #2A3A45;
      --bg-soft: #3A3F45;
      --brand-blue: #3E5F73;
      --accent: #FF7A1A;
      --accent-soft: #FFA94D;
      --text-light: #F5F7FA;
      --text-muted: #D9E1E8;
      --border: rgba(255,255,255,0.08);
      --shadow: 0 16px 40px rgba(0,0,0,0.35);
      --max-width: 1200px;
      --radius: 18px;
      --transition: 0.3s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(180deg, var(--bg-dark) 0%, #20252c 100%);
      color: var(--text-light);
      line-height: 1.6;
    }

    li {
        text-align: left;
    }
    
    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(calc(100% - 2rem), var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 5rem 0;
    }

    .section-alt {
      background: rgba(255,255,255,0.02);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-header {
      max-width: 700px;
      margin-bottom: 2rem;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.9rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-soft);
      margin-bottom: 0.65rem;
      font-weight: 700;
    }

    h1, h2, h3 {
      line-height: 1.15;
      letter-spacing: 0.02em;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4.8rem);
      margin-bottom: 1rem;
    }

    h1, .brand-text {
      position: relative;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* each line behaves independently */
    h1 .line {
      position: relative;
      display: inline-block;
    }
    
    /* shadow layer */
    h1 .line::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 3px;
      z-index: -1;
    
      color: rgba(0,0,0,0.8);
      filter: blur(1px);
    }
    
    /* orange accent line */
    h1 .accent {
      color: #FF7A1A;
      -webkit-text-fill-color: #FF7A1A;
    
      text-shadow:
        0 0 8px rgba(255,122,26,0.5),
        0 0 16px rgba(255,122,26,0.3);
    }
        
    h1::after, .brand-text::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 3px;
      z-index: -1;
    
      color: rgba(0,0,0,0.8);
      filter: blur(1px);
    }

    h1 span {
      color: #FF7A1A;
      -webkit-text-fill-color: #FF7A1A;
    
      text-shadow:
        0 0 8px rgba(255,122,26,0.5),
        0 0 16px rgba(255,122,26,0.3);
    }

    .services-title span {
        color: white;
        -webkit-text-fill-color: white;
    }
    .hero-heading {
      position: relative;
      display: inline-block;
    }
    
    .hero-heading h1 {
      position: relative;
      z-index: 2;
    }
    
    .spark-layer {
      position: absolute;
      inset: -20px -30px;
      z-index: 1;
      pointer-events: none;
      overflow: visible;
    }
    
    .spark {
      position: absolute;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: radial-gradient(circle, #FFA94D 0%, #FF7A1A 55%, rgba(255,122,26,0) 100%);
      opacity: 0;
      filter: blur(0.4px);
      box-shadow: 0 0 8px rgba(255,122,26,0.35);
      animation: sparkFloat 2.8s ease-out infinite;
    }
    
    .spark-1 {
      left: 8%;
      top: 70%;
      animation-delay: 0s;
    }
    
    .spark-2 {
      left: 22%;
      top: 45%;
      animation-delay: 0.8s;
    }
    
    .spark-3 {
      left: 48%;
      top: 65%;
      animation-delay: 1.6s;
    }
    
    .spark-4 {
      left: 72%;
      top: 38%;
      animation-delay: 1.1s;
    }
    
    .spark-5 {
      left: 88%;
      top: 58%;
      animation-delay: 2.1s;
    }
    
    @keyframes sparkFloat {
      0% {
        transform: translate(0, 0) scale(0.65);
        opacity: 0;
      }
      12% {
        opacity: 0.8;
      }
      55% {
        opacity: 0.45;
      }
      100% {
        transform: translate(18px, -26px) scale(1);
        opacity: 0;
      }
    }

    .spark-2,
    .spark-4 {
      width: 4px;
      height: 4px;
    }
    
    .spark-3 {
      width: 8px;
      height: 8px;
    }
    
    .hero-heading::before {
      content: "";
      position: absolute;
      left: 5%;
      right: 5%;
      top: 50%;
      height: 22px;
      transform: translateY(-50%);
      background: radial-gradient(ellipse at center, rgba(255,122,26,0.14), rgba(255,122,26,0) 70%);
      filter: blur(10px);
      z-index: 0;
      pointer-events: none;
    }

    h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      margin-bottom: 0.9rem;
    
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
    
      /* brighter metal look */
      background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e5e7eb 40%,
        #9ca3af 100%
      );
    
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    
      position: relative;
    
      /* subtle depth (lighter than h3) */
      text-shadow:
        0 1px 2px rgba(0,0,0,0.4);
    }

    h2::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 1px;
      z-index: -1;
    
      color: rgba(0,0,0,0.5);
      filter: blur(0.5px);
    }

    h2:hover {
      text-shadow:
        0 0 6px rgba(255,255,255,0.15),
        0 0 10px rgba(255,122,26,0.15);
    }

    .services-title {
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
    
      /* CLEAN WHITE */
      color: #ffffff;
      -webkit-text-fill-color: #ffffff;
      background: none;
    
      /* SMALLER THAN HOME */
      font-size: clamp(2rem, 4vw, 3.2rem);
    
      position: relative;
    
      /* subtle depth */
      text-shadow:
        0 2px 6px rgba(0,0,0,0.6);
    }

    .services-title .line {
      position: relative;
      display: inline-block;
    }
    
    .services-title .line::after {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 2px;
      z-index: -1;
    
      color: rgba(0,0,0,0.6);
      filter: blur(0.8px);
    }

    .services-title .accent {
      color: #FF7A1A;
      -webkit-text-fill-color: #FF7A1A;
    
      text-shadow: none;
    }

    h3 {
      line-height: 2.2;
      padding-top: 20px;
      font-size: 1.2rem;
      margin-bottom: 0.75rem;
    
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    
      /* metallic gradient */
      background: linear-gradient(
        145deg,
        #e5e7eb 0%,
        #9ca3af 40%,
        #1f2937 100%
      );
    
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    
      position: relative;
    }
    
    h3::before {
      content: attr(data-text);
      position: absolute;
      left: 0;
      top: 2px;
      z-index: -1;
    
      color: rgba(0,0,0,0.7);
      filter: blur(1px);
    }

    p {
      color: var(--text-muted);
    }
    .product-description-list, .product-card > h3 {
        margin-top: 20px;
    }
    .btn-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .btn-row .btn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.85rem 1.35rem;
      border-radius: 999px;
      font-weight: 700;
      transition: var(--transition);
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent);
      color: #111;
    }

    .btn-primary:hover {
      background: var(--accent-soft);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--text-light);
      border-color: rgba(255,255,255,0.2);
    }

    .btn-secondary:hover {
      border-color: var(--accent-soft);
      color: var(--accent-soft);
    }

    .custom-cta {
      text-align: center;
    }
    
    .custom-cta-inner {
      max-width: 700px;
      margin: 0 auto;
    }
    
    /* center buttons */
    .btn-row.center {
      justify-content: center;
    }
    
    .custom-cta {
      position: relative;
    }
    
    .custom-cta::before {
      content: "";
      display: block;
      width: 120px;
      height: 2px;
      margin: 0 auto 30px;
    
      background: linear-gradient(
        90deg,
        transparent,
        #FF7A1A,
        transparent
      );
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
      background: rgba(28, 31, 36, 0.88);
      border-bottom: 1px solid var(--border);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      min-height: 82px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 0;
    }

    .brand img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .brand-text {
      font-weight: 800;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      font-size: 0.95rem;
      line-height: 1.2;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 1.25rem;
      align-items: center;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      color: var(--text-muted);
      font-weight: 700;
      transition: var(--transition);
    }

    nav a:hover,
    nav a.active {
      color: var(--accent-soft);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 6rem 0 5rem;
      background:
        radial-gradient(circle at top right, rgba(255,122,26,0.16), transparent 25%),
        linear-gradient(135deg, rgba(62,95,115,0.22), transparent 40%),
        linear-gradient(180deg, #171a1f 0%, #222932 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: center;
    }

    .hero-copy p {
      max-width: 700px;
      font-size: 1.05rem;
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .hero-card img {
      border-radius: 20px;
      width: 100%;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .meta-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem;
      text-align: center;
    }

    .meta-box strong {
      display: block;
      color: var(--accent-soft);
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 1.5rem;
    }

    .grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .card {
        text-align: center;
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,169,77,0.35);
    }

    .icon-pill {
      padding-top: 30px;
      margin-left: auto;
      margin-right: auto;
      max-width: 150px;
      max-height: 150px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent-soft);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .split-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .panel {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      min-height: 320px;
    }

    .panel-image {
      min-height: 100%;
      background:
        linear-gradient(135deg, rgba(255,122,26,0.2), transparent),
        linear-gradient(180deg, rgba(62,95,115,0.25), rgba(255,255,255,0.02));
    }

    .panel-copy {
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .list-check {
      list-style: none;
      margin-top: 1rem;
      display: grid;
      gap: 0.8rem;
    }

    .list-check li {
      color: var(--text-muted);
      position: relative;
      padding-left: 1.5rem;
    }

    .list-check li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent-soft);
      font-weight: 900;
    }

    footer {
      background: #14171b;
      border-top: 1px solid var(--border);
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr;
      gap: 2rem;
      align-items: start;
    }

    .contact-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
    }

    .contact-card.highlight {
      border-color: rgba(255,169,77,0.65);
      box-shadow: 0 0 0 2px rgba(255,169,77,0.18), 0 0 28px rgba(255,122,26,0.2);
      transform: translateY(-2px);
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 0.9rem;
      margin-top: 1rem;
    }

    .contact-list li span {
      color: var(--accent-soft);
      font-weight: 700;
      display: inline-block;
      min-width: 90px;
    }

    .footer-nav {
      list-style: none;
      display: grid;
      gap: 0.85rem;
      margin-top: 1rem;
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      margin-top: 2rem;
      padding-top: 1rem;
      color: #a8b2bd;
      font-size: 0.95rem;
    }

    .sticky-quote-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 9999;
    
      background: #FF7A1A;
      color: #111;
    
      padding: 14px 20px;
      border-radius: 999px;
    
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      transition: all 0.25s ease;
    
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    /* hover effect */
    .sticky-quote-btn:hover {
      background: #FFA94D;
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.5);
    }

    @media (max-width: 960px) {
      .hero-grid,
      .grid-4,
      .grid-3,
      .grid-2,
      .split-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
      }

      nav ul {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
    .sticky-quote-btn {
        display: none;
    }
      .section {
        padding: 4rem 0;
      }

      .hero {
        padding-top: 4.5rem;
      }

      .brand-text {
        font-size: 0.82rem;
      }

      nav ul {
        gap: 0.8rem 1rem;
      }
    }
    
    /*MODAL*/
    .product-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.product-modal.open {
  display: block;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.product-modal-content {
  position: relative;
  z-index: 2;
  width: min(95vw, 1100px);
  max-height: 90vh;
  margin: 5vh auto;
  background: #1C1F24;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px 60px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.product-modal-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.product-modal-main img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: 12px;
}

.product-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.product-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,122,26,0.9);
  color: #111;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.product-modal-nav.prev {
  left: 10px;
}

.product-modal-nav.next {
  right: 10px;
}

.product-modal-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-modal-thumbs button {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.product-modal-thumbs button.active {
  border-color: #FF7A1A;
}

.product-modal-thumbs img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.product-image-trigger {
  cursor: pointer;
}

@media (max-width: 640px) {
  .product-modal-content {
    width: 96vw;
    padding: 20px 45px 20px;
  }

  .product-modal-main {
    min-height: 280px;
  }
}

/* END MODAL */

@media (max-width: 768px) {

  /* stack header */
  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* stack logo + text */
  .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* make logo bigger */
  .brand img {
    width: 120px; /* adjust as needed */
    height: auto;
  }

  /* space between logo + text */
  .brand-text {
    margin-top: 6px;
  }

  /* center nav under logo */
  nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* =========================
   METAL PAGE
========================= */

.metal-request-form {
  display: grid;
  gap: 2rem;
}

.metal-products-grid {
  display: grid;
  gap: 1.5rem;
}

.metal-product-card {
  text-align: left;
  padding: 1.75rem;
}

.metal-card-top {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.metal-product-image {
  max-width: 180px;
  max-height: 180px;
  width: 100%;
  height: 180px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.metal-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metal-product-content h3 {
  margin-bottom: 0.5rem;
}

.metal-request-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
}

.metal-request-box h3 {
  margin-bottom: 1rem;
}

.metal-length-options {
  display: grid;
  gap: 0.25rem;
}

.metal-length-row {
  display: grid;
  grid-template-columns: 1.2fr auto auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.metal-length-row:last-child {
  border-bottom: none;
}

.metal-length-row label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
}

.metal-length-row input[type="checkbox"] {
  accent-color: var(--accent);
}

.metal-available {
  color: var(--text-muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

.metal-request-qty {
  width: 90px;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
}

.metal-request-qty:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.metal-line-total {
  color: var(--accent-soft);
  font-weight: 700;
  min-width: 76px;
  text-align: right;
}

.metal-product-total-wrap {
  margin: 1rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.metal-product-total-label {
  color: var(--text-muted);
  font-weight: 700;
}

.metal-product-total {
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 1.15rem;
}

.metal-customer-panel {
  text-align: left;
}

.metal-customer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.metal-request-box .form-field {
  display: grid;
  gap: 0.45rem;
}

.metal-request-box .form-field label {
  color: var(--text-light);
  font-weight: 700;
}

.metal-request-box .form-field input,
.metal-request-box .form-field select,
.metal-request-box .form-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  outline: none;
}

.metal-request-box .form-field input:focus,
.metal-request-box .form-field select:focus,
.metal-request-box .form-field textarea:focus {
  border-color: rgba(255,169,77,0.55);
  box-shadow: 0 0 0 2px rgba(255,169,77,0.15);
}

.metal-request-box .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.metal-grand-total-bar {
  position: sticky;
  bottom: 0;
  z-index: 900;
  background: rgba(20, 23, 27, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 25px rgba(0,0,0,0.25);
}

.metal-grand-total-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.metal-grand-total-label {
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metal-grand-total-value {
  color: var(--accent-soft);
  font-size: 1.5rem;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
  .metal-card-top {
    grid-template-columns: 1fr;
  }

  .metal-product-image {
    max-width: 100%;
    height: 220px;
  }

  .metal-customer-grid {
    grid-template-columns: 1fr;
  }

  .metal-length-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .metal-line-total {
    text-align: left;
  }

  .metal-grand-total-inner {
    min-height: auto;
    padding: 0.9rem 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/**end metal page**/

    /*temp. delete later */
    .para-edit-wrapper {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 8px;
}

.para-edit-box {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
  border: none;
  resize: vertical;
  min-height: 60px;

  font-family: inherit;
  font-size: 0.9rem;
}

.para-send-btn {
  margin-top: 8px;
  background: #FF7A1A;
  color: #111;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.para-send-btn:hover {
  background: #FFA94D;
}
/* end temp */