/* ============================================
   Thermo Vorwerk Shop - Main Stylesheet
   Polish Version - BIGGER & SHARPER
   ============================================ */

:root {
    --primary-color: #1a1f2e;
    --secondary-color: #00c26f;
    --accent-color: #2d9cff;
    --light-color: #f0f2f5;
    --danger-color: #ff3b30;
    --surface-color: #ffffff;
    --border-color: rgba(0,0,0,0.12);
    --shadow-strong: 0 12px 32px rgba(0,0,0,0.2);
    --shadow-soft: 0 8px 20px rgba(0,0,0,0.12);
}

/* ============================================
   Base Styles
   ============================================ */
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1f2328;
    padding-top: 80px;
    scroll-behavior: smooth;
    background-color: #f4f6f9;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    padding: 14px 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--secondary-color) !important;
    font-size: 1.9rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    width: auto;
    height: 92px;
    max-width: min(320px, 44vw);
    object-fit: contain;
    filter: saturate(1.28) brightness(1.04) contrast(1.03);
}

.navbar-nav .nav-item {
    margin-right: 12px;
    margin-left: 12px;
}

.navbar-nav .nav-link {
    padding: 12px 18px !important;
    font-size: 1.15rem;
    font-weight: 600;
}

.dropdown-menu {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    padding: 14px 0;
}

.dropdown-item {
    padding: 14px 26px;
    font-size: 1.1rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('../images/int_master-en_thermomix_tm7-launch_StoryPhotos_DFP_0925_4x3_3x2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 4rem !important;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-section .lead {
    font-size: 1.6rem !important;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

.stat-badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh !important;
        min-height: 500px !important;
        background-attachment: scroll;
    }
    
    .hero-section h1 {
        font-size: 2.4rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.25rem !important;
    }
    
    .hero-section .btn-lg {
        padding: 1rem 2rem !important;
        font-size: 1.15rem !important;
    }
}

/* ============================================
   Product Cards - BIGGER
   ============================================ */
.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
    background-color: var(--surface-color);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.product-img {
    height: 300px;
    object-fit: contain;
    padding: 24px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px 14px 0 0;
}

.product-img:hover {
    opacity: 0.95;
    transform: scale(1.03);
}

.product-title-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    font-size: 1.35rem;
    font-weight: 700;
}

.product-title-link:hover {
    color: var(--secondary-color);
}

.card-body {
    padding: 28px !important;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ============================================
   Prices - BIGGER
   ============================================ */
.price {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.3px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.3rem;
    margin-right: 14px;
}

.discount-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
}

.product-status-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
}

.product-status-badge .badge {
    font-size: 1rem;
    padding: 10px 16px;
}

.out-of-stock {
    opacity: 0.7;
}

/* ============================================
   Buttons - BIGGER
   ============================================ */
.btn {
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 16px 32px;
    font-size: 1.15rem;
}

.btn-primary:hover {
    background-color: #00a85d;
    border-color: #00a85d;
}

.btn-success {
    background-color: #18b56b;
    border-color: #18b56b;
    padding: 16px 32px;
    font-size: 1.15rem;
}

.btn-success:hover {
    background-color: #109e59;
    border-color: #109e59;
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    border-width: 2px;
    padding: 14px 28px;
    font-size: 1.15rem;
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-light {
    border-width: 2px;
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-lg {
    padding: 20px 40px !important;
    font-size: 1.35rem !important;
    font-weight: 700;
}

.add-to-cart {
    padding: 16px 28px;
    font-size: 1.15rem;
    width: 100%;
    margin-top: auto;
}

/* ============================================
   Cart
   ============================================ */
.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 420px;
    height: 100%;
    background-color: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1050;
    overflow-y: auto;
    border-left: 1px solid var(--border-color);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1040;
    display: none;
}

.cart-overlay.show {
    display: block;
}

.cart-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.cart-actions {
    display: none;
    margin-top: 28px;
}

.cart-actions.show {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ============================================
   Section Titles - BIGGER
   ============================================ */
.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 18px;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 3px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 110px 0;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.testimonial-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 26px;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 22px;
    font-size: 1.4rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* ============================================
   Mobile Cart Button
   ============================================ */
.mobile-cart-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1030;
    display: none;
    box-shadow: var(--shadow-strong);
    width: 70px;
    height: 70px;
    border-radius: 14px;
    font-size: 1.5rem;
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 28px;
    z-index: 1020;
    display: none;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    box-shadow: var(--shadow-strong);
    transition: all 0.25s ease;
    font-size: 1.5rem;
}

.back-to-top:hover {
    background-color: #00a85d;
    transform: translateY(-4px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .hero-section {
        padding: 90px 0;
    }
    
    .mobile-cart-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #cartButton.navbar-cart {
        display: none;
    }
    
    .navbar-nav .nav-item {
        margin-right: 0;
        margin-left: 0;
        padding: 10px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .product-img {
        height: 250px;
    }
}

@media (min-width: 769px) {
    .mobile-cart-button {
        display: none !important;
    }
}

/* ============================================
   Footer
   ============================================ */
footer {
    background-color: var(--primary-color);
    color: white;
    margin-top: 70px;
    padding-top: 70px;
    border-top: 5px solid var(--secondary-color);
}

footer h5, footer h6 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 22px;
}

footer p, footer a, footer li {
    font-size: 1.1rem;
}

footer a.hover-primary:hover {
    color: var(--secondary-color) !important;
    padding-left: 10px;
    transition: all 0.3s ease;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.youtube { background-color: #ff0000; }

.social-icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

footer .bg-light {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

footer .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 20px;
    font-size: 1.1rem;
}

footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 194, 111, 0.25);
    color: white;
}

/* ============================================
   FAQ Section
   ============================================ */
#faq-tm7 .accordion-button {
    background-color: white;
    border-radius: 12px !important;
    padding: 22px 28px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

#faq-tm7 .accordion-button:not(.collapsed) {
    background-color: #e8f4ff;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
}

#faq-tm7 .accordion-body {
    background-color: white;
    border-radius: 0 0 12px 12px;
    padding: 26px;
    font-size: 1.1rem;
    line-height: 1.8;
}

#faq-tm7 .accordion-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

/* ============================================
   Badges - BIGGER
   ============================================ */
.badge {
    font-size: 1rem;
    padding: 10px 16px;
    font-weight: 700;
}

/* ============================================
   Cards - BIGGER
   ============================================ */
.card {
    border-radius: 14px;
}

.card-header {
    padding: 22px 28px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ============================================
   Notifications
   ============================================ */
.notification {
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    animation: notificationPopIn 0.28s ease;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 18px 26px;
    border-radius: 16px;
    min-width: 320px;
    max-width: min(560px, calc(100vw - 32px));
    box-shadow: 0 18px 45px rgba(10, 19, 34, 0.22);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

@keyframes notificationPopIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-16px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .notification {
        top: 88px;
        min-width: 0;
        width: calc(100vw - 24px);
        padding: 16px 18px;
        font-size: 0.98rem;
    }
}

/* ============================================
   Category Page
   ============================================ */
.category-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 90px 0;
    margin-bottom: 50px;
}

.category-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.category-header p {
    font-size: 1.4rem;
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail-img {
    max-height: 600px;
    object-fit: contain;
}

.product-gallery-thumb {
    width: 110px;
    height: 110px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
    border-color: var(--secondary-color);
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-summary {
    background-color: #f8f9fa;
    border-radius: 14px;
    padding: 32px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.15rem;
}

.checkout-total {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-info-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #219653 100%);
    color: white;
    border-radius: 14px;
    padding: 44px;
}

.contact-info-card i {
    font-size: 2.8rem;
    margin-bottom: 22px;
}

.contact-info-card h6 {
    font-size: 1.25rem;
}

.contact-info-card p {
    font-size: 1.15rem;
}

/* ============================================
   Forms - BIGGER
   ============================================ */
.form-control, .form-select {
    padding: 16px 20px;
    font-size: 1.15rem;
    border-radius: 10px;
    border: 2px solid #dee2e6;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 194, 111, 0.15);
}

.form-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ============================================
   Tracking Page
   ============================================ */
.tracking-timeline {
    position: relative;
    padding-left: 44px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-color);
}

.tracking-step {
    position: relative;
    padding-bottom: 32px;
}

.tracking-step::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.tracking-step.completed::before {
    background-color: var(--secondary-color);
}

.tracking-step.pending::before {
    background-color: #ccc;
    box-shadow: 0 0 0 3px #ccc;
}

.tracking-step strong {
    font-size: 1.2rem;
}

.tracking-step p {
    font-size: 1.1rem;
}

/* ============================================
   Carousel
   ============================================ */
.carousel-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
}

.carousel-item p {
    font-size: 1.15rem;
}

.carousel-item li {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 56px;
    height: 56px;
}

/* ============================================
   Highlights Cards
   ============================================ */
.card.border-0.shadow-sm h4 {
    font-size: 1.5rem;
    font-weight: 700;
}

.card.border-0.shadow-sm p {
    font-size: 1.15rem;
}

.card.border-0.shadow-sm .display-4 {
    font-size: 4rem;
}

/* ============================================
   Service Section
   ============================================ */
.service-card {
    padding: 36px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.service-card i {
    font-size: 3.5rem;
}

.service-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.1rem;
}

/* ============================================
   Lists
   ============================================ */
ul.list-unstyled li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ============================================
   Text Sizes
   ============================================ */
h1, .h1 { font-size: 2.8rem; }
h2, .h2 { font-size: 2.4rem; }
h3, .h3 { font-size: 2rem; }
h4, .h4 { font-size: 1.6rem; }
h5, .h5 { font-size: 1.35rem; }
h6, .h6 { font-size: 1.15rem; }

p.lead {
    font-size: 1.35rem;
}

/* ============================================
   Spacing Utilities
   ============================================ */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 4rem !important;
}

/* ============================================
   Footer Trust Section (unified)
   ============================================ */
.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    padding: 28px 0 12px;
    align-items: stretch;
}

.trust-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.015) 100%), #23272f;
    border-radius: 18px;
    padding: 26px 24px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 10px 24px rgba(0,0,0,0.16);
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 42%);
    pointer-events: none;
}

.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
    border-color: rgba(255,255,255,0.11);
}

.trust-card-compact {
    grid-column: span 6;
    min-height: 170px;
}

.trust-card-wide {
    grid-column: span 7;
}

.trust-card-trusted {
    grid-column: span 5;
}

.trust-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.35rem;
    color: #fff;
    box-shadow: 0 10px 18px rgba(39, 174, 96, 0.28);
}

.trust-card-icon.shipping-icon {
    background: linear-gradient(135deg, #2d9cff, #5bb8ff);
    box-shadow: 0 10px 18px rgba(45, 156, 255, 0.28);
}

.trust-card-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    z-index: 1;
}

.trust-card-desc {
    color: #a0aec0;
    font-size: 0.96rem;
    margin: 0;
    line-height: 1.6;
    max-width: 34ch;
    position: relative;
    z-index: 1;
}

.trust-shipping-details {
    display: flex;
    flex-direction: column;
    gap: 9px;
    position: relative;
    z-index: 1;
}

.trust-shipping-details span {
    color: #a0aec0;
    font-size: 0.96rem;
    display: inline-flex;
    align-items: center;
}

.trust-shipping-details i {
    color: #5bb8ff;
}

.trust-card-payment {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 225px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.payment-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 8px 16px rgba(0,0,0,0.16);
    line-height: 1;
}

.payment-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 18px rgba(0,0,0,0.24);
}

.payment-badge.stripe { background: #635bff; color: #fff; }
.payment-badge.dhl { background: #fc0; color: #d40511; font-weight: 800; }
.payment-badge.klarna { background: #ffb3c7; color: #0a0b09; }
.payment-badge.dpd { background: #dc0032; color: #fff; }
.payment-badge.sepa { background: #004990; color: #fff; }
.payment-badge.ratenzahlung { background: #27ae60; color: #fff; }

.trust-images-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.payment-secure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.payment-secure img {
    max-height: 52px;
    max-width: 100%;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}

.payment-secure-installment img {
    height: 46px;
    width: auto;
}

.payment-secure-ssl img {
    height: 44px;
    width: auto;
}

.trusted-shops-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trusted-shops-card img {
    max-width: 84px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.ts-title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    margin-bottom: 6px;
    max-width: 22ch;
    position: relative;
    z-index: 1;
}

.ts-subtitle {
    color: #2ecc71;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.ts-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 16px 0 14px;
    width: min(100%, 280px);
}

.ts-stats {
    color: #a0aec0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.ts-stars {
    color: #f1c40f;
    font-size: 1.22rem;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 0.6px;
    position: relative;
    z-index: 1;
}

/* Headings font */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
    .footer-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-card-compact,
    .trust-card-wide,
    .trust-card-trusted {
        grid-column: span 1;
    }

    .trust-card-payment,
    .trust-card-trusted {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 72px;
        max-width: 58vw;
    }

    .footer-trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 22px;
    }

    .trust-card,
    .trust-card-compact,
    .trust-card-wide,
    .trust-card-trusted {
        grid-column: span 1;
        padding: 20px 18px;
        min-height: auto;
    }

    .trust-card-title {
        font-size: 0.95rem;
    }

    .trust-card-desc,
    .trust-shipping-details span,
    .ts-stats,
    .ts-subtitle {
        font-size: 0.9rem;
    }

    .payment-methods {
        gap: 8px;
        margin-bottom: 14px;
    }

    .payment-badge {
        font-size: 0.72rem;
        padding: 7px 12px;
    }

    .trust-images-row {
        gap: 10px;
    }

    .payment-secure img,
    .payment-secure-installment img,
    .payment-secure-ssl img {
        max-height: 42px;
        height: auto;
    }

    .trusted-shops-card img {
        max-width: 72px;
    }

    .ts-title {
        font-size: 1rem;
    }

    .ts-stars {
        font-size: 1.08rem;
    }
}
