@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Jolly+Lodger&display=swap');
body { font-family: "Barlow", sans-serif;font-weight: 300;color: var(--color-5);
      /* -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      touch-action: manipulation; */
    } 
.alt-font, h1, h2, h3, h4 {font-family: "Jolly Lodger", system-ui;line-height: 110%;}
.normal-font {font-family: "Barlow", sans-serif;}
.h-40 { height: 40px; }
.trim, h1, h2 {
    line-height: 1;
    display: inline-block;
}
.trim::before, h1::before, h2::before {
    margin-top: -5px;
}
.trim::before, .trim::after, h1::before, h1::after, h2::before, h2::after {
    content: '';
    display: block;
    height: 0;
}
.badge-cart {
    width: 18px;
    height: 18px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -5px !important;
    right: -5px !important;
}

.gap-uni-1 {gap: 10px;}

/*MAIN NAV*/
/* Fő konténer és színek */
.main-nav {
    font-weight: 300;
}

/* Navigációs linkek alapállapota */
.main-nav .nav-link {
    color: #ffffff !important;
    transition: all 0.2s ease-in-out;
    padding: 16px 10px;
}

.main-nav .nav-link:hover {
    color: #ffffff !important;
    background-color: var(--color-2);
}

/* Dropdown (almenü) stílusok */
.main-nav .dropdown-menu {
    background-color: var(--color-3) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 0;
}

.main-nav .dropdown-item {
    color: #ffffff !important;
    background: transparent;
    transition: background-color 0.2s;
}

/* Hover az almenüpontokon - Savage piros */
.main-nav .dropdown-item:hover {
    background-color: #bd0010 !important;
    color: #ffffff !important;
}

/* A legördülő nyíl színe (caret) */
.main-nav .dropdown-toggle::after {
    border-top-color: #ffffff;
}

/* Divider az almenüben */
.main-nav .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*HERO*/
.hero-section {min-height: 330px;}

.ticker-wrapper {
    width: 100%;
    white-space: nowrap;
    position: absolute;
    bottom: 56px; /* A kép aljára pozicionálva, ahogy a mintán */
    z-index: 10;
    text-transform: uppercase;
    font-weight: 500;
}

.ticker-content {
    display: inline-block;
}

.ticker-item {
    display: inline-block;
    padding-right: 50px; /* Távolság a feliratok között */
}

/*SVG mask*/
/* A megnövelt, ecset hatású maszk */
.savage-brush-mask-wrapper {
    display: inline-block;
    position: relative;
    width: 100%;
    /* Megnövelt maximális szélesség a képnek */
    max-width: 550px; 
    
    /* Új, részletesebb Inline SVG ecset maszk adatokkal */
    -webkit-mask-image: url('art/mask-shape-1.svg');
    mask-image: url('art/mask-shape-1.svg');
    
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.savage-brush-mask-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* Biztosítja, hogy a maszkolt területen belül maradjon a kép */
    transform: scale(1.05); 
}

/* Kis finomhangolás mobilon */
@media (max-width: 767.98px) {
    .savage-brush-mask-wrapper {
        max-width: 80%; /* Mobilon ne legyen túl nagy */
        margin-bottom: 2rem;
    }
}

/*SWIPER 1*/
/* Swiper méretezés */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kártya stílus */
.card-img {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Egyedi navigáció */
.swiper-button-prev-custom, 
.swiper-button-next-custom {
    cursor: pointer;
    color: white;
    transition: opacity 0.3s;
}

.swiper-button-prev-custom:hover, 
.swiper-button-next-custom:hover {
    opacity: 0.7;
}

/* Hogy ne vágja le a slidert a container */
@media (min-width: 992px) {
    .col-lg-8 {
        padding-right: 0;
    }
}

/*SHOP egyedi*/
/*shop pickers*/
.picker { display: flex; flex-wrap: wrap; }
.picker em:not(.colorClear):not(.sizeClear) {display:block;min-width:25px;height:25px;cursor:pointer;box-shadow:inset 0 0 0 2px #fff,0 0 0 1px #d3d3d3;margin-right:10px;margin-bottom:10px;opacity:.8;transition:all ease-in .2s;text-align:center}
.picker.disabled em { cursor: default!important; }
.picker em.color, .picker em.colorActive { border-radius: 2px; padding-left: 5px; padding-right: 5px; box-shadow: 0 0 0 2px #fff,0 0 0 3px rgba(0,0,0,.4)!important; opacity: 1!important; background-color: var(--color-0)!important; }
.picker em.size, .picker em.sizeActive { border-radius: 2px; padding-left: 5px; padding-right: 5px; box-shadow: 0 0 0 2px #fff,0 0 0 3px rgba(0,0,0,.4)!important; opacity: 1!important; background-color: var(--color-0)!important; }
em.size:hover, em.sizeClear:hover {
    box-shadow: 0 0 0 3px var(--color-0), 0 0 0 4px var(--color-1) !important;
}
.picker em.sizeActive {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0, 0, 0, .4) !important;
    opacity: 1 !important;
    background-color: var(--color-1) !important;
    color: #fff !important;
}
.animated-list ul { padding: 0; list-style: none; }
.animated-list ul li { padding: 0; }
.animated-list li a {text-decoration:none;position:relative;padding-bottom:5px;display:inline-block;color:var(--color-5);padding-left:24px}
/*.animated-list li a::after {content: '';position:absolute;width:0;height:2px;bottom:0;left:50%;background-color:currentColor;transition:all 0.3s ease-in-out; transform: translateX(-50%)}*/
/*.animated-list li a:hover::after, .animated-list li.current a::after {width:100%}*/
/*.animated-list li.current a {font-weight:bold}*/
.animated-list li a::before {content:"";position:absolute;left:0;top:0;width:18px;height:18px;border:solid 2px #000}
.animated-list li.current a:before {background-color:var(--color-5);content:"\2714";display:flex;justify-content:center;align-items:center;color:#fff;font-size:14px}
.webshopSizes em { margin: 6px 0; }
.webshopSizes .sep { display: none!important; }
.sizeClear { border-radius: 2px; padding-left: 5px; padding-right: 5px; box-shadow: 0 0 0 2px rgba(255, 255, 255, 1),0 0 0 3px rgba(0, 0, 0, .4)!important; opacity: 1!important; background-color: var(--color-0)!important; min-width: 25px; height: 25px; cursor: pointer; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 1),0 0 0 1px #d3d3d3; margin-right: 10px; opacity: .8; transition: all ease-in .2s; text-align: center; margin-right: 10px!important; }
.colorClear, .sizeClear { cursor: pointer; }
.colorClear:before, .sizeClear:before { content: 'alles'; font-style: normal; }
.osc-cart-free-shipping p { color: #122a54; font-size: 18px!important; font-weight: 600!important; }
header .btn.cart {overflow:visible}
.otherPhotos {display:flex;flex-wrap:wrap}
.otherPhotos > a {flex:0 0 33.333%;width:33.333%;aspect-ratio:6/9}
.otherPhotos > a img {object-fit:cover;object-position:center;width:100%;height:100% !important; }
.otherPhotos a {padding-right: 16px;}
.otherPhotos a:last-child {padding-right:0}
.breadcrumb .active {color:var(--color-6)}
.breadcrumb-item + .breadcrumb-item:before {color:var(--color-6)}
table.table .time-col {width:1%;white-space:nowrap; min-width: 140px}
table.table .time-col + td {padding-left:50px}
#main-navigation .navbar-nav {overflow:visible !important;max-height:calc(100vh - 137px)}
#results, #cartContent, #chain, #regFormContent, #cartItems, .cartCheckout main > form {max-width:1320px;margin:0 auto !important;padding:50px 15px}
.adding .btn-danger {margin-bottom:15px}
#os-checkout .title h1 {font-size:32px}
#os-checkout .title h2 {color:var(--color-2) !important;margin-bottom:18px !important;font-size:28px}
#os-checkout .title h4 {color:var(--color-2) !important;margin-bottom:18px !important;font-size:26px}

.navbar {
    --bs-navbar-nav-link-padding-x: 16px;
}

/*shop messages*/
.dialog { display: none; position: fixed; z-index: 999910; left: 50%; top: 50%; width: 100%; max-width: 480px; transform: translate(-50%,-50%); box-shadow: 0 0 0 4800px rgba(0,0,0,.75); }

/*NAV LINK*/
/* Az aláhúzás effekt alapja */
.hover-underline a {
    position: relative;
    display: inline-block; /* Fontos, hogy az aláhúzás csak a szöveg alatt legyen */
    width: fit-content;
}

.hover-underline a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; /* Az aláhúzás vastagsága */
    bottom: -2px; /* Távolság a szövegtől */
    left: 0;
    background-color: currentColor; /* Automatikusan átveszi a szöveg színét */
    transition: width 0.3s cubic-bezier(0.6, 0, 0.2, 1); /* Az animáció sebessége és típusa */
}

.hover-underline a:hover::after {
    width: 100%; /* Balról jobbra kinyúlik */
}

/* OSC */
.osc-cart-card-title h3 { font-size: 24px !important; }
.osc-cart-quantity input {background-color: #0C1A36;}
#os-checkout .os-label, #os-checkout .os-label > * {margin-bottom: 8px;}

/* blocks */
.data-day { font-weight: bold; margin-bottom: 10px; }
.swiper-shop .card-body h3 { min-height: 60px; }

/* rooster */
.schedule-filter-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.schedule-filter-icon {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 768px) {
  .schedule-filter-toggle {
    cursor: default;
  }

  .schedule-filter-icon {
    display: none;
  }

  .js-schedule-days,
  .js-schedule-sports {
    display: block !important;
  }
}

/* YouTube Background Hero */
.youtube-bg-hero {
    min-height: 500px;
    height: 80vh;
}
.youtube-bg-hero.ar-144-50 { aspect-ratio: unset !important;}

.youtube-bg-hero__video {
    z-index: 0;
    pointer-events: none;
}

.youtube-bg-hero__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.youtube-bg-hero__overlay {
    z-index: 1;
    /* background: rgba(0, 0, 0, 0.35); */
}

.youtube-bg-hero > .container {
    z-index: 2;
}

.hero-section.ticker { min-height: auto; height: 43px; }
.hero-section.ticker .ticker-wrapper { bottom: 0 !important; }   

@media (max-width: 1399px) {
#results, #cartContent, #chain, #regFormContent, #cartItems {max-width:1140px}
}
@media (max-width: 1199px) {
#results, #cartContent, #chain, #regFormContent, #cartItems {max-width:960px}
.navbar {--bs-navbar-nav-link-padding-x: 10px;}
}
@media (max-width: 992px) {
#results, #cartContent, #chain, #regFormContent, #cartItems {max-width:720px}
}
@media (max-width: 768px) {
#results, #cartContent, #chain, #regFormContent, #cartItems {max-width:540px}

}
@media (max-width: 576px) {
#results, #cartContent, #chain, #regFormContent, #cartItems {max-width:auto}
.btn {font-size:14px}
.btn {padding:4px 10px}
.hero-section {min-height: 330px;    aspect-ratio: auto !important;}
table.table .time-col, table.table .data-sport { width:100%; display:block; padding-left:0 !important; }
table.table .time-col { font-size:18px }
.data-day { margin-bottom: 10px; display: block; }
}
