.dw-catalog-page {
  --dw-red: #e51b23;
  --dw-ink: #111318;
  --dw-muted: #667085;
  --dw-line: #e4e7ec;
  --dw-soft: #f5f6f8;
  color: var(--dw-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.dw-catalog-page,
.dw-catalog-page * {
  box-sizing: border-box;
}

.dw-catalog-hero {
  position: relative;
  display: grid;
  min-height: clamp(650px, 48vw, 780px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, .48) 0%, rgba(7, 12, 20, .38) 44%, rgba(7, 12, 20, .68) 100%),
    var(--dw-catalog-hero-image, url("https://dowelllaser.com/wp-content/uploads/2026/06/home-banner-fiber-laser-cutting-machine.webp")) center/cover no-repeat;
  align-items: center;
  text-align: center;
}

.dw-catalog-hero__inner,
.dw-catalog-main,
.dw-catalog-nav__inner {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.dw-catalog-hero__inner {
  padding: 126px 0 84px;
}

.dw-catalog-hero__eyebrow,
.dw-catalog-products__eyebrow {
  margin: 0 0 12px;
  color: var(--dw-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dw-catalog-hero__eyebrow {
  color: #fff;
  margin-bottom: 14px;
  font-size: 11px;
  opacity: .9;
}

.dw-catalog-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.3vw, 64px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.dw-catalog-hero__tagline,
.dw-catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-catalog-hero__tagline {
  justify-content: center;
  gap: clamp(17px, 2.1vw, 34px);
  margin: 16px 0 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 1.4;
}

.dw-catalog-hero__tagline span[aria-hidden="true"] {
  opacity: .7;
}

.dw-catalog-button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.dw-catalog-button--primary {
  background: var(--dw-red);
}

.dw-catalog-button--primary:hover,
.dw-catalog-button--primary:focus-visible {
  color: var(--dw-red);
  background: #fff;
}

.dw-catalog-button--ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.62);
}

.dw-catalog-button--ghost:hover,
.dw-catalog-button--ghost:focus-visible {
  color: var(--dw-ink);
  background: #fff;
  border-color: #fff;
}

.dw-catalog-nav {
  position: relative;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid var(--dw-line);
}

.dw-catalog-nav__inner {
  display: block;
  padding: 48px 0 26px;
}

.dw-catalog-nav__label {
  margin: 0 0 28px;
  color: var(--dw-ink);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.dw-catalog-nav__links {
  display: flex;
  gap: clamp(24px, 2.4vw, 40px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.dw-catalog-nav__links::-webkit-scrollbar {
  display: none;
}

.dw-catalog-nav__link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 0 0 12px;
  flex: 0 0 auto;
  align-items: center;
  color: #4b5565;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: none;
  transition: color .18s ease;
  white-space: nowrap;
}

.dw-catalog-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--dw-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.dw-catalog-nav__link:hover,
.dw-catalog-nav__link:focus-visible {
  color: var(--dw-ink);
}

.dw-catalog-nav__link.is-active {
  color: var(--dw-red);
  font-weight: 700;
}

.dw-catalog-nav__link:hover::after,
.dw-catalog-nav__link:focus-visible::after,
.dw-catalog-nav__link.is-active::after {
  transform: scaleX(1);
}

.dw-catalog-main {
  padding: clamp(64px, 7vw, 104px) 0;
}

.dw-catalog-products__heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.dw-catalog-products h2,
.dw-catalog-guide h2,
.dw-catalog-cta h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 40px);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.dw-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dw-catalog-card {
  min-width: 0;
}

.dw-catalog-card[hidden] {
  display: none !important;
}

.dw-catalog-card article {
  display: flex;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--dw-line);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(16,24,40,.04);
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.dw-catalog-card article:hover {
  border-color: #cfd4dc;
  box-shadow: 0 18px 44px rgba(16,24,40,.09);
  transform: translateY(-3px);
}

.dw-catalog-card__media {
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  place-items: center;
  background: var(--dw-soft);
}

.dw-catalog-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.dw-catalog-card article:hover .dw-catalog-card__image {
  transform: scale(1.025);
}

.dw-catalog-card__placeholder {
  width: 44%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e6e9ee, #f7f8fa);
  border-radius: 50%;
}

.dw-catalog-card__body {
  display: flex;
  padding: 22px;
  flex: 1;
  flex-direction: column;
}

.dw-catalog-card__model {
  margin: 0 0 8px;
  color: var(--dw-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dw-catalog-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -.025em;
  line-height: 1.2;
}

.dw-catalog-card h3 a {
  color: var(--dw-ink);
  text-decoration: none;
}

.dw-catalog-card__summary {
  display: -webkit-box;
  min-height: 48px;
  margin: 14px 0 22px;
  overflow: hidden;
  color: var(--dw-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dw-catalog-card__actions {
  margin-top: auto;
}

.dw-catalog-card__details,
.dw-catalog-card__quote {
  display: inline-flex;
  min-height: 40px;
  padding: 10px 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dw-line);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.dw-catalog-card__details {
  color: var(--dw-ink);
  background: #fff;
}

.dw-catalog-card__quote {
  color: #fff;
  background: var(--dw-red);
  border-color: var(--dw-red);
}

.dw-catalog-card__details:hover,
.dw-catalog-card__details:focus-visible {
  color: var(--dw-red);
  border-color: var(--dw-red);
}

.dw-catalog-card__quote:hover,
.dw-catalog-card__quote:focus-visible {
  color: var(--dw-red);
  background: #fff;
}

.dw-catalog-empty {
  padding: 28px;
  color: var(--dw-muted);
  background: var(--dw-soft);
  border-radius: 4px;
}

.dw-catalog-quote {
  padding: clamp(72px, 8vw, 112px) 24px;
  background: #f4f5f7;
}

.dw-catalog-quote__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: clamp(36px, 5vw, 68px);
  background: #fff;
  box-shadow: 0 20px 56px rgba(16,24,40,.07);
}

.dw-catalog-quote__heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.dw-catalog-quote__eyebrow {
  margin: 0 0 10px;
  color: var(--dw-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.dw-catalog-quote__heading h2 {
  margin: 0;
  color: var(--dw-red);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.dw-catalog-quote__heading > p:last-child {
  margin: 16px auto 0;
  color: var(--dw-muted);
  font-size: 15px;
  line-height: 1.7;
}

.dw-catalog-quote .frm-fluent-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  margin: 0;
  padding: 0;
  border: 0;
}

.dw-catalog-quote .ff-el-group {
  min-width: 0;
  margin: 0;
}

.dw-catalog-quote .ff-el-group:has(textarea),
.dw-catalog-quote .ff-el-group:has(input[type="checkbox"]),
.dw-catalog-quote .ff-el-group:has(.ff_t_c),
.dw-catalog-quote .ff_submit_btn_wrapper,
.dw-catalog-quote .ff-message-success,
.dw-catalog-quote .ff-errors-in-stack {
  grid-column: 1 / -1;
}

.dw-catalog-quote .ff_submit_btn_wrapper {
  text-align: center;
}

.dw-catalog-quote .ff-el-input--label label {
  color: #344054;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.dw-catalog-quote .ff-el-form-control {
  min-height: 52px;
  padding: 12px 14px;
  color: var(--dw-ink);
  background: #f8f9fb;
  border: 1px solid #e3e6eb;
  border-radius: 4px;
  box-shadow: none;
  font: 400 14px/1.45 Arial, Helvetica, sans-serif;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dw-catalog-quote textarea.ff-el-form-control {
  min-height: 128px;
  resize: vertical;
}

.dw-catalog-quote .ff_t_c {
  color: #667085;
  font-size: 13px;
  line-height: 1.65;
}

.dw-catalog-quote .ff_t_c a {
  color: var(--dw-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dw-catalog-quote input[type="checkbox"] {
  accent-color: var(--dw-red);
}

.dw-catalog-quote .ff-el-form-control:focus {
  background: #fff;
  border-color: var(--dw-red);
  box-shadow: 0 0 0 3px rgba(229,27,35,.1);
  outline: 0;
}

.dw-catalog-quote .ff-el-is-error .ff-el-form-control {
  border-color: var(--dw-red);
}

.dw-catalog-quote .ff-btn-submit {
  min-width: 160px;
  min-height: 50px;
  padding: 13px 28px;
  color: #fff;
  background: var(--dw-red);
  border: 1px solid var(--dw-red);
  border-radius: 3px;
  box-shadow: 0 12px 26px rgba(229,27,35,.2);
  font: 800 14px/1 Arial, Helvetica, sans-serif;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.dw-catalog-quote .ff-btn-submit:hover,
.dw-catalog-quote .ff-btn-submit:focus-visible {
  color: var(--dw-red);
  background: #fff;
  transform: translateY(-1px);
}

.dw-catalog-quote__privacy {
  margin: 20px 0 0;
  color: #7a8494;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.dw-catalog-quote__privacy a {
  color: var(--dw-red);
}

.dw-catalog-page a:focus-visible {
  outline: 3px solid rgba(229,27,35,.28);
  outline-offset: 3px;
}

/* This stylesheet only loads on the Products catalog. */
html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}

.dw-site-header {
  top: 0 !important;
  margin: 0 !important;
}

/* Elementor's header template container keeps its default vertical padding
   even though the actual site header inside it is position: fixed. That empty
   wrapper is the white strip above the hero, so collapse the wrapper itself. */
.elementor-location-header {
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.elementor-location-header .elementor-element-ab4074a,
.elementor-location-header .elementor-element-ab4074a > .e-con-inner,
.elementor-location-header .elementor-element-a0cd169,
.elementor-location-header .elementor-element-a0cd169 > .elementor-widget-container {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* The hero title uses a constrained width, so center the block itself as well. */
.dw-catalog-hero__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.dw-catalog-hero h1 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .dw-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 767px) {
  .dw-catalog-hero__inner,
  .dw-catalog-main,
  .dw-catalog-nav__inner {
    width: min(100% - 28px, 1360px);
  }

  .dw-catalog-hero {
    min-height: 640px;
    background-position: 64% center;
  }

  .dw-catalog-hero__inner {
    padding: 100px 0 64px;
  }

  .dw-catalog-hero h1 {
    font-size: clamp(38px, 10vw, 48px);
  }

  .dw-catalog-nav__inner {
    padding: 34px 0 20px;
  }

  .dw-catalog-nav__label {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .dw-catalog-nav__link {
    min-height: 40px;
    padding: 0 0 10px;
    font-size: 14px;
  }

  .dw-catalog-main {
    padding: 58px 0;
  }

  .dw-catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dw-catalog-card__body {
    padding: 19px 17px 20px;
  }

  .dw-catalog-quote {
    padding: 54px 14px;
  }

  .dw-catalog-quote__inner {
    padding: 32px 18px;
  }

  .dw-catalog-quote__heading {
    margin-bottom: 30px;
  }

  .dw-catalog-quote .frm-fluent-form fieldset {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dw-catalog-quote .ff-el-group,
  .dw-catalog-quote .ff_submit_btn_wrapper {
    grid-column: 1;
  }

}

@media (prefers-reduced-motion: reduce) {
  .dw-catalog-page *,
  .dw-catalog-page *::before,
  .dw-catalog-page *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
