@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

:root {
  --color-primary: #f5b51b;
  --color-primary-hover: #ffd15c;
  --color-primary-text: #111111;
  --color-primary-text-hover: #000000;
  --bg-image: url("https://template-assets.tebex.io/images/page-bg.jpg");
}

/* ===== ALAPOLDAL ===== */

body {
  font-family: "Lato", sans-serif;
  color: #f5f5f5;
  background:
    radial-gradient(
      circle at top,
      rgba(245, 181, 27, 0.08),
      transparent 35%
    ),
    #050505;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 520px;
  z-index: -1;
  background: var(--bg-image) center center / cover no-repeat;
  opacity: 0.68;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    transparent 100%
  );
  pointer-events: none;
}

/* ===== FEJLÉC ===== */

.site-header-inner {
  min-height: 310px;
  padding: 30px;
  position: relative;
}

.site-title {
  margin: 0;
}

.site-title a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-title img {
  display: block;
  width: min(420px, 75vw);
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.9));
}

/* ===== SZERVER ÉS DISCORD ===== */

.site-header-inner .info {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.86);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.site-header-inner .info .image {
  border-radius: 8px;
}

/* ===== GOMBOK ===== */

.btn-primary,
.btn-secondary,
.btn-tertiary {
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-tertiary:hover,
.btn-tertiary:focus {
  transform: translateY(-2px);
}

.btn-primary {
  box-shadow: 0 5px 18px rgba(245, 181, 27, 0.22);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 7px 22px rgba(245, 181, 27, 0.32);
}

.user-actions,
.log-in {
  position: relative;
  z-index: 5;
}

/* ===== NAVIGÁCIÓ ===== */

.navigation-horizontal > ul {
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(245, 181, 27, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.navigation-horizontal .has-children > ul {
  border: 1px solid rgba(245, 181, 27, 0.18);
  border-radius: 10px;
  background: rgba(14, 14, 14, 0.98);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* ===== KÖZÖS DOBOZOK ===== */

.widget,
.store-text,
.category-description,
.store-product-full,
.store-products-list .store-product,
.store-products-images .store-product,
.store-category-tiered,
.no-products {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(24, 24, 24, 0.96),
    rgba(12, 12, 12, 0.96)
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ===== FŐOLDALI KATEGÓRIÁK ===== */

.site-home-categories .category {
  padding: 22px var(--widget-padding);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(24, 24, 24, 0.96),
    rgba(12, 12, 12, 0.96)
  );
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-home-categories .category:hover {
  color: var(--color-primary);
  transform: translateY(-4px);
  border-color: rgba(245, 181, 27, 0.55);
  box-shadow: 0 15px 35px rgba(245, 181, 27, 0.1);
}

/* ===== OLDALSZÖVEG ===== */

.store-text {
  padding: 28px;
}

.store-text h1,
.store-text h2,
.store-text h3,
.store-text h4,
.store-text h5,
.store-text h6 {
  color: #ffffff;
  text-align: left;
}

.store-text p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

/* ===== TERMÉKEK ===== */

.store-products-list .store-product,
.store-products-images .store-product {
  overflow: hidden;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.store-products-list .store-product:hover,
.store-products-images .store-product:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 27, 0.55);
  box-shadow: 0 15px 35px rgba(245, 181, 27, 0.1);
}

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

.store-product .quantity-field {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.store-product .quantity-field input[type="number"] {
  border: none;
  background: transparent;
}

.quantity-field {
  border-radius: 8px;
}

.store-product-full {
  overflow: hidden;
}

/* ===== KATEGÓRIA ===== */

.category-description {
  padding: 24px;
}

.store-category-tiered {
  overflow: hidden;
}

.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: left;
}

.store-product-tiered {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
}

/* ===== OLDALSÁV ===== */

.widget {
  overflow: hidden;
}

.widget-title {
  margin: 0;
  padding-bottom: 12px;
  color: #ffffff;
  text-align: left;
  border-bottom: 1px solid rgba(245, 181, 27, 0.2);
}

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

.widget-gift-card .gift-card-input {
  border-radius: 8px;
}

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

/* ===== CÉLOK ÉS FOLYAMATJELZŐK ===== */

.widget-community-goal .progress,
.widget-goal .progress {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.widget-community-goal .progress-bar,
.widget-goal .progress-bar {
  border-radius: 8px;
  background: var(--color-primary);
}

/* ===== ÜRES KATEGÓRIA ===== */

.no-products {
  padding: 28px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

/* ===== KÉPGALÉRIA ===== */

.media-slider .slider,
.media-slider .thumb {
  border-radius: 10px;
}

.media-slider .open-lightbox {
  border-radius: 8px;
}

.popup.popup-media-slider .thumb {
  border-radius: 8px;
}

.popup.popup-media-slider .popup-close {
  border-radius: 8px;
}

/* ===== FELUGRÓ ABLAKOK ===== */

.popup-content {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #111111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
}

.popup-close {
  border-radius: 0 12px 0 8px;
}

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

/* ===== KOSÁR ===== */

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

.basket-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.basket-item .quantity {
  border-radius: 6px;
}

/* ===== ÉRTESÍTÉS ===== */

.toast {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.toast-close {
  border-radius: 6px;
}

/* ===== AKCIÓS SÁV ===== */

.site-sale-banner {
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ===== ÁLTALÁNOS SZÖVEGEK ===== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ffffff;
}

p {
  line-height: 1.6;
}

a {
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary);
}

/* ===== ASZTALI NÉZET ===== */

@media (width > 960px) {
  .navigation-horizontal > ul {
    border-radius: 10px;
  }
}

/* ===== MOBILNÉZET ===== */

@media (width <= 960px) {
  .site-header-inner {
    min-height: 230px;
    padding: 20px;
  }

  .site-title img {
    width: min(300px, 72vw);
    max-height: 140px;
  }

  .widget.site-navigation {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .store-text,
  .category-description {
    padding: 20px;
  }
}

/* ===== TERMÉKKÉPEK MÉRETE ===== */

.mystic-product-grid .store-product > .image-link {
  display: flex !important;
  width: 100% !important;
  height: 180px !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.mystic-product-grid .store-product > .image-link > img.image {
  display: block !important;
  width: 220px !important;
  height: auto !important;
  max-width: 220px !important;
  max-height: 165px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  transform: none !important;
}

/* Mobilon valamivel kisebb képek */
@media (width <= 700px) {
  .mystic-product-grid .store-product > .image-link {
    height: 150px !important;
  }

  .mystic-product-grid .store-product > .image-link > img.image {
    width: 180px !important;
    max-width: 180px !important;
    max-height: 140px !important;
  }
}