/* ================================================================
   style.css — combined stylesheet for eo.eoo.ro
   Merged from styleHome.css (navy palette) + styleNew.css (legacy).
   Shared rules resolved to the styleHome version.
   ================================================================ */

:root{
	--navy:       #2E4271;
	--navy-2:     #1C2A4A;
	--navy-3:     #0F1A33;
	--navy-soft:  #5A6B99;
	--navy-tint:  #E3E8F3;
	--accent:     #2E4271;
	--accent-2:   #1C2A4A;
	--accent-hi:  #7F91B8;
	--cream:      #F5F7FB;
	--cream-2:    #E9EDF5;
	--ink:        #1A1F2E;
	--muted:      #6B7593;
	--line:       #D9DEEA;
	--pop:        #882255;
	--pop-2:      #5a1638;
	/* legacy aliases so older rules pick up the new palette */
	--magenta:    var(--navy-2);
	--magenta-2:  var(--accent-2);
	--rose:       var(--accent-hi);
}

*{box-sizing:border-box;padding:0;margin:0}

html,body{
	background:var(--cream);
	color:var(--ink);
	font-family:'Pragati Narrow','Helvetica Neue',Arial,sans-serif;
	font-size:16px;
	line-height:1.45;
	-webkit-font-smoothing:antialiased;
}

a{color:var(--navy);text-decoration:none}
a:hover{color:var(--magenta)}
img{max-width:100%;display:block}

/* ---------- base typography (legacy) ---------- */
h2{margin:.2em;line-height:1.6rem}
hr{border-top:1px solid var(--navy);border-bottom:0}
ul{list-style-type:none;padding:0;margin:0}
li{list-style-position:inside;text-align:left}
li::marker{font-size:1.8em;background-color:#e1e1e1}

/* legacy .content-scoped h1 — avoids clobbering .hero h1 on the home page */
.content h1,#content h1{
	color:var(--navy);
	margin-bottom:1rem;
	background-color:#e1e4eb;
	display:inline-block;
	padding:1rem;
	border-radius:4px;
	line-height:2.5rem;
}

/* ---------- layout ---------- */
.wrap{max-width:1600px;margin:0 auto;padding:0 1.25rem}
.content{margin:auto;width:90%}
#content{width:90%;margin:auto}

/* ---------- header / nav ---------- */
.topbar{
	background:#fff;
	border-bottom:1px solid var(--line);
	position:sticky;top:0;z-index:50;
}
.topbar > .wrap{
	display:flex;align-items:center;gap:1.5rem;
	padding-top:.75rem;padding-bottom:.75rem;
}
.logo{
	display:inline-flex;align-items:center;justify-content:center;
	flex-shrink:0;
	height:56px;width:56px;
	background:#fff;
	border:2px solid var(--magenta);
	border-radius:14px;
	box-shadow:0 4px 14px rgba(46,66,113,.18),0 1px 0 rgba(46,66,113,.04);
	transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.logo:hover{
	transform:translateY(-1px) rotate(-2deg);
	box-shadow:0 8px 22px rgba(46,66,113,.28);
	border-color:var(--navy);
}
.logo img{height:38px;width:auto;display:block}

.search{
	flex:1 1 0;min-width:0;max-width:560px;
	display:flex;align-items:center;gap:.6rem;
	background:var(--cream-2);
	border:1px solid transparent;
	border-radius:999px;
	padding:.55rem 1.1rem;
	transition:border-color .15s,background .15s;
	color:var(--muted);
}
.search input{min-width:0;width:100%}
.search-icon{flex-shrink:0;color:var(--muted)}
.search:focus-within{border-color:var(--magenta);background:#fff}
.search input{
	flex:1;background:transparent;border:0;outline:0;
	font:inherit;color:var(--ink);
}
.search input::placeholder{color:var(--muted)}

/* ---------- hamburger ---------- */
.burger{
	flex-shrink:0;
	height:48px;width:48px;
	display:inline-flex;flex-direction:column;
	align-items:center;justify-content:center;gap:5px;
	background:#fff;
	border:1px solid var(--line);
	border-radius:12px;
	cursor:pointer;
	transition:border-color .15s,background .15s;
}
.burger span{
	display:block;width:22px;height:2px;
	background:var(--navy);border-radius:2px;
	transition:transform .2s ease,opacity .15s ease;
	transform-origin:center;
}
.burger:hover{border-color:var(--magenta)}
.burger:hover span{background:var(--magenta)}
.burger.open{background:var(--navy);border-color:var(--navy)}
.burger.open span{background:#fff}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- category menu panel ---------- */
.cat-menu{
	background:var(--cream);
	border-top:1px solid var(--line);
	border-bottom:3px solid var(--magenta);
	box-shadow:0 12px 28px rgba(46,66,113,.12);
	padding:1.75rem 0 2.5rem;
	animation:catSlide .18s ease-out;
	max-height:calc(100vh - 80px);
	overflow-y:auto;
}
@keyframes catSlide{
	from{opacity:0;transform:translateY(-8px)}
	to  {opacity:1;transform:translateY(0)}
}

.cat-menu-head{
	display:flex;align-items:baseline;gap:1rem;
	margin-bottom:1.25rem;
}
.cat-menu-head h2{
	font-size:1.35rem;font-weight:700;color:var(--navy-2);
	letter-spacing:-.01em;
}
.cat-menu-head span{color:var(--muted);font-size:.9rem}

.cat-grid{
	display:grid;
	grid-template-columns:repeat(4,minmax(0,1fr));
	gap:1rem;
}

.cat-card{
	background:#fff;
	border:1px solid var(--line);
	border-radius:12px;
	padding:.9rem 1rem 1rem;
	transition:border-color .15s,box-shadow .15s,transform .15s;
	min-width:0;
}
.cat-card:hover{
	border-color:var(--magenta);
	box-shadow:0 6px 18px rgba(46,66,113,.10);
	transform:translateY(-1px);
}

.cat-card-head{
	display:flex;align-items:center;gap:.6rem;
	padding-bottom:.6rem;margin-bottom:.5rem;
	border-bottom:1px solid var(--cream-2);
}
.cat-card-ico{
	display:inline-flex;align-items:center;justify-content:center;
	width:34px;height:34px;border-radius:9px;flex-shrink:0;
	background:linear-gradient(135deg,var(--magenta) 0%,var(--magenta-2) 100%);
	color:#fff;
	box-shadow:0 2px 6px rgba(46,66,113,.28);
}
.cat-card-ico .gi{display:block}
.cat-card-head h3{
	font-size:.9rem;font-weight:700;color:var(--navy-2);
	text-transform:uppercase;letter-spacing:.04em;
	line-height:1.15;min-width:0;
}

.cat-list{list-style:none;padding:0;margin:0}
.cat-list li{margin:0;padding:0}
.cat-list a{
	display:flex;align-items:center;gap:.55rem;
	padding:.38rem .5rem;
	color:var(--navy);
	font-size:.92rem;
	border-radius:6px;
	line-height:1.2;
	text-decoration:none;
	min-width:0;
}
.cat-list a > span{
	overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
	min-width:0;flex:1;
}
.cat-list .ci{
	flex-shrink:0;
	color:var(--navy-soft);
	transition:color .15s,transform .15s;
}
.cat-list a:hover{
	background:var(--cream-2);
	color:var(--magenta);
}
.cat-list a:hover .ci{
	color:var(--magenta);
	transform:scale(1.08);
}

.cat-backdrop{
	position:fixed;inset:0;
	background:rgba(28,42,74,.25);
	z-index:40;
	backdrop-filter:blur(2px);
}
body.menu-open{overflow:hidden}

/* ---------- hero ---------- */
.hero{
	padding:2rem 0 1.5rem;
	background:
		radial-gradient(1200px 400px at 90% -10%, rgba(46,66,113,.12), transparent 60%),
		radial-gradient(900px 500px at 10% 10%, rgba(46,66,113,.06), transparent 60%);
}
.hero .wrap{
	display:grid;
	grid-template-columns:1fr;
	gap:1rem;
}
.hero h1{
	font-size:clamp(2rem,4vw,3.2rem);
	font-weight:700;color:var(--navy-2);
	letter-spacing:-.02em;line-height:1.05;
	max-width:720px;
	background:transparent;padding:0;
}
.hero h1 em{
	color:var(--navy-2);font-style:normal;
	background:linear-gradient(transparent 65%,var(--pop) 65%,var(--pop) 92%,transparent 92%);
	padding:0 .15em;
}
.hero p.lede{
	margin-top:0;font-size:1.15rem;color:var(--muted);
	max-width:640px;
}
.hero-stats{
	display:flex;gap:2.5rem;flex-wrap:wrap;
	margin-top:1rem;padding-top:1.25rem;
	border-top:1px dashed var(--line);
}
.hero-stats div{display:flex;flex-direction:column}
.hero-stats strong{
	font-size:2.8rem;color:var(--navy);font-weight:700;
	line-height:1;
	font-variant-numeric:tabular-nums;
}
.hero-stats > div:first-child strong{color:var(--pop)}
.hero-stats span{color:var(--muted);font-size:1.05rem;margin-top:.35rem}

@media screen and (min-width:900px){
	.hero{padding:0.5rem 0 2rem}
	.hero .wrap{
		grid-template-columns:minmax(0,1.6fr) minmax(0,1fr);
		gap:1.5rem 3rem;
		align-items:center;
	}
	.hero h1{grid-column:1;grid-row:1;max-width:none}
	.hero p.lede{grid-column:1;grid-row:2;max-width:none}
	.hero-stats{
		grid-column:2;grid-row:1/3;
		margin-top:0;padding-top:0;border-top:0;
		flex-direction:column;align-items:flex-start;
		gap:0.25rem;
		border-left:1px dashed var(--line);
		padding-left:2.5rem;
	}
	.hero-stats strong{font-size:3.2rem}
}

/* ---------- section titles ---------- */
.section{padding:0.75rem 0}
.section + .section{border-top:1px solid var(--line)}
.section-head{
	display:flex;align-items:baseline;gap:1rem;
	margin-bottom:1.75rem;
}
.section-head h2{
	font-size:1.75rem;font-weight:700;color:var(--navy-2);
	letter-spacing:-.01em;
}
.section-head .tag{
	background:var(--magenta);color:#fff;
	padding:.15rem .6rem;border-radius:4px;
	font-size:.8rem;font-weight:700;
	text-transform:uppercase;letter-spacing:.05em;
}
.section-head .muted{color:var(--muted);font-size:.95rem;margin-left:auto}

/* ---------- discount bucket banner ---------- */
.bucket{
	background:linear-gradient(90deg,var(--navy) 0%,var(--navy-2) 100%);
	color:#fff;
	padding:1rem 1.4rem;
	border-radius:8px;
	margin:2rem 0 1.25rem;
	display:flex;align-items:center;gap:1rem;
	font-size:1.15rem;
}
.bucket .pct{
	background:var(--pop);color:#fff;
	padding:.35rem .75rem;border-radius:4px;
	font-weight:700;font-size:1.4rem;
	line-height:1;
	box-shadow:0 2px 6px rgba(136,34,85,.35);
}

/* ---------- footer ---------- */
.footer{
	background:var(--navy-2);color:#cfd5e4;
	padding:2.5rem 0;margin-top:3rem;
	font-size:.95rem;
}
.footer a{color:#fff}
.footer a:hover{color:var(--rose)}
.footer .wrap{display:flex;gap:2rem;flex-wrap:wrap;justify-content:space-between}

/* ================================================================
   PRICE-CARD (.p1) BLOCK
   ================================================================ */

.prodList{
	display:flex;
	justify-content:center;
	gap:1.25rem;
	flex-direction:row;
	flex-wrap:wrap;
}
.prodList .p1 > a.linkA,
.prodList .p1 > a.linkA:link,
.prodList .p1 > a.linkA:visited,
.prodList .p1 > a.linkA:hover{
	display:block;
	margin:.5rem auto 0;
	width:fit-content;
}
@media screen and (min-width:1100px){
	.prodList .p1{min-width:360px}
}

.p1{
	margin:0;
	background-color:#fff;
	padding:.75rem 1rem 1rem;
	border-radius:12px;
	border:1px solid rgba(46,66,113,.06);
	box-shadow:0 1px 2px rgba(46,66,113,.04),0 4px 12px rgba(46,66,113,.06);
	max-width:360px;
	position:relative;
	transition:transform .2s ease,box-shadow .25s ease,border-color .2s ease;
	overflow:hidden;
}
.p1:hover{
	transform:translateY(-3px);
	box-shadow:0 2px 4px rgba(46,66,113,.06),0 14px 28px rgba(46,66,113,.14);
	border-color:rgba(136,34,85,.2);
}
.p1slim{
	margin:0;
	background-color:#fff;
	padding:.75rem 1rem 1rem;
	border-radius:12px;
	border:1px solid rgba(46,66,113,.06);
	box-shadow:0 1px 2px rgba(46,66,113,.04),0 4px 12px rgba(46,66,113,.06);
	width:310px;
	position:relative;
	display:flex;
	flex-direction:column;
	transition:transform .2s ease,box-shadow .25s ease,border-color .2s ease;
	overflow:hidden;
}
.p1slim:hover{
	transform:translateY(-3px);
	box-shadow:0 2px 4px rgba(46,66,113,.06),0 14px 28px rgba(46,66,113,.14);
	border-color:rgba(136,34,85,.2);
}
.p1Big{width:95%;max-width:600px}
.imgBig{margin:auto}
.imgs3{max-width:90px;height:90px}
.imgs4{max-width:120px;height:120px}

.tit2{
	word-break:break-word;
	max-height:100px;
	overflow:hidden;
	text-overflow:ellipsis;
	display:-webkit-box;
	-webkit-line-clamp:4;
	-webkit-box-orient:vertical;
	text-align:left;
	font-size:1.3rem;
	line-height:1.4rem;
	color:#2E4271;
}
.red .lei{color:inherit;font-size:.8em;display:inline}

.titImg{
	display:flex;
	margin:0 0 .5rem 0;
	gap:.5rem;
	width:85%;
}
.titImgSlim{
	display:flex;
	flex-direction:column;
	margin:0 0 .5rem 0;
	gap:.5rem;
	height:90%;
}
.titImgBig{
	display:flex;
	margin:0 0 .5rem 0;
	gap:.5rem;
}

.red{
	position:absolute;
	right:0;top:0;
	padding:.55rem .65rem;
	background:linear-gradient(135deg,#17856d 0%,#0f5f4d 100%);
	color:#fff;
	border-radius:0 12px 0 12px;
	font-size:1.4rem;
	font-weight:700;
	min-width:50px;
	box-shadow:0 4px 12px rgba(19,116,95,.3);
}
.pretBF{
	position:absolute;
	left:0;top:0;
	padding:.7rem .65rem;
	background:linear-gradient(135deg,#17856d 0%,#0f5f4d 100%);
	color:#fff;
	border-radius:12px 0 12px 0;
	font-size:1.4rem;
	font-weight:700;
	box-shadow:0 4px 12px rgba(19,116,95,.3);
}

.p2{
	font-size:.78em;
	line-height:1.5rem;
	margin-top:.35rem;
	background-color:rgba(255,255,255,.2);
	border-radius:3px;
	padding:0 .4rem;
}
.gl{
	display:flex;
	flex-direction:row;
	align-items:center;
	margin-top:1rem;
}
.grafHD,a.grafHD:link,a.grafHD:visited,a.grafHD:hover{
	display:none;
	background-color:#882255;
	font-size:1rem;
	border-radius:3px;
	color:#fff;
	font-weight:bold;
	line-height:1.5rem;
	padding:0 .75rem;
	margin:1rem auto 0;
	text-align:center;
}
.grafNote{font-size:1.1rem;font-style:italic;margin-top:1rem}

/* ---------- product graph ---------- */
.graf{
	max-width:600px;margin:auto;
	display:flex;justify-content:center;
	gap:3px;
	padding:0 .25rem;
}
.bar{
	width:25px;
	flex:0 0 25px;
	height:200px;
	font-size:1.1rem;
}
.barFull{height:100%}
.barFill{
	background-color:#825;
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}
.barFill.barDate{background-color:#882255d6}
.bar.barLast{font-weight:bold}
.bar.barLast .barFill{background-color:#13745f}
.bar.barLast .barFill.barDate{background-color:#13745fd6}
.bar.barLast .date,
.bar.barLast .val{font-size:1.2rem}
.date,.val{
	writing-mode:vertical-rl;
	transform:rotate(180deg);
	font-size:1.1rem;
	line-height:1;
	color:#fff;
	text-align:center;
	padding:6px 0;
}
.val{align-self:flex-start}
.leiGraf{color:#fff;margin-top:4px;font-size:.8em}
/* legacy rotated text used by older bar renderer */
.valText{
	writing-mode:tb-rl;
	transform:rotate(-180deg);
	font-size:.9rem;
	margin:10px 0;
	color:#fff;
}

/* ================================================================
   LEGACY RULES (spec tables, grids, rec, compare, breadcrumbs, links)
   pulled from styleNew.css
   ================================================================ */

.descTit{
	font-size:1.6rem;
	line-height:1.6rem;
	background-color:#e1e4eb;
	border-radius:4px;
	display:inline-block;
	padding:.4rem 2rem;
}
.keyProp{
	font-weight:bold;
	margin-right:.5rem;
	background-color:#e1e4eb;
	padding:0 4px;
	line-height:2.1rem;
	border-radius:4px;
}
.specD{width:900px;margin:auto}
.specGrup{text-align:left;color:#aaa;line-height:.8em}
.specVal{
	color:#162955;
	display:inline-block;
	width:48%;
	text-align:left;
	vertical-align:middle;
}
.specDen{
	color:#7786A9;
	display:inline-block;
	width:48%;
	text-align:right;
	vertical-align:middle;
}
.specDen2{
	color:#7786A9;
	display:inline-block;
	text-align:right;
	white-space:nowrap;
	overflow:hidden;
	max-width:30%;
}
.specVal2{
	color:#162955;
	display:inline-block;
	text-align:left;
	white-space:nowrap;
	overflow:hidden;
	max-width:100%;
}
.gLine{width:100%;overflow:hidden;height:1.1em}
.hrSpec{text-align:left;margin-left:0}
.alteGrup{display:none}

.pdLink3{
	padding:2px 5px;background-color:#ddd;font-style:italic;
	font-size:1rem;margin:3px;border:3px solid #fff;line-height:2.6rem;
}
.baza{border:3px solid #7786A9}
.itemscope{display:none}
.fLink{max-height:0;transition:max-height .15s ease-out}
.show{max-height:500px;transition:max-height .25s ease-in}
.noBorder{border:0;cursor:pointer}
.borderB{border-bottom:1px solid #ddd}
.center{text-align:center}

.imgP{height:200px;border:1px solid #ddd;margin:2px;padding:2px}
.imgs{max-height:150px;max-width:150px;margin:2px;padding:2px}
.imgs2{max-height:800px;max-width:800px;margin:2px;padding:2px}

.pret,.pret a:link,.pret a:visited{
	color:#4E618D;font-size:1.2em;font-weight:bold;
	display:inline-block;
}
.lei{display:inline-block;color:#7786A9;font-size:.8em}
.leiVal{color:#B425C4;display:inline-block;font-size:1.5em;margin:0 2px}
.divBord{border:3px solid #7786A9}

.over1{
	position:absolute;text-align:center;
	height:40px;line-height:40px;vertical-align:middle;
	width:100%;opacity:.7;z-index:20;
	background-color:#000;display:none;
}
.over1 a:link,.over1 a:visited{color:#fff}

#compDiv{display:none}
.compara{display:none}
.compBut{position:absolute;z-index:100;top:1px;right:1px;cursor:pointer;zoom:2}
.comp{font-size:.8em;margin:auto}
.comp td{
	max-width:120px;max-height:20px;
	overflow:hidden;word-wrap:break-word;white-space:nowrap;
}

.gridProd{
	display:inline-block;
	width:220px;height:220px;
	border:1px solid #ddd;
	margin-right:3px;margin-top:3px;
	overflow:hidden;
}
.gridProd a{font-size:.8em;color:#2E4271}
.gridProd1{
	display:inline-block;
	width:250px;font-size:.8em;
	border:1px solid #ddd;
	overflow:hidden;position:relative;
	box-sizing:border-box;
}

#q{
	width:300px;box-sizing:border-box;
	border:2px solid #ccc;border-radius:4px;
	font-size:16px;background-color:white;
	/*background-image:url('/searchicon.png');*/
	/*background-position:10px 10px;background-repeat:no-repeat;*/
	padding:12px 10px 12px 10px;
}

.pBrand{}
.grid-itemB{
	background:#818181;border-radius:8px;
	border:2px solid #fff;margin:auto;
}
.grid-itemB a:link,.grid-itemB a:visited,.grid-itemB a:hover{color:#fff}
.grid-itemB a:hover{color:#4b4b4b}
.grid-item{
	background:#818181;border-radius:8px;
	border:1px solid #fff;display:inline-block;
	overflow:hidden;padding:5px 8px;margin:5px;
}
.grid-item a:link,.grid-item a:visited,.grid-item a:hover{
	color:#fff;height:100%;width:100%;
	display:flex;justify-content:center;flex-direction:column;
	transition:color 1s;display:inline-block;
}

.bread{font-size:.8em;color:#2E4271}
.bread a:link,.bread a:visited{
	color:#2E4271;background-color:#d1d1d1;
	transition:color 1s;padding:0 10px;border-radius:5px;
}
.bread a:hover{color:#fff;background-color:#2E4271;border-radius:5px}

.redTxt{
	flex:0 0 90%;background-color:#dfece9;
	font-size:1.6rem;line-height:1.8rem;padding:1.2rem;
}

#showRec hr{display:none}

.rec{
	cursor:pointer;color:#2e2e2e;font-size:1.2em;
	border:2px solid #2e2e2e;border-radius:7px;margin:auto;
	background-color:#ffff00;padding:5px;
	transition:color 1.5s;display:table;
}
.rec:hover{
	background-color:#2e2e2e;color:#ffff00;
	border:2px solid #ffff00;cursor:pointer;
}
.rArr{
	display:block;font-size:1em;
	animation:blinker2 .6s linear infinite;
	font-weight:bold;
}
@keyframes blinker2{50%{opacity:.55}}
.recTxt{vertical-align:middle;padding:15px;cursor:pointer}

/* ---------- link styles ---------- */
a.linkA:link,a.linkA:visited,a.linkA:hover{
	color:#162955;
	background-color:#ffff01;
	border:1px solid #162955;
	font-size:1.1rem;
	padding:4px 16px;
	line-height:1rem;
	border-radius:10px;
	text-decoration:none;
	display:inline-block;
}
a.linkA:hover{background-color:#fff}

a.linkA2:link,a.linkA2:visited,a.linkA2:hover{
	color:#000;background-color:#aaa;
	border:1px solid #fff;transition:color 1s;
	border-radius:10px;padding:5px 15px;margin:auto;
	width:300px;text-decoration:none;display:block;
}

a.pLink:link,a.pLink:visited,a.pLink:hover{
	color:#fff;border:1px solid #fff;background-color:#444;
	transition:color 1s;border-radius:5px;padding:0 15px;
}
a.pLink:hover{color:#000;background-color:#fff;border:1px solid #d1d1d1}

a.pLink2:link,a.pLink2:visited{color:#2E4271;text-decoration:none}
a.pLink2:hover{text-decoration:underline}

a.pdLink:link,a.pdLink:visited{
	color:#fff;display:block;white-space:nowrap;
	overflow:hidden;text-overflow:clip;
	margin:0 5px 3px 5px;
	border:1px solid #7786A9;background-color:#2E4271;
	border-radius:3px;text-decoration:none;padding:0 3px;
}
a.pdLink:hover{color:#2E4271;border:1px solid #7786A9;background-color:#fff}

a.pdLink2:link,a.pdLink2:visited{
	color:#fff;display:block;white-space:nowrap;
	width:200px;overflow:hidden;text-overflow:clip;
	margin:auto;background-color:#bbb;
	border-radius:3px;padding:2px;
}
a.pdLink2:hover{color:#bbb;border:1px solid #bbb;background-color:#fff}

a.goo:link,a.goo:visited,a.goo:hover{
	color:#fff;border:1px solid #fff;background-color:#444;
	transition:color 1s;border-radius:5px;padding:0 15px;
}
a.goo:hover{color:#000;background-color:#fff;border:1px solid #d1d1d1}

.arrow{
	padding-left:10px;
	animation:arrowBlink 1s linear infinite;
	position:relative;top:1px;
	font-size:1.2em;
}
@keyframes arrowBlink{50%{opacity:0}}

/* ================================================================
   responsive
   ================================================================ */

@media screen and (max-width:1024px){
	.p1{max-width:310px}
	.content{width:100%}
}

@media screen and (max-width:769px){
	.hero{padding:2.25rem 0 1.5rem}
	.hero-stats{gap:1.5rem}
	.section{padding:2rem 0}
	.graf{max-width:400px}
	.logo{height:48px;width:48px;border-radius:12px}
	.logo img{height:32px}
	.burger{height:42px;width:42px}
	.cat-grid{grid-template-columns:repeat(3,minmax(0,1fr))}

	.specD{width:95%}
	.imgs2,.imgG5,.imgG6,.imgG7,.imgG8,.imgG9,.imgG10,.imgG11,.imgG12,.imgG13,.imgG14,.imgG15,.imgG16,.imgG17,.imgG18,.imgG19,.imgG20,.imgG21,.imgG22,.imgG23,.imgG24,.imgG25,.imgG26,.imgG27,.imgG28,.imgG29,.imgG30,.imgG31,.imgG32,.imgG33,.imgG34{display:none}
	#content{width:100%}
	.compBut{top:0;right:0;cursor:pointer;zoom:1.5}
	.content h1,#content h1{line-height:1.8rem;font-size:2rem;padding:.5rem}
	.gridProd1{font-size:1.1em;line-height:.9em;color:#2E4271;width:49%;box-sizing:border-box}
	.grid{width:100%}
	.grid-item a:link,.grid-item a:visited,.grid-item a:hover{border-radius:10px;font-size:1.2em;line-height:1.2em}
	.imgP{max-width:150px;max-height:150px}
	.gridProd{width:135px}
	.imgs{width:130px;margin:0;padding:0}
	.specGrup{font-size:.6em}
	#q{width:240px}
	.gLine{overflow:hidden;width:99%}
	a.pLink:link,a.pLink:visited,a.pLink:hover{font-size:.8em;line-height:.8em}
	a.linkA:link,a.linkA:visited,a.linkA:hover{font-size:1.5em;line-height:.9em}
	.bread{font-size:1.2em;line-height:1.2em}
	.rec{width:90%}
	a.pdLink:link{display:none}
}

@media screen and (max-width:600px){
	.cat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media screen and (max-width:450px){
	.p1{border:0}
	.prodList{gap:2.5rem}
	.logo{height:44px;width:44px}
	.logo img{height:28px}
	.cat-grid{grid-template-columns:1fr}
}

@media screen and (max-width:320px){
	.rec{width:90%}
}

@media screen and (min-width:800px){
	.val,.date{font-size:1.2rem}
	.valText{font-size:1rem}
}
