






/* Wrapping scope */
.blix-wrapper {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Layout */
.blix-wrapper .blix-info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blix-wrapper .blix-info-main {
  flex: 2;
  min-width: 0;
}

.blix-wrapper .blix-info-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sidebar blocks */
.blix-wrapper .blix-sidebar-block {
  background: #f7f7f7;
  padding: 1rem;
  border: 1px solid #ddd;
  text-align: center;
}

.blix-wrapper .blix-sidebar-block img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Standalone image */
.blix-wrapper .blix-sidebar-image img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

/* Headings */
.blix-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.blix-wrapper h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blix-wrapper h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs & lists */
.blix-wrapper p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.blix-wrapper ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
}

/* Links */
.blix-wrapper a {
  text-decoration: underline;
  color: inherit;
}

/* Utilities */
.blix-wrapper .weight-100 { font-weight: 100; }
.blix-wrapper .weight-300 { font-weight: 300; }
.blix-wrapper .weight-400 { font-weight: 400; }
.blix-wrapper .weight-500 { font-weight: 500; }
.blix-wrapper .weight-700 { font-weight: 700; }
.blix-wrapper .weight-900 { font-weight: 900; }

.blix-wrapper .italic { font-style: italic; }

.blix-wrapper .blix-gold { color: #ac7f14 !important; }
.blix-wrapper .blix-navy { color: #455581 !important; }

/* Responsive */
@media (max-width: 768px) {
  .blix-wrapper .blix-info-section {
    flex-direction: column;
  }

  .blix-wrapper .blix-info-main,
  .blix-wrapper .blix-info-sidebar {
    width: 100%;
  }
}



.blix-wrapper .blix-accordion details {
  border: 1px solid #ccc;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.blix-wrapper .blix-accordion summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  color: #222;
  list-style: none;
}

.blix-wrapper .blix-accordion summary::-webkit-details-marker {
  display: none;
}

.blix-wrapper .blix-accordion details[open] {
  background-color: #f1f1f1;
}

.blix-wrapper .blix-accordion details p {
  margin-top: 0.5rem;
  font-weight: 400;
}



/* Delivery table layout */
.blix-wrapper .blix-delivery-table {
  display: grid;
  grid-template-columns: 1fr 1fr 100px;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blix-wrapper .blix-delivery-row {
  display: contents;
}

.blix-wrapper .blix-delivery-row div {
  padding: 0.75rem;
  border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

.blix-wrapper .blix-table-head div {
  font-weight: 700;
  background: #f0f0f0;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .blix-wrapper .blix-delivery-table {
    display: block;
  }

  .blix-wrapper .blix-delivery-row {
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f9f9f9;
  }

  .blix-wrapper .blix-delivery-row div {
    border: none;
    padding: 0.25rem 0;
  }








.blix-wrapper .blix-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blix-wrapper .blix-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}







.blix-wrapper .blix-brand-section {
  padding: 1rem;
  margin-top: 2rem;
}

.blix-wrapper .blix-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.blix-wrapper .blix-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.blix-wrapper .blix-brand:hover {
  transform: scale(1.05);
}

.blix-wrapper .blix-brand-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blix-wrapper .blix-brand-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blix-wrapper .blix-brand-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
}

@media (max-width: 768px) {
  .blix-wrapper .blix-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}







.blix-wrapper .blix-brand-section,
.blix-wrapper .blix-brand-section .blix-brands-grid {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50%;
  transform: translateX(-50%);
}












/* Paragraphs & lists */
.blix-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blix-wrapper ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
  list-style-type: disc;
  font-size: 1.1rem;
}






/* Service Sidebar Block */
.blix-wrapper .blix-service-box {
  background: #f7f7f7;
  padding: 1.5rem;
  border: 1px solid #ddd;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blix-wrapper .blix-service-logo {
  max-width: 180px;
  margin-bottom: 1rem;
}

.blix-wrapper .blix-service-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.blix-wrapper .blix-phone {
  color: #000;
  font-weight: bold;
}

.blix-wrapper .blix-service-email {
  text-decoration: underline;
  color: #ac7f14;
}

.blix-wrapper .blix-service-email:hover {
  color: #000;
}

/* Sidebar Links */
.blix-wrapper .blix-service-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: center;
  width: 100%;
}

.blix-wrapper .blix-service-links li {
  margin-bottom: 0.5rem;
}

.blix-wrapper .blix-service-links a {
  text-decoration: none;
  font-weight: 700;
  color: #455581;
}

.blix-wrapper .blix-service-links a:hover {
  color: #ac7f14;
}


























/* Fix for Service Box Email */
.blix-wrapper .blix-service-box a.blix-service-email {
  text-decoration: underline;
  color: #ac7f14 !important;
}

.blix-wrapper .blix-service-box a.blix-service-email:hover {
  color: #000 !important;
}

/* Fix Sidebar Links List */
.blix-wrapper .blix-service-links {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1rem 0 0 0;
  text-align: center;
}

.blix-wrapper .blix-service-links li {
  margin-bottom: 0.5rem;
}

.blix-wrapper .blix-service-links li a {
  text-decoration: none !important;
  font-weight: 700;
  color: #455581 !important;
}

.blix-wrapper .blix-service-links li a:hover {
  color: #ac7f14 !important;
}











.blix-wrapper .blix-contact-box {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.blix-wrapper .blix-contact-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.blix-wrapper .blix-contact-panel {
  flex: 1;
  min-width: 300px;
  background: #fafafa;
  border: 1px solid #ddd;
  padding: 1rem;
  box-sizing: border-box;
}

.blix-wrapper .blix-contact-img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}

.blix-wrapper .blix-phone {
  font-weight: bold;
  color: #000;
}

.blix-wrapper .blix-gold-link {
  color: #ac7f14;
  text-decoration: underline;
}

.blix-wrapper .blix-gold-link:hover {
  color: #000;
}

.blix-wrapper .blix-map-link {
  color: #ac7f14;
  text-decoration: underline;









.payment-method {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-top: 1.5em;
}

.payment-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.payment-heading {
  color: #5b74b8;
  font-size: 1.2em;
  margin: 0;
  display: inline; /* key fix */
}














.inline-icon {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6em;
}

.inline-icon .payment-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.inline-icon .payment-heading {
  display: inline-block !important;
  color: #5b74b8;
  font-size: 1.2em;
  margin: 0;
}


















.payment-method img.payment-icon {
  display: inline-block !important;
  margin: 0 !important;
}










.payment-method {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-top: 1.5em;
}

.payment-method .payment-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block !important;
  margin: 0 !important;
}

.payment-method .payment-heading {
  font-size: 1.2em;
  color: #5b74b8;
  margin: 0;
}

























































.ikonbullet {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin: 1.5em 0;
}

.ikonbullet-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  display: inline-block;
  margin: 0;
}

.ikonbullet-text {
  font-size: 1.2em;
  font-weight: 600;
  color: #5b74b8;
  margin: 0;
  line-height: 1.3;
}









.bu22on,
.bu22on:link,
.bu22on:visited {
  display: inline-block;
  background-color: #d2a333; /* gold */
  color: #ffffff !important; /* force white text */
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5em 1.2em;
  border-radius: 4px;
  text-decoration: none !important; /* remove underline */
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bu22on:hover,
.bu22on:focus {
  background-color: #b98d2c; /* darker gold */
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}




.block-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.block-link:hover {
  text-decoration: none;
}






























.flex-pay-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.flex-pay-block {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: center;
  background: #f8f8f8;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
}

.flex-pay-block:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.flex-pay-heading {
  color: #5b74b8;
  font-size: 1.4em;
  margin-bottom: 1rem;
}

.flex-pay-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

/* Desktop view (side by side) */
@media (min-width: 768px) {
  .flex-pay-block {
    flex: 1 1 48%;
    max-width: 48%;
  }
}



.blix-gold {
  color: #d2a333 !important;
  font-weight: 700;
}









.blix-main-content h1.blix-gold {
  color: #d2a333 !important;
}





























.blix-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1rem;
}

.blix-blue {
  color: #5b74b8;
  font-weight: 700;
  font-size: 1.2rem;
}

.blix-gold {
  color: #c1990e;
  font-weight: 700;
  font-size: 2.2rem;
}

ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}

ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}






























/* ✅ Gold Tick Bullet Fix */
.blix-wrapper ul.gold-ticks {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 1.5rem 0 !important;
}

.blix-wrapper ul.gold-ticks li {
  position: relative !important;
  padding-left: 2.2rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.6;
}

.blix-wrapper ul.gold-ticks li::before {
  content: "✔" !important;
  color: #d2a333 !important;
  font-weight: 700 !important;
  position: absolute !important;
  left: 0;
  top: 0.1rem;
  font-size: 1.2rem;
}



























/* Responsive width for help image */
.width-50-mobile-95 {
  width: 50%;
}

@media (max-width: 768px) {
  .width-50-mobile-95 {
    width: 75%;
  }
}
