﻿/* BERRY-PURE MANUFAKTUR GERMANY - Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #7E22CE;
  --accent-color: #6B21A8;
  --bg-body: #FAF5FF;
  --bg-card: #FFFFFF;
  --bg-dark: #581C87;
  --text-dark: #581C87;
  --text-muted: #475569;
  --text-light: #94A3B8;
  --border-color: rgba(226, 232, 240, 0.8);
  --border-highlight: #E9D5FF;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 10px; 
  --radius-md: 18px; 
  --radius-lg: 28px; 
  --radius-full: 9999px;
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.04); 
  --shadow-md: 0 12px 32px -8px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 48px -12px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px #7E22CE35;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: var(--text-dark); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

.top-bar { background: var(--bg-dark); color: #FFFFFF; padding: 0.7rem 0; font-size: 0.85rem; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.08); }
.header { background: rgba(12, 10, 9, 0.92); border-bottom: 1px solid rgba(255,255,255,0.1); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(20px) saturate(180%); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 84px; }
.logo { display: flex; align-items: center; gap: 0.9rem; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.02em; }
.logo-badge { width: 46px; height: 46px; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)); border: 1.5px solid var(--primary-color); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.4rem; box-shadow: var(--shadow-glow); }

.nav-menu { display: flex; gap: 2.2rem; align-items: center; list-style: none; }
.nav-link { color: #E2E8F0; font-size: 0.95rem; font-weight: 600; position: relative; padding: 0.4rem 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #FFFFFF; }

.cart-btn { background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: #FFFFFF; padding: 0.7rem 1.4rem; border-radius: var(--radius-full); font-weight: 700; font-family: var(--font-heading); display: inline-flex; align-items: center; gap: 0.7rem; cursor: pointer; border: none; box-shadow: var(--shadow-glow); transition: all 0.3s ease; }
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px #7E22CE60; }
.cart-badge { background: #FFFFFF; color: var(--bg-dark); width: 24px; height: 24px; border-radius: 50%; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: 900; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem; padding: 0.95rem 2rem; border-radius: var(--radius-md); font-weight: 700; font-family: var(--font-heading); font-size: 1rem; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); border: none; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); color: #FFFFFF; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px #7E22CE50; }
.btn-outline { background: rgba(255,255,255,0.9); border: 1.5px solid var(--border-color); color: var(--text-dark); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); }

.hero { padding: 5.5rem 0 4rem; background: radial-gradient(circle at 80% 20%, #7E22CE25 0%, transparent 50%), radial-gradient(circle at 10% 80%, #6B21A820 0%, transparent 45%), linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-body) 100%); color: #FFFFFF; border-bottom: 1px solid var(--border-color); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3.5rem; align-items: center; position: relative; z-index: 2; }
.hero-title { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 900; line-height: 1.12; margin-bottom: 1.4rem; letter-spacing: -0.03em; background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: 1.2rem; color: #CBD5E1; margin-bottom: 2.2rem; line-height: 1.7; font-weight: 400; }

.trust-banner { background: #FFFFFF; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.8rem; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; margin-top: -2.5rem; box-shadow: var(--shadow-lg); position: relative; z-index: 10; backdrop-filter: blur(20px); }
.trust-item { font-size: 0.88rem; font-weight: 700; font-family: var(--font-heading); color: var(--text-dark); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-item i { font-size: 2rem; color: var(--primary-color); background: var(--bg-body); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-highlight); transition: transform 0.3s ease; }

.section { padding: 5rem 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; margin-bottom: 0.8rem; text-align: center; letter-spacing: -0.02em; }
.section-subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3.5rem; max-width: 650px; margin-left: auto; margin-right: auto; }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.3rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }

.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--shadow-glow); border-color: var(--primary-color); }

.badge-pill { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.95rem; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 800; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.03em; }
.badge-highlight { background: var(--bg-body); border: 1.5px solid var(--border-highlight); color: var(--primary-color); }

.product-img-box { height: 200px; background: radial-gradient(circle at center, var(--bg-body) 0%, #FFFFFF 100%); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--primary-color); margin-bottom: 1.4rem; border: 1px solid var(--border-color); }

.footer { background: var(--bg-dark); color: #94A3B8; padding: 5.5rem 0 2.5rem; margin-top: 6rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3.5rem; margin-bottom: 3.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.2rem; font-size: 0.88rem; }

.toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 999999; }
.toast { background: rgba(12, 10, 9, 0.96); color: #FFFFFF; border: 1.5px solid var(--primary-color); padding: 1rem 1.6rem; border-radius: var(--radius-md); display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-lg), var(--shadow-glow); backdrop-filter: blur(12px); font-weight: 600; min-width: 320px; }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.5rem; }
  .trust-banner { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
