:root {
  --evo-brand-secondary: #203165;
  --evo-brand-accent: #E6EFFB;
  --evo-header-background: #fff;
}

.catalog-grid .tile .footer-wrapper-price span, .catalog-single .tile .footer-wrapper span {
    color: black;
    display: block;
    font-weight: 300;
}

.hero-new .hero-box:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.btn-primary:hover {
  color:white
}


.upload-attachment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #213165;
    color: white !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.upload-attachment-btn:hover {
    background: #fd9f00;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.28);
}

header .minicart_container .cart-btn>a.btn .minicart_count {
    align-items: center;
    background: orange;
    border-radius: 100%;
    color: #fff;
    display: flex;
    height: 24px;
    justify-content: center;
    transition: color .35s 
ease, background .35s 
ease;
    width: 24px;
}

.header-full .logo img {
/* Change this for desktop */
    max-width: 150px !important;
    height: auto !important;
    max-height: none !important;
}

/* ===== MH landing page styling ===== */
.page-content.onecolumn:has(.landingpage-hero-title) {
  margin: 0;
}

.landingpage-hero-title {
  position: relative;
  background-color: #2a2a2a;
  min-height: 300px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -60px;
}

.landingpage-hero-title > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.landingpage-hero-title .container {
  position: relative;
  z-index: 1;
  height: 100%;
}

.landingpage-hero-title .content-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}

.landingpage-hero-title h1 {
  font-size: 48px;
  margin: 0 0 25px;
  color: #fff;
}

.landingpage-hero-title p:last-child {
  margin-bottom: 0;
}

.landingpage-introtext h2 {
  font-size: 40px;
  margin: 0 0 30px;
}

.landingpage-introtext p {
  margin: 0 0 25px;
}

.catalog-grid:has(.landingpage-introtext) .row-breadcrumb {
  display: none;
}

.htmlcontent_container:has(.landingpage-buttons) {
  margin: 0;
}

.landingpage-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.landingpage-buttons .btn {
  width: 35%;
  padding: 1.5rem;
  border-radius: 20px;
  font-size: 1.35rem;
  min-width: max-content;
}

@media (max-width: 500px) {
  .landingpage-buttons {
  flex-direction: column;
  align-items: center;
  }
  .landingpage-buttons .btn {
  min-width: min(300px, 90%);
  }
}

.landingpage-category-boxes {
  background: white;
  padding: 70px 0;
  margin-top: -50px;
  margin-bottom: -50px;
}

.landingpage-category-boxes h2 {
  text-align: center;
  font-size: 36px;
  color: #444242;
  margin: 0 0 0px;
}

.landingpage-category-boxes p {
  text-align: center;
  margin: 0;
}

.landingpage-category-boxes .container {
  background-color: revert;
}

.lp-categoryboxes-inner {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .lp-categoryboxes-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .lp-categoryboxes-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.lp-categorybox {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px;
  height: 285px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
}

.lp-categorybox > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.35s all;
}

.lp-categorybox > div {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}

.lp-categorybox > div img {
  flex-shrink: 0;
}

.lp-categorybox > div::after {
  content: "View Category";
  position: absolute;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  bottom: 100%;
  opacity: 0;
  transition: 0.35s all;
  transform: translateX(-20px);
}

.lp-categorybox::after {
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: -1;
  transition: 0.35s all;
}

.lp-categorybox:hover > img {
  transform: scale(1.05);
}

.lp-categorybox:hover > div::after {
  opacity: 1;
  transform: translateX(0);
}

.lp-categorybox:hover::after {
  opacity: 0.75;
}

.zonebottom:has(.landingpage-category-boxes) > div {
  margin-bottom: 0;
}

.gotAnyQuestions {
  background: #2a2a2a;
  position: relative;
  padding: 0 30px;
}

.gotAnyQuestions > img {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 50%;
  object-fit: cover;
}
.gotAnyQuestions a {
  margin-top: 20px;
}

.gotAnyQuestions a:hover,
a:focus {
  color: #ffffff;
}

.gotAnyQuestions .questionsInner {
  padding: 100px 100px 100px 0;
  width: 50%;
}

.gotAnyQuestions h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 30px;
}

.gotAnyQuestions p {
  color: #fff;
  margin: 0 0 30px;
}

.gotAnyQuestions .questionsLink {
  color: #fff;
  margin: 15px 0;
}
.gotAnyQuestions .customButton {
  display: inline-block;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .gotAnyQuestions > img {
    display: none;
  }
}

@media (max-width: 768px) {
  .gotAnyQuestions .questionsInner {
    width: 100%;
    padding: 50px 0;
  }
}
/* ===== END landing page style ===== */

/*MH Remove Checkout Button*/
.cart-dropdown .to-checkout {
    display: none !important;
}

/*MH Increase Artwork Button*/
.cart-dropdown .footer .btn:first-child {
    margin-left: 0;
    min-width: 380px;
}

.ex-product .b6288 .ribbon-side, .b4806 .ribbon-tips {
  display: none;
}
.ex-product .b6288 .ribbon {
 padding: 55px;
  margin-bottom: 15px;
 border-radius: 50px;
   background-color: transparent !important;
  background-image: url("https://eu.evocdn.io/dealer/1935/content/media/UPLOADARTWORK.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-product .b6288 .ribbon span {
display: none;
}
.ex-product .b6288 .ribbon-side {
border-left: 0px;
}
.ex-category .b6288 .ribbon-side, .b6288 .ribbon-tips {
  display: none;
}
.ex-category .b6288 .ribbon {
 margin-left: 5px;
  padding: 40px;
  margin-bottom: 15px;
 border-radius: 50px;
   background-color: transparent !important;
  background-image: url("https://eu.evocdn.io/dealer/1935/content/media/UPLOADARTWORK.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-category .b6288 .ribbon span {
display: none;
}
.ex-category .b6288 .ribbon-side {
border-left: 10px;
 border-color: #fff;
}
.ex-searchresult .b6288 .ribbon-side, .b6288 .ribbon-tips {
  display: none;
}
.ex-searchresult .b6288 .ribbon {
margin-left: 5px;
  padding: 40px;
  margin-bottom: 15px;
 border-radius: 50px;
   background-color: transparent !important;
  background-image: url("https://eu.evocdn.io/dealer/1935/content/media/UPLOADARTWORK.png");
  background-position: left;
  background-repeat: no-repeat; 
  background-size: contain; 
}
.ex-searchresult .b6288 .ribbon span {
display: none;
}
.ex-searchresult .b6288 .ribbon-side {
border-left: 10px;
 border-color: #fff;
}
/* adjust header style */
.headersection-2 nav.menu .catalog-block ul.catalog > li > a {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.headersection-2 nav.menu .catalog-block ul.catalog > li > a:hover,
.headersection-2 nav.menu .catalog-block ul.catalog > li > a:focus {
  color: var(--evo-brand-accent);
  background-color: #33467d;
}
.headersection-2 .headermenu_container {
  flex-grow: 1;
}

.live-inventory-v2-wrapper .in-stock, .product-stock .in-stock {
    color: white;
}

.live-inventory-v2-wrapper .in-stock, .live-inventory-v2-wrapper .out-stock, .product-stock .in-stock, .product-stock .out-stock {
    background-color: green;
}

.upload-attachment-btn {
    font-size: 25px;
    margin-top: 6px;
    margin-bottom: 6px;
}


/* Paratus Marketing Modal Pop START */
#uploadartwork .modal-lg  {
  max-width: 600px !important;
  }
#uploadartwork .modal-body {
  padding: 60px 40px 40px!important;
}  
#uploadartwork .modal-body p {
  color: #444;
  line-height: 1.5em;
  margin-bottom: 17px;
}    
#uploadartwork .modal-body h2 { 
  text-transform: inherit;
  margin-bottom:20px;
  font-weight:700;
  color: #203165;
  text-align:center  
}
#uploadartwork .buttons-section {  
  margin:20px auto;
  text-align: center  
}
#uploadartwork svg {
  display: block;      
  margin: 0 auto -10px; 
}
.buttons-section .btn-primary:hover a {
  color: #fff;
  text-decoration: none;
}
.buttons-section .btn-primary:hover {
  background: #0096d8;  
}
.upload-icon .arrow {
  transform-origin: center;
  animation: bouncePause 1.8s infinite ease-in-out;
}
@keyframes bouncePause {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-10px); }
  30%  { transform: translateY(0); }
  70%  { transform: translateY(0); }   
  100% { transform: translateY(0); }
}
/* Paratus Marketing Modal Pop END */

.productsummary_container .option-group-values select {
    background: #e7effc;
    border: 1px solid var(--evo-border-color, #eaeaea);
}

html {
    scroll-behavior: smooth;
}

.text-input-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-input-wrap label {
  font-weight: 700;
  font-size: 1rem;
}
.text-input-wrap textarea {
  padding-left: 20px;
  width: 100%;
  min-height: 45px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid lightgrey;
}

/* Start of add Sticky header EvoX */
@media only screen and (min-height: 768px) {
.menubarStick {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 15;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.headersection-2.menubarStick > .row-2 {
    max-width: 1450px;
    margin: 0 auto;
}

/* change me to the height of the sticky row */
.menubarHeader {
    padding-top:40px;
}
}
/* end of add Sticky header EvoX */