﻿/* ???????????????????????????????????????????????????????????????????????
   FiRelax OnlineShop - Corporate Identity Design
   Harmoniert mit FirelaxSEO & AdminDashboard
   ??????????????????????????????????????????????????????????????????????? */

:root {
    /* FiRelax Brand Colors - Gold/Gelb Akzent */
    --firelax-orange: #feaf39;
    --firelax-orange-hover: #e5981f;
    --firelax-orange-light: #ffc862;
    --firelax-dark: #1a1d23;
    --firelax-darker: #141619;
    --firelax-sidebar: #1e2128;
    --firelax-card: #252932;
    --firelax-border: #2d3139;
    --firelax-text: #e8eaed;
    --firelax-text-secondary: #9aa0a6;
    
    /* Text Akzent-Farbe (dunkleres Orange für Text) */
    --firelax-text-accent: #ff6b35;
    
    /* Status Colors */
    --firelax-green: #34d399;
    --firelax-red: #ef4444;
    --firelax-blue: #3b82f6;
    --firelax-yellow: #fbbf24;
    
    /* Light Theme Colors (für Content-Bereiche) */
    --light-bg: #ffffff;
    --light-text: #2c3e50;
    --light-border: #e5e7eb;
    
    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0 4px 16px rgba(254, 175, 57, 0.3);
}

/* ???????????????????????????????????????????????????????????????????????
   Base Styles
   ??????????????????????????????????????????????????????????????????????? */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: var(--light-text);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ???????????????????????????????????????????????????????????????????????
   Professional Dark Navbar (Corporate Identity) - Modernized
   ??????????????????????????????????????????????????????????????????????? */

.navbar {
    background: linear-gradient(180deg, #0f131a 0%, #0d1015 100%) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar::before { display: none; }

/* Optional subtle separation between header and content */
.shop-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Navbar Container - gleiche Breite wie Content */
.navbar-container {
    max-width: var(--bs-container-xl, 1320px);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    gap: 1.5rem;
}

/* Header matches content width for perfect alignment */
.shop-header__container {
    max-width: var(--bs-container-xxl, 1320px) !important;
}

@media (max-width: 991px) {
    .navbar-container {
        padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
        padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
        flex-wrap: wrap;
    }
}

/* Match Bootstrap `.container` max-widths so header and main content align */
@media (min-width: 576px) {
    .navbar-container { max-width: var(--bs-container-sm, 540px); }
}

@media (min-width: 768px) {
    .navbar-container { max-width: var(--bs-container-md, 720px); }
}

@media (min-width: 992px) {
    .navbar-container { max-width: var(--bs-container-lg, 960px); }
}

@media (min-width: 1200px) {
    .navbar-container { max-width: var(--bs-container-xl, 1140px); }
}

@media (min-width: 1400px) {
    .navbar-container { max-width: var(--bs-container-xxl, 1320px); }
    .shop-header__container { max-width: var(--bs-container-xxl, 1320px) !important; }
}

.navbar-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.navbar-brand {
    color: var(--firelax-text) !important;
    font-size: 1.75rem;
    font-weight: 800;
    transition: var(--transition);
    letter-spacing: -0.5px;
    padding: 0;
    flex-shrink: 0;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(254,175,57,0.3));
}

.navbar-brand i {
    color: var(--firelax-orange);
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(254, 175, 57, 0.5));
}

.navbar-brand:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.navbar-toggler {
    border-color: rgba(254, 175, 57, 0.3);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23feaf39' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Collapse - improved alignment */
.navbar-collapse {
    flex-grow: 1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 991px) {
    .navbar-collapse {
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
    }
    
    .navbar-collapse .search-wrapper {
        order: -1;
        margin-bottom: 1rem;
        max-width: 100%;
    }
}

/* Navigation Links - Enhanced with better spacing */
.nav-link {
    color: rgba(255,255,255,0.86) !important;
    font-weight: 500;
    padding: 0.55rem 0.9rem !important;
    transition: var(--transition);
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    color: #1a1d23 !important;
    box-shadow: 0 4px 15px rgba(254,175,57,0.35);
}

/* Sale Link im Header - wider button for full text visibility */
.nav-link.sale-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(254, 175, 57, 0.18);
    color: rgba(255, 255, 255, 0.82) !important;
    padding: 0.55rem 1.5rem !important;
    border-radius: 14px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: 110px;
    justify-content: center;
}

/* Ensure the sale icon doesn't shift outside the pill */
.nav-link.sale-link i {
    margin-right: 0 !important;
    line-height: 1;
    flex: 0 0 auto;
    font-size: 0.9rem;
}

.nav-link.sale-link i {
    color: rgba(254, 175, 57, 0.9);
    margin-right: 0 !important;
    line-height: 1;
}

.nav-link.sale-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(254, 175, 57, 0.32);
}

/* Search Bar - Modernized */
.search-wrapper {
    max-width: 460px;
    width: 100%;
    flex: 1;
    margin: 0 1.25rem;
}

/* Give nav/actions slightly more room vs. search on desktop */
@media (min-width: 992px) {
    .search-wrapper { flex: 0 1 460px; }
}

.search-input-group {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.search-input-group:focus-within {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(254, 175, 57, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.08);
}

.search-input-group .form-control {
    background: transparent;
    border: none;
    color: var(--firelax-text);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.search-input-group .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.search-input-group .form-control:focus {
    background: transparent;
    box-shadow: none;
    color: var(--firelax-text);
}

.btn-search {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.6rem 1rem;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 0;
}

.btn-search:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Consistent icon sizing in header */
.navbar .nav-link i,
.navbar .btn i {
    font-size: 0.95rem;
}

/* Cart Badge - Enhanced */
.cart-badge-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: linear-gradient(135deg, var(--firelax-red) 0%, #dc2626 100%);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
    min-width: 18px;
    text-align: center;
    border: 2px solid rgba(13,16,21,0.8);
}

/* Anchor badge to the cart icon rather than the full link text */
#cartNavLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#cartNavLink .cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-right: 0.2rem;
}

#cartNavLink .cart-text {
    line-height: 1;
}

#cartNavLink .cart-badge-count {
    top: -20px;
    right: -19px;
    transform: scale(0.8);
}

/* Improved spacing and sizing for action buttons */
#cartNavLink,
.navbar .nav-item.dropdown > .nav-link {
    padding: 0.55rem 1rem !important;
    min-width: auto;
}

.navbar .nav-item.dropdown > .nav-link:hover,
#cartNavLink:hover {
    background: rgba(255, 255, 255, 0.10);
}

/* Dropdown Menu (Dark Theme) - Modernized */
.dropdown-menu-dark {
    background: linear-gradient(180deg, #1a1f28 0%, #161a21 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 0.6rem;
    backdrop-filter: blur(12px);
    margin-top: 8px !important;
}

.dropdown-menu-dark .dropdown-header {
    color: var(--firelax-orange);
    font-weight: 600;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-menu-dark .dropdown-item {
    color: rgba(255,255,255,0.8);
    padding: 0.7rem 1rem;
    transition: var(--transition);
    border-radius: 10px;
    margin: 2px 0;
    font-size: 0.9rem;
}

.dropdown-menu-dark .dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: translateX(4px);
}

.dropdown-menu-dark .dropdown-item.text-danger {
    color: #f87171 !important;
}

.dropdown-menu-dark .dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--firelax-red) !important;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 0.5rem 0;
}

/* ???????????????????????????????????????????????????????????????????????
   Hero Section (Corporate Identity)
   ??????????????????????????????????????????????????????????????????????? */

.hero-modern {
    background: linear-gradient(135deg, var(--firelax-dark) 0%, var(--firelax-sidebar) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 2rem;
    color: white;
    margin-top: -1rem;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(254, 175, 57, 0.1) 0%, transparent 50%);
}

.min-vh-75 {
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: rgba(254, 175, 57, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 175, 57, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(254, 175, 57, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-weight: 400;
    line-height: 1.7;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border: none;
    color: #1a1d23;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    font-size: 1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(254, 175, 57, 0.5);
    color: #1a1d23;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--firelax-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.8s both;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--firelax-orange);
    font-size: 1.25rem;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: -1px;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    fill: #f8f9fa;
}

/* ???????????????????????????????????????????????????????????????????????
   Sections
   ??????????????????????????????????????????????????????????????????????? */

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    color: #1a1d23;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-orange);
}

.section-header h2 {
    color: var(--light-text);
    font-weight: 800;
    margin-top: 1rem;
}

.bg-gradient-light {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* ???????????????????????????????????????????????????????????????????????
   Cards & Products
   ??????????????????????????????????????????????????????????????????????? */

.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    background: white;
}

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

/* Product Cards */
.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 1px solid var(--light-border);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--firelax-orange);
}

.product-image-container {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.product-img-modern {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: var(--transition);
}

.product-card-modern:hover .product-img-modern {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    color: #1a1d23;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    z-index: 2;
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--firelax-text-secondary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6rem;
}

.product-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--firelax-text-accent);
}

.discount-badge {
    background: linear-gradient(135deg, var(--firelax-red) 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Sale Products Cards (für SaleProducts ViewComponent)
   ??????????????????????????????????????????????????????????????????????? */

.product-card-sale {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.product-card-sale:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--firelax-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sale-image-mini {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.sale-image-mini img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.sale-content-mini {
    flex: 1;
    min-width: 0;
}

.sale-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sale-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-sale {
    color: var(--firelax-orange);
    font-weight: 800;
    font-size: 1.1rem;
}

.badge-fire {
    background: linear-gradient(135deg, var(--firelax-red) 0%, #c0392b 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: fire-flicker 0.8s ease-in-out infinite alternate;
}

.sale-link {
    width: 35px;
    height: 35px;
    background: var(--firelax-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1d23;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-card-sale:hover .sale-link {
    background: white;
    transform: translateX(5px);
}

/* ???????????????????????????????????????????????????????????????????????
   Buttons (Corporate Identity)
   ??????????????????????????????????????????????????????????????????????? */

.btn {
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--firelax-orange) 0%, var(--firelax-orange-hover) 100%);
    border: none;
    color: #1a1d23;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(254, 175, 57, 0.4);
    color: #1a1d23;
    background: linear-gradient(135deg, var(--firelax-orange-light) 0%, var(--firelax-orange) 100%);
}

.btn-outline-primary {
    border: 2px solid var(--firelax-orange);
    color: var(--firelax-orange);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--firelax-orange);
    color: #1a1d23;
    transform: translateY(-3px);
}

.btn-outline-dark {
    border: 2px solid var(--light-text);
    color: var(--light-text);
}

.btn-outline-dark:hover {
    background: var(--light-text);
    color: white;
}

/* ???????????????????????????????????????????????????????????????????????
   Footer (Corporate Identity)
   ??????????????????????????????????????????????????????????????????????? */

.footer-dark {
    background: linear-gradient(135deg, var(--firelax-dark) 0%, var(--firelax-sidebar) 100%);
    color: var(--firelax-text);
    margin-top: 6rem;
    border-top: 3px solid var(--firelax-orange);
}

.footer-grid {
    row-gap: 1.5rem;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    color: var(--firelax-orange);
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.footer-text {
    color: var(--firelax-text-secondary);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--firelax-text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 44px;
    padding: 0.25rem 0;
    font-size: 0.98rem;
    line-height: 1.4;
}

.footer-links a i {
    color: var(--firelax-orange);
    width: 1rem;
    font-size: 0.95rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--firelax-orange);
    transform: translateX(3px);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer-links a:focus-visible,
.footer-cta:focus-visible {
    outline: 2px solid var(--firelax-orange);
    outline-offset: 3px;
    border-radius: 0.4rem;
}

.footer-links a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.45rem 0.85rem;
    border-radius: 0.55rem;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-cta--primary {
    background: var(--firelax-orange);
    color: var(--firelax-dark);
}

.footer-cta--primary:hover {
    color: var(--firelax-dark);
    transform: translateY(-2px);
}

.footer-cta--secondary {
    border: 1px solid var(--firelax-text-secondary);
    color: var(--firelax-text);
    background: transparent;
}

.footer-cta--secondary:hover {
    color: var(--firelax-orange);
    border-color: var(--firelax-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(254, 175, 57, 0.15);
    border: 1px solid rgba(254, 175, 57, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--firelax-orange);
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--firelax-orange);
    color: #1a1d23;
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.footer-divider {
    border-color: var(--firelax-border);
    margin: 2rem 0;
}

.footer-copyright {
    color: var(--firelax-text-secondary);
    font-size: 0.9rem;
}

/* ???????????????????????????????????????????????????????????????????????
   Animations
   ??????????????????????????????????????????????????????????????????????? */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ???????????????????????????????????????????????????????????????????????
   Responsive Design
   ??????????????????????????????????????????????????????????????????????? */

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .search-wrapper {
        margin: 1rem 0;
        max-width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-cta-group {
        flex-direction: column;
    }

    .footer-cta {
        width: 100%;
    }

    /* Footer-Links: Touch-Targets mindestens 44px */
    .footer-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        font-size: 0.95rem;
    }
    
    /* Footer Copyright und Social kompakt */
    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }
}