/* 

1. Basic CSS Reset
2. Font start
3. Global Colors
4. Global Font sizes
5. Navbar Styles and navbar search
6. Bootstrap overwrites
7. Footer styles
8. Gutenberg overwrties
9. General styles
10. Woocommerce styles
*/

/* 1. Basic CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}

footer {
  font-family: 'Poppins', sans-serif;
}

section {
  box-sizing: border-box;
}

.container {
  max-width: 1248px;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
}

/* 2. Fonts start */

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* 3. Global Colors */

:root {
  --Yellow: #ffcb00;
  --Orange: #ff7a06;
  --Juoda: #000000;
  --Platinum: #e0e0e0;
  --Balta: #ffffff;
  --Pilka-teksto: #5b5b5b;
}

/* 4. Global Font sizes */

:root {
  --font-size-h1: 55px;
  --font-size-h2: 55px;
  --font-size-h3: 36px;
  --font-size-h4: 24px;
  --font-size-p: 16px;
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-h1: 30px !important;
    --font-size-h2: 36px;
    --font-size-h3: 30px;
    --font-size-p: 16px;
  }
}

h1 {
  color: var(--Balta);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 78px */
  text-transform: uppercase;
  font-size: var(--font-size-h1);
}

h2 {
  color: var(--Juoda);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 78px */
  text-transform: uppercase;
  font-size: var(--font-size-h2);
}

h3 {
  color: var(--Juoda);
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 111.111% */
  text-transform: uppercase;
  font-size: var(--font-size-h3);
}

p {
  color: var(--Juoda);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 12px;
    line-height: 16px;
  }
}

input ::placeholder {
  color: red;

  /* B 16 reg */
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@media screen and(max-width:768px) {
  h1 {
    font-family: Poppins;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 36px;
    word-wrap: break-word;
  }

  h2 {
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    text-transform: uppercase;
  }

  h3 {
    font-style: normal;
    font-weight: 700;
    line-height: 40px; /* 111.111% */
    text-transform: uppercase;
  }
}

/* 5. Navbar Styles and navbar search*/

#header {
  padding: 16px 0;
  color: #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1100; /* Ensure it stays on top */
  height: 70px; /* Fixed height for the navbar */
  display: flex;
  align-items: center;
  padding: 0 16px; /* Add some horizontal padding */
}
#header::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(24 24 24 / 70%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
  left: 0;
}
#header .navbar-brand img {
  height: 48px;
}

#header .nav-link {
  font-size: 1rem;
  color: var(--Balta);
  transition: color 0.3s ease;
}

#header .nav-link:hover {
  color: var(--Yellow, #f0ad4e);
}

/* 

Search container


*/

#search-form {
  height: 40px;
}

#header .search-container {
  display: flex;
  align-items: center;
  margin-left: auto;
}

#header .search-input {
  border: none;
  border-radius: 20px 0 0 20px;
  padding: 8px 16px;
  background-color: #444;
  color: #fff;
  width: 175px;
  max-width: 496px;
  outline: none;
  left: 20px;
  position: relative;
}

#header .search-input:focus,
#header .search-input.expanded {
  background-color: white;
  color: #000;
}

#header .search-input::placeholder {
  color: #ddd;
}

#header .btn-search {
  border: none;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50px;
  z-index: 5;
}

#header .btn-search img {
  width: 15px;
  height: auto;
}

#header .btn-search:hover {
  transition: 0.5s;
  background-color: var(--Yellow);
}

.search-input {
  transition: width 0.3s ease-in-out;
}

#search-results {
  position: absolute;
  background: white;
  width: 516px !important;
  max-height: 511px !important;
  overflow-y: auto;
  border: 1px solid #ddd;
  display: none;
  z-index: 999;
  margin-top: 50px; /* Adjust for spacing */
  padding: 24px 12px 24px 24px;
  border-radius: 24px;
  background: #f7f7f7;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2);
  right: 0;
}

#search-results ul {
  list-style: none;
  margin: 0;
  padding: 0px;
  gap: 12px;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  padding-right: 16px;
}

#search-results ul li {
  cursor: pointer;
}

#search-results ul li:hover {
  background: #f0f0f0;
}

#search-results .result-count {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
}

#search-results .result-count span {
  border-radius: 100px;
  background: var(--Yellow, #ffcb00);
  font-size: 14px;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  display: inline-grid;
  position: relative;
  margin-left: 8px;
}

#search-results .search-item {
  display: flex;
  align-items: center; /* Centers image and text vertically */
}

#search-results .search-link {
  display: flex;
  align-items: center; /* Ensures text and image are aligned */
  text-decoration: none;
  color: #333;
  width: 100%;
}

#search-results .search-link:hover {
  background-color: #ffffff;
  border-radius: 6px;
}

#search-results img {
  width: 79px;
  height: 79px;
}

#search-results .search-thumbnail {
  object-fit: cover;
  border-radius: 6px;
  margin-right: 16px;
}

#search-results .search-title {
  color: var(--Juoda, #000);

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

#search-results .no-results {
  text-align: center;
  align-content: center;
  padding: 24px 56px;
}

#search-results .no-results p {
  margin: 0px;
}

#search-results .all-results {
  text-align: right;
}

#search-results .all-results a {
  color: var(--Juoda, #000);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
}

#mobile-search-overlay {
  display: none;
}

@media screen and (max-width: 1300px) {
  #search-results {
    width: 320px !important; /* Expand when focused or active */
  }
}

@media screen and (max-width: 992px) {
  /* Hide mobile search overlay initially */
  #mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--Balta, #fff);
    color: white;
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 9999;
    /* padding: 60px 24px 55px 24px; */
    padding-top: 60px;
  }

  #mobile-search-overlay hr {
    background: #e0e0e0;
    height: 2px;
    opacity: 1;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  /* Prevent scrolling when overlay is open */
  .no-scroll {
    overflow: hidden;
  }

  /* Search header (back button + input) */
  .mobile-search-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 24px 0px 24px;
  }

  /* Back button */
  #close-search {
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 10px;
  }

  #close-search img {
    width: 24px;
    height: 24px;
  }

  /* Input container */
  .search-input-container {
    display: flex;
    height: 40px;
    padding: 0px 16px;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    border-radius: 9999px;
    background: #f7f7f7;
  }

  /* Search input */
  #mobile-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    background-color: transparent;
  }

  /* Clear search button */
  #clear-search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
    position: relative;
    right: 3px;
    background: black;
    border-radius: 100px;
    width: 21px;
    height: 20px;
    line-height: 0;
  }

  /* Search results */
  #mobile-search-results {
    width: 100%;

    padding: 0px 24px 0px 24px !important;
    background: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: 55px !important;
  }

  #mobile-search-results .result-count {
    color: var(--Juoda, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; /* 142.857% */
    margin-bottom: 16px;
  }

  #mobile-search-results .result-count span {
    display: inline-grid;
    width: 24px;
    height: 24px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: var(--Yellow, #ffcb00);
    border-radius: 100px;
    margin-left: 8px;
    font-size: 12px;
  }
  /* Search results list */
  #mobile-search-results .search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }

  #mobile-search-results .search-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  #mobile-search-results .search-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
  }

  #mobile-search-results .search-title {
    color: var(--Juoda, #000);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
  }

  #mobile-search-results .all-results {
    text-align: right;
  }

  #mobile-search-results .all-results a {
    color: var(--Juoda, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
  }
}

/* search container end */

#header .btn-link {
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--Balta, #fff);
  border-radius: 50%;
  padding: 8px;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}

#header .profile img {
  width: 15px;
  height: auto;
}

#header .shopping-bag {
  background-color: var(--Yellow);
  transition: background-color 0.3s ease;
}

#header .btn-link:hover {
  background-color: #ffe066;
}

#header .dropdown-menu {
  background-color: #333;
  border: none;
  border-radius: 6px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
}

#header .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
}

#header .custom-toggler {
  border: none;
  background: none;
  position: relative;
  width: 40px;
  height: 25px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  margin-left: 10px;
}

#header .toggler-icon {
  display: block;
  width: 24px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

#header .custom-toggler[aria-expanded='true'] {
  height: 20px;
}

/* When expanded, change the toggle button to 'X' */
#header .custom-toggler[aria-expanded='true'] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
  width: 18px;
}

#header .custom-toggler[aria-expanded='true'] .toggler-icon:nth-child(2) {
  opacity: 0;
}

#header .custom-toggler[aria-expanded='true'] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
  width: 18px;
}

#hader .navbar-nav {
  gap: 24px;
}

#menu-main-menu {
  margin-left: 32px;
  gap: 24px;
}
@media (max-width: 992px) {
  .dropdown-menu {
    width: 100%;
  }
}

/* When dropdown is open, rotate the chevron */
#header .nav-item.show .dropdown-toggle::after,
#header .nav-item:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobile click version */
#header .nav-item .dropdown-toggle[aria-expanded='true']::after {
  transform: rotate(180deg);
}

@media (min-width: 992px) {
}

@media (max-width: 1200px) {
  #menu-main-menu {
    margin-left: 0px;
  }
}

@media (max-width: 992px) {
  /* Expanded Menu */
  #header .navbar-collapse.show {
    transform: translateY(0); /* Slide into view */
    opacity: 1; /* Fully visible */
  }

  #header .navbar-collapse.show {
    transform: translateY(0); /* Slide down into view */
    opacity: 1; /* Fully visible */
  }

  #header .search-container {
    display: none;
  }

  #header .navbar-brand {
    margin-right: 0px;
  }

  #header .navbar-nav {
    background-color: #000;
    padding: 24px 16px;
  }

  #header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 16px;
  }

  #header:has(#navbarNav.show)::after {
    background: #000;
  }

  /* Collapsible Menu */
  #header .navbar-collapse {
    position: absolute; /* Anchor the menu to the navbar */
    top: 70px; /* Start directly below the navbar */
    left: 0;
    width: 100%;
    height: 0; /* Hidden by default */
    background-color: #000; /* Match navbar background */
    z-index: 10; /* Below the navbar but above content */
    overflow: hidden; /* Prevent content overflow when collapsed */
    opacity: 1; /* Hidden by default */
    transform-origin: top; /* Animate from the top edge */
    transform: scaleY(0); /* Collapsed state */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth animation */
  }

  #header .navbar-collapse .collapsing {
    height: 0px !important;
    display: none !important;
    position: absolute;
    z-index: 0;
  }

  /* Expanded Menu */
  #header .navbar-collapse.show {
    height: calc(100dvh - 70px);
    min-height: calc(100dvh - 70px);
    opacity: 1; /* Fully visible */
    transform: scaleY(1); /* Expand downward */
    overflow-y: auto; /* Allow scrolling if content exceeds height */
  }

  #header .profile-mobile {
    display: flex;
    align-content: center;
    align-items: center;
    color: var(--Balta, #fff);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    gap: 12px;
    text-decoration: none;
  }

  #header .btn-link {
    width: 36px;
    height: 36px;
  }

  #header .profile-mobile:hover {
    color: var(--Yellow);
  }

  #header .profile-mobile:hover .btn-link {
    background-color: var(--Yellow);
  }

  /* Social Media Links */
  #header .social-icons {
    position: relative;
    gap: 32px;
    margin-bottom: 29px;
    margin-top: 2rem !important;
  }

  #header .social-icons .icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #000; /* White background */
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--Balta, #fff);
  }

  #header .social-icons .icon-link img {
    width: 20px;
    height: 20px;
  }

  #header .social-icons .icon-link:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }

  /* Button animation for hiding and showing */
  #header .search-round,
  .shopping-bag {
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Reset to original position */
  }

  /* Hiding buttons */
  #header .hide-buttons {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px); /* Slide up slightly */
  }

  /* Showing buttons */
  #header .show-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Slide back to position */
  }
}

@media (max-width: 370px) {
  #header .navbar-brand img {
    height: 35px;
  }
}

#header .custom-logo-link {
  margin: 0 2rem 0 0;
  width: 203px;
}
#header .custom-logo-link img {
  width: 100%;
}
@media screen and (max-width: 992px) {
  #header .custom-logo-link {
    margin: 0;
    width: 163px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1100px) {
  #header .custom-logo-link {
    width: 163px;
  }
}
#header .shopping-bag {
  position: relative;
}
#header .shopping-bag-count {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  min-width: 16px;
  width: max-content;
  height: 16px;
  padding: 0 2px;
  color: var(--Balta);
  position: absolute;
  right: -4px;
  top: -4px;
  background: var(--Orange);
  border-radius: 50%;
}
/* 6. Bootstrap overwrites */

.btn-primary {
  border: none !important;
  display: inline-block;
  color: var(--Juoda) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  background-color: var(--Yellow);
  text-align: center;
  text-decoration: none;
  height: 48px;
  padding: 12px 40px;
  min-width: 200px;
  transition: background-color 0.3s ease, color 0.3s ease;
  clip-path: polygon(
    5.831% 8.838%,
    5.831% 8.838%,
    5.972% 7.315%,
    6.158% 5.902%,
    6.383% 4.613%,
    6.645% 3.458%,
    6.94% 2.45%,
    7.262% 1.598%,
    7.61% 0.916%,
    7.979% 0.415%,
    8.364% 0.106%,
    8.763% 0%,
    97.067% 0%,
    97.067% 0%,
    97.667% 0.236%,
    98.222% 0.909%,
    98.724% 1.972%,
    99.164% 3.375%,
    99.534% 5.068%,
    99.823% 7.002%,
    100.023% 9.127%,
    100.125% 11.395%,
    100.12% 13.757%,
    100% 16.162%,
    94.362% 91.162%,
    94.362% 91.162%,
    94.22% 92.685%,
    94.035% 94.098%,
    93.809% 95.387%,
    93.547% 96.542%,
    93.253% 97.55%,
    92.93% 98.402%,
    92.583% 99.084%,
    92.214% 99.585%,
    91.828% 99.894%,
    91.429% 100%,
    3.125% 100%,
    3.125% 100%,
    2.526% 99.764%,
    1.97% 99.091%,
    1.468% 98.028%,
    1.028% 96.625%,
    0.659% 94.932%,
    0.37% 92.998%,
    0.17% 90.873%,
    0.068% 88.605%,
    0.072% 86.243%,
    0.193% 83.838%,
    5.831% 8.838%
  );
}

.btn-primary:hover {
  background-color: #ffe066;
  color: var(--Juoda) !important;
}

.btn-secondary {
  display: inline-block;
  color: var(--Balta, #ffffff) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  background-color: var(--Juoda);
  text-align: center;
  text-decoration: none;
  height: 48px;
  padding: 12px 40px;
  min-width: 200px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  clip-path: polygon(
    5.831% 8.838%,
    5.831% 8.838%,
    5.972% 7.315%,
    6.158% 5.902%,
    6.383% 4.613%,
    6.645% 3.458%,
    6.94% 2.45%,
    7.262% 1.598%,
    7.61% 0.916%,
    7.979% 0.415%,
    8.364% 0.106%,
    8.763% 0%,
    97.067% 0%,
    97.067% 0%,
    97.667% 0.236%,
    98.222% 0.909%,
    98.724% 1.972%,
    99.164% 3.375%,
    99.534% 5.068%,
    99.823% 7.002%,
    100.023% 9.127%,
    100.125% 11.395%,
    100.12% 13.757%,
    100% 16.162%,
    94.362% 91.162%,
    94.362% 91.162%,
    94.22% 92.685%,
    94.035% 94.098%,
    93.809% 95.387%,
    93.547% 96.542%,
    93.253% 97.55%,
    92.93% 98.402%,
    92.583% 99.084%,
    92.214% 99.585%,
    91.828% 99.894%,
    91.429% 100%,
    3.125% 100%,
    3.125% 100%,
    2.526% 99.764%,
    1.97% 99.091%,
    1.468% 98.028%,
    1.028% 96.625%,
    0.659% 94.932%,
    0.37% 92.998%,
    0.17% 90.873%,
    0.068% 88.605%,
    0.072% 86.243%,
    0.193% 83.838%,
    5.831% 8.838%
  );
}

.btn-secondary:hover {
  background-color: #4d4d4d;
}

/* Button mobile */
@media (max-width: 991px) {
  .btn-primary {
    border: none !important;
    display: inline-block;
    color: var(--Juoda) !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    background-color: var(--Yellow);
    text-align: center;
    text-decoration: none;
    padding: 12px 40px;
    min-width: 200px;
    transition: background-color 0.3s ease, color 0.3s ease;
    clip-path: polygon(
      5.831% 8.838%,
      5.831% 8.838%,
      5.972% 7.315%,
      6.158% 5.902%,
      6.383% 4.613%,
      6.645% 3.458%,
      6.94% 2.45%,
      7.262% 1.598%,
      7.61% 0.916%,
      7.979% 0.415%,
      8.364% 0.106%,
      8.763% 0%,
      97.067% 0%,
      97.067% 0%,
      97.667% 0.236%,
      98.222% 0.909%,
      98.724% 1.972%,
      99.164% 3.375%,
      99.534% 5.068%,
      99.823% 7.002%,
      100.023% 9.127%,
      100.125% 11.395%,
      100.12% 13.757%,
      100% 16.162%,
      94.362% 91.162%,
      94.362% 91.162%,
      94.22% 92.685%,
      94.035% 94.098%,
      93.809% 95.387%,
      93.547% 96.542%,
      93.253% 97.55%,
      92.93% 98.402%,
      92.583% 99.084%,
      92.214% 99.585%,
      91.828% 99.894%,
      91.429% 100%,
      3.125% 100%,
      3.125% 100%,
      2.526% 99.764%,
      1.97% 99.091%,
      1.468% 98.028%,
      1.028% 96.625%,
      0.659% 94.932%,
      0.37% 92.998%,
      0.17% 90.873%,
      0.068% 88.605%,
      0.072% 86.243%,
      0.193% 83.838%,
      5.831% 8.838%
    );
  }
}

/* Smooth dropdown animation */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
  }

  .dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

/* 7. Footer styles */

#footer {
  background-color: var(--Juoda);
  color: var(--Balta);
  min-height: 509px;
  background-color: var(--Juoda); /* Black background */
  background-position: center; /* Center the SVG */
  background-size: cover; /* Cover the entire section */
  background-repeat: no-repeat; /* Prevent repetition */
  padding: 72px 96px 24px 96px;
  background-image: url('assets/images/footer-overlay.svg');
}

#footer .social-links {
  display: flex; /* Makes the links align in a row */
  gap: 12px; /* Space between links */
}

#footer .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%; /* Makes it a circle */
  border: 1px solid var(--Balta, #fff); /* White border */
  text-decoration: none; /* Removes underlines */
  color: inherit; /* Prevents blue text */
}

#footer .social-links a img {
  width: 18px;
  height: 18px;
}

#footer .social-links a:hover {
  scale: 1.2;
}

#footer .newsletter span {
  color: var(--Balta, #fff);
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 120% */
  text-transform: uppercase;
  margin-right: 32px;
}

#footer .newsletter .input-wrapper {
  position: relative;
  width: 100%;
  max-width: 300px;
}

#footer .newsletter input {
  width: 100%;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--Balta, #fff);
  color: var(--Balta, #fff);
  padding: 16px 44px 16px 12px; /* Extra padding on the right for the icon */
  font-size: 14px;
  outline: none;
}

#footer .newsletter .input-wrapper .input-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#footer .newsletter .input-wrapper .input-icon img {
  width: 100%;
  height: 100%;
}

#footer hr {
  margin-top: 40px;
  margin-bottom: 40px;
  opacity: 1;
  color: white;
}

#footer .links {
  justify-content: space-between;
  align-items: flex-start;
}

#footer .links h5 {
  color: var(--Balta, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 24px;
}

#footer .links .contact-item {
  margin-bottom: 8px;
}

#footer .links .contact-item a {
  text-decoration: none;
  color: var(--Balta, #fff);
}

#footer .links .contact-item p {
  color: var(--Balta, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

#footer .links .contact-item a:hover {
  text-decoration: underline;
}

#footer .links .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#footer .links .footer-links li a {
  color: var(--Balta, #fff);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  text-decoration: none;
}

#footer .links .footer-links li a:hover {
  text-decoration: underline;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
}

#footer .logo-footer img {
  height: 40px;
}

#footer .copyright p {
  flex: 1;
  text-align: center;
  color: #f1f1f1;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  margin-bottom: 0px;
}

#footer .card-issuers {
  display: flex;
  gap: 12px;
}

#footer .card-issuers img {
  height: 24px;
}

#footer .mobile-hr {
  display: none;
}

@media screen and (max-width: 991px) {
  #footer {
    padding: 96px 0px 24px 0px;
  }

  #footer .links {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
  }

  #footer .footer-bottom {
    gap: 16px;
  }

  #footer .footer-bottom .card-issuers {
    gap: 32px;
  }

   #footer .copyright p {
    text-align: start;
  }

  #footer .newsletter {
    margin-bottom: 32px;
  }

  #footer .newsletter span {
    display: block;
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 768px) {
  #footer {
    padding: 96px 0px 24px 0px;
    background-size: 100%;
    background-position: unset;
    background-repeat: repeat-y;
    background-image: url('assets/images/footer-overlay-mobile.svg');
  }

  #footer .newsletter span {
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 120% */
    text-transform: uppercase;
  }

  #footer .social-links {
    gap: 32px;
  }

  #footer hr {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  #footer .row .links {
    gap: 24px;
  }

  #footer .links h5 {
    font-size: 16px;
    line-height: 24px; /* 150% */
    margin-bottom: 16px;
  }

  #footer .links .contact-item {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
  }

  #footer .links .footer-links {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }

  #footer .links .footer-links ul {
    gap: 8px;
  }

  #footer .links .footer-links li a {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
  }

  #footer .links .contact-item p {
    font-size: 12px;
    margin-bottom: 0px;
  }

  #footer .newsletter .input-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  #footer .mobile-hr {
    display: block;
  }

   #footer .links {
    grid-template-columns: 1fr;
   }
}

/* 8. Gutenberg overwrties */

/* Ensure non-container blocks respect max-width in the editor */
.wp-block {
  max-width: 100%; /* Allow blocks to adapt to the container's width */
  box-sizing: border-box; /* Ensure padding and border are included in the element's width */
}

.editor-styles-wrapper .wp-block {
  max-width: 100% !important; /* Enforce max-width to prevent blocks from overflowing */
  font-family: 'Geologica', sans-serif !important;
}

body.block-editor-page .editor-styles-wrapper [data-align='full'],
body.block-editor-page .editor-styles-wrapper [data-align='wide'] {
  max-width: 100% !important; /* Prevent full and wide blocks from exceeding the editor container */
  width: 100% !important; /* Ensure they fill the available width */
}

/* 9. General Styles  */

/* breadcrumb  for pages */

#pages-breadcrumb {
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

#pages-breadcrumb a {
  color: var(--Juoda, #000) !important;
  text-decoration: none;
}

#pages-breadcrumb a:hover {
  text-decoration: underline;
}

#pages-breadcrumb .row .breadcrumbs__items {
  gap: 12px;
  color: var(--Juoda, #000);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

@media screen and (max-width: 768px) {
  #pages-breadcrumb .row .breadcrumbs__items {
    justify-content: start;
    padding: 0;
  }
}

/* Status bar */
.status {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--Juoda);
  margin-top: 24px;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  padding-left: 16px;
  padding-right: 16px;
}
.status .circle {
  width: 9px;
  height: 9px;
  background-color: #06ff4c;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.status .circle.out-of-stock {
  background-color: #ff0000 !important;
}

/*


10. Woocommerce styles
*/
@media screen and (min-width: 992px) {
  .woocommerce-account #page > .container{
    min-height: calc(100svh - 550px);
  }
}

.woocommerce-OrderUpdates.commentlist.notes {
  padding-left: 1rem;
}
.woocommerce-MyAccount-content a {
  color: var(--Juoda);
  transition: color 0.3s ease;
}
.woocommerce-MyAccount-content a:hover {
  color: var(--Yellow);
}
.woocommerce-MyAccount-content a.order-item {
  color: unset;
  text-decoration: none;
  display: block;
}
.woocommerce-MyAccount-content a.order-item .card {
  outline: 1px solid transparent;
  transition: outline 0.3s ease;
}
.woocommerce-MyAccount-content a.order-item:hover .card {
  outline-color: var(--Juoda);
}
.woocommerce-MyAccount-content a.edit {
  text-decoration: none;
}
.woocommerce-MyAccount-content a.edit path {
  transition: fill 0.3s ease;
}
.woocommerce-MyAccount-content a.edit:hover path {
  fill: var(--Yellow);
}
.woocommerce-MyAccount-content .badge.badge-success {
  color: var(--Juoda) !important;
  background-color: #e8facb !important;
}
.woocommerce-MyAccount-content form .form-row {
  position: relative;
  margin: 0 0 24px;
}
.woocommerce-MyAccount-content form .form-row .input-text {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #5b5b5b;
  border-radius: 6px;
  color: var(--Juoda);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
  outline: none;
}
.woocommerce-MyAccount-content form .form-row .input-text:focus {
  border-color: var(--Yellow);
}
.woocommerce-MyAccount-content form .form-row .input-text::-moz-placeholder {
  color: var(--Pilka-teksto, #5b5b5b);
}
.woocommerce-MyAccount-content form .form-row .input-text::placeholder {
  color: var(--Pilka-teksto, #5b5b5b);
}
.woocommerce-MyAccount-content form .form-row label {
  opacity: 0;
  font-size: 12px;
  line-height: 16px;
  background: var(--Balta);
  color: var(--Pilka-teksto, #5b5b5b);
  padding: 0 3px;
  position: absolute;
  left: 14px;
  transform: translateY(-50%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.woocommerce-MyAccount-content form .form-row .select2-selection__rendered {
  padding: 12px 10px;
  font-size: 14px;
}
.woocommerce-MyAccount-content form .form-row .select2-selection__placeholder {
  color: var(--Pilka-teksto, #5b5b5b);
}
.woocommerce-MyAccount-content form .form-row:last-of-type {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content form .form-row:last-of-type {
    margin: 0 0 24px;
  }
}
.woocommerce-MyAccount-content form .form-row:has(input:focus) label,
.woocommerce-MyAccount-content form .form-row:has(select:focus) label {
  opacity: 1;
}
.woocommerce-MyAccount-content
  form
  .form-row:has(select):has(span.select2-container--open)
  label,
.woocommerce-MyAccount-content
  form
  .form-row:has(select):not(:has(span.select2-selection__placeholder))
  label {
  opacity: 1;
}
.woocommerce-MyAccount-content
  form
  .form-row:has(input:not(:-moz-placeholder-shown))
  label {
  opacity: 1;
}
.woocommerce-MyAccount-content
  form
  .form-row:has(input:not(:placeholder-shown))
  label {
  opacity: 1;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 600;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background: transparent;
  color: var(--Juoda, #000);
  outline: none;
  display: flex;
  gap: 20px;
  align-items: center;
}
.woocommerce-notices-wrapper .woocommerce-message .btn-primary {
  margin-left: auto;
}
@media screen and (max-width: 992px) {
  .woocommerce-notices-wrapper .woocommerce-message {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
  }
  .woocommerce-notices-wrapper .woocommerce-message .btn-primary {
    margin-left: unset;
  }
}
@media screen and (min-width: 992px) {
  .woocommerce-notices-wrapper .woocommerce-message::before {
    top: 50%;
    transform: translateY(-50%);
  }
}
.woocommerce-notices-wrapper {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  background: transparent;
  color: var(--Juoda, #000);
  outline: none;
}
/* End of Woocommerce styles */

.price {
  font-size: 16px;
}

.price del {
  color: var(--Pilka-teksto, #5b5b5b);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  text-decoration-line: strikethrough;
}

.price ins {
  color: var(--Juoda, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-decoration: none;
}

.regular-price {
  color: var(--Juoda, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  text-decoration: none;
}

/* Custom Pagination Styles */
.rekos-pagination-container {
  margin: 30px 0;
  display: flex;
  justify-content: center;
}

.pagination-list {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  justify-content: center;
  align-items: flex-start;
  display: inline-flex;
}

.pagination-item {
  text-decoration: none;
  min-width: 40px;
  min-height: 40px;
  padding: 8px;
  background: white;
  border-right: 1px #F7F7F7 solid;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  color: black;
  font-size: 12px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 16px;
  word-wrap: break-word;
}

.pagination-item svg {
  flex-shrink: 0;
}

.pagination-curr {
  font-weight: 600;
  background: #FFCB00;
}
.pagination-mobile {
  display: none;
  gap: 0;
  font-size: 14px;
  line-height: 20px;
  background: transparent;
}
.pagination-mobile span {
  font-weight: 600;
}
.pagination-inactive {
  color: #999;
  opacity: 0.5;
}

.rekos-pagination-container a {
  transition: all 0.3s ease;
}

.rekos-pagination-container a:hover {
  background-color: #e0e0e0 !important;
}

.rekos-pagination-container a[style*='background: #FFCB00']:hover {
  background-color: #ffcb00 !important;
}

@media (max-width: 768px) {
  .pagination-item {
    display: none;
  }
  .pagination-prev,
  .pagination-next {
    display: flex;
    width: 52px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: #FFF;
    border-radius: 6px;
  }

  .pagination-prev span,
  .pagination-next span{
    display: none;
  }
  .pagination-mobile {
    display: block;
  }
  .pagination-list {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

/* Order Item Images */
.order-item-image {
  width: 126px;
  height: 126px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-item-count {
  position: absolute;
  color: var(--Balta);
  background: rgba(0, 0, 0, 0.7);
  font-size: 24px;
  line-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  z-index: 1;
  inset: 0;
}
@media screen and (max-width: 1024px) {
  .order-item-image {
    width: 89px;
    height: 89px;
  }
}

/* WordPress Login Form Styling */
.login {
  background: var(--Balta);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 2rem auto;
}

.login h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--Juoda);
}

.login form {
  margin: 0;
}

.login label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--Juoda);
  font-weight: 500;
}

.login input[type='text'],
.login input[type='password'] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--Platinum);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-size-p);
}

.login input[type='text']:focus,
.login input[type='password']:focus {
  outline: none;
  border-color: var(--Yellow);
  box-shadow: 0 0 0 2px rgba(255, 203, 0, 0.2);
}

.login .submit {
  margin-top: 1rem;
}

.login .button {
  width: 100%;
  padding: 0.75rem;
  background: var(--Yellow);
  color: var(--Juoda);
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login .button:hover {
  background: var(--Orange);
  color: var(--Balta);
}

.login #nav {
  margin-top: 1rem;
  text-align: center;
}

.login #nav a {
  color: var(--Juoda);
  text-decoration: none;
  font-size: var(--font-size-p);
  transition: color 0.3s ease;
}

.login #nav a:hover {
  color: var(--Yellow);
}

.login #backtoblog {
  margin-top: 1rem;
  text-align: center;
}

.login #backtoblog a {
  color: var(--Juoda);
  text-decoration: none;
  font-size: var(--font-size-p);
  transition: color 0.3s ease;
}

.login #backtoblog a:hover {
  color: var(--Yellow);
}

/* Error messages styling */
.login .message {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: var(--font-size-p);
}

/* Success messages styling */
.login .message.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

/* Remember me checkbox styling */
.login .forgetmenot {
  margin: 1rem 0;
}

.login .forgetmenot label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.login .forgetmenot input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a {
  background: yellow;
}

/* Cart and Checkout breadcrumbs */
.breadcrumbs-dark {
  display: flex;
  gap: 12px;
  padding: 12px 1.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  margin: 0 0 32px;
}
.breadcrumbs-dark a {
  color: var(--Juoda);
  transition: color 0.3s ease;
  text-decoration: none;
}
.breadcrumbs-dark a:hover {
  color: var(--Yellow);
}
@media screen and (min-width: 992px) {
  .breadcrumbs-dark {
    max-width: 800px;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumbs-dark {
    max-width: 800px;
    margin: 0 0 0 auto;
  }
}

/* Cart */

div.cart {
  background: var(--Balta);
  position: relative;
  overflow: hidden;
}
.cart-container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cart-empty {
  padding: 0 12px;
  max-width: 514px;
  padding-bottom: 96px;
}
.cart h2 {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.cart-empty p {
  font-size: 12px;
  line-height: 16px;
}
.cart-empty .btn-primary {
  height: 48px;
  padding: 12px 16px;
  width: 100%;
  max-width: 291px;
}
.cart_totals {
  max-width: 368px;
  font-size: 12px;
  line-height: 16px;
}
.cart_totals h2 {
  margin: 0 0 24px;
}
.cart_totals .btn-primary {
  width: 100%;
  max-width: 368px;
  height: 48px;
  padding: 12px 16px;
}

.cart .product-price {
  margin: 0;
}

.cart-item {
  padding: 32px 0;
  border-top: 1px solid #d9d9d9;
}
.cart-item:first-of-type {
  border-top: 0;
}

.cart-item-name a {
  text-decoration: none;
  color: var(--Juoda);
  font-size: 12px;
  line-height: 16px;
  transition: color 0.3s ease-in-out;
}
.cart-item-remove a,
.cart-item-remove img {
  width: 20px;
  height: 20px;
  display: block;
}
.cart-item-remove {
  align-self: baseline;
}
.cart-item-remove a svg path {
  transition: fill 0.3s ease-in-out;
}
.cart-item-remove a:hover svg path {
  fill: #ffcb00;
}
.cart .cart-item a:hover {
  color: var(--Yellow);
}
.cart-item-name {
  width: calc(100% - 36px);
}
.cart-gap {
  gap: 16px;
}
.cart-item-price {
  min-width: 100px;
}
.cart-item-price .amount {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.cart .discount-price .amount {
  font-size: 12px;
  line-height: 16px;
  color: var(--Pilka-teksto, #5b5b5b);
  text-decoration: line-through;
  font-weight: normal;
}
.cart .quantity-wrapper {
  padding: 5px;
}

.cart .actions {
  display: none;
}
.cart .breadcrumbs-dark {
  margin: 0;
  padding: 12px 0;
}
@media screen and (min-width: 768px) {
  .cart_totals {
    font-size: 14px;
    line-height: 20px;
  }
  .cart-empty {
    padding-bottom: 128px;
  }

  .cart h2 {
    font-size: 30px;
    line-height: 36px;
  }
  .cart-empty p {
    font-size: 14px;
    line-height: 20px;
  }
  .cart-totals h2 {
    margin: 0 0 32px;
  }
  .cart .cart-item a {
    font-size: 14px;
    line-height: 20px;
  }
  .cart-item-name {
    width: calc(100% - 52px);
  }
  .cart-item-price .amount {
    font-size: 14px;
    line-height: 20px;
  }
}

@media screen and (min-width: 992px) {
  .cart-container {
    min-height: CALC(100svh - 550px);
  }
  .cart:has(div.cart_totals):before {
    content: '';
    position: absolute;
    left: calc(50% + 160px);
    width: 50%;
    height: 100%;
    top: 0;
    background: #f7f7f7;
    z-index: 0;
  }
  .cart-gap {
    gap: 32px;
  }
  .cart #pages-breadcrumb {
    padding-inline: 96px;
  }
  .cart-item-remove {
    align-self: center;
  }
  .cart .breadcrumbs-dark {
    max-width: 688px;
    margin: 0 1.5rem 0 auto;
  }
  .cart-content-wrapper {
    max-width: 688px;
    margin: 0 1.5rem 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .cart-content-wrapper {
    margin: 0 96px 0 auto;
  }
  .cart .breadcrumbs-dark {
    margin: 0 96px 0 auto;
  }
}

/* 404 */
#section-404 {
  margin: 40px auto 96px;
  width: 100%;
  color: var(--Balta);
}

#section-404 .col-12 {
  background: var(--Juoda);
  color: var(--Balta);
  padding: 24px;
  max-width: 460px;
}
#section-404 h1 {
  margin: 0;
  font-size: 55px;
  line-height: 1.3;
}

#section-404 span {
  color: #e21919;
  font-size: 24px;
  line-height: 32px;
}
#section-404 h2 {
  text-transform: none;
  color: var(--Platinum);
  margin: 0;
  font-size: 18px;
  line-height: 28px;
}
#section-404 .btn-primary {
  height: 48px;
  min-width: 279px;
  padding: 12px 16px;
}

@media screen and (min-width: 768px) {
  #section-404 {
    margin: 48px auto 96px;
  }
  #section-404 h1 {
    font-size: 80px;
  }
  #section-404 h2 {
    font-size: 24px;
    line-height: 32px;
  }
  #section-404 .col-12 {
    padding: 40px;
  }
  #section-404 .btn-primary {
    min-width: 279px;
  }
}

@media screen and (min-width: 992px) {
  #section-404 {
    min-height: calc(100svh - 550px);
  }
}

.woocommerce-notices-wrapper a {
  color: var(--Juoda);
}

.product .product-image {
  overflow: hidden;
  border-radius: 6px;
}
.product .product-image img {
  transition: transform 200ms linear;
}
.product .product-image:before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  content: '';
}
.product .product-image:hover img {
  transform: scale(1.05);
}
.product .shopping-bag {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .search #primary {
    min-height: CALC(100svh - 550px);
  }
}

/* Custom Notice for add to cart */
.notices-add {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--Balta);
  width: 100%;
  z-index: 10;
  -webkit-box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 15px -3px rgba(0, 0, 0, 0.1);
}
.notices-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1248px;
  margin: 0 auto;
  border: none;
  padding: 1.5rem 3rem;
}
.notices-message {
  display: flex;
  align-items: center;
  gap: 16px;
  outline: 0 !important;
}
.notices-wrapper.error {
  flex-flow: row nowrap;
}
.notices-wrapper.error .notices-message::before {
  content: '\e016';
  color: #e21919;
}
.notices-wrapper.error .notices-actions {
  width: auto;
  margin-left: auto;
}
.notices-message::before {
  color: #8dad1a;
  content: '\e015';
  font-family: 'WooCommerce';
}
.notices-actions {
  margin-left: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.notices-close {
  cursor: pointer;
}
.notices-close svg path {
  transition: fill 0.2s ease;
}
.notices-close:hover svg path {
  fill: var(--Yellow);
}

@media (max-width: 768px) {
  .notices-wrapper {
    flex-flow: column;
    gap: 24px;
    padding: 1.5rem;
  }
  .notices-actions {
    width: 100%;
    margin-left: unset;
    justify-content: space-between;
  }
  .notices-message {
    font-size: 12px;
    line-height: 16px;
  }
}

.shop-sidebar .color-swatch-secondary {
  width: 50%;
  height: 100%;
  border-radius: 0 50% 50% 0;
  position: absolute;
  left: 50%;
  transform: rotate(45deg);
  transform-origin: left;
}
.shop-sidebar .wpc-term-image {
  position: relative;
  z-index: 2;
}

.order-failed {
  background: #C21A09;
  color: #FFF;
}

.order-printed {
  background: #5B0A91;
  color: #FFF;
}

.order-pending {
  background: #ff7a06;
  color: #000;
}

.order-refunded {
  background: #6B8F71;
  color: #FFF;
}

.order-hold {
  background: #FFE400;
  color: #000;
}

.order-processing {
  background: #ffcb00;
  color: #000;
}

.order-completed {
  background: #2e6f40;
  color: #FFF;
}

.order-cancelled {
  background: #e0e0e0;
  color: #000;
}

.woocommerce .rekos-login-container .rekos-login-box {
  padding: 20px;
}

.fancybox__container .fancybox__slide.has-close-btn {
    padding-top: 80px;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 80px;
}