/* =========================
   Meet Neo. Let's follow the white rabbit :)
   Author: Qbit
   Build Date: 25/11/2025
   Version: 1.0.0

   File path: /uploads/
========================= */

/* =========================
   Import fonts 
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Quicksand&display=swap');

/* =========================
   Root styles 
========================= */

:root {

}

/* =========================
   Global styles 
========================= */

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: hidden;
  font-size: 1rem;
  font-family: 'Quicksand', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
   font-size: 1.4em;
   font-family: 'Poppins', sans-serif; 
   color: #333;
   line-height: 1.5;
   margin-bottom: 20px;
}

p {
   margin-bottom: 20px;
}

a {
   text-decoration: none;
   transition: color 0.3s ease, transform 0.5s ease-in-out;
   color: #333;
}

a:hover {
   color: #44d62c;
}

ul {
   list-style: none;
   margin-bottom: 20px;
}

img {
    width: 100%;
    vertical-align: bottom;
}

/* =========================
   Page loader styles 
========================= */

.loader {
   position: fixed;
   inset: 0;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 5px;
   background: #333;
   color: #fff;
   transition: opacity .4s;
   z-index: 9999;
}

.loader.hidden {
   opacity: 0;
   pointer-events: none;
}

.spinner {
   width: 40px;
   aspect-ratio: 1;
   border: 5px solid #ffffff33;
   border-top-color: #44d62c;
   border-radius: 50%;

   animation: spin 1s linear infinite;
}

.progress {
   margin: 0;
   font-size: 0.8em;
   line-height: 1;
   font-family: sans-serif;
}

@keyframes spin {
   to {
      transform: rotate(1turn);
   }
}

/* =========================
   Product styles 
========================= */

.new {
  background-color: red;
  color: #fff;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif; 
  font-size: 0.8em;
  font-style: normal;
  padding: 2px 5px;
}

/* =========================
   Sale styles 
========================= */

#sale-banner main {
  background-color: #44d62c;
  font-family: 'Poppins', sans-serif; 
  color: #333;
}

#sale-banner .btn {
  border: solid 1px #333;
  color: #333;
}

#sale-banner .btn:hover {
  color: #fff;
}

#sale-banner p {
  font-size: 1.4em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

#sale-bar {
	height: 70px;
	background-color: #44d62c;
	display: flex;
	color: #333;
	justify-content: center;
	align-items: center;
}

#sale-bar p {
	margin: 0;
}

#sale-bar strong {
   margin-right: 20px;
}

#sale-bar a {
   cursor: pointer;
}

.discount-code {
	border: solid 2px #333;
	border-radius: 50px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.8em;
	margin-left: 20px; 
	padding: 10px 15px 10px 15px;
}

.discount-code:hover {
	color: #333;
}









/* =========================
   Navigation styles
========================= */


/* =========================
   Burger button
========================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  background: #000;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 10002;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: #111;
}

/* Convert the burger into a close icon */
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Main navigation
========================= */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-dropdown {
  position: relative;
}

.main-nav > .nav-link,
.main-nav > .nav-dropdown > summary {
  min-height: 44px;
  padding: 12px 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  line-height: 1.2;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Standard navigation link */
.main-nav > .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: text-decoration-color 0.3s ease;
}

.main-nav > .nav-link:hover,
.main-nav > .nav-link:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
}

/* Dropdown heading */
.main-nav > .nav-dropdown > summary {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  list-style: none;
}

.main-nav > .nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.main-nav > .nav-dropdown > summary::marker {
  content: "";
}

/* Underline only the heading text */
.nav-label {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: text-decoration-color 0.3s ease;
}

.main-nav > .nav-dropdown > summary:hover .nav-label,
.main-nav > .nav-dropdown > summary:focus-visible .nav-label {
  text-decoration-color: #fff;
}

/* =========================
   Dropdown arrow
========================= */

.main-nav > .nav-dropdown > summary::after {
  content: "▾";
  margin-left: 3px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.main-nav > .nav-dropdown[open] > summary::after {
  transform: rotate(180deg);
}

/* =========================
   Dropdown menus
========================= */

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  max-height: 0;
  padding: 0 6px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #000;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0%);
  transform: translateX(-50%) translateY(-10px);
  transform-origin: top center;
  box-sizing: border-box;
  z-index: 999;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease,
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.nav-dropdown[open] > .submenu {
  max-height: 700px;
  padding: 6px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-color: #222;
  box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown[open] > .submenu a {
  opacity: 1;
  transform: translateY(0);
}

/* Slight stagger for submenu links */
.nav-dropdown[open] > .submenu a:nth-child(1) {
  transition-delay: 0.03s;
}

.nav-dropdown[open] > .submenu a:nth-child(2) {
  transition-delay: 0.05s;
}

.nav-dropdown[open] > .submenu a:nth-child(3) {
  transition-delay: 0.07s;
}

.nav-dropdown[open] > .submenu a:nth-child(4) {
  transition-delay: 0.09s;
}

.nav-dropdown[open] > .submenu a:nth-child(5) {
  transition-delay: 0.11s;
}

.nav-dropdown[open] > .submenu a:nth-child(6) {
  transition-delay: 0.13s;
}

.nav-dropdown[open] > .submenu a:nth-child(7) {
  transition-delay: 0.15s;
}

.nav-dropdown[open] > .submenu a:nth-child(8) {
  transition-delay: 0.17s;
}

.nav-dropdown[open] > .submenu a:nth-child(9) {
  transition-delay: 0.19s;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: #333;
  padding-left: 18px;
  background: #44d62c;
}

/* =========================
   Mobile navigation
========================= */

@media (max-width: 800px) {

     .menu-toggle {
    position: fixed;
    top: 115px;
    right: 10px;
    display: block;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      top 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease,
      background-color 0.3s ease;
    z-index: 10002;
  }

  /* Move the close button to the top-right */
  .menu-toggle[aria-expanded="true"] {
    top: 10px;
    right: 10px;
  }

  body.is-scrolling
    .menu-toggle:not([aria-expanded="true"]) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  
  .header-inner {
    position: relative;
    width: 100%;
    min-height: 64px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  /*
   * Burger position:
   * 115px from the viewport top
   * 10px from the viewport right
   */
  .menu-toggle {
    position: fixed;
    top: 115px;
    right: 10px;
    display: block;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      background-color 0.3s ease;
    z-index: 10002;
  }

  /*
   * Fade the burger while scrolling.
   * Keep the close icon visible when the menu is open.
   */
  body.is-scrolling
    .menu-toggle:not([aria-expanded="true"]) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* Full-screen mobile navigation */
  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding:
      calc(90px + env(safe-area-inset-top))
      16px
      calc(24px + env(safe-area-inset-bottom));
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #000;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    transform: translateY(-12px);
    z-index: 10000;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown,
  .main-nav > .nav-link {
    border-bottom: 1px solid #222;
  }

  .main-nav > .nav-link,
  .main-nav > .nav-dropdown > summary {
    width: 100%;
    min-height: 52px;
    padding: 14px 12px;
    color: #fff;
    text-align: left;
    border-radius: 0;
    box-sizing: border-box;
  }

  .main-nav > .nav-link {
    justify-content: flex-start;
  }

  .main-nav > .nav-dropdown > summary {
    justify-content: space-between;
  }

  .main-nav > .nav-dropdown > summary::after {
    margin-left: 8px;
  }

  .main-nav > .nav-link:hover,
  .main-nav > .nav-link:focus-visible {
    color: #333;
    background: #44d62c;
    text-decoration-color: #333;
  }

  .main-nav > .nav-dropdown > summary:hover,
  .main-nav > .nav-dropdown > summary:focus-visible {
    color: #333;
    background: #44d62c;
  }

  .main-nav > .nav-dropdown > summary:hover .nav-label,
  .main-nav > .nav-dropdown > summary:focus-visible .nav-label {
    text-decoration-color: #333;
  }

  /* Mobile submenu transition */
  .submenu {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #000;
    border: 0;
    box-shadow: none;
    transform: translateY(-8px);
    transition:
      max-height 0.4s ease,
      padding 0.4s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.35s ease;
  }

  .nav-dropdown[open] > .submenu {
    width: 100%;
    max-height: 900px;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .submenu a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    color: #fff;
    border-radius: 0;
    box-sizing: border-box;
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    color: #333;
    padding-left: 32px;
    background: #44d62c;
  }
}

/* =========================
   Reduced motion
========================= */

@media (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-toggle span,
  .main-nav,
  .main-nav > .nav-link,
  .main-nav > .nav-dropdown > summary::after,
  .nav-label,
  .submenu,
  .submenu a {
    transition: none;
  }
}








.mini-nav {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-nav li {
   display: inline-block;
   margin-left: 10px;
}


















.user-icon {
	width: 25px;
	height: 25px;
	display: block;
	background: url('../svg/user-icon.svg') no-repeat center / contain;
}

.cart-icon {
	width: 30px;
	height: 25px;
	display: block;
	background: url('../svg/cart-icon.svg') no-repeat center / contain;

}

/* =========================
   Widget styles 
========================= */

#widgets {
	background-color: #f0f0f0;
	display: flex;
	color: #333;
	justify-content: center;
	align-items: center;
	padding: 10px;
}

/* =========================
   Carousel styles 
========================= */

.carousel {
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.banners {
  display: flex;
  width: 300%;
  height: 100%;
  animation: banner 18s infinite;
}

.banner {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.content {
  width: 60%;
  max-width: 900px;
  line-height: 2em;
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
  opacity: 0;
  animation: fadeText 18s infinite;
}

.banner:nth-child(2) .content {
  animation-delay: 6s;
}

.banner:nth-child(3) .content {
  animation-delay: 12s;
}

.content h1 {
  font-size: 2.4em;
  margin-bottom: 15px;
  color: #fff;
}

.content p {
  font-size: 1.8em;
  margin-bottom: 30px;
}

/* BANNER MOVEMENT */
@keyframes banner {

  /* Banner 1 */
  0%, 27.77% {
    transform: translateX(0);
  }

  /* Banner 2 */
  33.33%, 61.1% {
    transform: translateX(-100vw);
  }

  /* Banner 3 */
  66.66%, 94.44% {
    transform: translateX(-200vw);
  }

  /* Back to start */
  100% {
    transform: translateX(0);
  }
}

/* TEXT FADE */
@keyframes fadeText {

  /* Hidden initially */
  0% {
    opacity: 0;
  }

  /* Quick fade in */
  2% {
    opacity: 1;
  }

  /* Stay visible */
  27% {
    opacity: 1;
  }

  /* Fade out */
  33% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* =========================
   Featured styles 
========================= */

#featured {
   width: 100%;
   background: #fff;
   overflow: hidden;
   margin-bottom: 20px;
}

#featured main.featured {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   overflow: visible;
}

.featured-track {
   display: flex;
   justify-content: center;
   gap: 0;
   width: 100%;
   transform: none;
   transition: none;
}

.featured-slide {
   flex: 0 0 auto;
   width: 300px;
}

.featured-slide a {
   display: block;
   width: 100%;
   text-decoration: none;
   overflow: hidden;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-slide img {
   width: 100%;
   height: auto;
   object-fit: cover;
   display: block;
   pointer-events: none;
}

/* =========================
   Ticker styles 
========================= */

#ticker {
	height: 70px;
	background-color: #44d62c;
	display: flex;
	color: #333;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	padding: 20px;
}

#ticker p {
	margin: 0;
}

.ticker {
	display: flex;
	width: max-content;
	will-change: transform;
}

.ticker p {
	flex: 0 0 auto;
	color: #333;
	white-space: nowrap;
   margin: 0;
   padding: 0 30px;
}

.ticker .btn {
	border: solid 1px #333;
	color: #333;
}

/* =========================
   Advert styles 
========================= */

#adverts {
	margin-bottom: 30px;
}

/* =========================
   Video styles
========================= */

#video {
   position: relative;
   width: 100%;
   min-height: 500px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   margin-bottom: 50px;
}

#video video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
}

#video::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
   z-index: 2;
}

#video .col-2 {
   position: relative;
   z-index: 3;
   width: min(50%, 700px);
   box-sizing: border-box;
   padding: 0 30px;
   color: #fff;
   text-align: center;
}

#video h1 {
   margin: 0 0 20px;
   font-size: 2em;
   color: inherit;
}

#video p {
   margin: 0 0 30px;
}

/* =========================
   Category styles 
========================= */

#categories {
	margin-bottom: 50px;
	margin-top: 50px;
}

#categories .col-1 {
	background-color: #f0f0f0;
}

/* =========================
   List styles 
========================= */

.list li {
	padding: 5px;
	border-bottom: solid 1px #ccc;
}

.shop-btn {
	background-color: red;
}

/* =========================
   Sign-up styles 
========================= */

#sign-up {
	height: 50px;
	background-color: #44d62c;
	display: flex;
	color: #333;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

#sign-up h1 {
	color: #fff;
	white-space: normal;
	margin: 0;
}

#sign-up p {
	margin: 0;
}

/* =========================
   Header styles
========================= */

header {
	background-color: #000;
}

.logo {
	width: 220px;
	height: 100px;
	background: url('../svg/logo.svg') no-repeat center / contain;
	display: block;
	text-indent: -9999px;
}

/* =========================
   Footer styles 
========================= */

footer {
	background-color: #000;
	color: #fff;
	padding: 30px 0 0 0;
	padding-bottom: 30px;
}

footer h6 {
	color: #fff;
}

footer a {
	color: #fff;
}

footer form {
	margin-bottom: 20px;
}

.cards {
	width: 260px;
	height: 90px;
	display: block;
	background: url('../svg/cards.svg') no-repeat left top / contain;
   margin-bottom: 20px;
}

.discount-btn {
  position: fixed;
  bottom: -100px; /* hidden below screen */
  left: 20px;
  transition: bottom 0.4s ease;
  z-index: 999;
}

.discount-btn.show {
  bottom: 20px; /* visible position */
}

.discount-btn a {
  color: #333;
  display: block;
  background-color: #44d62c;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px 15px;
  text-decoration: none;
}













/* =========================
   WooCommerce product form styles
========================= */

/* Shared styling for product variation and quantity controls only */
.woocommerce div.product form.cart .variations select,
.woocommerce div.product form.cart .quantity input.qty {
  border: 0 !important;
  border-radius: 3px;
  background-color: #f0f0f0 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1em !important;
  font-weight: 700 !important;
}

/* Variation dropdowns */
.woocommerce div.product form.cart .variations select {
  width: 100%;
  max-width: 320px;
  margin-bottom: 5px;
  padding: 15px 10px;
  color: #999 !important;
}

/* Variation option text */
.single-product form.cart table.variations select option:not(:first-child) {
  color: #222;
}

/* Hide Size and Colour labels */
.single-product form.cart table.variations th.label,
.single-product form.cart table.variations td.label {
  display: none !important;
}

/* Quantity field */
.woocommerce div.product form.cart .quantity input.qty {
  margin-bottom: 20px;
  padding: 10px;
  color: #222;
  text-align: center;
}

/* Product price */
.single-product .summary .price {
  color: #000 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 2em !important;
  font-weight: 700 !important;
}

/* Product cart layout */
.woocommerce div.product form.cart,
.woocommerce div.product form.cart .quantity,
.woocommerce div.product form.cart button.single_add_to_cart_button {
  display: block !important;
  float: none !important;
}

/* Quantity spacing */
.woocommerce div.product form.cart .quantity {
  margin-bottom: 12px !important;
}

/* Add to cart button position */
.woocommerce div.product form.cart button.single_add_to_cart_button {
  clear: both !important;
  margin-left: 0 !important;
}


/* =========================
   Search styles
========================= */

.search-bar {
  display: flex;
  width: 100%;
  border-radius: 50px;
  overflow: hidden;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 12px 12px 12px 25px;
  background-color: #333;
}

.search-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: none;
  background-color: #333;
  color: #fff;
  cursor: pointer;
}

/* Search placeholder only */
.search-bar input::placeholder {
  color: #888;
  font-family: "Poppins", sans-serif;
  opacity: 1;
}









.sign-up {
   display: flex;
   width: 100%;
   border-radius: 50px;
   overflow: hidden;
}

.sign-up input {
   flex: 1;
   padding: 10px 10px 10px 20px;
   font-family: 'Poppins', sans-serif; 
   border: none;
   outline: none;
   background-color: #fff;
}

.sign-up button {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0 12px;
   border: none;
   background-color: #fff;
   color: #333;
   cursor: pointer;
}

.material-icons {
   font-size: 1.0em;
}

/* =========================
   Button styles
========================= */

.woocommerce-products-header,
.woocommerce-products-header *,
.page-header,
.entry-header,
.woocommerce-page .page-title,
.search-results .page-title,
.archive .page-title {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.btn {
  display: inline-block;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
  color: #333;
  text-transform: uppercase;
  background-color: #44d62c;
  padding: 10px 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.btn:hover {
  color: #fff;
  background-color: #333;
}

.no-btn {
   background-color: transparent;
   border: solid 2px #fff;
   padding: 10px 15px 10px 15px;
   color: #fff;
   border-radius: 50px;
   font-family: 'Poppins', sans-serif; 
   transition: color 0.3s ease, transform 0.5s ease-in-out;
   font-size: 0.8em;
   margin-left: 10px;
}

.no-btn:hover {
   border: solid 2px #44d62c;
   background-color: #44d62c;
   color: #333;
}

.btns li {
	display: inline;
}

/* =========================
   Popup styles
========================= */

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  visibility: hidden;
  z-index: 9999;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
}


.modal.show {
  visibility: visible;
}

.modal.show::before {
  opacity: 1;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(90%, 600px);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  transform: scale(0.95);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal .logo {
  margin-bottom: 20px;
}

.modal h1 {
  font-size: 3.0em;
  margin-bottom: 0;
  color: #fff;
}

.modal h2 {
  margin-bottom: 30px;
  color: #fff;
}

.modal a {
   cursor: pointer;
}

.close {
   position: fixed;
   top: 0;
   right: 30px;
   font-size: 3.0em;
   cursor: pointer;
   color: #fff;
   z-index: 10000;
}

/* =========================
   Social styles 
========================= */

.social li {
   display: inline-block;
}

.social a {
   display: inline-block;
   width: 35px;
   height: 35px;
   border-radius: 50%;
   background-color: #44d62c;
   background-position: center;
   background-size: 30px;
   background-repeat: no-repeat;
   margin-right: 5px;
}

.social a.facebook { 
   background-image: url('../svg/facebook.svg'); 
}

.social a.twitter { 
   background-image: url('../svg/twitter.svg'); 
}
.social a.instagram { 
   background-image: url('../svg/instagram.svg'); 
}

.social a.linkedin { 
   background-image: url('../svg/linkedin.svg'); 
}

.social a.youtube { 
   background-image: url('../svg/youtube.svg'); 
}

.social a.tiktok { 
   background-image: url('../svg/tiktok.svg'); 
}

.social a.threads { 
   background-image: url('../svg/threads.svg'); 
}

.social a.pinterest { 
   background-image: url('../svg/pinterest.svg'); 
}

.social a.google { 
   background-image: url('../svg/google.svg'); 
}

/* =========================
   Responsive styles 
========================= */

@media (max-width: 768px) {

   /* =========================
      Popup styles 
   ========================= */

   .modal h1 {
      font-size: 2.0em;
   }

   .modal h2 {
      font-size: 1.0em;
   }

   /* =========================
      Social styles 
   ========================= */

   .social a {
      margin: 0;
   }

   /* =========================
      Featured styles 
   ========================= */

#featured main.featured {
   width: 100vw;
   max-width: none;
   margin: 0 auto;
   overflow: hidden;
   cursor: grab;
   touch-action: pan-y;
   user-select: none;
}

#featured main.featured.is-dragging {
   cursor: grabbing;
}

.featured-track {
   justify-content: flex-start;
   gap: 0;
   width: max-content;
   padding-left: 24px;
   transition: transform 0.8s ease-in-out;
   will-change: transform;
}

.featured-slide {
   width: calc(100vw - 48px);
   margin-right: 0px;
}

.featured-slide a {
   width: 100%;
}

.featured-slide a:hover,
.featured-slide a:focus {
   transform: none;
}

.featured-slide img {
   width: 100%;
   height: auto;
   display: block;
}



  .carousel {
    height: 480px;
  }

  .content h1 {
    font-size: 1.45em;
  }

  .content p {
    font-size: 1em;
  }




}


