
:root { 
    --ds-orange:#be4e30;
    --ds-orange-hov: #9c371c;
    --ds-border:#e6e8ee;
    --ds-text:#111827;
}

/* Transitions */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
	width: inherit;
	height: inherit;
}

.hover-up {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-up:hover {
  transform: translateY(-5px);
  /* optional: a little lift shadow for depth */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* no scroll */
.body-no-scroll{
    height: 100vh;
    overflow: hidden;
}
/* Mobile menu Inject */
.mobile-account-link {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.mobile-account-link a {
    display: inline-block;
    background-color: var(--ds-orange);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
  	font-size: 0.8rem
}

.mobile-account-link a:hover {
    background-color: var(--ds-orange-hov);
}

.mobile--show{
	display: inline;
}


/* glossary page */
.gloss-list{
	list-style: none;
}
.gloss-list li{
	color: black;
}
.gloss-list li a{
	color: black;
	text-decoration: none;
}
.gloss-list li a:hover{
	color: var(--ds-orange);
	cursor: pointer;
}

/* My responsive fonts */
.sw-body-text{
	font-size: clamp(16px, 1.5vw + 0.5rem, 28px);
}
.sw-medium-hdr{
		font-size: clamp(20px, 2vw + 0.5rem, 40px);
}
.sw-large-hdr{
	font-size: clamp(28px, 3vw + 1rem, 56px);
}

/* GLOBAL CLASSES */
.mobile-lg-hdr-txt{
	font-size: 16px;
}
.mobile-hdr-txt{
	font-size: 13px;
}
.mobile-body-txt{
	font-size: 11px;
}
.border-b{
	border-bottom: 2px solid black;
}

/* MY CUSTOM PAGES (all content inside fullbleed)*/
.all-products-page{
    font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
}
.sw-hero-cont{
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    min-height: 150px;
    z-index: 5;
}
.sw-hero-cont img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    z-index: 1;
}
.sw-hero-txt{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding: 5vw 5vw;
    z-index: 2;
}
.sw-hero-hdr{
    color: white;
    font-size: 40px;
    display: flex;
    flex-direction: row;
    padding: 5px 0 5px 15px;
    background-color: var(--ds-orange);
    max-width: 1113px
}
.sw-hero-shdr{
    color: #d8d8d8;
    font-size: 25px;
}

/* ------ FULLBLEED ------ */
body:has(.fullbleed) { overflow-x: clip; }
.fullbleed {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  max-width: none;
}

@supports (width: 100svw) {
  .fullbleed { width: 100svw; }
}
@supports (width: 100dvw) {
  .fullbleed { width: 100dvw; }
}

.ct-container:has(> .fullbleed),
.ct-section-inner:has(> .fullbleed),
.entry-content:has(> .fullbleed) {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fullbleed.ct-section .ct-section-inner { 
  padding-left: 0 !important; 
  padding-right: 0 !important; 
}

/* fix old CSS in my custom PLP & api PugIn*/
.content-cat-cont sort-by{
	width: 80px;
	margin: auto;
}

.content-cat-cont .product-filters{
	width: 283px !important;
}
/*Universal hide button*/
.toggle-divbtn{
	position: absolute;
	top: 0;
	right: 80px;
	text-decoration: underline;
	cursor: pointer;
}
.hide-this{
	display: none;
}
.reverse-hide-target{
	display: flex;
	flex-direction: inherit;
}


/* ################################ ################################
*/
/* Woo commerce product category header content */
.decision-guide{
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f8f8f8;
    overflow: hidden;
    position: relative;
    font-family: sans-serif;
}
.tabs{
    display: flex;
    height: 25px;
}
.tab-swiud{
    flex: 1;
    background-color: #e0e0e0;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
    color: #333;
    text-decoration: underline;
}
.tab-swiud.active{
    background-color: #f8f8f8;
    border-bottom: 2px solid var(--ds-orange);
    text-decoration: none;
}
.tab-content{
    padding: 10px 12px;
    overflow-y: auto;
}
.tab-content ul{
    margin: 5px 0;
}
.tab-content p{
    font-size: 14px;
    margin: 0;
}
.tab-content li{
    font-size: 13px;
    line-height: 20px;
}
.tab-content a{
    color: var(--ds-orange);
    font-size: 13px;
}
.jps{
    margin-bottom: 5px;
}
.jps p{
    margin-bottom: 10px; 
}
.tab-pane-swiud{
    display: none;
    animation: fadeIn 0.3s ease;
}
.tab-pane-swiud.active{
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.wc-breadcrumbs{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	left: 40px;
	font-size: 12px;
	font-weight: bold;
	gap: 3px;
	top: 5px;
}
.wc-breadcrumbs span{
	margin: 0 10px;
}
.wc-breadcrumbs a{
	color: var(--ds-orange);
	text-decoration: none;
}
.wc-breadcrumbs a:hover{
	color: var(--ds-orange-hov);
}
/* .wc-breadcrumbs a:last-of-type {
    color: grey;
} */
.wccpg-container{
	font-family: "Inter","Segoe UI",sans-serif;
	display:flex; 
	flex-direction:column; 
	align-items:center;
	width:100%;
	margin-top: 10px;
}
.wccpg-hdr{
	font-size: 40px;
	text-align: center;
	color: var(--ds-orange);
	font-weight: bold;
	margin: 15px 10% 0;
}
.wccpg-shdr{
	font-size: 20px;
	text-align:justify;
	color: #2e2e2e;
	padding: 15px 10vw;
}
.wccpg-shdr a{
	color: var(--ds-orange);
	text-decoration: none;
}

.icon-info-cont{
    display: flex;
    flex-direction: row;
    gap: 4vw;
    justify-items: center;
	  margin: 15px 0 15px 15px;

}
.icon-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
	    padding: 0 10px;
	align-content: center;

}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.icon-card img{
    width: 100px;
}
.icon-hdr{
		color: var(--ds-orange);
    font-weight: bold;
	text-align: center;
}



/* CUSTON PLP PAGES  */

.c-prodcard-cont{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin-top: 15px;
	background-color: #fafbfc;
}
.sort-n-results{
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	width: 95%;
	height: 50px;
}
.c-results{
	font-size: 1rem;
}
.c-product-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 99%;
	max-width: 1400px;
	padding: 1rem;
}
.c-prodcard{
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 1rem;
	text-align: center;
}
.c-prodcard a{
    text-decoration: none;
    color: #111827
}
.c-prodcard-info{
	display: flex;
	flex-direction: column;
	align-items: baseline;
	gap: 10px;
}
.c-prodcard-info a{
	text-decoration: none;
	color: white;
}
.c-prodcard-info span{
    text-align: left;
    font-size: .9rem;
}
.c-prodcard img{
	width: 90%;
}
.c-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}
.c-image-wrapper img {
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
}
.c-image-wrapper:hover img {
	transform: scale(1.1);
}
.c-prodcard-name{
	text-align: left;
	font-size: 17px;
	font-weight: 500;
	color: #182a3e;
}
.c-prodcard-cat{
	font-size: 12px;
	color: #3a4f66;
}
.c-product-btn{
	background-color: var(--ds-orange);
	padding: 8px 20px;
	border-radius: 5px;
	font-size: 17px;
    color: white;
}
.c-product-btn:hover{
	background-color: var(--ds-orange-hov);
}

/* MEDIA QUERY */
@media (max-width: 1000px){
    .wccpg-hdr{
	    font-size: 25px;
	}
	.c-product-grid{
	    grid-template-columns: repeat(3, 1fr);
	}
}
@media(max-width: 900px){

    .c-prodcard-info span{
        font-size: .7rem;
    }
    .sw-hero-hdr {
        font-size: 30px;
    }
}
@media(max-width: 700px){
	.wc-breadcrumbs{
		left: 20px;
	}
	.wccpg-hdr{
		font-size: large;
		padding: 20px 0 0 0;
		text-align: center;
	}
	.wccpg-shdr{
		font-size: 13px;
	}
	.icon-card img{
		width: 75px;
	}
	.icon-hdr{
		font-size: 14px;
	}
	.c-product-grid{
		grid-template-columns: repeat(2, 1fr);
	}
    .c-product-btn, .c-prodcard-name{
        font-size: 14px;
    }
    .sw-hero-hdr {
        font-size: 20px;
    }
    .sw-hero-shdr{
        font-size: 18px;
    }
}
@media (max-width: 450px){
    .sw-hero-hdr {
        font-size: 18px;
    }
    .sw-hero-shdr{
        font-size: 14px;
    }
    .wc-breadcrumbs{
        font-size: 10px;
        left: 10px;
    }
    .wccpg-hdr{
        padding: 25px 0 0 0;
    }
    .c-prodcard-price{
        font-size: 15px;
    }
    .c-product-btn{
        font-size: 13px;
        padding: 5px 10px;
    }
}







.ds-quote-wrap{
  max-width:760px;margin:24px auto;padding:28px;background:#fff;
  border:1px solid var(--ds-border);border-radius:16px;
  box-shadow:0 6px 20px rgba(17,24,39,.06);
}
.ds-quote-wrap h2{margin:0 0 4px;font-size:clamp(22px,2.4vw,32px);line-height:1.2;font-weight:800;color:var(--ds-text);}
.ds-quote-wrap .ds-sub{margin:0 0 18px;color:#6b7280;font-size:14px;}
.ds-trust{font-size:12px;color:#6b7280;margin-top:10px;}

/* HubSpot form overrides (scoped to the wrapper) */
#hs-quote-form .hs-form fieldset{max-width:100% !important;}
#hs-quote-form .hs-form .hs-form-field{margin-bottom:14px;}
#hs-quote-form .hs-form label{display:block;font-weight:600;font-size:13px;margin-bottom:6px;color:#374151;}

#hs-quote-form .hs-input,
#hs-quote-form textarea,
#hs-quote-form select{
  width:100% !important;max-width:520px;background:#fff;border:1px solid var(--ds-border);
  border-radius:10px;padding:12px 14px;font-size:15px;line-height:1.4;
  box-shadow:0 1px 0 rgba(17,24,39,.02) inset;transition:border-color .2s, box-shadow .2s;
}
#hs-quote-form textarea{min-height:120px;resize:vertical;}

#hs-quote-form .hs-input:focus,
#hs-quote-form select:focus,
#hs-quote-form textarea:focus{
  outline:none;border-color:var(--ds-orange);
  box-shadow:0 0 0 3px rgba(193,80,48,.15);
}

#hs-quote-form .hs-error-msgs li label{color:#b91c1c;font-size:12px;margin-top:6px;}

/* Two-column layout on larger screens */
@media (min-width:900px){
  #hs-quote-form .hs-form fieldset{
    display:grid;grid-template-columns:repeat(2, minmax(240px,1fr));gap:14px 24px;
  }
  #hs-quote-form .hs-form fieldset.form-columns-1{grid-template-columns:1fr;}
  #hs-quote-form .hs-form .hs-form-field .hs-input,
  #hs-quote-form .hs-form .hs-form-field select{max-width:100%;}
}

/* Radios / checkboxes */
#hs-quote-form .inputs-list{display:flex;flex-wrap:wrap;gap:10px 16px;}
#hs-quote-form .inputs-list li{display:flex;align-items:center;gap:8px;}
#hs-quote-form .inputs-list input{width:auto !important;}

/* Legal text */
#hs-quote-form .hs-richtext,
#hs-quote-form .legal-consent-container{font-size:13px;color:#6b7280;max-width:640px;}

/* Submit button */
#hs-quote-form .hs-button{
  background:var(--ds-orange) !important;border:none !important;color:#fff !important;
  font-weight:700 !important;padding:12px 18px !important;border-radius:12px !important;
  box-shadow:0 6px 14px rgba(193,80,48,.25);cursor:pointer;
  transition:transform .04s, box-shadow .2s, background-color .2s;
}
#hs-quote-form .hs-button:hover{box-shadow:0 10px 18px rgba(193,80,48,.35);}
#hs-quote-form .hs-button:active{transform:translateY(1px);}

/* Optional: recaptcha tweak */
#hs-quote-form .hs-recaptcha, #hs-quote-form .grecaptcha-badge{transform:scale(.96);transform-origin:left top;}

