/*
Theme Name: AurumWeiss
Theme URI: https://aurumweiss.de
Author: AurumWeiss Team
Description: Helles, professionelles WordPress-Theme fuer Edelmetall-Haendler. Features: Live-Kurse, Preisrechner, Produktkatalog, Warenkorb, voll anpassbar ueber Customizer.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: aurumweiss
Tags: customizer, e-commerce, gold, silver, light, pastel
*/

/* ============================================
   FONTS & RESET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8f6f1;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .25s ease; }

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --gold: #d4a017;
    --gold-light: #e8c547;
    --gold-pale: #f5e6a3;
    --bg: #f8f6f1;
    --bg-warm: #f0ece3;
    --bg-card: #ffffff;
    --bg-mint: #e8f0ec;
    --text: #1a1a1a;
    --text-muted: #6b6560;
    --text-light: #a39e98;
    --border: rgba(0,0,0,0.06);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --radius: 14px;
    --radius-lg: 20px;
    --container: 1200px;
    --font-serif: 'Playfair Display', Georgia, serif;
}

/* ============================================
   LAYOUT
   ============================================ */
.aw-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
@media(min-width:768px){ .aw-container { padding: 0 40px; } }

.aw-section { padding: 80px 0; }
@media(min-width:768px){ .aw-section { padding: 110px 0; } }

.aw-grid-2 { display: grid; gap: 48px; }
@media(min-width:768px){ .aw-grid-2 { grid-template-columns: 1fr 1fr; } }

.aw-grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media(min-width:768px){ .aw-grid-3 { grid-template-columns: repeat(3,1fr); gap: 24px; } }

.aw-grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(2,1fr); }
@media(min-width:768px){ .aw-grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ============================================
   HEADER
   ============================================ */
.aw-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(248,246,241,0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border);
    height: 70px;
    transition: box-shadow .3s ease;
}
.aw-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.aw-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
@media(min-width:768px){ .aw-header__inner { padding: 0 40px; } }

.aw-logo {
    font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
    color: var(--text); letter-spacing: -0.5px;
}
.aw-logo:hover { color: var(--gold); }
.aw-logo img { max-height: 36px; width: auto; }

/* Nav */
.aw-nav { display: none; }
@media(min-width:768px){
    .aw-nav { display: flex; align-items: center; gap: 36px; }
}
.aw-nav a {
    font-size: .875rem; font-weight: 500; color: var(--text-muted);
    position: relative; padding-bottom: 4px;
}
.aw-nav a:hover { color: var(--text); }
.aw-nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); border-radius: 2px; transition: width .3s ease;
}
.aw-nav a:hover::after { width: 100%; }

/* Mobile */
.aw-mobile-btn { display: flex; background: none; border: none; cursor: pointer; color: var(--text); padding: 6px; }
@media(min-width:768px){ .aw-mobile-btn { display: none; } }

.aw-mobile-nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 16px 24px; box-shadow: var(--shadow-lg);
}
.aw-mobile-nav.open { display: block; }
.aw-mobile-nav a {
    display: block; padding: 14px 0; font-weight: 500; color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}
.aw-mobile-nav a:hover { color: var(--gold); }

/* Cart */
.aw-cart-btn {
    position: relative; padding: 8px; background: none; border: none;
    cursor: pointer; color: var(--text); border-radius: 10px;
    transition: all .25s ease;
}
.aw-cart-btn:hover { background: rgba(212,160,23,0.08); color: var(--gold); }
.aw-cart-badge {
    position: absolute; top: -2px; right: -2px;
    background: var(--gold); color: #fff; font-size: .6rem; font-weight: 700;
    width: 17px; height: 17px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ============================================
   HERO - HELLE VERSION
   ============================================ */
.aw-hero {
    padding-top: 70px;
    background: linear-gradient(160deg, #f8f6f1 0%, #f0ece3 40%, #e8f0ec 100%);
    position: relative; overflow: hidden;
}
.aw-hero__decor {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; pointer-events: none;
}
.aw-hero__decor-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(212,160,23,0.15), transparent 70%);
    top: -10%; right: -5%;
}
.aw-hero__decor-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,197,71,0.12), transparent 70%);
    bottom: 5%; left: -8%;
}

.aw-hero__inner {
    max-width: var(--container); margin: 0 auto; padding: 60px 24px 80px;
    display: grid; gap: 48px; align-items: center;
}
@media(min-width:768px){
    .aw-hero__inner {
        grid-template-columns: 1fr 1fr; padding: 80px 40px 100px; gap: 64px;
    }
}

.aw-hero__content { position: relative; z-index: 2; }
.aw-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,0.1); color: var(--gold);
    font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
    padding: 6px 14px; border-radius: 30px; margin-bottom: 24px;
}
.aw-hero__title {
    font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600; line-height: 1.1; color: var(--text); margin-bottom: 20px;
}
.aw-hero__title span { color: var(--gold); }
.aw-hero__subtitle {
    font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 36px; max-width: 480px;
}

.aw-hero__image {
    position: relative; display: flex; align-items: center; justify-content: center;
}
.aw-hero__image img {
    max-height: 380px; object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
    animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* Buttons */
.aw-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--gold); color: #fff;
    font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 500;
    border: none; border-radius: var(--radius); cursor: pointer;
    transition: all .25s ease; text-decoration: none; line-height: 1;
}
.aw-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,160,23,0.3); }

.aw-btn--outline {
    background: transparent; border: 1.5px solid var(--gold);
    color: var(--gold);
}
.aw-btn--outline:hover { background: var(--gold); color: #fff; }

.aw-btn--light {
    background: var(--bg-card); color: var(--text); box-shadow: var(--shadow);
}
.aw-btn--light:hover { background: var(--gold); color: #fff; }

.aw-btn--sm { padding: 10px 20px; font-size: .8125rem; }

/* ============================================
   VALUE PROPS
   ============================================ */
.aw-value-props { background: var(--bg); }
.aw-value-card {
    text-align: center; padding: 40px 28px;
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all .35s ease;
}
.aw-value-card:hover {
    box-shadow: var(--shadow-lg); transform: translateY(-6px);
    border-color: rgba(212,160,23,0.15);
}
.aw-value-card__icon {
    width: 60px; height: 60px; margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(232,197,71,0.12));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.aw-value-card__title { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.aw-value-card__text { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   LIVE TICKER
   ============================================ */
.aw-ticker {
    background: linear-gradient(135deg, #e8f0ec, #f0ece3);
    padding: 18px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.aw-ticker__header {
    display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px;
}
.aw-ticker__pulse {
    width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
    position: relative;
}
.aw-ticker__pulse::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: rgba(34,197,94,0.3); animation: tickerPulse 2s infinite;
}
@keyframes tickerPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0;transform:scale(1.5)} }

.aw-ticker__label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); }

.aw-ticker__track { display: flex; animation: tickerScroll 35s linear infinite; width: max-content; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

.aw-ticker__item {
    display: inline-flex; align-items: center; gap: 12px;
    margin: 0 28px; white-space: nowrap;
}
.aw-ticker__name { font-size: .8rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; }
.aw-ticker__price { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--text); }
.aw-ticker__unit { font-size: .7rem; color: var(--text-light); margin-left: 2px; font-family: 'Inter',sans-serif; }
.aw-ticker__change { font-size: .75rem; font-weight: 600; }
.aw-ticker__change--up { color: #16a34a; }
.aw-ticker__change--down { color: #dc2626; }

/* ============================================
   SECTION HEADER
   ============================================ */
.aw-section-head { text-align: center; margin-bottom: 56px; }
.aw-section-head__title { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.4rem); font-weight: 600; color: var(--text); margin-bottom: 12px; }
.aw-section-head__subtitle { color: var(--text-muted); font-size: .95rem; max-width: 500px; margin: 0 auto; line-height: 1.6; }

/* ============================================
   PRODUCTS
   ============================================ */
.aw-products { background: var(--bg); }

.aw-product-grid { display: grid; gap: 28px; grid-template-columns: repeat(2,1fr); }
@media(min-width:640px){ .aw-product-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .aw-product-grid { grid-template-columns: repeat(3,1fr); } }

.aw-product {
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: all .35s ease; position: relative;
}
.aw-product:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(212,160,23,0.12); }

.aw-product__img {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    padding: 32px; background: linear-gradient(135deg, #faf9f6, #f0ece3);
    position: relative; overflow: hidden;
}
.aw-product__img img { max-height: 180px; object-fit: contain; transition: transform .5s ease; }
.aw-product:hover .aw-product__img img { transform: scale(1.08); }

.aw-product__badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold); color: #fff; font-size: .6rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .05em;
    display: flex; align-items: center; gap: 3px;
}

.aw-product__info { padding: 24px; }
.aw-product__meta { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 6px; }
.aw-product__name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.aw-product__price { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-bottom: 16px; }

.aw-product__btn {
    width: 100%; padding: 11px; border: 1.5px solid var(--border); background: transparent;
    border-radius: 10px; font-family: 'Inter',sans-serif; font-size: .8rem; font-weight: 500;
    color: var(--text-muted); cursor: pointer; transition: all .25s ease;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.aw-product__btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Featured product card (horizontal) */
.aw-product-row {
    display: grid; gap: 0;
    background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    margin-bottom: 28px; transition: all .35s ease;
}
.aw-product-row:hover { box-shadow: var(--shadow-lg); }
@media(min-width:768px){ .aw-product-row { grid-template-columns: 1fr 1fr; } }

.aw-product-row__img {
    display: flex; align-items: center; justify-content: center;
    padding: 40px; background: linear-gradient(135deg, #faf9f6, #f0ece3);
    min-height: 320px;
}
.aw-product-row__img img { max-height: 260px; object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08)); }

.aw-product-row__info {
    display: flex; flex-direction: column; justify-content: center; padding: 40px;
}
.aw-product-row__meta {
    display: inline-flex; width: fit-content; padding: 4px 12px;
    background: var(--bg-mint); color: var(--text-muted); font-size: .65rem;
    font-weight: 500; border-radius: 20px; text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 14px;
}
.aw-product-row__name { font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.aw-product-row__price { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.aw-product-row__desc { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.aw-product-row__specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.aw-product-row__spec { padding: 5px 12px; background: var(--bg); border-radius: 8px; font-size: .78rem; color: var(--text-muted); }

/* ============================================
   CALCULATOR
   ============================================ */
.aw-calc { background: var(--bg-warm); }
.aw-calc__card {
    max-width: 780px; margin: 0 auto; background: var(--bg-card);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
}
@media(min-width:768px){ .aw-calc__card { padding: 48px; } }

.aw-calc__tabs { display: flex; justify-content: center; margin-bottom: 32px; }
.aw-calc__tab-group { display: inline-flex; background: var(--bg); border-radius: 12px; padding: 4px; }
.aw-calc__tab {
    padding: 10px 28px; border: none; background: none; border-radius: 10px;
    font-family: 'Inter',sans-serif; font-size: .875rem; font-weight: 500;
    color: var(--text-muted); cursor: pointer; transition: all .25s ease;
}
.aw-calc__tab.active { background: var(--gold); color: #fff; box-shadow: 0 2px 8px rgba(212,160,23,0.25); }

.aw-calc__grid { display: grid; gap: 20px; margin-bottom: 28px; }
@media(min-width:768px){ .aw-calc__grid { grid-template-columns: repeat(3,1fr); } }

.aw-calc__field label { display: block; font-size: .8rem; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.aw-calc__field input, .aw-calc__field select {
    width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border);
    border-radius: 10px; font-family: 'Inter',sans-serif; font-size: .95rem; font-weight: 500;
    outline: none; transition: all .2s ease;
}
.aw-calc__field input:focus, .aw-calc__field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.aw-calc__field .flex { display: flex; gap: 8px; }
.aw-calc__field .flex input { flex: 1; }

.aw-calc__result {
    background: linear-gradient(135deg, rgba(212,160,23,0.06), rgba(232,197,71,0.04));
    border-radius: var(--radius); padding: 24px;
}
.aw-calc__result-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.aw-calc__result-item label { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 4px; }
.aw-calc__result-item .value { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.aw-calc__result-item .value--total { font-size: 1.8rem; color: var(--gold); }
.aw-calc__arrow { color: var(--gold); display: none; }
@media(min-width:768px){ .aw-calc__arrow { display: block; } }

/* ============================================
   NEWSLETTER & TRUST
   ============================================ */
.aw-newsletter { background: var(--bg); }
.aw-newsletter__form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
@media(min-width:640px){ .aw-newsletter__form { flex-direction: row; } }
.aw-newsletter__form input {
    flex: 1; padding: 13px 18px; background: var(--bg-card);
    border: 1.5px solid var(--border); border-radius: var(--radius);
    font-family: 'Inter',sans-serif; font-size: .9rem; outline: none; transition: all .2s ease;
}
.aw-newsletter__form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.08); }

.aw-trust-card { background: var(--bg-card); border-radius: var(--radius); padding: 28px 20px; text-align: center; border: 1px solid var(--border); transition: all .3s ease; }
.aw-trust-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.aw-trust-card__icon { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.aw-trust-card__title { font-size: .85rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.aw-trust-card__text { font-size: .72rem; color: var(--text-light); }

/* ============================================
   FOOTER - HELLE VERSION
   ============================================ */
.aw-footer { background: var(--bg-warm); border-top: 1px solid var(--border); }
.aw-footer__top { padding: 80px 0 50px; text-align: center; }
.aw-footer__brand { font-family: var(--font-serif); font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 700; color: var(--text); letter-spacing: -1px; opacity: .15; }
.aw-footer__tagline { font-size: .75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: .15em; margin-top: 8px; }

.aw-footer__links { border-top: 1px solid var(--border); padding: 50px 0; }
.aw-footer__col h4 { font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.aw-footer__col ul { list-style: none; }
.aw-footer__col ul li { margin-bottom: 10px; }
.aw-footer__col a, .aw-footer__col span { font-size: .82rem; color: var(--text-muted); transition: color .25s ease; }
.aw-footer__col a:hover { color: var(--gold); }

.aw-footer__bottom {
    border-top: 1px solid var(--border); padding: 24px 0;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
@media(min-width:768px){ .aw-footer__bottom { flex-direction: row; justify-content: space-between; } }
.aw-footer__copy { font-size: .75rem; color: var(--text-light); }

/* ============================================
   CART DRAWER
   ============================================ */
.aw-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.25); backdrop-filter: blur(4px); z-index: 200; opacity: 0; visibility: hidden; transition: all .3s ease; }
.aw-overlay.show { opacity: 1; visibility: visible; }
.aw-drawer { position: fixed; top: 0; right: 0; width: 100%; max-width: 400px; height: 100%; background: var(--bg-card); z-index: 210; box-shadow: -4px 0 30px rgba(0,0,0,0.08); transform: translateX(100%); transition: transform .4s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; }
.aw-drawer.show { transform: translateX(0); }

.aw-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.aw-drawer__header h3 { font-family: var(--font-serif); font-size: 1.2rem; }
.aw-drawer__close { padding: 8px; background: none; border: none; cursor: pointer; border-radius: 8px; transition: all .2s ease; color: var(--text); }
.aw-drawer__close:hover { background: var(--bg); }

.aw-drawer__body { flex: 1; overflow-y: auto; padding: 20px; }
.aw-drawer__empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; color: var(--text-light); }
.aw-drawer__empty svg { margin-bottom: 16px; opacity: .4; }

.aw-cart-item { display: flex; gap: 14px; background: var(--bg); border-radius: 12px; padding: 14px; margin-bottom: 10px; }
.aw-cart-item__img { width: 64px; height: 64px; background: var(--bg-card); border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.aw-cart-item__img img { width: 100%; height: 100%; object-fit: contain; }
.aw-cart-item__info { flex: 1; min-width: 0; }
.aw-cart-item__name { font-size: .85rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }
.aw-cart-item__price { font-family: var(--font-serif); color: var(--gold); font-size: .9rem; font-weight: 600; margin-bottom: 8px; }
.aw-cart-item__qty { display: flex; align-items: center; gap: 8px; }
.aw-cart-item__qty button { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: var(--bg-card); border: none; border-radius: 6px; cursor: pointer; font-size: .8rem; transition: all .2s ease; }
.aw-cart-item__qty button:hover { background: rgba(212,160,23,0.1); color: var(--gold); }
.aw-cart-item__qty span { font-size: .8rem; font-weight: 500; width: 20px; text-align: center; }
.aw-cart-item__remove { margin-left: auto; padding: 4px; color: var(--text-light); background: none; border: none; cursor: pointer; border-radius: 6px; transition: all .2s ease; }
.aw-cart-item__remove:hover { color: #dc2626; background: rgba(220,38,38,0.06); }

.aw-drawer__footer { padding: 20px; border-top: 1px solid var(--border); }
.aw-drawer__total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.aw-drawer__total-label { color: var(--text-muted); font-size: .9rem; }
.aw-drawer__total-value { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--gold); }
.aw-drawer__checkout { width: 100%; margin-bottom: 8px; }
.aw-drawer__clear { width: 100%; padding: 10px; background: none; border: none; color: var(--text-light); font-size: .8rem; cursor: pointer; border-radius: 8px; transition: all .2s ease; }
.aw-drawer__clear:hover { color: #dc2626; background: rgba(220,38,38,0.05); }

/* ============================================
   PAGES (Impressum, Datenschutz, etc.)
   ============================================ */
.aw-page { padding-top: 100px; min-height: 60vh; }
.aw-page__header { padding: 60px 0; background: linear-gradient(135deg, var(--bg-warm), var(--bg-mint)); border-bottom: 1px solid var(--border); }
.aw-page__header h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; text-align: center; }
.aw-page__content { max-width: 760px; margin: 0 auto; padding: 60px 24px; }
.aw-page__content h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; margin: 40px 0 16px; color: var(--text); }
.aw-page__content h3 { font-size: 1.1rem; font-weight: 600; margin: 28px 0 12px; color: var(--text); }
.aw-page__content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.aw-page__content ul { margin: 16px 0 16px 24px; color: var(--text-muted); }
.aw-page__content ul li { margin-bottom: 8px; line-height: 1.7; }
.aw-page__content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.aw-page__content a:hover { color: var(--gold-light); }
.aw-page__content strong { color: var(--text); }

/* Contact form */
.aw-form input, .aw-form textarea, .aw-form select {
    width: 100%; padding: 13px 16px; background: var(--bg); border: 1.5px solid var(--border);
    border-radius: 10px; font-family: 'Inter',sans-serif; font-size: .9rem; outline: none;
    transition: all .2s ease; margin-bottom: 14px;
}
.aw-form input:focus, .aw-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.aw-form textarea { min-height: 120px; resize: vertical; }
.aw-form label { display: block; font-size: .82rem; font-weight: 500; color: var(--text-muted); margin-bottom: 5px; }

/* ============================================
   ARCHIVE / PRODUCT LIST
   ============================================ */
.aw-archive { padding-top: 100px; padding-bottom: 80px; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media(max-width:767px){
    .aw-product-row { grid-template-columns: 1fr !important; }
    .aw-product-row__img { min-height: 240px; padding: 28px; }
    .aw-product-row__info { padding: 28px; }
    .aw-product-row__name { font-size: 1.2rem; }
    .aw-product-row__price { font-size: 1.3rem; }
    .aw-product-grid { grid-template-columns: repeat(2,1fr) !important; gap: 14px; }
    .aw-product__info { padding: 16px; }
    .aw-calc__card { padding: 28px; }
    .aw-section { padding: 60px 0; }
    .aw-footer__col { text-align: center; }
}

/* ============================================
   ADMIN BAR FIX
   ============================================ */
.admin-bar .aw-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .aw-header { top: 46px; } }

/* ============================================
   ACCESSIBILITY
   ============================================ */
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.aw-animate { animation: fadeInUp .6s ease forwards; }
