/** Shopify CDN: Minification failed

Line 224:87 Unexpected "{"
Line 224:95 Expected ":"
Line 224:100 Unexpected ","
Line 225:95 Unexpected "{"
Line 225:103 Expected ":"
Line 225:108 Unexpected ","
Line 269:76 Unexpected "{"
Line 269:84 Expected ":"
Line 468:12 Expected identifier but found whitespace
Line 468:13 Unexpected "30px"
... and 1 more hidden warnings

**/
/* General body styling */
.body_titan {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-family: 'Poppins', sans-serif;
    
}

/* Wrapper to hold the product grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px; /* Adjust width as needed */
    padding: 10px;
    gap: 20px; /* Space between cards */
    align-items: stretch; /* Ensures equal height for all cards */
    box-sizing: border-box; /* Ensures padding and border are included in total width */
}

/* Product card styling */
.container_titan {
    position: relative;
    flex: 1 1 calc(33.333% - 20px); /* 3 cards in a row */
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    height:auto;
}

/* Image and text styling */
.container_titan .imgBx {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: #333333;
    transition: .3s linear;
}

.container_titan .imgBx img {
    width: 100%;
    height: auto;
}

.container_titan .details {
    padding: 20px;
    flex-grow: 1; /* Ensures the details section expands to fill the available space */
}

.container_titan .details h2 {
    font-size: 2em;
    color: #444;
}

.container_titan .details p {
    color: #333;
    font-size: 14px;
}

.container_titan .details ul li {
    font-size: 14px;
}

.more_info {
    font-size: 1.5em;
    color: #706d6d;
}

.brand {
    font-size: 1.1em;
    font-weight: 800;
}


/* Responsive layout */
@media (max-width: 1200px) {
    .container_titan {
        flex: 1 1 calc(33.333% - 10px); /* Adjust to make sure 3 cards fit */
    }
}

@media (max-width: 1080px) {
    .product-grid {
        flex-direction: column; /* Stack the cards on mobile */
        gap: 20px;
    }

    .container_titan {
        flex: 1 1 100%; /* Each card takes up full width on mobile */
    }


    .brand {
        font-size: 1.2em;
        font-weight: 800;
    }
}


/* ===== Variant dropdowns: modern, high-visibility style ===== */
:root{
  --titan-yellow: #f4c20d;       /* Dark Yellow (Google Yellow tone) */
  --titan-yellow-dark: #d9ab0b;  /* Deeper hover/focus shade */
  --titan-ink:#111;
  --titan-border:#e7e7e7;
}

/* Wrapper spacing */
.selector-wrapper{
  margin: 14px 0 18px;
}

/* Label = bold badge above the select */
.selector-wrapper > label{
  display:inline-block;
  font-weight:700;
  letter-spacing:.2px;
  background: var(--titan-yellow);
  color: var(--titan-ink);
  padding:6px 10px;
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  margin-bottom: 8px;
}

/* The select itself = pill with custom caret */
.selector-wrapper .single-option-selector{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 520px;
  padding: 12px 44px 12px 14px;
  border: 2px solid var(--titan-yellow);
  border-radius: 14px;
  background: #fff;
  color: var(--titan-ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
  position: relative;
}

/* Hover/focus for visibility */
.selector-wrapper .single-option-selector:hover{
  border-color: var(--titan-yellow-dark);
  background: #fff9e5;
}
.selector-wrapper .single-option-selector:focus{
  outline: none;
  border-color: var(--titan-yellow-dark);
  box-shadow: 0 0 0 4px rgba(227, 225, 219, 0.25);
  background:rgb(255, 255, 255);
}

/* Disabled state */
.selector-wrapper .single-option-selector:disabled{
  opacity:.6;
  cursor:not-allowed;
}

/* Custom caret (SVG) */
.selector-wrapper .single-option-selector{
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="%23111"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 22px 22px;
}

/* Compact on small screens */
@media (max-width: 576px){
  .selector-wrapper .single-option-selector{
    font-size:14px;
    padding: 11px 42px 11px 12px;
  }
  .selector-wrapper > label{
    font-size: 13px;
    padding: 5px 9px;
  }
}

/* Optional: add subtle panel behind both variant rows */
.product-item-caption-select{
  padding: 14px;
  border: 1px solid var(--titan-border);
  border-radius: 16px;
  background:rgb(251, 250, 249);
}




/* === Product Page Details Styling (scoped to product pages only) === */
/* === Product Page Details Styling (scoped to product pages only) === */

/* Group SKU, Type & Availability into a box */
.template-product .product-description-product-template #sku-table,
.template-product .product-description-product-template .product-attributes.sku-table-{{section.id}},
.template-product .product-description-product-template .product-attributes.inventory-product-{{section.id}},
.template-product .product-description-product-template .product-attributes:has(.product-label:contains("Type")) {
  background: #fdfcf8; /* subtle warm panel */
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 12px 16px;
  margin: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
}

/* Each row inside the box (SKU / Type / Availability) */
.template-product .product-description-product-template .product-attributes,
.template-product .product-description-product-template #sku-table {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
  font-weight: 700;
}

/* Label badge */
.template-product .product-description-product-template .product-attributes .product-label,
.template-product .product-description-product-template #sku-table .product-label {
  font-weight: 800;
  color:#111;
  background:#f4c20d;        /* dark yellow badge */
  padding:4px 10px;
  border-radius:999px;
  white-space: nowrap;
}

/* SKU + Type values inline (floated left) */
.template-product .product-description-product-template .product-attributes span,
.template-product .product-description-product-template #sku-table span {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-weight: 700;
  color: inherit;   /* inherit from parent, don’t force black */
}

/* Availability plain bold text (no box) */
.template-product .product-description-product-template .variant-inventory,
.template-product .product-description-product-template .inventory-product-{{section.id}} span {
  background: none;
  border: none;
  color: inherit;   /* inherit instead of forcing black */
  font-weight: 700;
  padding: 0;
}

/* === PRICE EMPHASIS (SUPER BIG & HERO STYLE) === */
.template-product .product-description-product-template .product-price-current .money {
  font-size: 40px;       /* super big (≈ 32–34px depending on base font) */
  font-weight: 900;        /* ultra bold */
  color: #111;
  position: relative;
  line-height: 1.2;
  margin: 10px 0;
}

.template-product .product-description-product-template .product-price-current .money::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;            /* thicker underline */
  background: #fff3c0;     /* bold yellow highlight */
  z-index: -1;
  border-radius: 6px;
}

/* Ex VAT style (keeps secondary look) */
.template-product .product-description-product-template .product-price .money:last-child {
 /*font-size: 1.2rem;       /* readable but clearly smaller */
  color: #555;
  font-weight: 500;
  margin-top: 8px;
  display: block;
}





.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: block;
  line-height: 1.2;
}

.product-price-incvat {
  font-size: 0.85em;
  opacity: 0.75;
  margin-top: 2px;
}

.product-price-incvat .money,
.product-price-incvat .vat-label {
  display: inline;
}














/* -----------------------------------------------------------
   TITAN Construction Grade – Simple Stable Layout (No Spikes)
----------------------------------------------------------- */

/* FEATURE GRID SPACING */
.titan-construction-page .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 120px;          /* gap between blocks */
  padding: 20px;
}

/* FEATURE CARD */
.titan-construction-page .feature-card {
  display: grid;
  grid-template-columns: 55% 45%; /* big image, text right */
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;    /* clip everything cleanly */
  box-shadow: none;
  position: relative;

  /* optional fade-up animation */
  opacity: 0;
  transform: translateY(30px);
  animation: titan-fadeUp 0.7s ease forwards;
}

.titan-construction-page .feature-card:nth-child(2) { animation-delay: 0.1s; }
.titan-construction-page .feature-card:nth-child(3) { animation-delay: 0.2s; }
.titan-construction-page .feature-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes titan-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* REVERSED LAYOUT (image right, text left) */
.titan-construction-page .feature-card.reverse {
  grid-template-columns: 45% 55%;
  direction: rtl;            /* swap visual order */
}
.titan-construction-page .feature-card.reverse .feature-text {
  direction: ltr;            /* keep text normal */
}

/* IMAGE PANEL */
.titan-construction-page .feature-img {
  min-height: 420px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  transition: transform 0.4s ease;
}

/* hover zoom */
.titan-construction-page .feature-card:hover .feature-img {
  transform: scale(1.03);
}

/* TEXT PANEL */
.titan-construction-page .feature-text {
  padding: 50px;
}

.titan-construction-page .feature-text h2 {
  font-size: 30px;
  margin-bottom: 12px;
  color: #111;
}

.titan-construction-page .feature-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #444;
}

/* BULLET LIST */
.titan-construction-page .feature-text ul {
  margin: 0;
  padding: 0;
}

.titan-construction-page .feature-text ul li {
  list-style: none;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.titan-construction-page .feature-text ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgb(245, 249, 15); /* Titan lime */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* HERO SPACING */
.titan-construction-page .hero {
  margin-bottom: 70px;
}

/* -----------------------------------------------------------
   MOBILE
----------------------------------------------------------- */
@media (max-width: 900px) {
  .titan-construction-page .feature-card,
  .titan-construction-page .feature-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .titan-construction-page .feature-text {
    padding: 30px




/* Break out of Shopify page-width + force full centering */
.titan-fitment-outer {
  width: 100vw;                      /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;                /* true breakout */
  margin-right: -50vw;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;               /* center everything inside */
  text-align: center !important;
  background: #fff;
}

/* Header styling */
.titan-fitment-header {
  max-width: 800px;
  margin-bottom: 30px;
}

.titan-fitment-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.titan-fitment-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* Center the EasySearch widget */
.titan-fitment-search {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: center;
}


.rte h2 .titan-fitment-outer,
.rte h1 .titan-fitment-outer,
.shopify-section .titan-fitment-outer {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.rte h2,
.rte h1 {
  width: 100% !important;
}