@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color-primary: #41C4C3;
  --bg-image: url("https://res.cloudinary.com/dnbeesybs/image/upload/v1748844030/efsesefsf_jxb3iy.webp");
}

body {
  font-family: Lato, sans-serif;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
  z-index: -1;
  background: var(--bg-image) center center/cover no-repeat;
  mask-image: linear-gradient(rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: var(--radius-full);
}

.btn-primary:hover, .btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 6px rgb(from var(--btn-color-bg-hover) r g b/0.6);
}

.quantity-field {
  border-radius: var(--radius-medium);
}

.site-header-inner .info .image {
  border-radius: var(--radius-medium);
}
.site-header-inner .user-name ul li {
  overflow: hidden;
}
.site-header-inner .user-name ul li:first-child {
  border-top-left-radius: var(--radius-small);
  border-top-right-radius: var(--radius-small);
}
.site-header-inner .user-name ul li:last-child {
  border-bottom-left-radius: var(--radius-small);
  border-bottom-right-radius: var(--radius-small);
}

@keyframes sale-glow {
  from {
    box-shadow: 0 0 15px color-mix(in srgb, var(--color-primary) 30%, transparent);
  }
  to {
    box-shadow: 0 0 30px color-mix(in srgb, var(--color-primary) 50%, transparent);
  }
}

.site-sale-banner {
  border-radius: var(--radius-large);
  backdrop-filter: blur(10px);
  background: linear-gradient(45deg, color-mix(in srgb, var(--color-primary) 90%, #fff) 0%, var(--color-primary) 100%);
  color: var(--color-primary-text);
  animation: sale-glow 2.5s infinite alternate;
  border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
}

.site-home-categories .category {
  transition: color 0.15s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-home-categories .category:hover {
  color: var(--color-primary);
}


.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  text-align: center;
}


.store-products-images .store-product {
  text-align: center;
}

.widget-title {
  text-align: center;
}

.widget .store-product {
  text-align: center;
}

.no-products {
  color: var(--color-text-secondary);
  background: transparent;
  border-radius: var(--radius-large);
  border: 1px solid var(--color-glass-border);
  backdrop-filter: blur(10px);
}


.store-product .quantity-field {
  border-radius: var(--radius-medium);
  background: var(--color-glass-bg);
}
.store-product .quantity-field input[type=number] {
  border: none;
}

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: var(--radius-large);
  }
}
.navigation-horizontal .has-children > ul {
  border-radius: var(--radius-medium);
}

@media (width <= 960px) {
  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
  }
}

.widget-gift-card .gift-card-input {
  border-radius: var(--radius-small);
}

.widget-top-donator .avatar {
  border-radius: 50%;
}

.widget-community-goal .progress,
.widget-goal .progress {
  border-radius: var(--radius-full);
}
.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: var(--radius-full);
}

.popup-content {
  border-radius: var(--radius-large);
}

.popup-close {
  border-radius: 0 var(--radius-medium) 0 var(--radius-medium);
}

.basket-popup-content,
.basket-popup-content .popup-close {
  border-radius: 0;
}

.basket-items {
  padding: var(--widget-padding) calc(var(--content-padding) - var(--widget-padding));
}

.basket-item {
  border-radius: var(--radius-medium);
}
.basket-item .quantity {
  border-radius: var(--radius-small);
}

.toast {
  border-radius: var(--radius-medium);
  backdrop-filter: blur(10px);
}

.toast-close {
  border-radius: var(--radius-small);
}


.store-category-tiered-header h1,
.store-category-tiered-header h2,
.store-category-tiered-header h3,
.store-category-tiered-header h4,
.store-category-tiered-header h5,
.store-category-tiered-header h6 {
  text-align: center;
}

.store-product-tiered {
  border-radius: var(--radius-large);
  background: transparent;
}