@import url('general-sans.css');

/**
 * 
 * General
 * 
 */
:root {
  --primary-color: #FFCD00;
  --secondary-color: #F93A3A;
  --black-color: #010101;
  --white-color: #FFFFFF;

  --background-color: var(--white-color);
  --text-color: var(--black-color);

    --cat-size: 56px;          /* priemer kruhu */
    --cat-ring: 2px;           /* hrúbka rámu */
    --cat-ring-color: #4b5563; /* tmavší sivý rám */
    --cat-bg: #ffffff;         /* biele pozadie */
}
html, body {
  height: 100%;
}
body {
  font-family: 'GeneralSans', sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  color: var(--text-color);
}
.active>.page-link, .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}
.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out, box-shadow .15sease-in-out;
}
.content {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
img {
  max-width: 100%;
}
p strong {
  font-weight: 600;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 2px;
  border-radius: 3rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  transition: all 0.3s ease;
}
.btn svg {
  min-width: 1.375rem;
  min-height: 1.375rem;
}
.btn-link {
  color: var(--text-color);
}
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  color: var(--secondary-color);
}
.btn-icon {
  padding: 0;
}
.btn-icon:hover,
.btn-icon:focus,
.btn-icon:active {
  background-color: transparent !important;
  border-color: transparent !important;
}
.btn-white {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--black-color);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background-color: #F5F5F5 !important;
  border-color: #F5F5F5 !important;
  color: var(--black-color) !important;
}
.btn-black {
  background-color: var(--black-color);
  border-color: var(--black-color);
  color: var(--white-color);
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: var(--white-color) !important;
}
.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: #e62e2e !important;
  border-color: #e62e2e !important;
  color: var(--white-color) !important;
}
.btn-gray {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
  color: var(--black-color);
}
.btn-gray:hover,
.btn-gray:focus,
.btn-gray:active {
  background-color: #E5E5E5 !important;
  border-color: #E5E5E5 !important;
  color: var(--black-color) !important;
}
.btn-outline-secondary {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--white-color) !important;
}
.btn-outline-secondary svg path {
  transition: all 0.3s ease;
}
.btn-outline-secondary:hover svg path,
.btn-outline-secondary:focus svg path,
.btn-outline-secondary:active svg path {
  stroke: var(--white-color);
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-body-secondary {
  background-color: #E5E5E5 !important;
}
.text-body {
  color: var(--text-color) !important;
}
.text-body-secondary {
  color: #919191 !important;
}
.text-secondary {
  color: var(--secondary-color) !important;
}
.text-gray {
  color: #818181 !important;
}
.modal-title {
  color: var(--text-color) !important;
  font-weight: 500 !important;
}
.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100% - 1.75rem * 2);
}
.modal-content {
  border: 0;
  border-radius: 1rem;
}




/**
 * Form
 */
.form-control {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 1rem;
  color: var(--text-color);
  padding: 0.625rem 1rem;
}
.form-control:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 .25rem rgba(249, 58, 58, 0.25);
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
}
.form-label span {
  color: var(--secondary-color);
}
.form-check-input {
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.form-check-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 .25rem rgba(249, 58, 58, 0.25);
}
.form-check {
  cursor: pointer;
}
.form-check-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-color);
  cursor: pointer;
}
.form-select {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 1rem;
  color: var(--text-color);
  padding: 0.625rem 1rem;
}
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 .25rem rgba(249, 58, 58, 0.25);
}




/**
 * Alert
 */
.alert {
  padding: 1.25rem;
  font-weight: 500;
}
.alert svg {
  min-width: 1.375rem;
  min-height: 1.375rem;
}
.alert a {
  color: var(--text-color);
}
.alert.alert-gray {
  background: #F5F5F5;
}



/**
 * Header
 */
.header .header-top {
  background: var(--primary-color);
  color: var(--black-color);
  padding: 0.625rem 0;
  font-size: 0.875rem;
  font-weight: 700;
}
.header .navbar {
  display: block;
  padding: 0;
}
.header .navbar-brand img {
  max-height: 39px;
}
.header .navbar-toggler {
  padding: 0;
  border: 0;
}
.header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.header .search-form {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 600px;
}
.header .search-form .form-control {
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 3rem;
  border-color: var(--secondary-color);
  background-color: var(--white-color);
  color: var(--text-color);
  padding: 0.5rem 2.5rem 0.5rem 2.5rem;
}
.header .search-form .form-control:focus {
  box-shadow: none;
}
.header .search-form .form-control::placeholder {
  color: #686767;
  font-weight: 500;
}
.header .search-form .btn {
  margin-left: -2.125rem;
  font-size: 0.875rem;
  padding: 0.5rem 2rem;
}
.header .search-form .search-form-icon {
  position: absolute;
  top: 46%;
  left: 0.75rem;
  transform: translateY(-50%);
}
.header .nav-link {
  text-align: left;
}
.header .nav-link .nav-link-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.header .nav-link .nav-link-content h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1rem;
  margin-bottom: 0;
}
.header .nav-link .nav-link-content p {
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1rem;
  white-space: nowrap;
}
.header .cart-button .cart-button-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
}
.header .cart-button .cart-button-icon {
  position: relative;
}



/**
 * Cart sidebar
 */
.offcanvas {
  background: var(--background-color);
}
.offcanvas-header {
  padding: 1.25rem;
}
.offcanvas-header:first-child {
  border-bottom: 1px solid #e5e5e5;
}
.offcanvas-header:last-child {
  border-top: 1px solid #e5e5e5;
}
.offcanvas-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-color);
}
.offcanvas .cart-item-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.offcanvas .cart-item-title a {
  color: var(--text-color);
  text-decoration: none;
}
.cart-sidebar .cart-sidebar-image {
  position: relative;
  flex-shrink: 0;
  width: 6rem;
}
.cart-sidebar .cart-sidebar-image img {
  border-radius: 0.75rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-sidebar .cart-sidebar-labels {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.375rem;
}
.cart-sidebar .cart-sidebar-labels .cart-sidebar-label {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.125rem 0.75rem;
  border-radius: 2rem;
}
.cart-sidebar .cart-sidebar-item .cart-sidebar-item-price {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}
.cart-sidebar .cart-sidebar-summary {
  border-bottom: 1px solid #e5e5e5; 
  padding-bottom: 1.25rem;
}
.cart-sidebar .cart-sidebar-summary-title {
  color: var(--text-color);
}
.cart-sidebar .cart-sidebar-summary-price {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  color: var(--secondary-color);
}



/**
 * Count input
 */
.counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ededed;
  border-radius: 3rem;
  padding: 0.5rem 0.625rem;
  width:100%
}
.counter button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  padding: 0;
}
.counter button svg {
  width: 1.375rem;
  height: 1.375rem;
}
input.count {
  font-size: 0.9375rem;
  margin: 0 0.875rem;
  color: var(--secondary-color);
  width: 100%;
  border:0;
}


/**
 * Back to top
 */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  cursor: pointer;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease-in-out;
}
#backToTopBtn:hover {
  background-color: #e62e2e;
}
#backToTopBtn.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
#backToTopBtn svg {
  min-width: 1.375rem;
  min-height: 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  stroke-width: 2;
}



/**
 * Mega menu
 */
.mega-menu {
  border-radius: 1.25rem;
  padding: 1rem 0.75rem;
  background: #F5F5F5;
}
.mega-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.mega-menu ul .mega-menu-item a.mega-menu-link {
  position: relative;
  display: flex;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  gap: 0.375rem;
}
.mega-menu ul .mega-menu-item:hover a.mega-menu-link,
.mega-menu ul .mega-menu-item:focus a.mega-menu-link,
.mega-menu ul .mega-menu-item:active a.mega-menu-link {
  background: #E5E5E5;
}
.mega-menu ul .mega-menu-item a.mega-menu-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 16L14 12L10 8' stroke='%23010101' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
.mega-menu ul .mega-menu-item {
  position: relative;
}
.mega-menu ul .mega-menu-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -0.75rem;
  transform: translateY(-50%);
  width: 3px;
  height: 36px;
  border-radius: 1rem;
  background: var(--secondary-color);
}
.mega-menu ul .mega-menu-item::before {
  display: none;
}
.mega-menu ul .mega-menu-item.active::before {
  display: block;
}
.mega-menu ul .mega-menu-item:hover::before,
.mega-menu ul .mega-menu-item:focus::before,
.mega-menu ul .mega-menu-item:active::before {
  display: block;
}
.mega-menu {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: relative;
}
.category-toggle {
  position: relative;
  display: block;
}
.category-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%) rotate(90deg);
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 16L14 12L10 8' stroke='%23010101' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.category-toggle:has(button.active)::after {
  transform: translateY(-50%) rotate(-90deg);
}
@media (min-width: 768px) {
  .mega-menu {
    display: block;
    opacity: 1;
  }
  .category-toggle {
    display: none;
  }
}
.mega-menu.fade-in {
  display: block;
  opacity: 1;
}
.mega-menu.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
}
.mega-menu .dropdown-menu {
  position: absolute;
  top: -1.125rem;
  left: 100%;
  min-width: 26rem;
  background: transparent;
  border: 0;
  padding-left: 1.25rem !important;
}
.mega-menu .dropdown-menu .dropdown-menu-content {
  border-radius: 1rem;
  padding: 1.5rem;
  background: #F5F5F5;
  display: grid;
  grid-template-columns: repeat(3, minmax(236px, 1fr));
  gap: 1rem;
}
.mega-menu .dropdown-menu .dropdown-menu-column {
  display: flex;
  flex-direction: column;
}
.mega-menu .dropdown-menu .dropdown-menu-categories {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mega-menu .dropdown-menu .dropdown-menu-categories .dropdown-menu-category-item .dropdown-menu-category-link {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  margin-bottom: 0;
  transition: all 0.15s ease;
}
.mega-menu .dropdown-menu .dropdown-menu-categories .dropdown-menu-category-item .dropdown-menu-category-link:hover,
.mega-menu .dropdown-menu .dropdown-menu-categories .dropdown-menu-category-item .dropdown-menu-category-link:focus,
.mega-menu .dropdown-menu .dropdown-menu-categories .dropdown-menu-category-item .dropdown-menu-category-link:active {
  color: var(--secondary-color);
}
.mega-menu .dropdown-menu .dropdown-menu-category-title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  margin-bottom: 0.5rem;
}




/**
 * Hero banners
 */
.hero-banners .hero-banner {
  display: block;
  background-color: #E5E5E5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  aspect-ratio: 12/6;
  text-decoration: none;
  color: var(--black-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  transition: all 0.3s ease;
  background-size:50%;
  background-position:bottom right;
}
.hero-banners .hero-banner h6 {
  margin-bottom: 0.5rem;
}
.hero-banners .hero-banner .hero-banner-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.7rem;
  margin-bottom: 0;
  max-width: 80%;
}
.hero-banners .hero-banner.hero-banner-big {
  aspect-ratio: unset;
  height: 100%;
  background-size:70%;
  background-position:bottom right;
}
.hero-banners .hero-banner.hero-banner-big .hero-banner-title {
  font-size: 2rem;
  line-height: 2rem;
}
.hero-banners .hero-banner:hover,
.hero-banners .hero-banner:focus,
.hero-banners .hero-banner:active {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}
.hero-banners .hero-banner .btn {
  transition: all 0.3s ease;
}
.hero-banners .hero-banner:hover .btn,
.hero-banners .hero-banner:focus .btn,
.hero-banners .hero-banner:active .btn {
  color: var(--primary-color);
}


/**
 * Benefits
 */
.benefits {
  padding: 2rem 0;
}
.benefits .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.benefits .benefit-item .benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits .benefit-item .benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}



/**
 * Section
 */
.section-title {
  margin-bottom: 2rem;
}
.section-title h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.375rem;
  margin-bottom: 0;
}
.section-title-small h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0;
}
.section-padding {
  padding: 2rem 0;
}
.section-padding-bottom {
  padding-bottom: 2rem;
}
.section-padding-top {
  padding-top: 2rem;
}
.section-padding-top-0 {
  padding-top: 0;
}



/**
 * Product miniature
 */
.product-miniature .product-miniature-title {
  display: inline-block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375rem;
}
.product-miniature .product-miniature-title:hover,
.product-miniature .product-miniature-title:focus,
.product-miniature .product-miniature-title:active {
  text-decoration: underline;
}
.product-miniature .product-miniature-prices {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-miniature .product-miniature-prices .product-miniature-price {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 0;
  color: var(--secondary-color);
}
.product-miniature .product-miniature-prices .product-miniature-param {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1rem;
  margin-bottom: 0;
  color: #686767;
}
.product-miniature .product-miniature-image {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
}
.product-labels {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.375rem;
}
.product-labels .product-label {
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3125rem 0.875rem;
  border-radius: 2rem;
}
.product-labels .product-label.product-label-new {
  background: var(--primary-color);
  color: var(--black-color);
}


.bg-gray {
    background-color: #d0d0d0 !important;
}

/**
 * Products
 */
.products-grid {
  --gap: 3rem;
  --line-offset: calc(var(--gap) / 2);
  --line-thickness: 1px;
  --line-color: #EDEDED;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  gap: var(--gap);
}
.products-grid .product-miniature {
  position: relative;
}
.products-grid .product-miniature::before,
.products-grid .product-miniature::after {
  content: '';
  position: absolute;
  background-color: var(--line-color);
  z-index: 1;
}
.products-grid .product-miniature::after {
  inline-size: 100vw;
  block-size: var(--line-thickness);
  inset-inline-start: 0;
  inset-block-start: calc(var(--line-offset) * -1);
}
.products-grid .product-miniature::before {
  inline-size: var(--line-thickness);
  block-size: 100vh;
  inset-block-start: 0;
  inset-inline-start: calc(var(--line-offset) * -1);
}



/**
 * CTA Banners
 */
.cta-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.25rem;
  padding: 2rem;
  color: var(--black-color);
  border-radius: 1.5rem;
  min-height: 12rem;
  text-decoration: none;
  background-color: #d0d0d0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  transition: all 0.3s ease;
}
.cta-banner .cta-banner-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
}
.cta-banner .cta-banner-text {
  max-width: 232px;
}
.cta-banner .cta-banner-text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
}
.cta-banner .cta-banner-text p:last-child {
  margin-bottom: 0;
}
.cta-banner .btn {
  color: var(--primary-color);
}
.cta-banner.cta-banner-big .cta-banner-title {
  font-size: 2rem;
  line-height: 2.375rem;
}
.cta-banner.cta-banner-big .cta-banner-text {
  max-width: 600px;
}
.cta-banner .btn {
  transition: all 0.3s ease;
}
.cta-banner:hover .btn,
.cta-banner:focus .btn,
.cta-banner:active .btn {
  color: var(--white-color);
}

.cta-banners-category {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 1.25rem;
    padding: 2rem;
    color: var(--black-color);
    border-radius: 1.5rem;
    min-height: 12rem;
    text-decoration: none;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    transition: all 0.3s ease;
}
.cta-banners-category .cta-banner-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
}
.cta-banners-category .cta-banner-text {
    max-width: 232px;
}
.cta-banners-category.cta-banner-text p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
}
.cta-banners-category .cta-banner-text p:last-child {
    margin-bottom: 0;
}
.cta-banners-category .btn {
    color: var(--primary-color);
}
.cta-banners-category.cta-banner-big .cta-banner-title {
    font-size: 2rem;
    line-height: 2.375rem;
}
.cta-banners-category.cta-banner-big .cta-banner-text {
    max-width: 600px;
}
.cta-banners-category.btn {
    transition: all 0.3s ease;
}
.cta-banners-category:hover .btn,
.cta-banners-category:focus .btn,
.cta-banners-category:active .btn {
    color: var(--white-color);
}
.cta-banners-category:hover,
.cta-banners-category:focus,
.cta-banners-category:active {
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
}
/* ---- CTA banner s produktovou fotkou vpravo v kruhu ---- */

.cta-banners-category {
    position: relative;
    overflow: visible;         /* aby obrázok mohol prečnievať von */
    padding-right: 12rem;      /* rezerva na kruhový obrázok vpravo */
}

/* Kruhový obrázok vpravo, s „plastickým“ efektom */
.cta-banners-category > img {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);

    width: 11rem;     /* zväčšené z ~9rem na cca +20 % */
    height: 11rem;
    border-radius: 50%;

    background: #ffffff;
    padding: 0;       /* aby nič neuberalo priestor obrazu */
    border: 2px solid #000000;

    object-fit: cover;     /* >>> kľúč: vyplní celý kruh bez ohľadu na pomer strán <<< */
    object-position: center;

    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Jemná interakcia pri hover – viac „plasticky“ */
.cta-banners-category:hover > img,
.cta-banners-category:focus-within > img {
    transform: translateY(-52%) scale(1.06); /* jemne upravené pre väčší obrázok */
    box-shadow: 0 24px 45px rgba(0,0,0,0.4);
}

/* Svetelný odlesk za obrázkom (voliteľné, môžeš vypnúť) */
.cta-banners-category::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.7), transparent 60%);
    pointer-events: none;
}
.cta-banners-category .cta-banner {
    min-height: unset;
}

@media (max-width: 768px) {

    .cta-banners-category {
        flex-direction: column;      /* obsah pod seba */
        align-items: flex-start;
        gap: 1rem;

        padding: 1.5rem;
        padding-right: 1.5rem;       /* už netreba priestor pre kruh vpravo */
        min-height: auto;
    }

    .cta-banners-category .cta-banner.cta-banner-big {
        width: 100%;
    }

    .cta-banners-category .cta-banner-title {
        font-size: 1.5rem;
        line-height: 1.9rem;
        margin-bottom: 0.5rem;
    }

    .cta-banners-category .cta-banner-text {
        max-width: 100%;
    }

    .cta-banners-category .cta-banner-text p {
        font-size: 0.95rem;
        line-height: 1.35rem;
    }

    .cta-banners-category .btn {
        margin-top: 0.75rem;
    }

    /* obrázok pôjde pod text, ostane kruhový, menší, stále cover */
    .cta-banners-category > img {
        position: static;
        transform: none;
        margin-top: 1rem;
        align-self: center;

        width: 9rem;
        height: 9rem;

        object-fit: cover;
        object-position: center;

        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
    }

    .cta-banners-category::after {
        display: none; /* čistší vzhľad na mobile, voliteľné */
    }
}


/**
 * Footer
 */
.footer {
  background: #F5F5F5;
  color: var(--text-color);
  padding: 3rem 0;
}
.footer .footer-item-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1rem;
}
.footer .footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
.footer .footer-socials svg path {
  fill: var(--text-color);
}
.footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .footer-links a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  transition: all 0.3s ease;
}
.footer .footer-links a:hover,
.footer .footer-links a:focus,
.footer .footer-links a:active {
  color: var(--secondary-color);
}
.footer .footer-item p {
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.footer .footer-item p a {
  color: var(--text-color);
  font-weight: 400;
  transition: all 0.3s ease;
}
.footer .footer-item p a:hover,
.footer .footer-item p a:focus,
.footer .footer-item p a:active {
  color: var(--secondary-color);
}
.footer .footer-logo {
  border-bottom: 1px solid #bbbbbb;
  padding-bottom: 1.5rem;
}
.footer .footer-logo img {
  max-height: 39px;
  margin-bottom: 1.5rem;
}
.footer .footer-logo p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--text-color);
}
.footer .footer-logo p:last-child {
  margin-bottom: 0;
}
.footer .footer-copyright {
  padding-top: 1.5rem;
}
.footer .footer-copyright p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 0;
  color: #818181;
}
.footer .footer-copyright p a {
  font-weight: 400;
  color: #818181;
  transition: all 0.3s ease;
}
.footer .footer-copyright p a:hover,
.footer .footer-copyright p a:focus,
.footer .footer-copyright p a:active {
  color: var(--text-color);
}



/**
 * 
 * Auth page
 * 
 */
.auth-wrapper .auth-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}
.auth-card {
  background: #F5F5F5;
  padding: 2.5rem 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.auth-form {
  width: 100%;
}
.auth-form .form-control {
  border-color: transparent;
  background-color: var(--white-color);
}
.auth-form .form-check .form-check-input {
  border-color: transparent;
}
.auth-wrapper .auth-links {
  font-size: 0.875rem;
}
.auth-wrapper .auth-links a {
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.auth-wrapper .auth-links a:hover,
.auth-wrapper .auth-links a:focus,
.auth-wrapper .auth-links a:active {
  color: var(--secondary-color);
}
.auth-form .btn {
  padding: 0.6875rem 3rem;
}



/**
 * 
 * Category page
 * 
 */
.category-header {
  margin-bottom: 2rem;
}
.category-header .category-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.375rem;
  margin: 1rem 0 0.75rem;
}
.category-header .category-description {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin-bottom: 1.5rem;
}
.category-header .category-description p:last-child {
  margin-bottom: 0;
}

/* základná mriežka kategórií */
.category-header .subcategories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

/* blok odkazu */
.category-header .subcategories li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.4rem;
    transition: all 0.25s ease;
    background: #f5f5f5;
    line-height: 1.3;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    height:95px;
}

.category-header .subcategories li a:hover {
    background: #e9e9e9;
}

/* kruhový obrázok */
.category-header .subcategories li a > img {
    width: var(--cat-size);
    height: var(--cat-size);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    background: var(--cat-bg);
    border: var(--cat-ring) solid var(--cat-ring-color);
    flex: 0 0 var(--cat-size);
    box-sizing: border-box;
}

/* textová časť */
.category-header .subcategories li a .cat-label {
    display: -webkit-box;
    -webkit-line-clamp: 4;        /* max 2 riadky */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}



.category-header .subcategories li a:hover,
.category-header .subcategories li a:focus,
.category-header .subcategories li a:active {
  background: #E5E5E5;
}
.category-products .category-products-filter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.category-products .category-products-filter li a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
.category-products .category-products-filter li a:hover,
.category-products .category-products-filter li a:focus,
.category-products .category-products-filter li a:active {
  text-decoration: underline;
}
.category-products .products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sidebar .sidebar-item {
  margin-bottom: 2rem;
}
.sidebar .sidebar-item:last-child {
  margin-bottom: 0;
}
.sidebar .sidebar-item .sidebar-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.sidebar .sidebar-item .last-sold-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.sidebar .sidebar-item .last-sold-products .last-sold-product {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid #E5E5E5;
}
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-image {
  min-width: 96px;
  min-height: 96px;
  width: 96px;
  height: 96px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-price {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0;
  color: var(--text-color);
}
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-title:hover,
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-title:focus,
.sidebar .sidebar-item .last-sold-products .last-sold-product .last-sold-product-title:active {
  text-decoration: underline;
}
.sidebar .sidebar-item .sidebar-banner {
  overflow: hidden;
  border-radius: 1rem;
}
.sidebar .sidebar-item .sidebar-loyalty-program {
  background: var(--primary-color);
  padding: 1.5rem;
  border-radius: 1rem;
  color: var(--black-color);
}
.sidebar .sidebar-item .sidebar-loyalty-program .sidebar-loyalty-program-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}
.sidebar .sidebar-item .sidebar-loyalty-program .sidebar-loyalty-program-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  margin-bottom: 1rem;
}



/**
 * 
 * Product page
 * 
 */
.product-breadcrumb {
  margin: 1rem 0 0.75rem;
}
.product-breadcrumb .breadcrumb {
  margin-bottom: 0;
}
.product-breadcrumb .breadcrumb li {
  color: #919191;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-breadcrumb .breadcrumb-item a {
  color: var(--text-color);
  transition: all 0.3s ease;
}
.product-breadcrumb .breadcrumb-item a:hover,
.product-breadcrumb .breadcrumb-item a:focus,
.product-breadcrumb .breadcrumb-item a:active {
  color: var(--secondary-color);
}
.product-breadcrumb .breadcrumb-item a svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -3px;
  transition: all 0.3s ease;
}
.product-breadcrumb .breadcrumb-item a svg path {
  stroke: var(--text-color);
  transition: all 0.3s ease;
}
.product-breadcrumb .breadcrumb-item a:hover svg path,
.product-breadcrumb .breadcrumb-item a:focus svg path,
.product-breadcrumb .breadcrumb-item a:active svg path {
  stroke: var(--secondary-color);
}
.product-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  margin-top: -2px;
}
.product-header .product-title {
  font-size: 1.75rem;
  line-height: 2.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.product-header .product-availability {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 1rem 0;
}
.product-header .product-availability .product-availability-text {
  color: #60AF6E;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 700;
}
.product-header .product-availability .product-availability-date {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.product-header .product-prices {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.5rem 0;
}
.product-header .product-prices .product-price {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
}
.product-header .product-prices .product-price-without-tax {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #919191;
  margin-bottom: 0;
}
.product-header .product-actions {
  margin: 1.5rem 0;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
}
.product-header .product-actions .counter {
  width: 100%;
  max-width: 164px;
  justify-content: space-between;
}
.product-header .product-actions .btn {
  width: 100%;
}
.product-header .product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-header .product-info .product-info-item {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  color: #919191;
}
.product-image #product-image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}
.product-image #product-image-slider .product-image-slider-item {
  aspect-ratio: 1/1;
  background: var(--white-color);
}
.product-image #product-image-slider .product-image-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-image #product-image-thumbnails .splide__slide {
  border-radius: 0.5rem;
  overflow: hidden;
}
.product-image #product-image-thumbnails .thumbnail {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.product-image #product-image-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.product-image #product-image-thumbnails .splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #E5E5E5;
}
.product-tabs .nav-tabs {
  border-bottom: 1px solid #EDEDED;
  display: flex;
  flex-wrap: nowrap;
  gap: 0 2.5rem;
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
}
.product-tabs .nav-tabs .nav-item .nav-link {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 1.125rem 0;
  white-space: nowrap;
  border: 0;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
}
.product-tabs .nav-tabs .nav-item .nav-link:hover,
.product-tabs .nav-tabs .nav-item .nav-link:focus,
.product-tabs .nav-tabs .nav-item .nav-link:active {
  background: transparent;
}
.product-tabs .nav-tabs .nav-item .nav-link:hover {
  color: var(--secondary-color);
}
.product-tabs .nav-tabs .nav-item.show .nav-link, 
.product-tabs .nav-tabs .nav-link.active {
  background: transparent;
  border: 0;
  color: var(--text-color);
  border-bottom: 4px solid var(--secondary-color);
}
.product-tabs .tab-content .tab-pane {
  padding: 2rem 0;
}
.product-tabs .tab-content .tab-pane h1,
.product-tabs .tab-content .tab-pane h2,
.product-tabs .tab-content .tab-pane h3,
.product-tabs .tab-content .tab-pane h4,
.product-tabs .tab-content .tab-pane h5,
.product-tabs .tab-content .tab-pane h6 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}
.product-tabs .tab-content .tab-pane ul,
.product-tabs .tab-content .tab-pane ol {
  margin: 1.5rem 0;
}
.product-tabs .tab-content .tab-pane .table>:not(caption)>*>* {
  background-color: transparent;
  color: var(--text-color);
}
.product-tabs .tab-content .tab-pane .table {
  --bs-table-border-color: #EDEDED;
}
.product-tabs .tab-content .tab-pane .table th {
  font-weight: 500;
  color: #919191;
}
.product-tabs .tab-content .tab-pane .table td {
  font-weight: 500;
  color: var(--text-color);
}
.product .products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
} 
.product-files-list {
  list-style: none;
  margin: 0 !important; 
  padding: 0;
}
.product-files-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #EDEDED;
}
.product-files-list li a {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.15s ease;
}
.product-files-list li a:hover,
.product-files-list li a:focus,
.product-files-list li a:active {
  color: var(--secondary-color);
  background: #F5F5F5;
}
.product-reviews .product-reviews-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.product-reviews .product-reviews-header .product-reviews-summary {
  background: #F5F5F5;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-reviews .product-reviews-header .product-reviews-summary h6 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.product-reviews .product-reviews-header .product-reviews-summary svg {
  width: 1.5rem;
  height: 1.5rem;
}
.product-reviews .product-reviews-header .product-reviews-summary svg path {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}
.product-reviews .product-reviews-header .product-reviews-summary p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.product-reviews .product-reviews-header .product-reviews-summary p span {
  font-weight: 600;
}
.product-reviews .product-reviews-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}
.product-reviews .product-reviews-detail .product-reviews-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.product-reviews .product-reviews-detail .product-reviews-detail-item .product-reviews-detail-item-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.product-reviews .product-reviews-detail .product-reviews-detail-item .product-reviews-detail-item-rating svg {
  width: 0.875rem;
  height: 0.875rem;
}
.product-reviews .product-reviews-detail .product-reviews-detail-item .product-reviews-detail-item-rating span {
  min-width: 11px;
}
.product-reviews .product-reviews-detail .product-reviews-detail-item .product-reviews-detail-item-count {
  min-width: 14px;
  text-align: end;
}
.product-reviews .product-reviews-list-item {
  border-bottom: 1px solid #EDEDED;
  padding: 2rem 0;
}
.product-reviews .product-reviews-list-item:first-child {
  padding-top: 0;
}
.product-reviews .product-reviews-list-item-pros,
.product-reviews .product-reviews-list-item-cons {
  list-style: none;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}
.product-reviews .product-reviews-list-item-pros li,
.product-reviews .product-reviews-list-item-cons li {
  position: relative;
  padding-left: 1.75rem;
}
.product-reviews .product-reviews-list-item-pros li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2360AF6E' class='icon icon-tabler icons-tabler-filled icon-tabler-circle-plus'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M4.929 4.929a10 10 0 1 1 14.141 14.141a10 10 0 0 1 -14.14 -14.14zm8.071 4.071a1 1 0 1 0 -2 0v2h-2a1 1 0 1 0 0 2h2v2a1 1 0 1 0 2 0v-2h2a1 1 0 1 0 0 -2h-2v-2z' /%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
.product-reviews .product-reviews-list-item-cons li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_20_1323)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.92892 4.92899C5.85311 3.98108 6.95632 3.22611 8.17456 2.70788C9.3928 2.18965 10.7018 1.91847 12.0257 1.91008C13.3495 1.90169 14.6619 2.15626 15.8866 2.65901C17.1113 3.16176 18.224 3.90269 19.1601 4.83881C20.0962 5.77494 20.8372 6.88763 21.3399 8.11234C21.8427 9.33704 22.0972 10.6494 22.0888 11.9732C22.0804 13.2971 21.8093 14.6061 21.291 15.8244C20.7728 17.0426 20.0178 18.1458 19.0699 19.07C17.1839 20.8916 14.6579 21.8995 12.0359 21.8767C9.41394 21.8539 6.90582 20.8023 5.05174 18.9482C3.19765 17.0941 2.14596 14.586 2.12318 11.964C2.1004 9.34204 3.10834 6.81601 4.92992 4.92999L4.92892 4.92899ZM8.29281 11.2929C8.47932 11.1064 8.73191 11.0012 8.99555 11H15.0043C15.2679 11.0012 15.5205 11.1064 15.707 11.2929C15.8946 11.4804 15.9999 11.7348 15.9999 12C15.9999 12.2652 15.8946 12.5196 15.707 12.7071C15.5195 12.8946 15.2651 13 14.9999 13H12.9999V13H10.9999V13H8.99992C8.7347 13 8.48035 12.8946 8.29281 12.7071C8.10528 12.5196 7.99992 12.2652 7.99992 12C7.99992 11.7348 8.10528 11.4804 8.29281 11.2929Z' fill='%23F93A3A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_20_1323'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
}
.product-reviews .product-reviews-list-item .product-reviews-list-item-name {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}
.product-reviews .product-reviews-list-item .product-reviews-list-item-name h6 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.375rem;
  margin-bottom: 0;
  color: var(--text-color);
}
.product-reviews .product-reviews-list-item .product-reviews-list-item-name span {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  color: #919191;
}
.product-reviews .product-reviews-list-item .product-reviews-list-item-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.product-reviews .product-reviews-list-item .product-reviews-list-item-rating svg {
  width: 1.25rem;
  height: 1.25rem;
}




/**
 * 
 * Cart page
 * 
 */
.cart-summary {
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  padding: 2rem;
  border-radius: 1.5rem;
}
.cart-summary .cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.cart-summary hr {
  border-color: #E5E5E5 !important;
  opacity: 1;
}
.cart-table th,
.cart-table td {
  background: transparent;
  border-color: #E5E5E5;
  color: var(--text-color);
}
.cart-table .cart-product-image {
  position: relative;
  min-width: 96px;
  min-height: 96px;
  width: 96px;
  height: 96px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cart-table .cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-table .cart-product-title {
  color: var(--text-color);
}
.cart-table .cart-product-title h5 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: var(--text-color);
  text-decoration: none;
}
.cart-table thead th {
  font-weight: 500;
  padding: 1rem 0;
  color: var(--text-color);
}
.cart-table .cart-product-info {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #919191;
  font-size: 0.875rem;
}
.cart-table .cart-product-info li span {
  font-weight: 500;
  color: var(--text-color);
}


/**
 * 
 * Checkout page
 * 
 */
.delivery-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.delivery-methods .delivery-method-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.delivery-methods .delivery-method-item.form-check .form-check-input {
  margin-left: 1.5rem;
  margin-top: 0;
  position: absolute;
  left: 0;
}
.delivery-methods .delivery-method-item.form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  padding: 1.5rem 3.5rem;
  background: #F5F5F5;
  width: 100%;
}
.checkout-step {
  margin-bottom: 2rem;
}
.checkout-step:last-child {
  margin-bottom: 0;
}
.checkout-step .checkout-step-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.75rem;  
}
.checkout-step .checkout-form-bg {
  background: #F5F5F5;
  padding: 2rem 1rem 1.5rem;
  border-radius: 1.5rem;
  margin: 0 0.125rem;
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.payment-methods .payment-method-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.payment-methods .payment-method-item.form-check .form-check-input {
  margin-left: 1.5rem;
  margin-top: 0;
  position: absolute;
  left: 0;
}
.payment-methods .payment-method-item.form-check .form-check-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 1rem;
  padding: 1.5rem 3.5rem;
  background: #F5F5F5;
  width: 100%;
}




/**
 * 
 * Search page
 * 
 */
.search .search-header .search-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin: 1rem 0 2rem;
}
.search .search-header .search-title span {
  font-weight: 600;
}



/**
 * 
 * CMS page
 * 
 */
.cms a {
  color: var(--primary-color);
  transition: all 0.15s ease;
}
.cms a:hover,
.cms a:focus,
.cms a:active {
  color: #dfa61f;
}