*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1b2241; --navy2: #242c52; --gold: #c89a1a; --gold2: #e6b520;
  --gold-bg: #fdf3d0; --red: #d93025; --white: #ffffff; --gray: #f5f4ef;
  --text: #1a1a2e; --muted: #6b6b7a; --border: #e0ddd5; --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.10); --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-bar { background: var(--navy); color: var(--white); font-size: .8rem; font-weight: 500; padding: 8px 0; }
.top-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; opacity: .9; }
.top-bar-item svg { flex-shrink: 0; }

header { background: var(--navy2); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(0,0,0,.25); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-wrap img { height: 52px; width: 52px; object-fit: contain; border-radius: 8px; background: white; padding: 2px; }
.logo-name { color: var(--white); font-size: 1.15rem; font-weight: 800; line-height: 1.2; letter-spacing: .02em; }
.logo-name span { color: var(--gold2); }

.search-bar { flex: 1; max-width: 580px; position: relative; }
.search-bar input { width: 100%; padding: 10px 44px 10px 16px; border-radius: 8px; border: none; font-size: .9rem; font-family: inherit; outline: none; background: rgba(255,255,255,.12); color: var(--white); }
.search-bar input::placeholder { color: rgba(255,255,255,.55); }
.search-bar button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: rgba(255,255,255,.7); }

nav { margin-left: auto; display: flex; gap: 4px; }
nav a { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: background .2s, color .2s; }
nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
nav a.active { background: var(--gold); color: var(--white); }

.cart-btn { display: flex; align-items: center; gap: 8px; background: var(--gold); color: var(--white); border: none; border-radius: 8px; padding: 9px 18px; font-size: .88rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; flex-shrink: 0; }
.cart-btn:hover { background: var(--gold2); }

.hero { position: relative; min-height: 88vh; overflow: hidden; padding-bottom: 60px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,20,50,.82) 0%, rgba(15,20,50,.42) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; min-height: 88vh; display: flex; flex-direction: column; justify-content: center; max-width: 1280px; margin: 0 auto; padding: 80px 24px 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,154,26,.2); border: 1px solid var(--gold); color: var(--gold2); border-radius: 100px; padding: 5px 14px; font-size: .8rem; font-weight: 600; margin-bottom: 20px; width: fit-content; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.15; max-width: 640px; margin-bottom: 18px; }
.hero h1 span { color: var(--gold2); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 500px; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }
.btn-primary { background: var(--gold); color: var(--white); border: none; border-radius: 10px; padding: 13px 28px; font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); border-radius: 10px; padding: 11px 24px; font-size: .95rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: border-color .2s, background .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-stats { position: relative; z-index: 10; max-width: 1280px; margin: -40px auto 64px; padding: 0 24px; display: flex; gap: 20px; }
.stat-card { background: var(--white); border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.14); border-radius: 14px; padding: 18px 24px; text-align: center; min-width: 130px; flex: 1; }
.stat-card .num { font-size: 1.7rem; font-weight: 800; color: var(--gold); }
.stat-card .lbl { font-size: .75rem; color: var(--muted); margin-top: 4px; font-weight: 500; }


.section { padding: 72px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: .78rem; font-weight: 700; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 560px; margin-bottom: 40px; }
.dash { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 12px 0 16px; }

.categories { background: var(--gray); }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,20,50,.85) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.cat-overlay h3 { color: var(--white); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.cat-overlay p { color: rgba(255,255,255,.75); font-size: .85rem; margin-bottom: 14px; }
.cat-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--white); border-radius: 8px; padding: 8px 16px; font-size: .82rem; font-weight: 700; width: fit-content; transition: background .2s; }
.cat-btn:hover { background: var(--gold2); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img-wrap { height: 220px; overflow: hidden; position: relative; background: #f8f7f3; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.price-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white); border-radius: 100px; padding: 4px 12px; font-size: .82rem; font-weight: 700; }
.product-body { padding: 18px 20px 22px; }
.product-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.product-name { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.wish-btn { background: none; border: none; cursor: pointer; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.old-price { font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-bottom: 2px; }
.tiered-label { font-size: .75rem; color: var(--muted); margin-bottom: 14px; }
.tiered-label a { color: var(--gold); font-weight: 600; }
.select-wrap { margin-bottom: 14px; }
.select-wrap label { font-size: .75rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; display: block; }
.select-wrap select { width: 100%; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--border); font-family: inherit; font-size: .85rem; background: var(--white); cursor: pointer; outline: none; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-ctrl button { width: 34px; height: 36px; border: none; background: #f0ede5; font-size: 1.1rem; cursor: pointer; font-family: inherit; transition: background .15s; }
.qty-ctrl button:hover { background: #e0dcd0; }
.qty-ctrl span { width: 36px; text-align: center; font-weight: 600; font-size: .9rem; }
.add-btn { flex: 1; background: var(--gold); color: var(--white); border: none; border-radius: 8px; padding: 10px 12px; font-size: .88rem; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.add-btn:hover { background: var(--gold2); }
.mehr-link { font-size: .78rem; color: #3a7bd5; font-weight: 500; display: block; margin-top: 6px; }

.about { background: var(--gray); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -24px; right: -24px; width: 180px; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.about-img-secondary img { width: 100%; height: 130px; object-fit: cover; }
.about-text .section-title { margin-bottom: 0; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-checklist { list-style: none; margin: 20px 0 28px; }
.about-checklist li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .92rem; }
.about-checklist li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-grid .g-item { border-radius: var(--radius); overflow: hidden; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-grid .g-item:first-child { grid-row: 1 / 3; }
.gallery-grid .g-item:first-child img { height: 100%; }
.gallery-grid .g-item:not(:first-child) img { height: 200px; }

.cta-section { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .15; }
.cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-content .section-label { color: var(--gold2); }
.cta-content .section-title { color: var(--white); margin-bottom: 14px; }
.cta-content p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h5 { font-size: .82rem; color: var(--muted); font-weight: 500; }
.contact-item p { font-size: .95rem; font-weight: 600; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea { padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); font-family: inherit; font-size: .9rem; outline: none; transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 120px; resize: vertical; }

footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.payment-logos { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,.12); border-radius: 6px; padding: 5px 10px; font-size: .75rem; font-weight: 600; color: var(--white); }
.footer-col h5 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-col a { display: block; font-size: .84rem; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border); }
.checkout-form { max-width: 500px; display: flex; flex-direction: column; gap: 14px; }
.checkout-form input, .checkout-form textarea { padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border); font-family: inherit; font-size: .9rem; }
.empty-cart { text-align: center; padding: 60px 20px; color: var(--muted); }


/* ===== ÜBER EUGEN ===== */
.eugen-section { background: var(--white); padding: 80px 0; }
.eugen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eugen-photo-wrap { position: relative; }
.eugen-photo-main { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; max-height: 520px; }
.eugen-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.eugen-photo-badge { position: absolute; bottom: 28px; left: -20px; background: var(--navy); color: var(--white); border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); min-width: 160px; }
.eugen-photo-badge .badge-name { font-weight: 800; font-size: 1rem; margin-bottom: 2px; color: var(--white); }
.eugen-photo-badge .badge-loc { font-size: .78rem; color: var(--gold2); display: flex; align-items: center; gap: 5px; }
.eugen-quote { font-size: 1.15rem; color: var(--muted); font-style: italic; line-height: 1.7; border-left: 3px solid var(--gold); padding-left: 20px; margin: 20px 0 28px; }

/* ===== WARUM UNS VERTRAUEN ===== */
.trust-section { background: var(--navy); padding: 72px 0; }
.trust-section .section-label { color: var(--gold2); }
.trust-section .section-title { color: var(--white); }
.trust-section .dash { background: var(--gold2); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.trust-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 28px 24px; color: var(--white); transition: background .2s; }
.trust-card:hover { background: rgba(255,255,255,.12); }
.trust-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,154,26,.2); color: var(--gold2); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.trust-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ===== SO FUNKTIONIERT ===== */
.process-section { background: var(--gray); padding: 72px 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px); height: 2px; background: linear-gradient(to right, var(--gold), var(--gold2)); opacity: .4; }
.process-step { text-align: center; position: relative; }
.process-num { width: 56px; height: 56px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(200,154,26,.35); }
.process-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ===== ZUCHT & QUALITÄT ===== */
.quality-section { background: var(--white); padding: 72px 0; }
.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 40px; }
.quality-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quality-photo { border-radius: 12px; overflow: hidden; }
.quality-photo img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s; }
.quality-photo:hover img { transform: scale(1.05); }
.quality-photo.tall img { height: 240px; }
.quality-cards { display: flex; flex-direction: column; gap: 16px; }
.quality-card { display: flex; align-items: flex-start; gap: 16px; background: var(--gray); border-radius: 12px; padding: 18px 20px; }
.quality-card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quality-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.quality-card p { font-size: .82rem; color: var(--muted); }

/* ===== GALLERY с подписями ===== */
.gallery-caption-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s; display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(15,20,50,.85) 0%, transparent 100%); padding: 20px 16px 14px; }
.gallery-caption span { font-size: .78rem; font-weight: 700; color: var(--gold2); text-transform: uppercase; letter-spacing: .06em; display: block; }
.gallery-caption p { font-size: .88rem; color: var(--white); margin-top: 2px; }


/* ===== BEEKEEPING PRODUCT CARD ===== */
.bee-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 20px; font-size: .72rem; font-weight: 700; border: 1px solid; }
.bee-badge-family { background: #fff8e1; color: #b8860b; border-color: #f5d67a; }
.bee-badge-package { background: #e8f5e9; color: #2e7d32; border-color: #81c784; }
.bee-badge-queen { background: #fce4ec; color: #c62828; border-color: #ef9a9a; }
.bee-badge-avail { background: #e3f2fd; color: #1565c0; border-color: #90caf9; }
.bee-badge-bookable { background: #fff8e1; color: #b8860b; border-color: #f5d67a; }
.bee-badge-sold_out { background: #fce4ec; color: #c62828; border-color: #ef9a9a; }
.bee-badge-waiting_list { background: #f3e5f5; color: #6a1b9a; border-color: #ce93d8; }
.bee-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 12px; }
.bee-spec { background: #f8f7f3; border: 1px solid #e0ddd5; border-radius: 6px; padding: 3px 8px; font-size: .72rem; color: #555; display: flex; align-items: center; gap: 4px; }
.bee-spec strong { color: #1a1a2e; }
.product-type-section { margin-bottom: 56px; }
.product-type-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.product-type-header h2 { font-size: 1.4rem; font-weight: 800; }
.product-type-header .type-count { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold); border-radius: 20px; padding: 3px 12px; font-size: .8rem; font-weight: 700; }
.product-type-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-bg); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lang-option { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75); border-radius: 6px; padding: 5px 9px; font-size: .75rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s, color .2s, border-color .2s; letter-spacing: .03em; }
.lang-option:hover { background: rgba(255,255,255,.18); color: var(--white); }
.lang-option.active { background: var(--gold); border-color: var(--gold); color: var(--white); }

@media (max-width: 768px) { .lang-switcher { gap: 3px; } .lang-option { padding: 4px 7px; font-size: .7rem; } }

@media (max-width: 1024px) { .features-inner { grid-template-columns: repeat(2, 1fr); } .cat-grid { grid-template-columns: 1fr 1fr; } .products-grid { grid-template-columns: 1fr 1fr; } .about-grid { gap: 36px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .eugen-grid { gap: 36px; } .trust-grid { grid-template-columns: 1fr 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } .process-steps::before { display: none; } }
@media (max-width: 768px) { .cat-grid { grid-template-columns: 1fr; } .products-grid { grid-template-columns: 1fr; } .about-grid { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-grid .g-item:first-child { grid-row: auto; } .footer-grid { grid-template-columns: 1fr; } nav { display: none; } .hero-stats { flex-wrap: wrap; margin-top: -24px; gap: 12px; } .hero-stats .stat-card { min-width: calc(50% - 6px); flex: none; } .features-strip { margin-top: 24px; } .features-inner { grid-template-columns: repeat(2, 1fr); } .eugen-grid { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } .quality-grid { grid-template-columns: 1fr; } .gallery-caption-grid { grid-template-columns: 1fr 1fr; } .social-inner { flex-direction: column; text-align: center; } .social-links { flex-wrap: wrap; justify-content: center; } .eugen-photo-badge { left: 16px; } }
