.dw-custom-design,
.dw-custom-design * {
  box-sizing: border-box;
}

.dw-custom-design {
  --dw-cd-orange: #f08d2a;
  --dw-cd-orange-dark: #d97817;
  --dw-cd-navy: #152345;
  --dw-cd-navy-2: #1a2950;
  --dw-cd-light: #f7f8fc;
  --dw-cd-border: #e4e6ef;
  --dw-cd-text: #1a1a2e;
  --dw-cd-muted: #64748b;
  --dw-cd-shadow-sm: 0 1px 3px rgba(21, 35, 69, .06), 0 1px 2px rgba(21, 35, 69, .04);
  --dw-cd-shadow-md: 0 8px 30px rgba(21, 35, 69, .08);
  --dw-cd-shadow-lg: 0 24px 60px rgba(21, 35, 69, .16);
  --dw-cd-heading-font: var(--font-family-title, inherit);
  color: var(--dw-cd-text);
  background: #fff;
  font-family: inherit;
  overflow-x: clip;
}

.dw-custom-design img {
  display: block;
  max-width: 100%;
}

.dw-custom-design button,
.dw-custom-design input {
  font: inherit;
}

.dw-custom-design a {
  color: inherit;
  text-decoration: none;
}

.dw-custom-design .hidden {
  display: none !important;
}

.dw-cd-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.dw-cd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}

.dw-cd-reveal.is-in {
  opacity: 1;
  transform: none;
}

.dw-cd-breadcrumb {
  border-bottom: 1px solid var(--dw-cd-border);
  color: var(--dw-cd-muted);
  font-size: 13px;
  padding: 14px 0;
}

.dw-cd-breadcrumb-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dw-cd-breadcrumb a:hover {
  color: var(--dw-cd-orange);
}

.dw-cd-breadcrumb-sep {
  opacity: .55;
}

.dw-cd-product {
  background: #fff;
}

.dw-cd-product-grid {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr) 286px;
  padding: 34px 0 52px;
}

.dw-cd-gallery {
  min-width: 0;
}

.dw-cd-main-image {
  aspect-ratio: 3 / 3.6;
  background: var(--dw-cd-light);
  border: 1px solid var(--dw-cd-border);
  border-radius: 16px;
  box-shadow: var(--dw-cd-shadow-sm);
  cursor: zoom-in;
  display: block;
  margin: 0 0 10px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.dw-cd-main-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  width: 100%;
}

.dw-cd-main-image:hover img {
  transform: scale(1.05);
}

.dw-cd-badge-free,
.dw-cd-zoom-hint {
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(21, 35, 69, .58);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  padding: 6px 12px;
  position: absolute;
  z-index: 2;
}

.dw-cd-badge-free {
  left: 14px;
  top: 14px;
}

.dw-cd-zoom-hint {
  bottom: 14px;
  opacity: 0;
  right: 14px;
  transition: opacity .2s ease;
}

.dw-cd-main-image:hover .dw-cd-zoom-hint {
  opacity: 1;
}

.dw-cd-badge-free i,
.dw-cd-zoom-hint i {
  color: var(--dw-cd-orange);
}

.dw-cd-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.dw-cd-thumb {
  background: var(--dw-cd-light);
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  flex: 0 0 auto;
  height: 88px;
  overflow: hidden;
  padding: 0;
  transition: border-color .15s ease, transform .15s ease;
  width: 70px;
}

.dw-cd-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dw-cd-thumb.is-active {
  border-color: var(--dw-cd-orange);
}

.dw-cd-thumb:hover {
  transform: translateY(-2px);
}

.dw-cd-product-info {
  min-width: 0;
}

.dw-cd-promo-badge {
  align-items: center;
  background: linear-gradient(135deg, var(--dw-cd-orange), var(--dw-cd-orange-dark));
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(240, 141, 42, .25);
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  letter-spacing: .5px;
  margin-bottom: 14px;
  padding: 6px 13px;
  text-transform: uppercase;
}

.dw-cd-title {
  color: var(--dw-cd-navy);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.4px;
  line-height: 1.28;
  margin: 0 0 10px;
}

.dw-cd-stars-row {
  align-items: center;
  color: var(--dw-cd-muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 7px;
  margin-bottom: 16px;
}

.dw-cd-stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
}

.dw-cd-short-desc {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 0 22px;
}

.dw-cd-price-block {
  background: var(--dw-cd-light);
  border: 1px solid var(--dw-cd-border);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
}

.dw-cd-price-label,
.dw-cd-price-kdv {
  color: var(--dw-cd-muted);
  font-size: 12px;
}

.dw-cd-price-row {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3px;
}

.dw-cd-price-current {
  color: var(--dw-cd-orange);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
}

.dw-cd-price-old {
  color: #94a3b8;
  font-size: 16px;
  text-decoration: line-through;
}

.dw-cd-price-save {
  background: #dcfce7;
  border-radius: 999px;
  color: #16a34a;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
}

.dw-cd-dim-section {
  margin-bottom: 18px;
}

.dw-cd-dim-label {
  color: var(--dw-cd-navy);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 9px;
}

.dw-cd-dim-label span {
  color: var(--dw-cd-orange);
}

.dw-cd-dim-inputs,
.dw-cd-dim-hints {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.dw-cd-dim-field {
  position: relative;
}

.dw-cd-dim-field input {
  border: 1.5px solid var(--dw-cd-border);
  border-radius: 11px;
  color: var(--dw-cd-navy);
  font-size: 14px;
  outline: 0;
  padding: 14px 42px 14px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}

.dw-cd-dim-field input:focus {
  border-color: var(--dw-cd-orange);
  box-shadow: 0 0 0 3px rgba(240, 141, 42, .12);
}

.dw-cd-dim-field .dw-cd-unit {
  color: var(--dw-cd-muted);
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.dw-cd-dim-hints {
  margin-top: 6px;
}

.dw-cd-dim-hints span {
  color: var(--dw-cd-muted);
  font-size: 11px;
  text-align: center;
}

.dw-cd-dim-field .dims-hint {
  color: #dc2626;
  font-size: 11px;
  left: 2px;
  line-height: 1.2;
  opacity: 0;
  position: absolute;
  top: calc(100% + 4px);
  transition: opacity .18s ease;
}

.dw-cd-dim-field .dims-hint.is-show {
  opacity: 1;
}

.dw-cd-dim-field input.dims-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}

.dw-cd-dim-field input.dims-pulse,
.dw-cd-dim-field.ms-focus-pulse input {
  animation: dwCdPulse .75s ease;
}

@keyframes dwCdPulse {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-2px); }
}

.dw-cd-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dw-cd-btn-calc,
.dw-cd-btn-fav,
.dw-cd-final-primary,
.dw-cd-final-secondary,
.dw-cd-mobile-add,
.dw-cd-btn-orange,
.dw-cd-btn-outline,
.dw-cd-btn-primary,
.dw-cd-btn-ghost {
  align-items: center;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease, background .15s ease;
}

.dw-cd-btn-calc,
.dw-cd-final-primary,
.dw-cd-mobile-add,
.dw-cd-btn-orange,
.dw-cd-btn-primary {
  background: linear-gradient(135deg, var(--dw-cd-orange), var(--dw-cd-orange-dark));
  border: 0;
  box-shadow: 0 10px 24px rgba(240, 141, 42, .3);
  color: #fff;
  font-weight: 800;
}

.dw-cd-btn-calc {
  font-size: 15px;
  padding: 16px;
  width: 100%;
}

.dw-cd-btn-calc:hover,
.dw-cd-btn-orange:hover,
.dw-cd-btn-primary:hover {
  box-shadow: 0 14px 30px rgba(240, 141, 42, .4);
  color: #fff;
  transform: translateY(-2px);
}

.dw-cd-btn-calc.calc-edit {
  background: #fff;
  border: 1.5px solid var(--dw-cd-border);
  box-shadow: none;
  color: var(--dw-cd-navy);
}

.dw-cd-btn-fav {
  background: #fff;
  border: 1.5px solid var(--dw-cd-border);
  color: var(--dw-cd-muted);
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  width: 100%;
}

.dw-cd-btn-fav:hover,
.dw-cd-btn-fav.is-on {
  border-color: var(--dw-cd-orange);
  color: var(--dw-cd-orange);
}

.dw-cd-trust-inline {
  border-top: 1px solid var(--dw-cd-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
}

.dw-cd-trust-inline div {
  align-items: center;
  color: var(--dw-cd-navy);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
}

.dw-cd-trust-inline i {
  color: var(--dw-cd-orange);
}

.dw-cd-sidebar-card {
  background: #fff;
  border: 1px solid var(--dw-cd-border);
  border-radius: 18px;
  box-shadow: var(--dw-cd-shadow-md);
  padding: 22px;
  position: sticky;
  top: 84px;
}

.dw-cd-sidebar-top {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.dw-cd-sidebar-logo {
  border-radius: 11px;
  flex: 0 0 46px;
  height: 46px;
  overflow: hidden;
  width: 46px;
}

.dw-cd-sidebar-logo img {
  height: 100%;
  object-fit: contain;
  padding: 6px;
  width: 100%;
}

.dw-cd-sidebar-top h4 {
  color: var(--dw-cd-navy);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 4px;
}

.dw-cd-sidebar-top p,
.dw-cd-sidebar-delivery,
.dw-cd-sidebar-dim {
  color: var(--dw-cd-muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.dw-cd-trust-badges {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 14px;
}

.dw-cd-trust-badge {
  background: var(--dw-cd-light);
  border-radius: 12px;
  color: var(--dw-cd-navy);
  font-size: 11px;
  font-weight: 800;
  padding: 13px;
  text-align: center;
}

.dw-cd-trust-badge i {
  display: block;
  font-size: 19px;
  margin-bottom: 5px;
}

.dw-cd-score-badge {
  align-items: center;
  background: linear-gradient(135deg, var(--dw-cd-orange), var(--dw-cd-orange-dark));
  border-radius: 11px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 14px;
}

.dw-cd-score-badge strong {
  background: #fff;
  border-radius: 999px;
  color: var(--dw-cd-orange-dark);
  padding: 3px 9px;
}

.dw-cd-sidebar-delivery {
  align-items: center;
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.dw-cd-sidebar-delivery i {
  color: var(--dw-cd-orange);
}

.dw-cd-sidebar-total {
  align-items: baseline;
  border-top: 1px solid var(--dw-cd-border);
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
}

.dw-cd-sidebar-total span:first-child {
  color: var(--dw-cd-navy);
  font-size: 13px;
  font-weight: 800;
}

.dw-cd-total-price {
  color: var(--dw-cd-orange);
  font-size: 24px;
  font-weight: 800;
}

.dw-cd-sidebar-dim {
  margin-top: 3px;
  text-align: right;
}

.dw-cd-final-msg {
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .18);
  border-radius: 12px;
  color: #047857;
  font-size: 12px;
  font-weight: 800;
  margin-top: 14px;
  padding: 10px 12px;
}

.dw-cd-final-rows {
  border-top: 1px solid rgba(21, 35, 69, .08);
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
}

.dw-cd-final-row {
  align-items: center;
  color: var(--dw-cd-muted);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
}

.dw-cd-final-row strong,
.dw-cd-final-row .dw-cd-old {
  color: var(--dw-cd-navy);
  font-weight: 800;
}

.dw-cd-final-row .dw-cd-old {
  color: #94a3b8;
  text-decoration: line-through;
}

.dw-cd-final-row .dw-cd-discount {
  color: #16a34a;
  font-weight: 800;
}

.dw-cd-final-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

.dw-cd-final-primary,
.dw-cd-final-secondary {
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: uppercase;
}

.dw-custom-design .dw-cd-final-primary {
  background: linear-gradient(135deg, var(--dw-cd-orange), var(--dw-cd-orange-dark));
  border: 0;
  box-shadow: 0 10px 24px rgba(240, 141, 42, .3);
  color: #fff;
}

.dw-custom-design .dw-cd-final-primary:hover {
  box-shadow: 0 14px 30px rgba(240, 141, 42, .4);
  color: #fff;
  transform: translateY(-2px);
}

.dw-custom-design .dw-cd-final-secondary {
  background: #fff;
  border: 1px solid rgba(21, 35, 69, .12);
  color: var(--dw-cd-navy);
  box-shadow: none;
}

.dw-custom-design .dw-cd-final-secondary:hover {
  border-color: rgba(21, 35, 69, .24);
  color: var(--dw-cd-navy);
  transform: translateY(-2px);
}

.dw-cd-final-note {
  color: var(--dw-cd-muted);
  font-size: 11px;
  margin: 8px 0 0;
}

.dw-cd-mobile-price,
.dw-cd-mobile-sticky {
  display: none;
}

.dw-cd-icon-bar {
  background: var(--dw-cd-navy);
}

.dw-cd-icon-grid {
  background: rgba(255, 255, 255, .07);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.dw-cd-icon-card {
  align-items: center;
  background: var(--dw-cd-navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 34px 18px;
  text-align: center;
  transition: background .25s ease;
}

.dw-cd-icon-card:hover {
  background: var(--dw-cd-navy-2);
}

.dw-cd-icon {
  align-items: center;
  background: rgba(240, 141, 42, .13);
  border-radius: 14px;
  color: var(--dw-cd-orange);
  display: flex;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  transition: transform .25s ease;
  width: 54px;
}

.dw-cd-icon-card:hover .dw-cd-icon {
  transform: translateY(-3px) scale(1.05);
}

.dw-cd-icon-card h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

.dw-cd-icon-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
}

.dw-cd-hero,
.dw-cd-steps-band,
.dw-cd-cta-band {
  background: var(--dw-cd-navy);
  overflow: hidden;
  position: relative;
  text-align: center;
}

.dw-cd-hero {
  padding: 64px 24px 72px;
}

.dw-cd-hero::before,
.dw-cd-steps-band::before,
.dw-cd-cta-band::before {
  background: radial-gradient(circle at 20% 10%, rgba(240, 141, 42, .16), transparent 42%),
    radial-gradient(circle at 85% 90%, rgba(240, 141, 42, .10), transparent 40%);
  content: "";
  inset: 0;
  position: absolute;
}

.dw-cd-hero > *,
.dw-cd-steps-band > *,
.dw-cd-cta-band > * {
  position: relative;
  z-index: 1;
}

.dw-cd-eyebrow,
.dw-cd-section-tag {
  color: var(--dw-cd-orange);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dw-cd-eyebrow {
  background: rgba(240, 141, 42, .12);
  border: 1px solid rgba(240, 141, 42, .25);
  border-radius: 999px;
  margin-bottom: 22px;
  padding: 7px 16px;
}

.dw-cd-hero h2,
.dw-cd-cta-band h2,
.dw-cd-section-title,
.dw-cd-steps-title,
.dw-cd-obj-copy h2 {
  font-family: var(--dw-cd-heading-font);
  letter-spacing: -.5px;
  line-height: 1.12;
}

.dw-cd-hero h2 {
  color: #fff;
  font-size: clamp(30px, 5.2vw, 56px);
  font-weight: 600;
  margin: 0 0 18px;
}

.dw-cd-hero em,
.dw-cd-cta-band em {
  color: var(--dw-cd-orange);
  font-style: italic;
}

.dw-cd-hero p {
  color: rgba(255, 255, 255, .68);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  margin: 0 auto 38px;
  max-width: 620px;
}

.dw-cd-cta-row,
.dw-cd-cta-btns,
.dw-cd-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.dw-cd-btn-primary,
.dw-cd-btn-ghost,
.dw-cd-btn-orange,
.dw-cd-btn-outline {
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  min-height: 52px;
  padding: 14px 28px;
}

.dw-cd-btn-ghost,
.dw-cd-btn-outline {
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: #fff;
}

.dw-cd-btn-ghost:hover,
.dw-cd-btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.dw-cd-objection {
  padding: 84px 0;
}

.dw-cd-objection.is-alt {
  background: var(--dw-cd-light);
}

.dw-cd-obj-inner {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}

.dw-cd-obj-inner.is-flip .dw-cd-obj-visual {
  order: 2;
}

.dw-cd-obj-visual {
  aspect-ratio: 4 / 3.2;
  border-radius: 22px;
  box-shadow: var(--dw-cd-shadow-lg);
  overflow: hidden;
  position: relative;
}

.dw-cd-obj-visual img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
  width: 100%;
}

.dw-cd-obj-visual:hover img {
  transform: scale(1.06);
}

.dw-cd-tagpin {
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(21, 35, 69, .78);
  border-radius: 999px;
  bottom: 16px;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  left: 16px;
  padding: 8px 14px;
  position: absolute;
}

.dw-cd-tagpin i,
.dw-cd-feature-list i {
  color: var(--dw-cd-orange);
}

.dw-cd-obj-copy {
  min-width: 0;
}

.dw-cd-block-tag {
  color: var(--dw-cd-orange);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.dw-cd-obj-copy h2 {
  color: var(--dw-cd-navy);
  font-size: clamp(24px, 2.9vw, 32px);
  font-weight: 600;
  margin: 0 0 16px;
}

.dw-cd-obj-copy .dw-cd-lead {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.dw-cd-micro-copy {
  background: #fff;
  border-left: 3px solid var(--dw-cd-orange);
  border-radius: 0 10px 10px 0;
  box-shadow: var(--dw-cd-shadow-sm);
  color: var(--dw-cd-muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  margin: 16px 0 22px;
  padding: 13px 16px;
}

.dw-cd-feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dw-cd-feature-list li {
  align-items: flex-start;
  color: var(--dw-cd-text);
  display: flex;
  font-size: 14.5px;
  gap: 11px;
  line-height: 1.5;
}

.dw-cd-steps-band {
  padding: 60px 0;
}

.dw-cd-steps-title {
  color: #fff;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 600;
  margin: 10px 0 34px;
}

.dw-cd-steps {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.dw-cd-step {
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  display: flex;
  gap: 13px;
  padding: 16px 24px;
}

.dw-cd-step-num {
  align-items: center;
  background: var(--dw-cd-orange);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(240, 141, 42, .4);
  color: #fff;
  display: flex;
  flex: 0 0 38px;
  font-size: 15px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.dw-cd-step-text {
  text-align: left;
}

.dw-cd-step-text strong {
  color: #fff;
  display: block;
  font-size: 14px;
}

.dw-cd-step-text span {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
}

.dw-cd-step-arrow {
  color: var(--dw-cd-orange);
  opacity: .55;
  padding: 0 10px;
}

.dw-cd-section-tag,
.dw-cd-section-title,
.dw-cd-section-sub {
  display: block;
  text-align: center;
}

.dw-cd-section-title {
  color: var(--dw-cd-navy);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 600;
  margin: 12px 0;
}

.dw-cd-section-sub {
  color: var(--dw-cd-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 auto 48px;
  max-width: 620px;
}

.dw-cd-works {
  background: #fff;
  overflow: hidden;
  padding: 80px 0 88px;
}

.dw-cd-works-head {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.dw-cd-works-head .dw-cd-section-tag,
.dw-cd-works-head .dw-cd-section-title {
  text-align: left;
}

.dw-cd-works-head p {
  color: var(--dw-cd-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}

.dw-cd-works-nav {
  display: flex;
  gap: 10px;
}

.dw-cd-works-nav button {
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--dw-cd-border);
  border-radius: 50%;
  color: var(--dw-cd-navy);
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  transition: background .18s ease, color .18s ease, transform .18s ease;
  width: 48px;
}

.dw-cd-works-nav button:hover {
  background: var(--dw-cd-navy);
  color: #fff;
  transform: translateY(-2px);
}

.dw-cd-works-viewport {
  cursor: grab;
  overflow: hidden;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.dw-cd-works-viewport.is-dragging {
  cursor: grabbing;
}

.dw-cd-works-track {
  display: flex;
  gap: 18px;
  padding: 8px 24px;
  will-change: transform;
}

.dw-cd-work-card {
  background: var(--dw-cd-light);
  border: 0;
  border-radius: 18px;
  box-shadow: var(--dw-cd-shadow-md);
  cursor: pointer;
  flex: 0 0 auto;
  height: 380px;
  overflow: hidden;
  padding: 0;
  position: relative;
  touch-action: pan-y;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
  user-select: none;
  width: 300px;
}

.dw-cd-work-card:hover {
  box-shadow: var(--dw-cd-shadow-lg);
  transform: translateY(-6px);
}

.dw-cd-work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  width: 100%;
}

.dw-cd-work-card:hover img {
  transform: scale(1.08);
}

.dw-cd-work-overlay {
  background: linear-gradient(to top, rgba(21, 35, 69, .82) 0%, rgba(21, 35, 69, .18) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  opacity: 0;
  padding: 20px;
  position: absolute;
  transition: opacity .3s ease;
}

.dw-cd-work-card:hover .dw-cd-work-overlay {
  opacity: 1;
}

.dw-cd-work-tag {
  color: var(--dw-cd-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dw-cd-work-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 5px;
}

.dw-cd-work-loc {
  align-items: center;
  color: rgba(255, 255, 255, .7);
  display: flex;
  font-size: 12px;
  gap: 5px;
  margin-top: 3px;
}

.dw-cd-works-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.dw-cd-works-dots button {
  background: var(--dw-cd-border);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 8px;
  padding: 0;
  transition: all .2s ease;
  width: 8px;
}

.dw-cd-works-dots button.is-active {
  background: var(--dw-cd-orange);
  width: 26px;
}

.dw-cd-reviews,
.dw-cd-faq {
  padding: 78px 0;
}

.dw-cd-reviews {
  background: var(--dw-cd-light);
}

.dw-cd-reviews-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.dw-cd-review-card {
  background: #fff;
  border: 1px solid var(--dw-cd-border);
  border-radius: 18px;
  box-shadow: var(--dw-cd-shadow-sm);
  overflow: hidden;
}

.dw-cd-review-photo {
  aspect-ratio: 4 / 3;
  background: var(--dw-cd-light);
  overflow: hidden;
}

.dw-cd-review-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dw-cd-review-body {
  padding: 22px;
}

.dw-cd-review-stars {
  color: #f59e0b;
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.dw-cd-review-text {
  color: #334155;
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.dw-cd-review-author {
  align-items: center;
  display: flex;
  gap: 11px;
}

.dw-cd-author-av {
  align-items: center;
  background: var(--dw-cd-navy);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 38px;
  font-size: 12px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.dw-cd-author-name {
  color: var(--dw-cd-navy);
  font-size: 13px;
  font-weight: 800;
}

.dw-cd-author-meta {
  color: var(--dw-cd-muted);
  font-size: 11px;
}

.dw-cd-reviews-score {
  border-top: 1px solid var(--dw-cd-border);
  margin-top: 44px;
  padding-top: 36px;
  text-align: center;
}

.dw-cd-reviews-score strong {
  color: var(--dw-cd-navy);
  display: block;
  font-family: var(--dw-cd-heading-font);
  font-size: 50px;
  font-weight: 600;
}

.dw-cd-faq {
  background: #fff;
}

.dw-cd-faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 740px;
}

.dw-cd-faq-item {
  border: 1px solid var(--dw-cd-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.dw-cd-faq-item.is-open {
  border-color: rgba(240, 141, 42, .4);
  box-shadow: var(--dw-cd-shadow-md);
}

.dw-cd-faq-q {
  align-items: center;
  background: #fff;
  border: 0;
  color: var(--dw-cd-navy);
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  width: 100%;
}

.dw-cd-faq-icon {
  align-items: center;
  background: var(--dw-cd-light);
  border-radius: 50%;
  color: var(--dw-cd-orange);
  display: flex;
  flex: 0 0 26px;
  height: 26px;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
  width: 26px;
}

.dw-cd-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height .3s ease;
}

.dw-cd-faq-a p {
  color: #475569;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  padding-bottom: 20px;
}

.dw-cd-faq-item.is-open .dw-cd-faq-a {
  max-height: 340px;
}

.dw-cd-faq-item.is-open .dw-cd-faq-icon {
  background: var(--dw-cd-orange);
  color: #fff;
}

.dw-cd-faq-item.is-open .dw-cd-faq-icon i {
  transform: rotate(45deg);
}

.dw-cd-cta-band {
  padding: 80px 0;
}

.dw-cd-cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  margin: 0 0 14px;
}

.dw-cd-cta-band p {
  color: #9fb0d0;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 520px;
}

.dw-cd-cta-trust {
  margin-top: 28px;
}

.dw-cd-cta-trust span {
  align-items: center;
  color: #9fb0d0;
  display: flex;
  font-size: 12.5px;
  gap: 7px;
}

.dw-cd-cta-trust i {
  color: var(--dw-cd-orange);
}

.dw-cd-lightbox {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(8, 14, 30, .92);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 100000;
}

.dw-cd-lightbox.is-open {
  display: flex;
}

.dw-cd-lightbox img {
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  max-height: 86vh;
  max-width: 92vw;
}

.dw-cd-lb-close,
.dw-cd-lb-nav {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: absolute;
}

.dw-cd-lb-close {
  font-size: 20px;
  height: 48px;
  right: 28px;
  top: 24px;
  width: 48px;
}

.dw-cd-lb-nav {
  font-size: 18px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
}

.dw-cd-lb-prev {
  left: 24px;
}

.dw-cd-lb-next {
  right: 24px;
}

.dw-cd-btn-busy,
.dw-btn-busy {
  opacity: .78;
}

.dw-spin-svg {
  animation: dwCdSpin .8s linear infinite;
}

@keyframes dwCdSpin {
  to { transform: rotate(360deg); }
}

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

  .dw-cd-sidebar-col {
    grid-column: 1 / -1;
  }

  .dw-cd-sidebar-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .dw-cd-container {
    width: min(100% - 32px, 1200px);
  }

  .dw-cd-product-grid,
  .dw-cd-obj-inner,
  .dw-cd-reviews-grid {
    grid-template-columns: 1fr;
  }

  .dw-cd-product-grid {
    gap: 24px;
    padding-top: 22px;
  }

  .dw-cd-sidebar-col {
    display: none;
  }

  .dw-cd-mobile-price {
    display: block;
    margin-top: 14px;
  }

  .dw-cd-mobile-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(21, 35, 69, .10);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    padding: 14px;
  }

  .dw-cd-mobile-row {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
  }

  .dw-cd-mobile-label {
    color: rgba(21, 35, 69, .55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
  }

  .dw-cd-mobile-total {
    color: var(--dw-cd-orange);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
  }

  .dw-cd-mobile-meta,
  .dw-cd-mobile-hint {
    color: rgba(21, 35, 69, .55);
    font-size: 11px;
    margin-top: 6px;
  }

  .dw-cd-mobile-add {
    border-radius: 16px;
    font-size: 13px;
    min-height: 44px;
    padding: 10px 14px;
  }

  .dw-cd-mobile-add:disabled {
    cursor: not-allowed;
    opacity: .6;
  }

  .dw-cd-mobile-sticky {
    bottom: calc(env(safe-area-inset-bottom) + 10px);
    display: block;
    left: 0;
    padding: 0 12px;
    position: fixed;
    right: 0;
    z-index: 99999;
  }

  #dwStickyBar {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .24s ease, transform .24s ease;
  }

  #dwStickyBar.translate-y-6 {
    transform: translateY(24px);
  }

  #dwStickyBar.opacity-0 {
    opacity: 0;
  }

  #dwStickyBar.pointer-events-none {
    pointer-events: none;
  }

  .dw-cd-icon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dw-cd-obj-inner.is-flip .dw-cd-obj-visual {
    order: initial;
  }

  .dw-cd-steps {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin: 0 auto;
    max-width: 340px;
  }

  .dw-cd-step-arrow {
    padding: 4px 0;
    transform: rotate(90deg);
  }

  .dw-cd-work-card {
    height: 330px;
    width: 250px;
  }

  .dw-cd-works-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .dw-cd-product-grid {
    padding-bottom: 34px;
  }

  .dw-cd-hero,
  .dw-cd-objection,
  .dw-cd-reviews,
  .dw-cd-faq,
  .dw-cd-cta-band,
  .dw-cd-works {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .dw-cd-final-actions,
  .dw-cd-dim-inputs,
  .dw-cd-dim-hints {
    grid-template-columns: 1fr;
  }

  .dw-cd-dim-hints span {
    text-align: left;
  }

  .dw-cd-cta-btns {
    flex-direction: column;
  }

  .dw-cd-btn-orange,
  .dw-cd-btn-outline {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-cd-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
