
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

  @import url("https://use.typekit.net/erl2ubz.css");
  
  /* // G Suite icons, to load correctly these need to be in alphabetical order. */
  @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=border_color,box,counter_1,counter_2,counter_3,credit_card,indeterminate_question_box,stacks,timer,upload,water_bottle");

  /* font-family: "fira-sans", sans-serif;
  font-family: "kallisto", sans-serif; */

  :root {
    --blue: #1962b6;
    --blue-dark: #003e84;
    --orange: #ee6102;
    --orange-light: #FB923C;
    --dark: #212121;
    --gray-50: #fdfdfd;
    --gray-100: #f6f6f6;
    --gray-200: #eaeaea;
    --gray-300: #d7d7d7;
    --gray-400: #777;
    --gray-500: #666;
    --gray-600: #555;
    --gray-700: #444;
    --gray-800: #222;
    --white: #FFFFFF;
    --success: #0a8e41;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  h1, h2, h3, h4 { font-family: "kallisto", sans-serif; }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "fira-sans", sans-serif;
    background: var(--gray-50);
    color: var(--dark);
    min-height: 100vh;
  }

  /* HEADER */
  .header {
    background: #003e84;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .header-contact {
    color: #fff;
    font-size: 12px;
    text-align: right;
  }

  @media (min-width: 992px) {
      .header-contact {
        font-size: 14px;
    }
  }

  .header-contact a { color: #fff; text-decoration: none; }

  .logo {
    max-width: 230px;
    width: 100%;
    display: block;
    padding-right: 15px;
  }

  /* HERO */

  .hero {
    padding: 40px 0;
    text-align: center;
    background: url(../images/branded-stanley-hero-image-mobile.jpg) no-repeat bottom center;
    background-size: cover;
    min-height: 575px;
  }

  .hero h1 { font-size: 28px; font-weight: 800; margin-bottom: 15px; }
  .hero p { font-size: 15px; line-height: 1.5; margin-bottom: 25px; }

  @media (min-width: 576px) {
    .hero {
     min-height: 500px;
    }
  }

  @media (min-width: 992px) {
    .hero {
      background: url(../images/branded-stanley-hero-image.jpg) no-repeat center center;
      background-size: cover;
      color: white;
      padding: 90px 25px 90px;
      text-align: left;
      color: #000;
      text-align: left;
      min-height: 0;
    }
  }

  /* PROGRESS */
  .progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 25px;
    max-width: 600px;
    margin: 0 auto;
  }
  .step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  .step-circle.active { background: var(--blue); color: white; }
  .step-circle.completed { background: var(--success); color: white; }
  .step-indicator.clickable { cursor: pointer; }
  .step-indicator.clickable:hover .step-circle { transform: scale(1.12); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .step-indicator.clickable:hover .step-label { text-decoration: underline; }
  .step-label {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
  }
  .step-label.active { color: var(--blue); font-weight: 600; }
  .step-label.completed { color: var(--success); }
  .step-line {
    height: 3px;
    width: 60px;
    background: var(--gray-200);
    margin: 0 8px;
    margin-bottom: 22px;
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  .step-line.completed { background: var(--success); }

  /* MAIN CONTENT */
  .main { max-width: 1140px; margin: 0 auto; padding: 25px 25px 80px 25px; transition: max-width 0.3s ease; }
  .main.narrow { max-width: 780px; }

  .step-panel { display: none; animation: fadeIn 0.3s ease; }
  .step-panel.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

  .panel-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
  }
  .panel-subtitle {
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 24px;
    line-height: 1.5;
  }

  /* PRODUCT CARDS */
  .category-group { margin-bottom: 28px; }
  .category-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-800);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--gray-200);
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }
  .product-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
  }
  .product-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
  .product-card.selected { border-color: var(--blue); background: #EFF6FF; box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }
  .product-card .product-img {
    width: 100%;
    height: 140px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #fff;
    padding: 4px;
    transition: opacity 0.2s;
  }
  .product-card.selected .product-img { opacity: 0.45; }
  .product-card .product-name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
  .product-card .product-price { font-size: 13px; color: var(--blue); font-weight: 400; line-height: 1.4; }
  .product-card .product-price strong { font-weight: 700; }
  .product-card .product-price .price-context { font-size: 11px; color: var(--gray-500); }
  .product-card .product-meta { font-size: 11px; color: var(--gray-400); }

  /* Inline next button overlay on selected card */
  .card-next-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: background 0.15s ease, transform 0.15s ease;
    z-index: 2;
    white-space: nowrap;
    animation: popIn 0.2s ease;
  }
  .card-next-btn:hover { background: var(--blue-dark); transform: translate(-50%, -50%) scale(1.04); }
  @keyframes popIn { from { opacity: 0; transform: translate(-50%, -50%) scale(0.85); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
  .card-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
  }

  /* COLOR SWATCHES */
  .color-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    min-width: 80px;
  }
  .color-swatch:hover { background: var(--gray-100); }
  .color-swatch.selected { border-color: var(--blue); background: #EFF6FF; }
  .color-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    transition: all 0.2s;
  }
  .color-swatch.selected .color-dot { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
  .color-name { font-size: 11px; font-weight: 500; color: var(--gray-600); text-align: center; }

  /* FORM FIELDS */
  .form-group { margin-bottom: 20px; }
  .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
  }
  .form-label .required { color: var(--orange); }
  .form-hint { font-size: 14px; color: var(--gray-500); margin-bottom: 6px; }
  .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  }
  .form-textarea { resize: vertical; min-height: 80px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* FILE UPLOAD */
  .file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
  }
  .file-upload:hover { border-color: var(--blue); background: #EFF6FF; }
  .file-upload.has-file { border-color: var(--success); background: #ECFDF5; }
  .file-upload-icon { font-size: 32px; margin-bottom: 8px; }
  .file-upload-text { font-size: 14px; font-weight: 500; color: var(--gray-600); }
  .file-upload-hint { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
  .file-upload input[type="file"] { display: none; }

  /* IMPRINT OPTIONS */
  .imprint-options { display: flex; gap: 12px; flex-wrap: wrap; }
  .imprint-option {
    flex: 1;
    min-width: 200px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .imprint-option:hover { border-color: var(--blue); }
  .imprint-option.selected { border-color: var(--blue); background: #EFF6FF; }
  .imprint-option .opt-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
  .imprint-option .opt-desc { font-size: 14px; color: var(--gray-800); line-height: 1.4; }
  .imprint-example-img {
    width: 100%; max-width: 600px; height: 200px; margin-top: 12px;
    border-radius: 8px; border: 1px solid var(--gray-200);
    object-fit: cover; object-position: center;
    background: var(--gray-100);
  }
  .imprint-option .opt-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* QUANTITY */
  .qty-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    background: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-600);
  }
  .qty-btn:hover { border-color: var(--blue); color: var(--blue); }
  .qty-display {
    font-size: 28px;
    font-weight: 800;
    min-width: 80px;
    text-align: center;
    color: var(--dark);
  }
  .qty-note { font-size: 13px; color: var(--gray-500); margin-top: 12px; }
  .qty-note strong { color: var(--dark); }

  /* BUTTONS */
  .btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
  }
  .btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary {
    background: var(--blue);
    color: white;
  }
  .btn-primary:hover { background: var(--blue-dark); }
  .btn-primary:disabled { background: var(--gray-500); cursor: not-allowed; }
  .btn-secondary {
    background: transparent;
    color: var(--gray-500);
    border: 2px solid var(--gray-200);
  }
  .btn-secondary:hover { border-color: var(--gray-800); color: var(--gray-700); }
  .btn-submit {
    background: var(--orange);
    color: white;
    padding: 14px 36px;
    font-size: 16px;
  }
  .btn-submit:hover { background: #C2410C; }

  /* SUMMARY */
  .summary-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .summary-header {
    background: var(--dark);
    color: white;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 16px;
  }
  .summary-body { padding: 20px; }
  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
  }
  .summary-row:last-child { border-bottom: none; }
  .summary-row .label { color: var(--gray-500); font-weight: 500; }
  .summary-row .value { font-weight: 600; color: var(--dark); text-align: right; max-width: 60%; }

  /* SUCCESS */
  .success-panel { text-align: center; padding: 60px 24px; }
  .success-icon { font-size: 64px; margin-bottom: 16px; }
  .success-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; color: var(--success); }
  .success-msg { font-size: 15px; color: var(--gray-500); line-height: 1.6; max-width: 480px; margin: 0 auto; }

  /* SELECTED PRODUCT BADGE */
  .selected-product-badge {
    background: #EFF6FF;
    border: 1px solid var(--blue);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
  }
  .selected-product-badge .badge-icon { font-size: 24px; }
  .selected-product-badge .badge-text { font-weight: 600; color: var(--blue); }
  .selected-product-badge .badge-change {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-400);
    cursor: pointer;
    text-decoration: underline;
  }

  /* COLOR STEP LAYOUT */
  .color-step-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .color-preview-wrap {
    flex: 0 0 280px;
    text-align: center;
  }
  .color-preview-img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 12px;
    transition: opacity 0.3s ease;
  }
  .color-preview-label {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--blue);
    line-height: 1.3;
  }
  .color-preview-wrap .badge-change {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--gray-400);
    cursor: pointer;
    text-decoration: underline;
  }
  .color-picker-side {
    flex: 1;
    min-width: 0;
  }
  .color-picker-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 12px;
  }
  @media (max-width: 640px) {
    .color-step-layout {
      flex-direction: column;
      align-items: center;
    }
    .color-preview-wrap {
      flex: none;
      width: 100%;
      max-width: none;
    }
  }

  /* PRICING TABLE */
  .pricing-table {
    width: 100%;
    max-width: none;
    border-collapse: collapse;
    margin-top: 8px;
    font-size: 14px;
  }
  .pricing-table th {
    background: var(--gray-100);
    text-align: left;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    border-bottom: 2px solid var(--gray-200);
  }
  .pricing-table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
  }
  .pricing-table tr.tier-active {
    background: #EFF6FF;
    font-weight: 700;
  }
  .pricing-table tr.tier-active td {
    color: var(--blue);
    border-bottom-color: var(--blue);
  }

  .pricing-disclaimer {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 10px;
    font-style: italic;
  }

  /* LIVE PRICE BAR */
  .live-price-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding: 12px 16px;
    background: #EFF6FF;
    border-radius: 8px;
    border: 1px solid rgba(37,99,235,0.15);
  }
  .live-price-unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
  }
  .live-price-total {
    font-size: 13px;
    color: var(--gray-500);
  }

  /* ADDRESS AUTOCOMPLETE */
  .addr-ac-wrap { position: relative; }
  .addr-ac-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    display: none;
  }
  .addr-ac-list.show { display: block; }
  .addr-ac-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }
  .addr-ac-item:last-child { border-bottom: none; }
  .addr-ac-item:hover, .addr-ac-item.active { background: #EFF6FF; }
  .addr-ac-item .ac-icon { color: var(--gray-400); flex-shrink: 0; margin-top: 1px; }
  .addr-ac-item .ac-main { font-weight: 600; color: var(--dark); }
  .addr-ac-item .ac-sub { font-size: 12px; color: var(--gray-500); }
  .addr-ac-powered {
    padding: 4px 14px 6px;
    font-size: 10px;
    color: var(--gray-400);
    text-align: right;
  }

  @media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 22px; }
    .step-line { width: 30px; }
    .imprint-options { flex-direction: column; }
  }

  /* PROCESS */

  .process {
    padding: 40px 0;
    color: #fff;
    background: #003e84;
    text-align: center;
  }

  .process span {
    color: #ee6102;
    font-size: 80px;
  }

  .process h2 {
    margin-bottom: 15px;
  }

  /* FAQ */

  .faq {
    padding: 60px 0 40px 0;
    background: #1962b6;
    color: #fff;
  }

  .faq h4 {
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .inline-icon {
    vertical-align: bottom;
    margin-right: 10px;
    font-size: 22px;
  }

  /* FOOTER */

  .main-footer {
    background: #003e84;
    padding: 40px 0;
    color: #fff;
  }

  .main-footer p,
  .faq p,
  .process p {
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 14px;
  }

  p.lead {
    font-size: 18px;
  }

  /* CONTACT SECTION */
  .contact-section {
    padding-top: 60px;
    padding-bottom: 40px;
    background: var(--blue-dark);
    color: #fff;
  }

  .contact-section h2,
  .faq h2 {
    margin-bottom: 20px;
  }

  .contact-lead {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .contact-direct {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .contact-direct a {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 600;
  }

  .contact-form .form-textarea {
    margin-bottom: 0;
  }

  .contact-submit-btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    background: var(--blue);
  }

  .contact-section .contact-submit-btn:hover {
    background: #00244e;
  }

  .contact-success-msg {
    text-align: center;
    padding: 32px 24px;
    background: #ECFDF5;
    border: 1px solid var(--success);
    border-radius: var(--radius);
    color: var(--success);
    font-weight: 600;
    font-size: 15px;
  }

  /* OVERRIDES */

  .container-xl {
    padding-left: 25px;
    padding-right: 25px;
  }

  /* THANK YOU PAGE */

  .thankyou-main {
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .ty-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    width: 100%;
    padding: 56px 48px;
    text-align: center;
  }

  .check-circle {
    width: 80px;
    height: 80px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
  }
  .check-circle svg { width: 40px; height: 40px; }

  .ty-card h1 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .ty-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 36px;
  }

  .info-box {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 36px;
    text-align: left;
  }
  .info-box-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 12px;
  }
  .info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  .info-row:last-child { border-bottom: none; }
  .info-row svg { flex-shrink: 0; margin-top: 1px; }
  .info-row-text { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
  .info-row-text strong { color: var(--dark); display: block; font-weight: 600; }

  .ty-actions { display: flex; flex-direction: column; gap: 12px; }
  .ty-actions .btn { justify-content: center; }

  @media (max-width: 576px) {
    .ty-card { padding: 36px 24px; }
  }
