:root {
  --amaxw: 900px;
  --umaxw: 700px;
  --blue: #3692D1;  
  --red: #d32f2f;
  --input-szin: #009900;
  --textszine: #666;
  --muted: #003366;
  --szurke: #CCCCCC;
  --feketes: #242833;
  --fekete: #000000;
  --feher: #FFFFFF;
  --iroszin: #121212;
  --iroszin-fekete: #000000;
  --bg:  #e9e9e9;
}

html { font-size: 18px }
    body {
      margin: 0;
	  font-family: Roboto, Arial, Verdana, Tahoma, sans-serif;  /*Roboto-hoz kell a fentebbi betöltés is! */
      background: var(--feketes);
      color: var(--iroszin);   
      line-height: 1.9;
    }
/*	@media (max-width: 768px) { html {font-size: 14px;  } }	*/

/* Header és footer */
    header {
      position: sticky; top: 0; z-index: 150; /*a stricky miatt fix a top:0 miatt a tetején van, a Z-index: 150 miatt mindennek a tetején */
      background: var(--blue);
    }
	
.lineheight_1 {
	line-height: 1;
}
.ures-sor-nagy  {
	margin-top: 50px;
}
.ures-sor-kicsi  {
	margin-top: 15px;
}
	

  /* ----- ALAP STÍLUSOK (egy termék sor) ----- */
        .cart-item {
            display: flex;
            align-items: center;       /* függőleges közép, a kép 50px, a jobb oldali elemek is */
            gap: 1rem;                /* tartalék, de a pontos távolságokat margin-ekkel adjuk meg */
            flex-wrap: wrap;          /* mobil: ha nagyon keskeny, a jobb rész alá is mehet */
            padding: 1rem 0;
            border-bottom: 1px solid #eaeaea;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* ----- BAL OLDAL: termék kép + infó ----- */
        .cart-item-left {
            display: flex;
            align-items: flex-start;  /* a név a kép tetejével egy vonalban */
            flex: 1 1 260px;          /* nő, de legalább 260px, jobb oldal elfér */
        }

        .product-image {
            width: 50px;
            height: 50px;
            background-color: #d3d3d3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #555;
            text-transform: uppercase;
            border-radius: 4px;
            flex-shrink: 0;           /* ne törődjön össze */
        }

        .product-info {
            margin-left: 30px;        /* 30px szünet a képtől jobbra */
            display: flex;
            flex-direction: column;
            line-height: 1.4;
        }

        .product-name {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .product-price {
            font-size: 0.95rem;
            color: #2c3e50;
        }

        /* ----- JOBB OLDAL: mennyiségválasztó, összesen, kuka ----- */
        .cart-item-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;          /* ha nem fér ki, elemek törhetnek */
            margin-left: auto;        /* jobbra tolja a teljes blokkot a bal oldalhoz képest */
            gap: 0;                 /* pontos margókat használunk a feladat szerint */
        }

        /* ----- MENNYISÉGVÁLASZTÓ (növelő-csökkentő doboz) ----- */
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid #b0b0b0;
            border-radius: 6px;
            overflow: hidden;         /* a gombok simuljanak a kerethez */
            background-color: #fff;
            height: 36px;
        }

        .qty-btn {
            background-color: #f5f5f5;
            border: none;
            padding: 0 12px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            transition: background 0.15s;
            border: none;
            outline: none;
        }

        .qty-btn:hover {
            background-color: #e0e0e0;
        }

        .qty-btn:active {
            background-color: #ccc;
        }

        .qty-input {
            width: 44px;
            text-align: center;
            font-size: 1rem;
            border: none;
            border-left: 1px solid #b0b0b0;
            border-right: 1px solid #b0b0b0;
            outline: none;
            height: 100%;
            padding: 0;
            -moz-appearance: textfield; /* firefox: eltünteti a spinner nyilakat */
            appearance: textfield;
        }

        .qty-input::-webkit-outer-spin-button,
        .qty-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        /* ----- 30px ÜRES RÉSZ (növelő doboz után) ----- */
        .quantity-selector {
            margin-right: 30px;       /* pontosan 30px távolság az összesen előtt */
        }

        /* ----- ÖSSZESEN ÉRTÉK (ár * db) ----- */
        .item-total {
            font-weight: 700;
            font-size: 1.1rem;
            color: #1e2b3a;
            white-space: nowrap;
            margin-right: 60px;       /* 60px üres rész a kuka előtt */
        }

        /* ----- KUKA IKON ----- */
        .delete-btn {
            background: none;
            border: none;
            font-size: 1.4rem;
            cursor: pointer;
            padding: 0 4px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #7f8c8d;
            transition: color 0.15s;
            line-height: 1;
        }

        .delete-btn:hover {
            color: #e74c3c;
        }

        /* ----- MOBIL NÉZET: jobb oldali rész a bal oldali ALATT ----- */
        @media (max-width: 768px) {
            .cart-item {
                flex-direction: column;   /* elemek egymás alá */
                align-items: stretch;     /* teljes szélesség */
            }

            .cart-item-left {
                width: 100%;
                flex-basis: auto;         /* visszaáll */
            }

            .cart-item-right {
                width: 100%;
                margin-left: 0;           /* jobbra igazítás eltűnik */
                margin-top: 16px;
                justify-content: flex-start; /* balra igazítjuk a gyerekeket */
            }

            /* kis kijelzőn is tartsuk a megadott margókat, 
               de ha nem fér ki, a wrap majd rendezi */
            .quantity-selector {
                margin-right: 30px;
            }

            .item-total {
                margin-right: 60px;
            }
        }

        /* extra kicsi nézet: a mennyiségválasztó és összesen is elférjen */
        @media (max-width: 768px) {
            .cart-item-right {
                gap: 10px 0;            /* függőleges rátartás, ha wrap van */
            }
            .quantity-selector {
                margin-right: 20px;      /* kicsit csökkentjük, de a 30px érvényben marad, ha van hely */
            }
            .item-total {
                margin-right: 20px;
            }
        }

.site-header, .site-footer {
  position: fixed;
  background: var(--red);
  color: var(--blue);
  padding: 0; /*  20px 0; volt */
}

.banner-background {
  background: var(--feketes);	
  background-size: cover;
  background-position: left;
  color: var(--bg);
  height: 100px;
}
.banner-background2 {
  background: var(--feketes);	
  background-size: cover;
  background-position: center;
  height: auto;
}
.banner-background3 {
  background: var(--feketes);	
  background-size: cover;
  background-position: cemter;
  height: 370px;
}
.banner-background3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  center-position: center;
}
.footer-background {
  background: var(--feketes);
  text-align: center;
  color: var(--bg);
  height: 140px;
}
@media (max-width: 768px) { .banner-background {background-position: -50px top;} }	

.site-header a, .site-footer a { color: var(--blue); }

/* Konténer */
.container { max-width: var(--amaxw); margin: 0 auto; padding: 1px; }
/* Konténer */
.container2 { max-width: var(--umaxw); margin: 10px; auto; padding: 1px; }

.button-kicsi2-kerek {
	margin: 2px !important;
    padding: 4px 12px 4px !important;
    cursor: pointer; 
/*	width: 120px;*/
	border-bottom-right-radius: 8px !important;
	border-bottom-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
	border-top-left-radius: 8px !important;
}

.agi_transparent-button2 {
  background-color: transparent;       /* Átlátszó háttér */
  color: #333333;                      /* Sötét szürke betűszín */
  font-weight: normal;                /* Normál betűvastagság */
  border: 2px solid #333333;          /* Sötét szürke keret */
  padding: 10px 20px;                 /* Kényelmes méret */
  cursor: pointer;                    /* Mutató kurzor */
  transition: border-color 0.3s ease; /* Finom átmenet hoverre */
}

.agi_transparent-button {
  background-color: transparent;
  color: #333333;                      /* Sötét szürke szöveg */
/*  font-weight: normal;*/
  font-size: 18px;
  border: 2px solid #333333;          /* Alap keretvastagság */
  padding: 15px 15px 15px 15px;       /* Bal oldali padding megnövelve */
  cursor: pointer;
  transition: border 0.3s ease;       /* Finom átmenet */
}

.agi_transparent-button:hover {
  border: 3px solid #000000;             /* Fekete keret hover esetén */
}

/* Gombok */
.btn {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
}
.btn-primary { background: var(--red); border: 2px solid var(--szurke); color: var(--bg); }
.btn-outline { border: 1px solid var(--feketes); color: var(--feketes); }
.btn-kek { background: var(--blue); border: 2px solid var(--szurke); color: var(--bg); }
.btn-kek-fix {display: inline-block; width: 70px; background: var(--blue); color: var(--bg); border: 2px solid var(--blue);font-size: 14px }
.btn-feher { border: 1px solid var(--bg); color: var(--bg); }
.btn-feher-fekete { border: 1px solid var(--bg); color: var(--iroszin); font-size: 18px;}

.btn-primary:hover, .btn-outline:hover, .btn-kek:hover, .btn-kek-fix:hover { border: 2px solid var(--feketes);} 
.btn-feher:hover { border: 2px solid var(--bg); color: var(--bg); }
.btn-feher-fekete:hover { border: 2px solid var(--bg); color: var(--iroszin-fekete); }

/* Szekciók */
.section { padding: 30px 0; }
.section h2, .section h3 { color: var(--iroszin); }

/* Hero grid */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5; }


.mobile-top {
  display: flex;
  align-items: center;   /* <-- EZ teszi függőlegesen középre */
  width: 100%;
  height: 100px;          /* kell egy magasság, különben nincs mihez középre */
}

.mobile-left {
  width: 120px;
}

.mobile-right {
  flex: 1;                  /* maradék hely */
  margin-right: 20px;
  display: flex;
  flex-direction: column;   /* egymás alatt */
  align-items: flex-end;    /* jobbra igazítás */
  line-height: 1;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  background: var(--bg);;
}

.mobile-menu a {
  padding: 5px;
  margin-left: 20px;
  text-decoration: none;
  color: var(--iroszin);
  border-top: 1px solid #444;
}

.mobile-menu a:hover {
  background: var(--feher);
}




/* Képhelyek */
.image-wrapper {
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 220px;
}
.image-wrapper1 {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--fekete);
}
.image-wrapper2 {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--fekete);
}
.image-wrapper3 {
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--fekete);
}
.image-wrapper3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  center-position:center;
}
.image-wrapper4 {
  margin-left: 30px;
  padding: 0;
  width: 150px;
  height: 100px;
}
.image-wrapper41 {
  margin-left: 30px;
  padding: 0;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
}
.image-wrapper5 {
  margin: 0;
  padding: 0;
  width: 100%;
/*  background: var(--fekete);*/
}
.image-wrapper5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  center-position:center;
}
@media (max-width: 768px) {
  .image-wrapper2, .image-wrapper3, .image-wrapper5 { background-position: -50px top; }
}
.feher-keret {
  paddng: 0;
  margin: 20px;
  background: var(--bg);
  color: var(--textszine);
}
.feher-keret2 {
  paddng: 0;
  margin: 20px;
  background-color: #ffffff;
  color: var(--textszine);
}
.feketes-keret {
  paddng: 0;
  margin: 20px;
  background: var(--feketes);
  color: var(--szurke);
}

/* Alapértelmezett stílus: 4 elem egy sorban */
.container4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.container4 .item {
  flex: 1 1 23%; /* 4 elem egy sorban, 23% szélességgel */
  margin: 5px; /* Kis távolság a elemek között */
}

/* Mobil verzióra vonatkozó stílus: 2 elem egy sorban */
@media (max-width: 768px) {
  .container4 .item {
    flex: 1 1 49%; /* 2 elem egy sorban, 48% szélességgel */
  }
}

/* Grida 2a mindig egymás alatt*/
.grida-2a { display: grid; grid-template-rows: 1fr 1fr; gap: 5px; }
/* Grida 3a mindig egymás alatt*/
.grida-3a { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 5px; }
/* Grida 3b mindig egymás mellett*/
.grida-3b { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 5px; }

/* Grid 2 */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Grid 2a mindig egymás mellett*/
.grid-2a { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Grid 2f */
.grid-2f { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-2f {
  background: var(--bg);
  color: var(--red);
}
.grid-2s { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
.grid-4 {
  background: var(--feketes);
  color: var(--bg);
}
.grid-2ss {
  display: grid;
  grid-template-columns: auto 1fr;
}

/* CTA */
.section-cta { background: #f7fbff; }
.cta-inner { display: flex; justify-content: space-between; align-items: center; }

/* Reszponzív */
@media (max-width: 768px) {
  .hero-grid, .grid-2, .cta-inner, .grid-2f, .grid-4, .grid-2ss { grid-template-columns: 1fr; flex-direction: column; }
}
@media (max-width: 768px) {
  .grid-2s { grid-template-columns: 1fr; flex-direction: column; gap: 0; }
}

/********************************/
.ujbekezdes {
  margin-top: 50px;
}
.wrap { max-width: var(--amaxw); margin: 0 auto; padding: 0 1rem; }
@media (max-width: 768px) { .wrap {margin: 0; padding: 0; } }	

.brand-subti {
  margin-top: -20px;
  color: var(--blue);
}
.linkv a {
	color: var(--bg);
	font-weight: bold;
	font-size: 18px;
	text-decoration: underline;
}
.linkv a:hover {
	color: lightblue;
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
}
.ures50 {
	margin-top: 50px;
}
.iras {
	font-size: 15px;
	color: var(--szurke);
	text-decoration: none;
}
.iras:hover {
	color: var(--bg);
	text-decoration: underline;
}
.iras1 {
	font-size: 18px;
	color: var(--bg);
	text-decoration: none;
}
.iras1:hover {
	color: var(--bg);
	text-decoration: underline;
}
.iras2 {
	font-size: 15px;
	color: var(--szurke);
	text-decoration: underline;
}
.iras2:hover {
	color: var(--bg);
	text-decoration: underline;
}
.menu{
	 display: flex;	 
	 align-items: baseline;       	/*a betők bottomon vannak */
	 gap: 20px;						//távolság a menu kiirások között
	 list-style:none;
	 padding: 0px 50px 0px 50px;
	 margin: 0;
}
.menu-kozep {
	justify-content: center !important;   	/*a menü kiírások özépre igazítva vannak */
}
.menu-jobbra {
	justify-content: flex-end !important; 	/*a menü kiírások jobbra igazítva vannak */ 	
}
.kozepre {
	text-align: center;
}

.bal {
	float: left;
	margin-left: 10px;
}
.jobb {
	float: right;
	margin-right: 10px;
}
.fel100 {
	position: relative;
	top: -100px;
}
.kozepgomb1 {
    float: right;
	margin-right: 10px;	
	position: relative;
	top: -100px;
}
.kozepgomb2 {
    float: left;
	margin-left: 10px;	
	position: relative;
	top: -100px;
}

/* Reszponzív */
@media (max-width: 768px) {
  .kozepgomb1, .kozepgomb2 { display: flex; float: none; margin: 0 20 0 20; justify-content: center; top: 0; }
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
	width: 100%;
	height: 100%;
}
.kozep-szoveg {
	color: var(--szurke);
	text-align: center;
}

h1 {
  font-weight: normal;
}
h2 {
  font-weight: normal;
}
h3 {
  font-weight: normal;
}
.szin-fekete {
	color: var(--iroszin-fekete);
}
.szin-feher {
	color: white !important;
}
.szin-vilagos {
  color: var(--bg);   
}
.szin-sszurke {
  color: var(--szurke);   
  font-size: 16px;
  line-height: 1.9;
}
hr {
	 border: none;
	 border-top: 1px solid var(--textszine);
}
.hatter-feher {
	background: var(--feher);
}

.kepes-doboz {
  width: 210px;
  height: 400px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  overflow: hidden;
}

.kepes-doboz-kep {
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.kepes-doboz-kep img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  center-position: center;
}
.kepes-doboz-szoveg {
  flex: 1;
  background: white;
  color: var(--feketes);
  padding: 20px;
  font-size: 16px;
  box-sizing: border-box;
}

.kepes-doboz-szoveg1 {
  flex: 1;
  background: white;
  color: var(--feketes);
  padding: 20px 20px 20px 20px;
  font-size: 16px;
  box-sizing: border-box;
  align-items: baseline;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kepes-doboz-szoveg1 h2 {
  margin-top: 0;
}

.kepes-doboz-szoveg1 .bottom-content {
  margin-top: auto;  /* Ez tolja le alulra */
  display: flex;            /* Flexbox a sorba rendezéshez */
  justify-content: space-between; /* Az ár balra, gomb jobbra */
  align-items: center;      /* Függőleges középre igazítás */
  width: 100%;              /* Teljes szélesség */
}

.kepes-doboz2 {
  width: 440px;
  height: 600px;
  color: var(--feketes);
  border: 1px solid #ccc;
  overflow: hidden;
  background: var(--bg);
  padding-bottom: 20px;
  margin: 10px;
}
.kepes-doboz-szoveg2 {
  width: 390px;	
  height: 260px;
/*  padding: 0 10px 10px 10px;*/
  margin: 0 0 0 35px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kepes-doboz-kep2 {
  height: 300px;
  background-position: center;
}
.kepes-doboz-kep2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  center-position: center;
}
.feljebb {
	margin-top: -10px;
}
.feljebb50 {
	margin-top: -50px;
}
.feljebb30 {
	margin-top: -30px;
}
.lejebb {
	margin-top: 50px;
}
.lejebb10 {
	margin-top: 15px;
}


.scroll-container {
  display: flex;
  gap: 8px;                 /* távolság a dobozok között */
  overflow-x: auto;          /* vízszintes görgetés */
  scroll-snap-type: x mandatory; /* opcionális: szépen "bekattan" */
  -webkit-overflow-scrolling: touch; /* sima mobilos görgetés */
  padding: 10px;
}

.boxa {
  min-width: 210px;          /* a doboz szélessége */
  height: 420px;             /* a doboz magassága */
//  background: #ddd;
  flex-shrink: 0;            /* ne zsugorodjon össze */
  scroll-snap-align: start;  /* opcionális */
//  border-radius: 8px;
}
.belso-feher {
	padding: 30px;
	background: var(--feher);
}
.szoveg-jobbra {
	text-align: right;
}
.jobbra {
	align-items: right;
}
.upper2 {
	color: var(--feketes);
	font-size: 16px;
    text-transform: uppercase;	
}
.input-szoveg {
	width: 90%;
	font-size: 18px;
	padding: 10px;
	background-color: var(--feher);
	border: 1px solid var(--szurke);
	color: var(--input-szin) !important;
	box-sizing: border-box;
}
.input-doboz {
	width: 90%;
	font-size: 18px;
	padding: 10px;
	background-color: var(--feher);
	border: 1px solid var(--szurke);
	color: var(--input-szin) !important;
	box-sizing: border-box;
	resize: vertical;
	overflow-y: auto;
	min-height: 100px;
}
/*uzenet*/
.uzenet_z{
 COLOR: #669900;  TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
.uzenet_p{
 COLOR: #CC6600;  TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
.uzenet_pp{
 COLOR: #FF0000;  TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
.uzenet_zr{
 COLOR: #669900; font-size: 14px; TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
.uzenet_pr{
 COLOR: #CC6600; font-size: 14px; TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
.uzenet_nar{
 COLOR: #ff9900; font-size: 14px; TEXT-DECORATION: none; TEXT-TRANSFORM: none
}
/******/
.center {
	 align-items: center;
}
.left {
	 align-items: left;
}

/**************** csillagjosdából ****/

//********************************************//

/* Szülő konténer – középre igazítva, max szélességgel */
.containerc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px; /* kis belső margó mobilra */
}

.agi_simple-input {
  text-align: left;
  width: 100%;
  max-width: 400px;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: rgba(600, 600, 600, 0.5); /* halvány szürke, 50% átlátszóság */
  color: #151515; 
}

.datum_input {
   width: 40px;
   margin-right: 5px;
   text-align: center;
   font-size: 18px;
   color: var(--input-szin) !important;
}

/* Alapértelmezett (desktop) */
.aa {
  margin-top: 50px;
  margin-bottom: 0px;
  margin-right: 15%;
  margin-left: 15%;
  padding: 0;
/*  background-color: #cccccc;*/
  background-color: #ffffff;
}

.bb, .bb2, .egysor{
  display: flex;
  flex-direction: row;
  gap: 50px; /*két elem közötti távolság (o1,o2) */
}
.bb2 {
 min-height: 400px;
}

.oszlop1 {
  position: relative;
  left: 0px;
  top: 0px;  
  width: 50%;
}

.oszlop2 {
  position: relative;
  left: 0px;
  top: 0px;  
  width: 50%;
  margin-top: 50px;
}

.o1 {
  position: relative;
  left: 50px;
  top: 50px;  
  width: 225px;
  max-height: 400px;
/*  display: inherit-block;*/
}

.o1bb2 {
  position: relative;
  left: 50px;
  top: 50px;  
  width: 225px;
  max-height: 341px;
/*  display: inherit-block;*/
}

.o1a, .o1ax {
  position: relative;
  left: 50px;
  top: 50px;  
  width: 225px;
  max-height: 341px;
/*  display: inherit-block;*/
}

.o2 {
  position: relative;
  left: 50px;
  right: 50px;  
  width: auto;
  min-width: 450px;
  min-height: 380px;
  max-width: 450px;
  height: auto;
  overflow: visible;
  line-height: 1.5;
}

.o2a {
  position: relative;
  left: 50px;
  right: 50px;  
  width: auto;
  min-width: 450px;
  min-height: 430px;
  max-width: 450px;
  height: auto;
  overflow: visible;
  line-height: 1.5;
}


.o1 img, .o1bb2 img, .o1a img, .o1ax img {
  height: 341px;
  width: auto;
}


/* Mobil nézet */
@media screen and (max-width: 768px) {
  .containerc {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }

/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .aa, .bb, .bb2 {
    margin: 0;
	padding: 0;
	width: 100%;
	min-width: 0;
    min-height:0;
  }
}

/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .bb, .bb2, .egysor {
    flex-direction: column;
  }


/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .o1, .o1bb2 {
	left: 0px;
	right: 0px;
    margin-left: 5%;
	padding: 0;
	width: 90%;
	min-width: 0;
    min-height: 470px;;
  }
}

/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .o1a {
	left: 0px;
	right: 0px;
    margin-left: 5%;
	padding: 0;
	width: 90%;
	min-width: 0;
	min-height:0;
/*    min-height: 341px;;*/
  }
}

/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .o1ax {
	left: 0px;
	right: 0px;
    margin-left: 5%;
	padding: 0;
	width: 90%;
    min-height: 360px;
  }
}

/* Mobil nézet */
  @media screen and (max-width: 768px) {
  .o2, .o2a {
	left: 0px;
	right: 0px;
    margin-left: 5%;
	padding: 0;
	width: 90%;
	min-width: 0;
    min-height:0;
  }
  
  .
}

.font16 {
	font-size: 16px;
}
.font18 {
	font-size: 18px;
}



.piros {
	color: #C11B00 !important;
}

.zold {
	color: #669900 !important;
}

.szurke {
	color: #cccccc !important;
}
.szurkes {
	color: #aaaaaa !important;
}
.kosardb_regi {
  color: var(--red);
  margin-top: -50px;
}

.kosar-container {
  position: relative;
  display: inline-block; /* Alapvetően inline elem, hogy a gomb és a szám egy sorban legyen */
}

.kosardb {
  position: absolute;
  bottom: 5px; /* Igazítsuk a számot a kosár ikon aljához */
  right: 5px; /* Igazítsuk a számot a kosár ikon jobb oldalához */
  color: white; /* A szám színe, lehet változtatni */
  background-color: red; /* A szám háttérszíne, jól látható legyen */
  border-radius: 50%; /* Kerek forma */
  padding: 5px; /* Párnázás a szám körül */
  font-size: 12px; /* A szám betűmérete */
  font-weight: bold; /* Erősebb betűtípus a jobb láthatóság érdekében */
}


     
