 /* Gotham Font Family - only the weights you have */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Light.otf') format('opentype');
    font-weight: 300;       /* Light → usually 300 */
    font-style: normal;
    font-display: swap;     /* Improves loading - text shows immediately */
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Book.otf') format('opentype');
    font-weight: 400;       /* Book = regular / normal */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Medium.otf') format('opentype');
    font-weight: 500;       /* Medium → standard is 500 */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Bold.otf') format('opentype');
    font-weight: 700;       /* Bold → standard is 700 */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Black.otf') format('opentype');
    font-weight: 800;       /* Black → often 800 or 900; 800 is common for Gotham Black */
    font-style: normal;
    font-display: swap;
}

.owl-carousel {
    visibility: hidden;   /* or display: none; */
    /* Optional: give it a min-height so layout doesn't jump too much */
}


* {
    margin: 0;
    padding: 0;
    border: unset;
    outline: unset;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: var(--black);
}

ul {
    list-style: none;
    margin-bottom: 0 !important;
    padding: 0;
}
p {
    margin: 0;
}

html {
    overflow-y: scroll;           /* always reserve scrollbar space */
    scrollbar-gutter: stable;     /* modern – reserves space even when overflow hidden */
	position: relative;
}

body {
    font-family: Gotham !important;
    /* overflow-x: hidden; */
    transition: padding-right 0.3s ease;
	position: relative;
}

/* Hide alt text for lazy loading images */
img[loading="lazy"],
img[data-src],
img.lazy,
img[data-lazy-src] {
    /* Hide alt text completely */
    font-size: 0 !important;
    text-indent: -9999px !important;
    color: transparent !important;
}

/* Show skeleton/placeholder instead */
img[loading="lazy"]:before,
img[data-src]:before {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


:root {
    --white: #FFFFFF;
    --black: #1C1C1C;
    --nblack: #212529;
    --sky-blue: #F1F5F9;
    --lighter-blue: #76B5E3;
    --light-blue: #1977BB;
    /* --blue: #0067B2; */
     --blue: #026193;
    --dark-blue: #0F172A;
    --yellow: #EAB308;
    --green: #059669;
    --gray: #A9B2BF;
    --d-gray: #96A3B8;
    --red: rgba(233, 37, 48, 1);
    
    --border-gray: #dcdde1;
    --header-gray: #f5f6fa;

    --border-theme: .5px solid var(--border-gray);

  }

html, body {
    margin: 0 !important;
}

#wpadminbar {
  display: none !important;
}


  .loader-type-1 {
    position: relative;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border-top: 4px solid #FFF;           /* slightly thicker for better visibility */
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--white); /* subtle bottom for depth */
    border-left: 4px solid var(--white);
    box-sizing: border-box;
    animation: rotation 1.1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

/* Shown state */
.loader-type-1.show {
    display: inline-block !important;
    opacity: 1 !important;
}

/* Optional: center it perfectly inside the button */
.add-to-cart-type-1 {
    position: relative;           /* make sure parent has position */
}

.loader-type-1 {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

/* Rotation animation */
@keyframes rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

#Container {

}
.empty-star {
  color: #ffc107;
}
.theme-btn {
  background-color: var(--blue) !important;
  color: var(--white) !important;
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 9px;
}

.btn-type-1 {
  /* 'all: unset' removes width/display, causing layout breaks. 
     We keep it but MUST set display and width manually. */
  /* all: unset; */
  
  /* FIX 1: Force block behavior and max-width */
  display: flex;
  justify-content: center; /* Center the text horizontally */
  align-items: center;
  width: 100%; /* Fill the container width */
  margin: 0 auto; /* Center the button in the wrapper */
  box-sizing: border-box; /* Ensure padding doesn't break width */
  
  position: relative;
  border: var(--blue) solid 0.15em;
  border-radius: 0.25em;
  color: var(--blue) !important;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  user-select: none;
  background-color: var(--white) !important;
  /* FIX 2: Z-Index ensures button sits ON TOP of WooCommerce image overlays */
  z-index: 10; 
}

.btn-type-1 p {
  z-index: 5; /* Increased z-index to be above pseudo-elements */
  margin: 0; /* Remove default paragraph margins */
  font-family: inherit; /* Ensure font looks consistent */
  font-weight: inherit;
  position: relative;
}

.btn-type-1:hover p,
.btn-type-1:hover .qty-selector input,
.btn-type-1:hover .qty-selector button,
.btn-type-1:hover .loader-type-1 {
  color: var(--white) !important;
}

.btn-type-1:active {
  border-color: var(--light-blue);
}

/* Pseudo-elements for the hover animation background */
.btn-type-1::after, .btn-type-1::before {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  background: var(--blue);
  opacity: 0; /* Start invisible */
  border-radius: 50%;
  transition: transform 500ms, background 300ms, opacity 300ms;
  z-index: 1; /* Sit behind the text */
}

.btn-type-1::before {
  left: 0;
  top: 50%;
  transform: translate(-8em, -50%); /* Center vertically */
}

.btn-type-1::after {
  right: 0;
  top: 50%;
  transform: translate(8em, -50%); /* Center vertically */
}

.btn-type-1:hover:before {
  transform: translate(-1em, -50%);
  opacity: 1; /* Fade in */
}

.btn-type-1:hover:after {
  transform: translate(1em, -50%);
  opacity: 1; /* Fade in */
}

/* Ensure the parent wrapper allows centering */
/* This targets the WooCommerce wrapper inside the list item */
.product-type-simple .button {
  display: flex;
  text-align: center;
}

.product_type_variable.add_to_cart_button {
  height: 50px;
}

.sm-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.md-main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.atd-main {
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
}

/* carousel */
.atd-owl-item {
    width: 100%;
    height: 100px;
}
.atd-owl-item  h4 {
    font-size: 16px;
    font-weight: 600;
}

#cat-carousel .atd-main:after {
  content: "";
  position: absolute;
  top: 0;         /* shift slightly outwards so only half shows */
  right: -25px;
  width: 160px;       /* full circle width  */
  height: 100%;      /* full circle height */
    background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
}
#cat-carousel .atd-main::before {
  content: "";
  position: absolute;
  top: 0;         /* shift slightly outwards so only half shows */
  left: -25px;
  width: 160px;       /* full circle width  */
  height: 100%;      /* full circle height */
   background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
}


.owl-carousel .owl-item img {
  height: 100%;
  object-fit: contain;
}


/* End carousel */

/* media */
.media-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.media-hero__video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border-radius: 15px;
}

#static-banner {
  width: 100%;
  height: 580px;
  position: relative;
  
}
#static-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
    opacity: 0.6; /* adjust 0–1 for more/less white */
    pointer-events: none; /* so clicks still work on the image */
    z-index: 1;
}
#static-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 23px;
  position: absolute;
  z-index: -1;
  top: 0;left: 0;
}
#ststic-content {
  width: 100%;
  padding-left: 100px;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 2;
}
#ststic-content-1 {
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}

#ststic-content .hero-title,
#ststic-content .hero-subtitle {
  font-size: 52px;
  font-weight: 800;
  color: var(--black);
}
#ststic-content .hero-supporting {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}
#ststic-content .hero-button {
  width: 180px;
  height: 44px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--blue);
}
#ststic-content .hero-button {
  margin-left: 30px;
}
#ststic-content-1  {
  padding-left: 30px;
}
/* installers && faq */

#installer-faq {
  min-height: 500px;
	height: auto;
}

#locate-installers {
    width: 36%;
    height: 500px;
    border-radius: 15px;
}

#locate-installers img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
    border-radius: 15px;
    object-fit: cover;
}
#locate-installers::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
    border-radius: 15px;
}

#installers-content {
    width: 92%;
    position: absolute;
    top: 100px; left:4%;
    z-index: 10;
}

#installers-content h4 {
    font-size: 61px;
    font-weight: 800;
    color: var(--white);
}
#installers-content  p {
    width: 80%;
    font-size: 34px;
    font-weight: 300;
    color: var(--white);
}
#installers-content button {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 9px;
    padding: 10px 12px;
    margin-top: 10px;
}
#installers-content button,
#installers-content p,
#installers-content h4 {
    color: var(--white);
}

/* faq */
.faq {
  width: 60%;
  min-height: 500px;
  padding: 40px 60px;
  border-radius: 15px;
  position: relative;
  background-color: var(--blue);
  z-index: 1;
}
.faq::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../images/min/faq.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0; left: 0;
    z-index: -1;
    opacity: .3;
}

.faq b {
    font-size: 69px;
    font-weight: 900;
    color: var(--white);
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 16px 0;
  text-align: left;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0 0 16px;
  padding-right: 32px;
  color: var(--white);
}

/* open state */
.faq-item.active .faq-answer {
  max-height: 200px; /* big enough for your text */
}

.faq-item.active .faq-icon {
  transform: rotate(180deg); /* + becomes x */
}



/* woocommerce note */
.woocommerce-notices-wrapper {
  width: 100%;
}


/* Modern WooCommerce Quantity Input */

.modern-quantity , .qty-selector {
    max-width: 120px; /* adjust width as needed */
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    height: 51px;
    border-radius: 4px;
}
.qty-selector {
  height: fit-content !important;
  margin: 0 auto !important;
  border: unset !important;
  background: unset !important;
  position: relative;
  z-index: 10;
}
.modern-quantity .qty-btn,
.qty-selector button {
    width: 40px;
    height: 40px;
    background: unset !important;
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-quantity .qty-btn:hover {
    background: #e9ecef;
}

.modern-quantity .qty-btn:active {
    background: #dee2e6;
}

.modern-quantity input,
.qty-selector input {
    flex: 1;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: transparent;
    -moz-appearance: textfield; /* Firefox */
}

.modern-quantity input::-webkit-outer-spin-button,
.modern-quantity input::-webkit-inner-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-selector input ,
.qty-selector button {
  color: var(--white) !important;
}

/* Disable buttons when min/max reached */
.modern-quantity input[value="1"] ~ .qty-minus,
.modern-quantity input[min][value="1"] ~ .qty-minus ,
.qty-selector input[value="1"] ~ .qty-minus,
.qty-selector input[min][value="1"] ~ .qty-minus {
    opacity: 0.4;
}

.modern-quantity .qty-btn:disabled,
.qty-selector .qty-btn:disabled {
    cursor: not-allowed;
    background: #f1f1f1 !important;
    color: #aaa !important;
}
.modern-quantity input[max] ~ .qty-plus {
    /* opacity: 0.4; */
}


/* global woo */
.woocommerce-message {
  display: flex;
  flex-direction: column;
  justify-content: start;
  border-top-color: var(--green) !important;
  padding-left: 100px !important;
}

.woocommerce-message::before {
  color: var(--green) !important;
}

.button.wc-forward {
  width: fit-content !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  background-color: var(--blue) !important;
  color: var(--white) !important;
  border: unset !important;
  outline: unset !important;
}

/* Container */
.circ-cont {
    display: inline-block;
    text-align: center;
}

/* Base circle button */
.x-circle {
    width: 50px;                  /* slightly larger for better touch/click */
    height: 50px;
    background: transparent;
    border: 4px solid #e91e63;    /* your $red */
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 12px 24px;
    box-sizing: border-box;
    transition: all 0.4s ease-out;
}

/* The two lines of the X */
.x-circle::before,
.x-circle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 4px;
    background: #e91e63;
    transform-origin: center;
}

/* Position & rotate lines */
.x-circle::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.x-circle::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Text label below */
.x-circle + p {
    margin: 8px 0 0;
    font-size: 14px;
    text-transform: lowercase;
    color: #333;
}

/* ───────────────────────────────
   xMarks specific styles & animation
─────────────────────────────── */

.x-circle[data-animation="xMarks"] {
    border-color: transparent;     /* hide border when active */
    overflow: hidden;
    box-shadow: 0 0 0 0 #e91e63 inset;
    transition: 
        transform 0.5s ease-out,
        opacity 0.3s ease-in,
        box-shadow 0.5s ease-out;
}

/* Hover preview (before activation) */
.x-circle[data-animation="xMarks"]:not(.x-active):hover {
    box-shadow: 0 0 0 8px #e91e63 inset;
    transform: scale(1.1);
}

.x-circle[data-animation="xMarks"]:not(.x-active):hover::before,
.x-circle[data-animation="xMarks"]:not(.x-active):hover::after {
    transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
}

.x-circle[data-animation="xMarks"]:not(.x-active):hover::after {
    transform: translate(-50%, -50%) rotate(-45deg) scale(0.8);
}

/* Activated state (x-active class) */
.x-circle.x-active {
    transform: scale(2.2);
    opacity: 0;
    box-shadow: 0 0 0 30px #e91e63 inset;
}

.x-circle.x-active::before,
.x-circle.x-active::after {
    background: white;
    transform: translate(-50%, -50%) scale(2.5) rotate(45deg);
}

.x-circle.x-active::after {
    transform: translate(-50%, -50%) scale(2.5) rotate(-45deg);
}

.mini-cart-overlay {
    position: fixed;
    inset: 0;                   /* top/right/bottom/left: 0 */
    background: rgba(0, 0, 0, 0.5);  /* semi-transparent black – adjust opacity */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.52s ease, visibility 0.52s ease;
    z-index: -2;              /* below your minicart (which is 1200) */
    pointer-events: none;       /* initially no clicks */
    display: none;
}

.mini-cart-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;        /* allow click to close */
    display: block;
    z-index: 99999;
}
/* mini cart */
#minicart-wrapperr {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999999;
  width: 700px;
  max-width: 100vw;             /* important on small screens */
  display: none;
  height: 100dvh;
  /* Start completely hidden and off-screen */
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.52s ease;
  box-sizing: border-box;
}
#minicart-wrapperr.visible {
  display: flex;
  pointer-events: all;
}
html.mini-cart-open {
  overflow: hidden;
}

.header-mini-cart {
  width: 100%;
  height: 100%;
  position: sticky;
  top: 0;
  right: 0;
  overflow-y: auto;          
  -webkit-overflow-scrolling: touch;
}
#minicart-wrapperr.open {
  display: flex !important;
}
#minicart-wrapperr.closing {
  display: none !important;
}
.header-mini-cart {
  background-color: var(--white);
  padding: 30px;
  padding-top: 0 !important;
}

#mini-cart-nav i {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
}
#mini-cart-nav b {
  font-size: 27px;
  font-weight: 700;
}
#close-mini-cart {
  background: unset;
}

#minicart-wrapperr .remove_from_cart_button img {
  width: 14px;
  height: 16px;
}
.img-wrapper-c {
  width: 116px;
  height: 116px;
}
.img-wrapper-c img {
  width: 100%;
  height: 100%;
}

.mini-cart-item__content {
  width: calc(100% - 120px);
}

.woocommerce-mini-cart-item__name {
  width: calc(100% - 30px);
  margin: 0 auto;
}
.woocommerce-mini-cart.cart_list.product_list_widget {
  padding-bottom: 115px !important;
}
.woocommerce-mini-cart-item__qty {
  width: 100%;
}

.woocommerce-mini-cart-item__qty .woocommerce-Price-amount {
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
}

.woocommerce-mini-cart__total {
  border-top: .25px solid var(--border-gray);
  padding-top: 10px;
}
.woocommerce-mini-cart-item__qty {
  padding-left: 30px;
}
.woocommerce-mini-cart__total span {
  color: var(--green);
}
.woocommerce-mini-cart__buttons a {
  width: 47% !important;
  text-align: center;
  border-radius: 4px;
  padding: 6px;
}
.mini-cart-ship {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 12px;
  background-color: #f3f4f2;
}

.mini-cart-meta {
  width: 100%;
  border-bottom: .5px solid var(--border-gray);
  padding-top: 10px;
  padding-bottom: 10px;
}
.mini-cart-meta i {
  padding-right: 30px;
}
.woocommerce-mini-cart {
  overflow-y: auto;
}
.woocommerce-mini-cart-item .modern-quantity {
  height: 40px !important;
  max-width: 100px !important;
}
.woocommerce-mini-cart-item  .modern-quantity .qty-btn {
  width: 30px !important;
}

.woocommerce-mini-cart li {
  padding-top: 20px;
}
.woocommerce-mini-cart li:first-child {
  padding-top: 0 !important;
}

#footer-min-cart {
  width: calc(100% - 60px);
  position: fixed;
  bottom: 0;
  padding-bottom: 30px !important;
  background-color: var(--white);
}

/* Simple updating state for the current cart item */
.woocommerce-mini-cart-item.updating {
    opacity: 0.7;
    background-color: rgba(0, 0, 0, 0.03); /* very light gray overlay – common in WC */
    transition: 
        opacity 0.3s ease,
        background-color 0.3s ease;
    pointer-events: none; /* prevent clicks during update */
}

/* Smooth return to normal */
.woocommerce-mini-cart-item {
    transition: 
        opacity 0.35s ease,
        background-color 0.35s ease;
}

/* Optional: very subtle fade for images inside */
.woocommerce-mini-cart-item.updating img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#seller-btn {
	align-items: center;
}






/* Animations */
@keyframes slideInRight {
    from { transform: translateX(100%) }
    to   { transform: translateX(0) }
}

@keyframes slideOutRight {
    from { transform: translateX(0) }
    to   { transform: translateX(100%) }
}

.slide-in-right  { animation: slideInRight  0.5s ease-out forwards; }
.slide-out-right { animation: slideOutRight 0.5s ease-in  forwards; }

/* checkbox */
.atd-checkbox-wrapper *,

  .atd-checkbox-wrapper *::before,

  .atd-checkbox-wrapper *::after {

    box-sizing: border-box;

  }

  .atd-checkbox-wrapper p {
    margin-left: 10px;
  }

  .atd-checkbox-wrapper label {
    display: block;
    width: 22px;
    height: 22px;
    cursor: pointer;
  }

  .atd-checkbox-wrapper input {
    visibility: hidden;
    display: none;
  }

  .atd-checkbox-wrapper input:checked ~ .checkbox {
   transform: rotate(45deg);
   width: 10px;
   margin-left: 6px;
   border-color: var(--blue);
   border-top-color: transparent;
   border-left-color: transparent;
   border-radius: 0;
  }

  .atd-checkbox-wrapper .checkbox {
    display: block;
    width: inherit;
    height: inherit;
    border: 2px solid var(--black);
    border-radius: 6px;
    transition: all 0.375s;
  }

#atd-breadcrumb {
  width: 90%;
  max-width: 1800px;
  margin: 20px auto;
}
/* Dark Mode Compatible Breadcrumb */
.woocommerce-breadcrumb {
    font-size: 12px;
    padding: 12px 0;
    margin-bottom: 20px;
    border-left: 4px solid var(--blue);
    padding-left: 15px;
    transition: all 0.3s;
}

.woocommerce-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce-breadcrumb a:hover {
    color: #ff6b6b;
}

.woocommerce-breadcrumb .separator {
    margin: 0 8px;
    color: #bbb;
}

.woocommerce-breadcrumb .current {
    color: #ff6b6b;
    font-weight: 600;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .woocommerce-breadcrumb a {
        color: #aaa;
    }
    .woocommerce-breadcrumb .current {
        color: #ff8e8e;
    }
}

/* responsive */

@media only screen and ( max-width: 1980px ) {
  .atd-main {
    max-width: 1800px;
  }
}

@media only screen and ( max-width: 1800px ) {
  .atd-main {
    max-width: 1700px;
  }
}

@media only screen and ( max-width: 1700px ) {
  .atd-main {
    max-width: 1500px;
  }
}

@media only screen and ( max-width: 1500px ) {
  .atd-main {
    max-width: 1300px;
  }
  .woocommerce-message {
    margin-top: 40px !important;
  }
}

@media only screen and ( max-width: 1310px ) {
  .atd-main {
    max-width: 1200px;
  }
}

@media only screen and ( max-width: 1200px ) {
  .atd-main {
    max-width: 95%;
  }
  .sm-main {
    max-width: 90%;
  }
}

@media only screen and ( max-width: 1100px ) {
  #cat-box > .atd-main {
    flex-wrap: wrap;
  }
  .cat-item {
    width: 49% !important;
  }

  .cat-item:nth-child(1),
  .cat-item:nth-child(2) {
    margin-bottom: 1.2rem;
  }

  #installer-faq {
    height: auto;
  }
  #installer-faq > .atd-main {
    flex-wrap: wrap;
  }
  #locate-installers , .faq {
    width: 100%;
  }
  .faq {
    margin-top: 2.5rem;
  }
}

@media only screen and ( max-width: 1100px ) {
	#sellers-nav {
		flex-wrap: wrap;
	}
  .seller-item {
    width: 100% !important;
  }
	.seller-item:nth-child(2n) .seller-item-content {
		right: unset !important;
		text-align: left !important;
	}
  #search input {
    width: 450px !important;
  }
}
@media only screen and ( max-width: 900px ) {
  #hero-content h1 {
    font-size: 60px !important;
  }
}
@media only screen and ( max-width: 870px ) {
  #search input {
    width: 390px !important;
  }


  #cat-carousel {
    height: 120px !important;
  }

  .cat-item {
    width: 100% !important;
  }

  .cat-item {
    margin-bottom: 1.2rem !important;
  }
  .cat-item:last-child {
    margin-bottom: 0 !important;
  }

  #help .atd-main {
    height: auto !important;
    flex-wrap: wrap !important;
  }
  #help-left,
  #help-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px 0 !important;
  }
  #help-left {
    flex-direction: column !important;
  }
}

@media only screen and ( max-width: 768px ) {
	html, body {
		
		max-width: 100% !important;
	}
  #hero-content {
    padding-top: 60px !important;
   }
    #hero-content h1,
	#ststic-content .hero-title,
	#ststic-content .hero-subtitle,
	.faq b {
		font-size: 44px !important;
	}
	.cat-item {
		height: 368px !important;
	}
	#help-left, #help-right {
		justify-content: space-around !important;
	}
	#help_inner_right small {
		padding-left: 0 !important;
	}
	#static-banner, #locate-installers {
		height: 300px !important;
	}
	#ststic-content {
		padding-left: 20px !important;
		top: 30px !important;
	}
	#installers-content h4 {
		font-size: 41px !important;
	}
	#installers-content p {
		font-size: 24px !important;
	}
	#faq {
    margin-top: 1rem;
		padding: 40px !important;
    min-height: unset !important;
  }
  #shop-icon {
    display: none !important;
  }
}

@media only screen and ( max-width: 600px ) {

  #hero-content h1 {
    font-size: 34px !important;
  }

	#help-left p, #help_inner_right b {
		font-size: 20px !important;
	}
	#help small {
		font-size: 14px;
	}
	#seller-btn {
		flex-wrap: wrap;
	}
	#seller-btn b {
		font-size: 20px !important;
	}
	#seller-btn button, #sellers-nav .view-all {
		font-size: 12px !important;
	}
  #ststic-content .hero-title, #ststic-content .hero-subtitle {
    font-size: 30px !important;
  }
}

@media only screen and ( max-width: 480px ) {
	.atd-owl-item {
		min-height: 120px !important;
	}
	.cat-item {
		height: 300px !important;
	}
	.seller-item-content a, .seller-item-content h3 {
		font-size: 33px !important; 
	}
	.seller-item {
		height: 300px !important;
	}
	#help-right {
		justify-content: space-between !important;
		padding-right: 0 !important;
	}
	#help_inner_right small {
		padding-left: 0 !important;
	}
	#help-left {
		align-items: start !important;
		padding-bottom: 0 !important;
	}
	#help-left p {
		font-size: 16px;
		margin-bottom: 10px;
	}
	#help-right button {
		height: unset !important;
		padding: 12px 16px !important;
	}
	#help_inner_right b {
		margin-bottom: 0 !important;
	}
	
	#ststic-content .hero-title, #ststic-content .hero-subtitle, .faq b {
    	font-size: 40px !important;
  	}
	.faq {
		padding: 30px 20px !important;
	}
    #ststic-content .hero-title, #ststic-content .hero-subtitle {
    font-size: 30px !important;
  }
  /* minicart */
  .header-mini-cart {
    padding: 20px 15px !important;
  }
  .woocommerce-mini-cart li {
    flex-direction: column;
  }
  .mini-cart-item__content {
    width: 100% !important;
  }
	.mini-cart-item__content::nth-child(-1) {
		padding-bottom: 20px !important;
	}
  .woocommerce-mini-cart-item__qty {
    padding-left: 0 !important;
  }
  .modern-quantity input {
    padding: 0 !important;
  }
  #footer-min-cart {
    width: calc(100% - 30px) !important;
  }

}

@media only screen and ( max-width: 430px ) {
	#ststic-content .hero-title, #ststic-content .hero-subtitle {
		font-size: 23px !important;
	}
	#ststic-content .hero-supporting {
		font-size: 16px !important;
	}
}

@media only screen and ( max-width: 400px ) {
	#cat-box {
		padding-top: 20px;
	}
	#help-left, #help-righ {
		padding: 1rem 0 !important;
	}
	#help-right {
		flex-direction: column-reverse;
	}
	#help-right button {
		margin-top: 1rem !important;
	}
	#help-left {
		flex-direction: column;
	}
	.faq {
		padding: 20px !important;
	}
}

@media only screen and ( max-width: 369px ) {
  #installers-content {
    top : 60% !important
  }
  #installers-content h4 {
    font-size: 31px !important;
  }
}


.added_to_cart.wc-forward {
  display: none;
}
#quadmenu.quadmenu-default_theme:not(.quadmenu-is-horizontal) .quadmenu-navbar-nav li.quadmenu-item.open > a > .quadmenu-item-content > .quadmenu-caret {
  color: var(--wc-red) !important;
}
#quadmenu {
	margin-left: 0px !important;
}
#quad-mobail , #quad-mobail-container {
	display: none;
}
#quad-mobail i {
	font-size: 30px;
	color: #000;
	cursor: pointer;
}
#quad-mobail-container {
	position: absolute;
	z-index: 10000;
	width: 100% ;
}

@media only screen and (max-width: 839px) {
	#nav .sm-main > #quadmenu {
		display: none !important;
	}
	#quad-mobail {
		display: flex;
	}
  #quadmenu .quadmenu-navbar-nav,
  #quadmenu .quadmenu-row {
    display: block !important;
    width: 100% !important;
  }

  #quadmenu .quadmenu-row > li,
  #quadmenu .quadmenu-navbar-nav > li {
    width: 100% !important;
    float: none !important;
    max-width: 100% !important;
  }

  #quadmenu.quadmenu-is-horizontal .quadmenu-navbar-nav li.quadmenu-item > .quadmenu-dropdown-menu {
  position: relative !important;
  top: 0 !important;
  min-width: 240px !important;
  }

}


/* Modern WooCommerce Notices - Complete Styles */

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}

/* Common Notice Styles */
.woocommerce-success-modern,
.woocommerce-error-modern,
.woocommerce-info-modern,
.woocommerce-warning-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: slideInRight 0.4s ease-out;
}

/* Success Notice */
.woocommerce-success-modern {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border-left: 4px solid #10b981;
}

/* Error Notice */
.woocommerce-error-modern {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* Info Notice */
.woocommerce-info-modern {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* Warning Notice */
.woocommerce-warning-modern {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #9a3412;
    border-left: 4px solid #f97316;
}

/* Notice Icons */
.woocommerce-success-modern .notice-icon,
.woocommerce-error-modern .notice-icon,
.woocommerce-info-modern .notice-icon,
.woocommerce-warning-modern .notice-icon {
    flex-shrink: 0;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-success-modern .notice-icon span,
.woocommerce-error-modern .notice-icon span,
.woocommerce-info-modern .notice-icon span,
.woocommerce-warning-modern .notice-icon span {
    font-size: 20px;
    font-weight: bold;
}

/* Notice Content */
.woocommerce-success-modern .notice-content,
.woocommerce-error-modern .notice-content,
.woocommerce-info-modern .notice-content,
.woocommerce-warning-modern .notice-content {
    flex: 1;
}

.woocommerce-success-modern .notice-message,
.woocommerce-error-modern .notice-message,
.woocommerce-info-modern .notice-message,
.woocommerce-warning-modern .notice-message {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

/* Multiple messages in error */
.woocommerce-error-modern ul {
    margin: 5px 0 0 0;
    padding-left: 20px;
}

.woocommerce-error-modern li {
    margin-bottom: 5px;
}

/* Close Button */
.woocommerce-success-modern .notice-close,
.woocommerce-error-modern .notice-close,
.woocommerce-info-modern .notice-close,
.woocommerce-warning-modern .notice-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    color: inherit;
    font-size: 20px;
    line-height: 1;
}

.woocommerce-success-modern .notice-close:hover,
.woocommerce-error-modern .notice-close:hover,
.woocommerce-info-modern .notice-close:hover,
.woocommerce-warning-modern .notice-close:hover {
    opacity: 1;
}

/* Button inside success message */
.woocommerce-success-modern .button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 15px;
    transition: all 0.3s ease;
    color: #065f46;
    text-decoration: none;
    display: inline-block;
}

.woocommerce-success-modern .button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-success-modern,
    .woocommerce-error-modern,
    .woocommerce-info-modern,
    .woocommerce-warning-modern {
        padding: 15px;
        font-size: 13px;
    }
    
    .woocommerce-success-modern .notice-icon,
    .woocommerce-error-modern .notice-icon,
    .woocommerce-info-modern .notice-icon,
    .woocommerce-warning-modern .notice-icon {
        width: 32px;
        height: 32px;
    }
    
    .woocommerce-success-modern .notice-icon span {
        font-size: 16px;
    }
    
    .woocommerce-success-modern .button {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }
    
    .woocommerce-success-modern .notice-close {
        top: 15px;
        transform: none;
    }
}






