/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;  /* Make sure body takes up 100% of the viewport */
}

body {
  display: flex;
  flex-direction: column; /* Stacking header, content, and footer vertically */
  min-height: 100vh; /* Full viewport height */
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}



/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: black;
  color: white;
  text-align: center;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Content Area */
.site-content {
  flex-grow: 1;  /* Ensure content area grows to take up available space */
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column; /* In case you want to add sections that stack vertically */
}

/* Footer */
.site-footer {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: auto;  /* Push footer to the bottom */
}

.category-slider,
.banner-slider,
.product-slider {
    position: relative; /* allow absolute positioning inside */
}

.banner-slider .item {
  width: 100%;
  overflow: hidden;
}

.banner-slider .item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Desktop */
@media (min-width: 1025px) {
  .banner-slider .item {
    height: 400px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .banner-slider .item {
    height: 400px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .banner-slider .item {
    height: 500px;
  }
}
/* Position nav arrows over the slider */
/* .category-slider .owl-nav,
.banner-slider .owl-nav,
.product-slider .owl-nav {
    position: absolute;
    top: 50%;               
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    z-index: 9999;          
    pointer-events: none;   
} */

/* Style the buttons as circles */
/* .category-slider .owl-nav button,
.banner-slider .owl-nav button,
.product-slider .owl-nav button {
    background: #222;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s ease, transform 0.2s ease;
} */

/* SVG sizing */
/* .category-slider .owl-nav svg,
.banner-slider .owl-nav svg,
.product-slider .owl-nav svg {
    width: 30px;
    height: 30px;
} */

/* Hover effect */
/* .category-slider .owl-nav button:hover,
.banner-slider .owl-nav button:hover,
.product-slider .owl-nav button:hover {
    background: #444;   
} */

/* .category-slider .owl-nav.disabled,
.banner-slider .owl-nav.disabled,
.product-slider .owl-nav.disabled {
    display: none !important;
} */



/* More specific selector */
main .frontpage-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 32px; /* Default for desktop */
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    flex-grow: 1;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    main .frontpage-heading {
        font-size: 24px; /* For tablets */
    }
}

@media (max-width: 480px) {
    main .frontpage-heading {
        font-size: 18px; /* For mobile */
    }
}




/* Flex container for the heading and arrows */
.slider-heading-container {
    display: flex;
    justify-content: space-between;  /* Space out the arrows and heading */
    align-items: center;            /* Vertically center the items */
    margin: 20px 0;                 /* Add spacing between the heading and slider */
}

/* Style for the category heading */
.frontpage-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    text-align: center;  /* Center the heading text */
    text-transform: uppercase;
    margin: 0;            /* Remove any default margin */
    flex-grow: 1;         /* Allow the heading to grow and center itself between arrows */
}

/* Custom navigation buttons */
.custom-nav-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: background 0.3s ease;
}

/* Optional hover effect */
.custom-nav-button:hover {
    /* background-color: #f0f0f0;   */
}

/* Adjust the SVG arrow size */
.custom-nav-button svg {
    width: 40px;
    height: 40px;
    fill: black;  /* Set arrow color */
}

.spacer { padding-bottom:40px}
/* Ensure the carousel item takes full width and height */
.owl-carousel .item {
    position: relative;
    width: 100%;
    height: 100%; /* Ensure it takes the full height */
}

/* Style for the image inside the item */
.owl-carousel .item img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Make sure the image fills the area without stretching */
}

/* Position the content (heading and button) over the image */
.banner-content {
    position: absolute;
    top: 50%; /* Vertically center the content */
    left: 50%; /* Horizontally center the content */
    transform: translate(-50%, -50%); /* Center the content perfectly */
    text-align: center; /* Center the text and button */
    color: black; /* Make the text white to stand out on the image */
    z-index: 1; /* Make sure the content is on top of the image */
    width: 90%; /* Prevent text from overflowing on small screens */
    max-width: 700px; /* Limit the max width to prevent the text from being too wide */
    padding: 0 20px;
    box-sizing: border-box; /* Prevent padding from causing overflow */
    overflow: hidden; /* Prevent content from overflowing */
}

/* Style the heading */
.banner-heading {
    font-size: 32px; /* Adjust for readability */
    margin-bottom: 20px;
    font-weight: bold;
    word-wrap: break-word; /* Ensure the text wraps if it’s too long */
    
    text-transform: uppercase;
}

/* Style the CTA button */
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000; /* CTA button color */
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect for CTA button */
.cta-button:hover {
    background-color: #111;
}

/* Adjust font size and button padding for smaller screens */
@media (max-width: 768px) {
    .banner-heading {
        font-size: 24px; /* Smaller heading on tablets */
    }

    .cta-button {
        padding: 8px 16px; /* Smaller button padding */
        font-size: 24px; /* Smaller heading on tablets */
    }
}

@media (max-width: 480px) {
    .banner-heading {
        font-size: 18px; /* Even smaller heading on mobile */
    }

    .cta-button {
        padding: 6px 12px; /* Even smaller button padding */
        font-size: 18px; /* Even smaller heading on mobile */
    }
}


/* Header main layout */
.header-main {
  display: flex;
  align-items: center;  /* ensures vertical centering */
  justify-content: space-between;
  padding: 10px;
}

.header-icon {
  flex: 1;
  display: flex;
  align-items: center;   /* centers SVGs vertically */
  gap: 10px;
}
.header-icon svg {
  display: block;        /* removes baseline gap */
}
.header-icon a {
  display: flex;
  align-items: center;   /* centers SVG inside the link */
  justify-content: center;
}


.header-icon.left-icon {
  justify-content: flex-start;
}

.header-icon.right-icon {
  justify-content: flex-end;
}

.header-logo img {
  max-height: 40px;
  display: block;       /* removes inline baseline gap */
  margin: 0 auto;       /* centers horizontally */
}


.header-logo {
  display: flex;
  align-items: center;  /* centers logo vertically */
  justify-content: center;
}


/* Desktop adjustments */
@media (min-width: 769px) {
  .header-main {
    justify-content: space-between;
  }
  .header-logo {
    text-align: left; /* logo left on desktop if desired */
  }
}

/* Container for arrows + slider */
.slider-heading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
}
.infobar {
  background: #f5f5f5;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-infobar-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* space arrows and slider */
  width: 100%;
}

.infobar-nav-button {
  flex: 0 0 50px;   /* fixed width, don’t shrink */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;   /* remove default button background */
  border: none;       /* remove default border */
  outline: none;      /* remove default outline */
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.infobar-slider {
  flex: 1;          /* take remaining space */
  height: 50px;
  overflow: hidden; /* keep content inside */
}


.infobar-slider .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.infobar-slider .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infobar-item {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  color: #000;
  text-align: center;
  width: 100%;
}

/* FOOTER */
.site-footer {
  background: black;
  padding: 40px 20px 20px;
  font-size: 14px;
  color: #333;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  max-width: 200px; /* optional, keeps columns neat */
}

.footer-heading {
    color: white;
    text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left; /* align heading left */
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* align links left */
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #666;
}

.site-info {
  text-align: center;
  font-size: 13px;
  color: white;
}
