@charset "utf-8";

@font-face {
	font-family: "ACBrieLight";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/ACBrieLight.woff") format("woff");
}
@font-face {
	font-family: "RobotoThin";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/Roboto-Thin.woff") format("woff");
}
@font-face {
	font-family: "RobotoCondLight";
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/RobotoCondensed-Light.woff") format("woff");
}
:root {
	--black: #1B1B1B;
	--green: #6fe409;
	--greenLight: #bbe597;
	--white: #fffaff;
}
/* reset/default rules */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, acronym, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, label, legend, table, caption, tbody, thead, tr, th, td {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img, :link img, :visited img {
	border: 0;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
}
a, .inputbox {
	outline-width:0;
}
a {
	transition: all 0.3s ease;
	text-decoration: none;
	color: var(--green);
}
a:hover {
	text-decoration: none;
}
p {
	margin-bottom: 14px;
}
body {
	max-width: 1920px;
	margin:0px auto;
	padding:0px;
	height:100%;
	font-family: RobotoThin;
	font-size: 22px;
	letter-spacing: -0.25px;
	color: var(--white);
	background-color: var(--black);
	position: relative;
}
html {
	height:100%;
	width:100%;
}
.innerBlock{
	max-width: 1400px;
	margin: 0 auto;
	border-bottom: 0;
	padding: 0 40px;
}
/* /reset/general rules */

/*---------------------------------------------------------------------------------------*/

/* base typography */
h1{
	font-size: clamp(1.8em, 4vw, 2.5em);
}
h2{ font-size: 1.6em }
h3{ font-size: 1.4em }
h4{ font-size: 1.3em }
h5{ font-size: 1.2em }
h6{ font-size: 1em }
/* /base typography */

/* Buttons */
.button {
	position: relative;
	display: inline-block;
	padding: 10px 30px;
	font-size: 1.1em;
	font-weight: bold;
	border: 2px solid var(--green);
	border-radius: 100px;
	font-family: sans-serif;
	margin-top: 30px;
	cursor: pointer;
	color: var(--green);
	text-decoration: none;
	transition: padding-right 0.3s ease;
	overflow: hidden;
	font-family: ACBrieLight;
	transition: all .7s ease;
}
.button:hover {
	padding-right: 60px;
	transition: all .2s ease;
}
.button:hover .icon-wrapper {
	transform: translateY(-50%);
	opacity: 1;
}
.icon-wrapper {
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s ease, opacity 0.4s ease;
}

@keyframes flyAway {
	from {
		transform: translateY(-50%);
		opacity: 1;
	}
	to {
		transform: translateY(-200%);
		opacity: 0;
	}
}
/* /Buttons */

/* Header */
.header {
	position: fixed;
	background: rgba(27, 27, 27, .9);
	width: 100%;
	max-height: 150px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	z-index: 10;
}
.headerCont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

 /* Breadcrumbs */
.breadcrumbs {
 	padding: 10px 0;
 	font-size: .8em;
 	letter-spacing: .5px;
 	font-family: ACBrieLight;
 }
.breadcrumbs .divider {
  color: var(--green);
  margin-left: -5px;
}
 /* /Breadcrumbs */

/* Logo */
.logo img {
	width: 90px;
}
/* /Logo */

/* Menu */
.mainMenu ul.nav {
  display: flex;
  gap: 0 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mainMenu ul.nav li a {
  padding: 10px 20px;
  font-size: 1.1em;
  font-weight: bold;
  border: 2px solid transparent;
  border-radius: 100px;
  font-family: ACBrieLight;
  text-decoration: none;
  display: block;
}
.mainMenu ul.nav li a:hover {
  border: 2px solid var(--green);
  border-radius: 100px;
}
/* Κουμπί hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  padding: 10px;
  cursor: pointer;
  color: var(--white);
}

/* RESPONSIVE ΣΤΑ 768px */
@media (max-width: 768px) {
  .mainMenu {
    position: relative;
  }
  .menu-toggle {
    display: block;
  }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
.mainMenu ul.nav {
  flex-direction: column;
  gap: 10px 0;
  display: none;
  background: var(--white);
  position: absolute;
  top: 70px;
  left: -100px;
  right: -50px;
  z-index: 1000;
  padding: 10px;
  border-top: 1px solid var(--green);
  border-radius: 20px 0 0 20px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.mainMenu ul.nav.show {
  display: flex;
  animation: slideIn 0.3s forwards;
}
.mainMenu ul.nav.hide {
  animation: slideOut 0.3s forwards;
}
.mainMenu ul.nav.show li a {
	color: var(--green);
}
}
/* /Menu */
/* /Header */

.hero,
.top1,
.top2,
.top3,
.top4,
.top5,
.top6 {
	border-bottom: 1px dashed rgba(111, 228, 9, .2);
}

/* Hero */
.heroCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0 40px;
}
.text {
	flex: 1 400px;
	z-index: 5;
	position: relative;
	padding: 0 20px 0 40px;
}
.text h1 {
	position: absolute;
	animation: h1slide .5s ease forwards;
	animation-delay: 1s;
	opacity: 0;
}
@keyframes h1slide {
	from {
		top: 100%;
		opacity: 0;
	}
	to {
		top: -120%;
		opacity: 1;
	}
}
.typewriter {
	overflow: hidden;
	white-space: nowrap;
	font-family: ACBrieLight;
	font-size: 3em;
	margin-top: -30px;
	color: var(--green);
	width: 0;
	animation: typing 1s steps(12) forwards;
	animation-delay: 1.5s;
}

@keyframes typing {
	from { width: 0 }
	to { width: 12ch }
}
.text p {
	position: absolute;
	animation: slideUp .5s ease forwards;
	animation-delay: 2.2s;
	opacity: 0;
	font-size: 1.2em;
}
.text p span {
	color: var(--green);
}
@keyframes slideUp {
	from {
		top: 100%;
		opacity: 0;
	}
	to {
		top: 90%;
		opacity: 1;
	}
}
.socialIcons {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
}
.hero .socialIcons {
	position: absolute;
	animation: slideDown .5s ease forwards;
	animation-delay: 2.4s;
	opacity: 0;
}
@keyframes slideDown {
	from {
		bottom: -150%;
		opacity: 0;
	}
	to {
		bottom: -260%;
		opacity: 1;
	}
}
.socialIcons a i {
	font-size: 1.5em;
	transition: all .3s ease;
}
.socialIcons a:hover i {
	color: var(--greenLight);
}
.animation {
	flex: 1 400px;
	position: relative;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.background {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/abstract.png') no-repeat center/contain;
	z-index: 0;
}

.screen-container {
	position: relative;
	width: 400px;
	height: auto;
	top: 15%;
	left: 5%;
	transform: translateY(0);
	animation: screenEnter .3s ease forwards;
	animation-delay: 0.2s;
	z-index: 2;
	opacity: 0;
}

.screen {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}
/* Icons */
.screen-container .icon {
	position: absolute;
	width: 120px;
	opacity: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	z-index: 1;
}

/* Διαφορετικά animations για να πάνε στην σωστή θέση */
.icon-1 {
	animation: moveIcon1 .3s forwards;
	animation-delay: .3s;
}
.icon-2 {
	animation: moveIcon2 .3s forwards;
	animation-delay: .4s;
}
.icon-3 {
	animation: moveIcon3 .3s forwards;
	animation-delay: .5s;
}
.icon-4 {
	animation: moveIcon4 .3s forwards;
	animation-delay: .6s;
}
.icon-5 {
	animation: moveIcon5 .3s forwards;
	animation-delay: .7s;
}

/* Animation εμφάνισης της οθόνης */
@keyframes screenEnter {
	to {
		top: 50%;
		transform: translateY(-70%);
		opacity: 1;
	}
}

/* Τελικές σωστές θέσεις για τα icons */
@keyframes moveIcon1 { /* Gears */
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 1;
		top: -80px;  /* πάνω */
		left: 75%;   /* πάνω δεξιά της οθόνης */
		transform: translate(-50%, -20%) scale(1);
	}
}

@keyframes moveIcon2 { /* Ranking */
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 1;
		top: -100px; /* πάνω */
		left: 50%;   /* πάνω κέντρο λίγο αριστερά */
		transform: translate(-80%, -5%) scale(1);
	}
}

@keyframes moveIcon3 { /* Window */
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 1;
		top: -80px;  /* πάνω */
		left: 20%;   /* πάνω αριστερά */
		transform: translate(-100%, -10%) scale(1);
	}
}

@keyframes moveIcon4 { /* Diagram */
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 1;
		top: 20%;    /* αριστερά επάνω */
		left: -80px;
		transform: translate(-30%, -10%) scale(1);
	}
}

@keyframes moveIcon5 { /* UI */
	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0);
	}
	100% {
		opacity: 1;
		top: 75%;    /* αριστερά χαμηλά */
		left: -80px;
		transform: translate(-30%, -60%) scale(1);
	}
}
@media (max-width: 768px) {
  .heroCont {
    flex-direction: column;
    padding: 40px 20px 20px;
    min-height: auto;
  }

  .text {
	  padding: 0 10px;
	  text-align: center;
	  order: 2;
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 10px;
	}
  .text h1 {
    position: static;
    animation: none;
    opacity: 1;
    margin-bottom: 10px;
  }

  .typewriter {
	  font-size: 2em;
	  margin: 0 auto; /* Κέντρο */
	  width: 0;
	  white-space: nowrap;
	  overflow: hidden;
	  animation: typingMobile 1.2s steps(12) forwards;
	  animation-delay: 1.2s;
	  color: var(--green);
	  text-align: center;
	}
	@keyframes typingMobile {
	  from { width: 0; }
	  to { width: 12ch; }
	}
  .text p {
    position: static;
    animation: none;
    opacity: 1;
    margin-top: 10px;
    font-size: 1em;
  }

  .hero .socialIcons {
    position: static;
    animation: none;
    opacity: 1;
    justify-content: center;
    margin-top: 20px;
  }

  .animation {
    height: auto;
    order: 1;
    margin-bottom: 20px;
  }

  .screen-container {
    width: 100%;
    max-width: 300px;
    top: auto;
    left: auto;
    transform: none;
    animation: none;
    opacity: 1;
  }

  .screen {
    width: 100%;
  }

  .screen-container .icon {
    display: none; /* Απόκρυψη icons σε mobile για ευκολία */
  }
}

/* /Hero */

/* Top 1 - About*/
.aboutCont {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	min-height: 100vh;
	overflow: hidden;
}
.backgroundVideo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(27, 27, 27, 0.98);
	z-index: 2;
}
.aboutBlock {
	position: relative;
	z-index: 3;
	flex: 1 550px;
	padding: 0 60px;
}
.aboutBlock.photo {
	text-align: center;
}
.aboutBlock img {
	width: 70%;
}
.aboutBlock h1 {
	font-family: ACBrieLight;
	color: var(--green);
}
.aboutBlock .aboutTextPar {
	padding: 40px 0 0;
}
.aboutBlock p i {
	color: var(--green);
}
/* /Top 1 - About*/


/* Top 2 Services */
.services {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px 40px;
	min-height: 100vh;
}
.services h1 {
	font-family: ACBrieLight;
	color: var(--green);
}
.serviceCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	padding: 60px 0;
}
.service {
	flex: 1 200px;
	text-align: center;
	padding: 40px 20px;
	border: 2px solid var(--green);
	border-radius: 20px;
}
.serviceIcon {
	margin-bottom: 20px;
}
.serviceIcon i {
	font-size: 2em;
	color: var(--green);
}
.serviceContent h3 {
	font-family: ACBrieLight;
	color: var(--greenLight);
	margin-bottom: 20px;
	font-weight: bold;
}
.serviceContent p {
	font-size: .8em;
}

@media (max-width: 1024px) {
	.service {
		flex: 1 400px;
	}
}
/* /Top 2 Services */

/* Top 3 Projects */
.moduleItemHeader {
  position: relative;
  overflow: hidden;
  width: 100%;
  font-family: ACBrielight;
  color: var(--green);
}
.moduleItemHeader h1 {
  padding: 10px 0;
}
.moduleItemHeader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--green);
  width: var(--underline-width, 0%);
  transition: width 0.6s ease-in-out;
}
.k2ItemsBlock {
	padding: 80px 40px;
	min-height: 100vh;
}
.cardsContainer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 0 20px;
}
.cardsCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	flex: 1;
	gap: 20px;
}
.cardBlock {
	flex: 1 220px;
	perspective: 1000px;
	transition: opacity 0.5s ease;
}
.cardInner {
	width: 100%;
	height: 100%;
	position: relative;
	transition: transform 0.5s;
	transform-style: preserve-3d;
}
.cardBlock:hover .cardInner {
	transform: rotateY(180deg);
}
.cardFront, .cardBack {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	border: 2px solid var(--greenLight);
	border-radius: 10px;
	top: 0;
}
.cardFront {
	position: relative;
}
.cardFront.moduleItemImage {
	margin-bottom: -10px;
}
.cardFront img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: -10px;
}
.cardBack {
	transform: rotateY(180deg);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cardBackInner {
	display: flex;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8);
	height: 100%;
	backdrop-filter: blur(50px);
	border-radius: 10px;
	flex-direction: column;
	justify-content: space-around;
}
.cardBackInnerText {
	color: #fffaff;
	font-size: clamp(14px, 1.3vw, .9em);
	font-weight: bold;
	padding: 20px;
}
.moduleItemTitle {
	color: var(--green);
	font-family: ACBrielight;
	font-weight: bold;
	font-size: clamp(14px, 1.5vw, 1.2em);
	padding: 10px 0;
}
.buttonCont {
	text-align: center;
}

@media (max-width: 1024px) {
	.cardBlock {
		flex: 0 400px;
	}
	.moduleItemTitle,
	.cardBackInnerText {
		font-size: 120%;
	}
	.cardBackInner a.button {
		font-size: 1em;
	}
}
@media (min-width: 1025px) and (max-width: 1366px) {
	.cardBackInner a.button {
		font-size: 0.75em;
	}
}
/* /Top 3 Projects */


/* K2 Modifications */
/* Item View Shorts */
.itemView {
	padding: 160px 0 60px;
	position: relative;
}
.shortsCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}
.shortsBlock:first-child {
	flex: 0 420px;
}
.shortsBlock {
	flex: 1;
}
.shortsBlock.video {
	position: sticky;
	top: 160px;
}
.shortsBlock h2, .packsCont h2 {
	font-family: ACBrieLight;
	color: var(--green);
	border-bottom: 1px solid var(--greenLight);
	/*margin-bottom: 20px;*/
	padding-bottom: 10px;
	font-weight: bold;
}
.itemVideoBlock {
	border: 2px solid var(--greenLight);
	border-radius: 20px;
	overflow: hidden;
}
.itemTagsBlock {
	/*border-top: 1px solid var(--greenLight);
	margin-top: 26px;*/
	padding: 10px 0;
}
.itemTagsBlock ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.itemTagsBlock ul li {
	list-style: none;
}
.itemTagsBlock ul li:before {
	content: '#';
	margin-right: 0px;
	color: var(--green);
}
.itemFullText {
	border-bottom: 1px solid var(--greenLight);
	padding-bottom: 5px;
}
.itemFullText ul {
	list-style: disc;
	margin: 0 0 20px 30px;
}
.itemFullText ul li::marker {
	color: var(--greenLight);
}
.avPlayerWrapper,
.avPlayerContainer,
.avPlayerBlock {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	max-width: 100%;
	height: auto !important;
}
.avPlayer {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover; /* ή contain */
}

@media (min-width: 480px) and (max-width: 768px) {
	.shortsBlock:first-child {
		flex: 1 100%;
	}
	.avPlayerWrapper,
	.avPlayerContainer,
	.avPlayerBlock {
		width: 75%;
		height: 100%!important;
	}
}
/* /Item View Shorts */

/* Item Views Shorts Extrafields */
.zc-product-wrap {
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-bg: rgba(201, 168, 76, 0.08);
    --dark-2: #242424;
    --dark-3: #2e2e2e;
    --text: #e8e8e8;
    --text-muted: #999;
    --radius: 14px;
    /*font-family: 'DM Sans', sans-serif;*/
    color: var(--white);
    margin: 28px auto;
}
.zc-badge {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		background: var(--dark-2);
		border: 1px solid var(--green);
		border-radius: 50px;
		padding: 6px 14px;
		font-size: .65em;
		font-weight: 600;
		color: var(--green);
		letter-spacing: 0.04em;
		text-transform: uppercase;
		margin-bottom: 28px;
}
.zc-badge .dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: zcPulse 2s infinite;
}
@keyframes zcPulse {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:.5;transform:scale(.7)}
}
.zc-works-label {
    font-size: .6em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.zc-works-platforms {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.zc-platform-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: border-color .2s;
}
.zc-platform-pill:hover {
		border-color: var(--gold);
}
.zc-included {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
}
.zc-included-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin: 0 0 18px;
}
.zc-included-list {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 13px;
}
.zc-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: .7em;
    line-height: 1.5;
    color: #ccc;
}
.zc-included-list li .icon {
    width: 20px; height: 20px;
    background: var(--greenLight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--black);
}
.zc-included-list li .icon svg { width: 11px; height: 11px; }
.zc-compat {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.zc-compat-text {
		font-size: .7em; color: var(--text-muted);
}
.zc-compat-text strong {
		color: var(--text); font-weight: 500;
}
.zc-compat-tags {
		display: flex; gap: 7px;
}
.zc-compat-tag {
    background: var(--dark-3);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .7em;
    font-weight: 600;
    color: var(--greenLight);
}
.zc-pricing-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, #1e1e1e 100%);
    border: 1px solid rgba(111,228,9,0.25);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    overflow: hidden;
}
.zc-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.zc-pricing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.zc-price-block {
		display: flex; align-items: baseline; gap: 6px;
}
.zc-price {
		font-family: ACBrieLight;
		font-size: 36px;
		font-weight: 700;
		color: var(--green);
		line-height: 1;
		display: inline-flex;
}
.zc-price i {
		margin-left: -3px;
		font-size: 20px;
		margin-top: 0px;
}
.zc-price-note {
		font-size: .7em; color: var(--text-muted);
}
.zc-one-time {
		font-size: .7em;
		background: var(--dark-3);
		color: var(--greenLight);
		border: 1px solid rgba(111,228,9,0.25);
		border-radius: 50px;
		padding: 4px 12px;
		font-weight: 500;
}
.zc-pricing-divider {
		height: 1px; background: var(--dark-3); margin: 0 0 10px;
}
.zc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #111 !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none !important;
    transition: opacity .2s, transform .15s;
    margin-bottom: 14px;
    box-sizing: border-box;
}
.zc-btn:hover { opacity: .92; transform: translateY(-1px); }
.zc-guarantee {
    text-align: center;
    font-size: .7em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
}
@media (max-width: 800px) {
		.innerBlock {
			padding: 0 20px;
		}
    .shortsBlock.video {
    	position: relative;
    	top: 0;
    }
}
/* Item Views Shorts Extrafields */

/* Category Item View */
#itemListPrimary {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 160px 0 60px;
}
.itemContainer {
	flex: 0 360px;
	margin: 20px;
}
.catItemImageBlock img {
	width: 100%;
}
.catItemView  {
	position: relative;
	overflow: hidden;
	border: 2px solid var(--greenLight);
	border-radius: 20px;
}
.catItemOverlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(255,255,255,0) 100%);
	transition: height .3s ease;
	z-index: 2;
	pointer-events: none;
}
.catItemView:hover .catItemOverlay {
	height: 45%;
}
.textCont {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 10px 20px;
	z-index: 2;
}
.catItemTitle {
	font-family: ACBrieLight;
	color: var(--green);
	font-size: 1.2em;
	margin-bottom: 20px;
	font-weight: bold;
}
.catItemIntroText {
	font-size: clamp(.7em, 1.2vw, .8em);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.catItemReadMore {
	text-align: center;
	font-size: .8em;
}
@media (max-width: 1024px) {
	.itemContainer {
		flex: 0 270px;
	}
	.textCont {
		height: 65%;
	}
}
/* /Category Item View */

/* Item View Packs */
.packsCont {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}
.packsHeroImage {
	max-width: 1200px;
	border: 2px solid var(--greenLight);
	border-radius: 20px;
	overflow: hidden;
	margin: 0 auto 40px
}
.packsHeroImage img {
	width: 100%;
	height: 500px;
	display: block;
	object-fit: cover;
}
/* /Item View Packs */

/* Category Item View Packs - 3 per row */
#itemListPrimary:has(.packCatItem) .itemContainer {
	flex: 0 calc(33.33% - 40px);
}
.packCatItem .catItemImageBlock {
	height: 260px;
	overflow: hidden;
}
.packCatItem .catItemImageBlock img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.packCatItem .textCont {
	height: 58%;
	width: 100%;
}
.packCatItem .catItemTitle {
	margin-bottom: 10px;
}
@media (max-width: 1200px) {
	#itemListPrimary:has(.packCatItem) .itemContainer {
		flex: 0 calc(50% - 40px);
	}
}
@media (max-width: 700px) {
	#itemListPrimary:has(.packCatItem) .itemContainer {
		flex: 0 100%;
		margin: 10px 0;
	}
	.packsCont {
		padding: 0 20px;
	}
}
/* /Category Item View Packs */

/* Pagination */
/* Βασικά styles */
.k2Pagination ul  {
	display: flex;
	justify-content: center;
	list-style: none;
	padding: 1rem 0 60px;
	gap: 0.5rem;
}
.k2Pagination ul li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 40px;
	font-size: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
	background-color: transparent;
	color: var(--greenLight);
}
.k2Pagination ul li.pagination-current {
	font-weight: bold;
}
/* /Pagination */
/* /K2 Modifications */

/* footer */
.follow {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	border-top: 1px dashed rgba(111, 228, 9, .2);
	border-bottom: 1px solid var(--green);
}
.follow h1 {
	font-family: ACBrielight;
	color: var(--green);
	font-size: clamp(1.8em, 4vw, 2.5em);
}
.follow p {
	font-size: .9em;
	padding: 5px 0 20px;
}
.copyright {
	font-size: .7em;
	padding: 10px 40px;
	text-align: center;
}
.copyrightInt {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media (max-width:480px) {
	.copyrightInt {
		justify-content: center;
	}
	.follow p {
		text-align: center;
	}
}
/* /footer */