    <!-- CSS Styles -->
    <style type="text/css">
        /* Global resets and box-sizing */
        *, *::before, *::after { box-sizing: border-box; }
        body, html { margin: 0; padding: 0; }
        /* Main layout */
        .main_content { display: flex; flex-wrap: wrap; }
        .left_column, .right_column { padding: 15px; }
        .left_column { width: 50%; }
        .right_column { width: 50%; }
        @media only screen and (max-width: 767px) {
            .main_content { flex-direction: column; }
            .left_column, .right_column { width: 100%; }
        }
        /* Image and product styles */
        .img_wrapper { margin-bottom: 15px; }
        .main-image { width: 100%; max-width: 100%; height: auto; border-radius: 5px; }
        .product-section { margin-top: 20px; }
        .product-section h5 { font-size: 18px; margin-bottom: 15px; }
        .item-product-custom { text-align: center; margin-bottom: 20px; }
        .item-product-custom img { width: 100%; max-width: 150px; height: auto; border-radius: 5px; }
        .btn.custom-button { background-color: #3583c1; color: #fff; padding: 5px 10px; text-decoration: none; border-radius: 5px; font-size: 12px; margin-top: 5px; }
        .btn.custom-button:hover { background-color: #2a6fa0; }
        .rightimg_content { margin-bottom: 20px; }
        /* Dropdown and filter styles */
        .custom-dropdown {
            width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px;
            font-size: 16px; background-color: #f9f9f9; color: #333; cursor: pointer;
        }
		td:focus,
td:focus-within,
td span:focus {
  outline: none !important;
  caret-color: transparent !important;
}
.img_wrapper,
.image-overlay-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

        .custom-dropdown:focus { outline: none; border-color: #3583c1; background-color: #e6f0fa; }
        .dropdown_menus { margin: 20px 0; }
        .dropdown_wrapper { margin-bottom: 15px; }
        /* Table styles */
        .table_content table {
  border-collapse: separate;
  border-spacing: 0;
}

        .table_content table td, .table_content table th {
            border-left: 1px solid #ebebeb;   /* keep verticals */
    border-right: 1px solid #ebebeb;  /* keep verticals */
    border-top: 1px solid #ebebeb;                 /* REMOVE horizontals */
    border-bottom: none;              /* REMOVE horizontals */ padding: 8px; font-size: 14px; text-align: center;
        }

border-left: 1px solid #ebebeb;   /* keep verticals */
    border-right: 1px solid #ebebeb;  /* keep verticals */
    border-top: none;                 /* REMOVE horizontals */
    border-bottom: none;              /* REMOVE horizontals */

        .table_content table td:hover,
        .table_content table td:hover * {
          color: #ffffff !important;
        }
        .table_content table td a:hover {
          color: #ffffff !important;
          text-decoration: none !important;
        }
        .loading-spinner {
            border: 4px solid #f3f3f3; border-top: 4px solid #3583c1; border-radius: 50%;
            width: 30px; height: 30px; animation: spin 1s linear infinite; margin: 20px auto;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        /* Product border */
        .border-product {
            padding: 10px;
            padding-bottom: 20px;
            background-color: #e9e8e8;
            border-radius: 5px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* Duplicate custom-button style for consistency */
        .btn.custom-button {
            background-color: #3583c1;
            color: #fff !important;
            padding: 5px 10px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 12px;
            display: inline-block;
            margin-top: 5px;
        }
        .btn.custom-button:hover { background-color: #2a6fa0; color: #fff; }

		.tableheading {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

        @media (max-width: 768px) {
            .additional_content { display: none !important; }
        }
        .button_wrapperq {
            background-color: #e9e8e8; padding: 8px 15px; border-radius: 5px;
            text-align: center; margin-top: 10px; font-size: 14px;
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); color: #000;
        }
        .button_wrapperq h4 { font-size: 21px; font-weight: 600; margin-bottom: 5px; }
        .button_wrapperq p { font-size: 14px; margin-bottom: 2px; }
        .left_column .main-image { width: 100%; height: auto; border-radius: 5px; }
        /* Table scrolling container */
        .table_scroll_container { max-height: 500px; overflow-y: auto; }
        .desktop-only { display: block; }
        .mobile-only { display: none; }
        @media (max-width: 767px) {
          .desktop-only { display: none; }
          .mobile-only { display: block; }
        }
        .table_content table thead {
          position: sticky;
          top: 0;
          background: #fff;
          z-index: 10;
        }
		.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}
.modal-content {
  background-color: #f2f2f2;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}
.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
		.modal-wide {
  width: 90%;
  max-width: 800px;
}

.modal-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-left {
  flex: 1 1 50%;
}

.modal-right {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
		
 .selected-row td {
  background-color: #e0f3ff !important;
}

		.hover-highlight-row {
  background-color: #fdf5ce;
}

.hover-highlight-col {
  background-color: #fdf5ce;
}

.hovered-cell {
  background-color: #fceabb;
  font-weight: bold;
}

.selected-col {
  background-color: #e0f3ff !important;
}
		.table_content td.hover-highlight-row {
  background-color: #e0f3ff !important;
}
.table_content td.hover-highlight-col {
  background-color: #e0f3ff !important;
}
.table_content td.hovered-cell {
  background-color: #3583c1 !important;
  color: white !important;
}

		.custom-dropdown option {
  font-size: 15px;
}
.custom-dropdown option::after {
  opacity: 0.7;
}

/* VAT Slide Toggle */
.vat-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.vat-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.vat-slider {
  position: absolute;
  inset: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.vat-slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.vat-switch input:checked + .vat-slider {
  background-color: #28a745;
}

.vat-switch input:checked + .vat-slider:before {
  transform: translateX(22px);
}

		.image-overlay-wrapper {
  position: relative;
  width: 100%;
}

.waterproof-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;     /* moved to right */
  left: auto;      /* disable left */
  width: 240px;    /* 2× size */
  max-width: 45%;  /* keeps it responsive */
  height: auto;
  z-index: 5;
  pointer-events: none;
}

.poster-sizes-panel {
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.poster-size-card.is-disabled {
  opacity: 0.45;
  filter: grayscale(100%);
  pointer-events: none; /* disables clicking */
}

.poster-size-card.is-disabled .view-product-btn {
  background: #aaa;
  cursor: not-allowed;
}


.poster-sizes-panel h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
}

.poster-size-card {
  display: flex;
  background: #fff;
  border-radius: 5px;
  height: 120px;
  overflow: hidden;
  border: 1px solid #e0e0e0; /* thin light grey outline */
}

.poster-size-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.poster-size-card:hover {
  border-color: #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}


.poster-size-card.active {
  outline: 2px solid #3583c1;
}

.poster-size-card img {
  width: 50px;
  height: auto;
  border-radius: 3px;
  margin-right: 8px;
}

.poster-size-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.poster-size-info .price {
  color: #3583c1;
  font-weight: 600;
  margin: 2px 0;
}

.view-product-btn {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  background: #3583c1;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
}

.view-product-btn:hover {
  background: #28a745; /* green */
  color: #fff;
  text-decoration: none;
}
		
.view-product-btn {
  transition: background-color 0.2s ease;
}


.poster-size-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-size-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;

  /* remove rounding on the right edge only */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}



.poster-size-info {
  width: 60%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.poster-size-title {
  font-size: 14px;
  font-weight: 600;
}

.poster-size-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-from {
  font-size: 13px;
  color: #000;
}

.price-amount {
  font-size: 16px;        /* slightly bigger */
  font-weight: 600;
  color: #3583c1;         /* your brand blue */
}

.poster-size-vat {
  font-size: 11px;
  color: #666;
  text-align: left;
  margin-top: -6px;   /* pulls it closer to price */
}


.poster-size-card.active {
  background-color: #f3f3f3;           /* light grey */
  border-color: #3583c1;               /* keep blue outline */
  box-shadow: 0 0 0 2px rgba(53, 131, 193, 0.15);
}

.poster-size-card {
  position: relative; /* required for the tick */
}

.poster-size-card.active::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 8px;

  width: 36px;     /* BIGGER */
  height: 36px;    /* BIGGER */

  background-color: #28a745;

  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='black' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='black' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center / contain;
}


.poster-size-card.active .poster-size-title {
  color: #3583c1;
}

@media (max-width: 767px) {

  /* Stack columns on mobile */
  .left_column,
  .right_column {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

	.custom-dropdown option:disabled {
  color: #999;
  background-color: #f2f2f2;
}

  /* Hide size selector panel on mobile */
  .poster-sizes-wrapper {
    display: none;
  }
}

/* PRODUCT DESCRIPTION */
.product-description {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #444;              /* softer than black */
  margin-top: 4px;
  margin-bottom: 14px;
}



.design-service {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.design-service img {
  max-width: 70px;
  height: auto;
}
		
/* REMOVE ROUNDED CORNERS FROM ALL IMAGES */
img,
.main-image,
.item-product-custom img,
.poster-size-card,
.poster-size-image img,
.image-overlay-wrapper img {
  border-radius: 0 !important;
}


@media (max-width: 767px) {
  .product-description {
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  .modal-columns {
    flex-direction: column;
  }
  .modal-right iframe {
    width: 100%;
    height: 200px;
  }
}


		
        @media (max-width: 768px) {
            .table_content table td:not(:last-child),
            .table_content table th:not(:last-child) {
                border-right: 1px solid #ebebeb;
            }
        }
        @media (max-width: 767px) {
            .table_scroll_container { max-height: none; overflow-y: visible; }
        }
		
/* MAIN PRODUCT IMAGE — reduce visible height by ~30% */
.image-overlay-wrapper {
  height: 420px;           /* adjust if needed */
  overflow: hidden;
  position: relative;
}

.image-overlay-wrapper .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crop */
  object-position: center; /* keep centre */
}

		@media (max-width: 768px) {
  .image-overlay-wrapper {
    height: 300px;
  }
}

		
/* PRODUCT TITLE */
#productHeading h2 {
  font-family: 'Lato', Arial, sans-serif !important;
  font-size: 30px !important;   /* calm, premium */
  font-weight: 600 !important;
  line-height: 1.25;
  margin: 0 0 6px 0 !important;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  #productHeading h2 {
    font-size: 22px !important;
  }
}

/* HARD RESET spacing between product title and description */
#productHeading h2 {
  margin-top: 4px !important;
  margin-bottom: 4px !important; /* tight, intentional */
}

.product-description {
  margin-top: 0 !important;
  margin-bottom: 12px;
}


		/* GLOBAL FONT */
body,
button,
input,
select,
textarea {
  font-family: 'Lato', Arial, sans-serif !important;
  font-weight: 400;
}

      /* Additional global styles */
      body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
		  
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2; /* light grey */
  min-height: 100%;
}
		
/* MAIN PAGE CONTAINER */
.body_wrapper {
  background-color: #ffffff;
  max-width: 1200px;
  margin: 20px auto;
  padding: 10px;
}

      .tabbed-info-block {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        background-color: #fff;
      }
      .faq-box {
        border: 1px solid #ccc;
        margin-top: 15px;
      }
      .faq-item {
        border-bottom: 1px solid #ccc;
      }
      .faq-item:last-child {
        border-bottom: none;
      }
      .faq-question {
        background-color: #f5f5f5;
        padding: 15px;
        cursor: pointer;
        font-weight: bold;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 15px;
        font-size: 15px;
        line-height: 1.6;
        background-color: #fff;
      }
      .faq-answer p {
        margin: 15px 0;
      }
      .faq-item.active .faq-answer {
      }
      .full-width-bar {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        background-color: #3583c1;
      }
      .tab-bar {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        overflow-x: auto;
      }
      .tab-bar button {
        position: relative;
        padding: 20px 20px;
        font-size: 16px;
        background: none;
        border: none;
        box-shadow: none !important;
        outline: none;
        cursor: pointer;
        font-weight: normal;
        color: #fff;
        flex-shrink: 0;
      }
      @media screen and (max-width: 480px) {
        .tab-bar button {
          font-size: 12px;
          padding: 10px;
        }
      }
      .tab-bar button::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 5px;
        height: 0;
        background-color: #fff;
        transition: height 0.3s ease;
      }
      .tab-bar button:hover::after {
        height: 3px;
      }
      .tab-bar button.active::after {
        height: 3px;
        background-color: #1F568B;
      }
      .tab-content {
        display: none;
        width: 100%;
        color: #333;
        box-sizing: border-box;
        padding: 20px;
      }
      .tab-content.active {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
      }
      .custom-text-block {
        flex: 1;
        padding: 20px;
        box-sizing: border-box;
      }
      .custom-image-container {
        flex: 1;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .custom-image-container img {
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: cover;
        display: block;
      }
      @media (max-width: 768px) {
        .tab-content.active {
          flex-direction: column;
        }
        .custom-text-block,
        .custom-image-container {
          width: 100%;
          padding: 10px;
        }
		  
@media (max-width: 768px) {
  .body_wrapper {
    margin: 10px;
    padding: 15px;
  }
}

        .custom-image-container img {
          width: 100%;
          height: auto;
          object-fit: cover;
        }
      }

/* INLINE LABEL + DROPDOWN */
.dropdown_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px; /* reduced vertical spacing */
}

.dropdown_wrapper label {
  min-width: 120px;     /* keeps labels aligned */
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.dropdown_wrapper .custom-dropdown {
  flex: 1;              /* dropdown takes remaining space */
}

/* ================================
   BUSINESS CARD TYPE PANEL
================================ */

.poster-size-card {
  display: flex;
  background: #fff;
  border: none;                 /* remove border */
  text-decoration: none;        /* remove link underline */
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.poster-size-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.poster-size-card.active {
  background-color: #f3f3f3;
}

.poster-size-card.is-disabled {
  pointer-events: none;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
  cursor: default;
}

/* Disabled label */
.poster-size-unavailable {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* Ensure images behave */
.poster-size-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FORCE consistent dropdown alignment */
.dropdown_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown_wrapper label {
  flex: 0 0 140px;   /* ← THIS is the key */
  white-space: nowrap;
}

.dropdown_wrapper select {
  flex: 1;
  width: 100%;
}

/* ===============================
   MOBILE MODAL OVERRIDE (HARD FIX)
   =============================== */
@media (max-width: 768px) {

  .modal-content {
    position: fixed !important;

    top: 200px !important;      /* ← controls how far down it sits */
    left: 50% !important;

    transform: translateX(-50%) !important; /* ← keep horizontal centering ONLY */

    max-height: calc(100vh - 160px) !important;
    overflow-y: auto !important;
  }
}

.breadcrumb-trail {
  padding: 10px 0;
  font-size: 14px;
}
.breadcrumb-trail ol {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.breadcrumb-trail li + li::before {
  content: "›";
  margin: 0 8px;
  color: #999;
}
.breadcrumb-trail a {
  text-decoration: none;
  color: #555;
}
.breadcrumb-trail span {
  font-weight: 500;
  color: #000;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}

.search-results a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
}

.search-results a:hover,
.search-results a.active {
    background: #f5f5f5;
}

.search-results .no-results {
    padding: 10px;
    color: #888;
}



</style>