:root {
  /*** Global ***/
  --theme-primary: #161616; /* dark grey */
  --theme-secondary: #da291c; /* red */
  --theme-tertiary: #f7d117; /* yellow */
  --theme-text: #000; /* black */
  --theme-lightgrey: #63666A; /* grey */

  /* Top Bar */
  --topbar-bg: var(--theme-lightgrey);
  --topbar-icons: #fff;
  --topbar-text: var(--theme-text);
  --topbar-hover: var(--theme-tertiary);
  
  /* Main Header */
  --header-bg: #161616;
  --header-icons: #da291c;
  --header-text: #fff;
  --header-hover: var(--theme-tertiary);
  
  /* Header Search Bar */
  --search-bg: #fff;
  --search-icons: var(--theme-primary);
  --search-text: var(--theme-text);
  --search-focus: var(--theme-primary);
  
  /* Main Navigation */
  --nav-bg: #da291c;
  --nav-border: #000;
  --nav-icons: var(--theme-primary);
  --nav-text: #000;
  --nav-hover: var(--theme-tertiary);
  
  /* USP Strip */
  --strip-bg: #fff;
  --strip-icons: var(--theme-primary);
  --strip-text: var(--theme-text);
  --strip-hover: #da291c;
  
  /* Footer */
  --footer-bg: #161616;
  --footer-icons: #da291c;
  --footer-text: #fff;
  --footer-hover: var(--theme-tertiary);
  
  /* Footer Newsletter Input*/
  --footnews-bg: #fff;
  --footnews-icons: var(--theme-primary);
  --footnews-text: var(--theme-text);
  --footnews-focus: var(--theme-primary);
  
  /* Footer Social Icons */
  --footsocial-bg: #da291c;
  --footsocial-icons: #fff;
  --footsocial-bg-hover: var(--theme-tertiary);
  --footsocial-icons-hover: #fff;
  
  /* Title Underline Underline Colour */
  --title-underline:  var(--theme-primary);
  
  /* Simple / Link Boxes */
  --linkbox-bg: var(--theme-primary);
  --linkbox-text: #fff;
  --linkbox-hover-bg: var(--theme-tertiary);
  --linkbox-hover-text: #fff;
}

/* Branch Banner Selector */

.current-branch-banner .container a {
  font-weight: bold;
  color: white;
}

.current-branch-banner {
    background: #161616;
    font-size: 12px;
    padding: 9px 0;
  }

.current-branch-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  height: 14px;
}

.homestickybanner {
    background: #161616;
    padding-top: 25px;
    padding-bottom: 10px;
    margin-top: -5px;
  margin-bottom: 30px;
    }

.bannerExpert2{
	padding: 20px;
	width: 100%;
	border-radius: 4px;
	position:relative;
	display: flex;
  	justify-content: space-between;
    align-items: center;
  	margin-left: auto;
  	margin-right: auto;
    margin-bottom:50px;
	margin-top:50px;
    background-color: #161616;
}
.buttonExpert2{
	border:none;
	border-radius:4px;
	background-color: #e12726;
	font-weight: 600;
	color: black;
	text-transform: uppercase;
	padding: 15px 35px 15px 35px;
	transition-duration: 0.2s;
}
.buttonExpert2:hover{
	background-color: #ffce06;
	color: black;
}
.bannerTxtExpert2{
	text-align: left;
	font-weight: medium;
	font-size: 25px;
  	color:white;
}

hr {
    border: 0;
    border-top: 5px solid #161616;
    margin-bottom: 1em;
    margin-top: 1em;
}
header .header-mobile .cd-dropdown-trigger-mobile i, header .header-mobile .header-right a {
    color: #000;
}
.live-stock-content.in-stock {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff !important;
    background-color: red;
}
  
.stain-swatches {
    text-align: center;


.swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    justify-items: center;
}

.swatch-item {
    position: relative;
    width: 100%;
    max-width: 150px;
}

.swatch-item img {
    width: 100%;
    border: 2px solid #ddd;
    transition: transform 0.3s ease-in-out;
}

.swatch-item:hover img {
    transform: scale(1.1);
}

.swatch-item::after {
    content: attr(data-name); /* This pulls the name from the data-name attribute */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.swatch-item:hover::after {
    opacity: 1;
    visibility: visible;
}
  .paint-swatches {
    text-align: center;
}

.paint-swatches .swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    justify-items: center;
}

.paint-swatches .swatch-item {
    position: relative;
    width: 100%;
    max-width: 150px;
}

.paint-swatches .swatch-item img {
    width: 100%;
    border: 2px solid #ddd;
    transition: transform 0.3s ease-in-out;
}

.paint-swatches .swatch-item:hover img {
    transform: scale(1.1);
}

.paint-swatches .swatch-item::after {
    content: attr(data-name); /* Shows color name on hover */
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.paint-swatches .swatch-item:hover::after {
    opacity: 1;
    visibility: visible;
}