Exkluzív Ellátás
A tökéletes zöld banán a legboldogabb majmoknak
Felejtsd el a túlérett, puha gyümölcsöket. Az igazi alfa-hímek és a gondos anyukák tudják, hogy a ropogós, vitaminban gazdag zöld banán a fitt és energikus mindennapok titka.
Kérem a kosarat
Miért pont a zöld?
A tudomány a textúra mögött
A zöld banán rezisztens keményítőt tartalmaz, amely hosszan tartó energiát biztosít az ágakon való ugráláshoz. Nem okoz hirtelen vércukorszint-ingadozást, így a falka egész nap megőrzi a fókuszát.
- 3x több rost: A könnyebb emésztésért.
- Garantáltan kemény: Mert a rágás élménye is számít.
- Frissen szedve: Egyenesen a prémium ültetvényekről.
/* --- Alapbeállítások & UPS Színpaletta --- */
:root {
--ups-brown: #351c15; /* Az ikonikus UPS barna */
--ups-gold: #ffb500; /* Az ikonikus UPS sárga/arany */
--ups-gold-hover: #e09f00;
--text-dark: #22120e;
--text-light: #f9f6f5;
--bg-light: #fcfaf7;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Montserrat', sans-serif;
color: var(--text-dark);
background-color: var(--bg-light);
line-height: 1.6;
}
.container {
max-width: 1140px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
gap: 50px;
}
/* --- Tipográfia & Gombok --- */
h1 {
font-size: 2.8rem;
font-weight: 800;
color: var(--ups-brown);
line-height: 1.2;
margin-bottom: 20px;
}
h2 {
font-size: 2.3rem;
font-weight: 700;
color: var(--ups-brown);
line-height: 1.3;
margin-bottom: 20px;
}
p {
font-size: 1.1rem;
color: #555;
margin-bottom: 30px;
}
.highlight {
color: var(--ups-gold);
background-color: var(--ups-brown);
padding: 2px 8px;
display: inline-block;
}
.badge {
display: inline-block;
background-color: var(--ups-gold);
color: var(--ups-brown);
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
padding: 5px 12px;
border-radius: 4px;
margin-bottom: 15px;
letter-spacing: 1px;
}
/* Gombok */
.btn-primary {
display: inline-block;
background-color: var(--ups-gold);
color: var(--ups-brown);
text-decoration: none;
font-weight: 700;
padding: 15px 35px;
border-radius: 5px;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.btn-primary:hover {
background-color: var(--ups-gold-hover);
transform: translateY(-2px);
}
.btn-secondary {
background-color: var(--ups-brown);
color: var(--ups-gold);
border: 2px solid var(--ups-gold);
padding: 15px 30px;
font-weight: 700;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: var(--ups-gold);
color: var(--ups-brown);
}
/* Kép formázás */
.image-side img, .cta-image img {
width: 100%;
max-width: 500px;
height: auto;
border-radius: 12px;
box-shadow: 0 10px 20px rgba(53, 28, 21, 0.15);
display: block;
}
/* --- 1. BLOKK: Hero Section --- */
.hero-block {
padding: 80px 0;
background: linear-gradient(135deg, #fcfaf7 0%, #f3ece6 100%);
min-height: 85vh;
display: flex;
align-items: center;
}
.content-side {
flex: 1;
}
.image-side {
flex: 1;
display: flex;
justify-content: center;
}
/* --- 2. BLOKK: Benefit Section --- */
.benefit-block {
padding: 100px 0;
background-color: #ffffff;
}
.reverse-container {
flex-direction: row-reverse;
}
.benefit-list {
list-style: none;
}
.benefit-list li {
margin-bottom: 12px;
position: relative;
padding-left: 25px;
font-size: 1.05rem;
}
.benefit-list li::before {
content: "✓";
position: absolute;
left: 0;
color: var(--ups-gold);
font-weight: 700;
background-color: var(--ups-brown);
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
top: 4px;
}
/* --- 3. BLOKK: CTA Section --- */
.cta-block {
padding: 80px 0;
background-color: var(--ups-brown);
color: var(--text-light);
}
.cta-container {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 50px;
}
.cta-block h2 {
color: var(--ups-gold);
}
.cta-block p {
color: #ccc;
}
.cta-content {
flex: 1.2;
}
.cta-image {
flex: 0.8;
display: flex;
justify-content: center;
}
.cta-actions {
display: flex;
gap: 15px;
margin-top: 20px;
}
.cta-input {
flex: 1;
padding: 15px 20px;
border: none;
border-radius: 5px;
font-size: 1rem;
font-family: inherit;
}
.cta-input:focus {
outline: 3px solid var(--ups-gold);
}
/* --- Reszponzivitás (Mobil nézet) --- */
@media (max-width: 768px) {
.container, .reverse-container {
flex-direction: column;
text-align: center;
gap: 35px;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.8rem;
}
.image-side, .cta-image {
width: 100%;
}
.benefit-list li {
text-align: left;
}
.cta-actions {
flex-direction: column;
}
.cta-container {
padding: 30px 20px;
}
}