@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- PREMIUM DESIGN SYSTEM V3.0 --- */
:root {
    --primary: #facc15; /* Premium Yellow */
    --primary-hover: #eab308;
    --dark: #222222;
    --black: #111111;
    --text: #333333;
    --text-muted: #777777;
    --bg-light: #f4f5f7;
    --white: #ffffff;
    --border: #eaeaea;
    --radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --max-width: 1400px;
}

/* --- RESET & BASE --- */
body {
    font-family: 'Inter', sans-serif !important;
    background-color: #ffffff;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .outfit-font {
    font-family: 'Outfit', sans-serif !important;
    text-transform: none !important;
    font-weight: 700;
}

/* Container Width */
.container {
    max-width: var(--max-width) !important;
}

/* --- SECTION WRAPPER --- */
.section-wrapper {
    padding: 80px 0;
}

.bg-light-grey {
    background-color: #f8fafc;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 20px 0;
    background: #fff;
}

.hero-container {
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-content h1 {
    font-size: 34px !important;
    line-height: 1.1;
    font-weight: 800;
}

.hero-benefits i {
    color: var(--primary) !important;
}

/* --- TRUST BAR --- */
.trust-bar {
    padding: 15px 0;
}

.trust-item {
    font-size: 13px;
    font-weight: 700;
}

/* --- CATEGORY GRID --- */
.cat-card-v2 {
    transition: var(--transition);
}

.cat-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

/* --- PRODUCT CARDS --- */
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 5;
}

.badge-bestseller { background: var(--primary); color: #000; }
.badge-neu { background: #28a745; color: #fff; }
.badge-top { background: #007bff; color: #fff; }

.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 10px;
}

.scarcity-text {
    font-size: 13px;
    color: #d32f2f;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.micro-trust {
    font-size: 13px;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.micro-trust div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #555;
}

.micro-trust i {
    color: #22c55e;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    height: 45px;
    overflow: hidden;
}

.product-title a {
    color: var(--dark);
    text-decoration: none;
}

/* --- DEAL OF THE WEEK --- */
.angebot-woche-full-bg {
    background-color: #1e293b;
    padding: 80px 0;
    color: #fff;
    border-top: 5px solid var(--primary);
}

.adw-title {
    font-size: 38px;
    line-height: 1.1;
    font-weight: 800;
}

.adw-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    margin: 25px 0;
}

.adw-price small {
    font-size: 18px;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 15px;
}

.adw-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.adw-bullets li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.adw-bullets i {
    color: var(--primary);
}

.img-col img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* --- BUTTONS --- */
.btn {
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: #000 !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    padding: 14px;
}

/* --- RESPONSIVE GRID --- */
.grid {
    display: grid;
    gap: 30px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .adw-title { font-size: 32px; }
    .adw-price { font-size: 36px; }
}

@media (max-width: 768px) {
    .grid-4 { grid-template-columns: 1fr; }
    .angebot-woche-flex-new { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { text-align: center; padding: 20px; }
    .hero-benefits { display: inline-block; text-align: left; }
    .section-wrapper { padding: 40px 0; }
}

/* --- JTL ADJUSTMENTS --- */
.logo img {
    max-height: 80px !important;
}

#premium-homepage {
    overflow-x: hidden;
}
