/**
 * B2B Action Dashboard - Fassreifung Concept Styles
 * Premium Design with Barrel Maturation Metaphor
 */

/* Import Google Font for elegant typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Raleway:wght@300;400;600;700&display=swap');

/* Main Container */
.b2b-fassreifung-container {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #c9b08c;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: visible;
    max-width: 1400px;
    margin: 2rem auto;
}

/* Compact Progress Bar */
.b2b-compact-progress {
    margin: 2rem 0;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid #FFD700;
}

.progress-text-overlay {
    text-align: center;
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 1rem;
    font-weight: 600;
}

.progress-text-overlay strong {
    color: #FFD700;
    font-size: 1.5rem;
}

.compact-progress-bar {
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.compact-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 20px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* User Widget (oben rechts) */
.b2b-user-widget {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 100;
}

.user-profile-registered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(39,174,96,0.2);
    border: 2px solid #27ae60;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.user-profile-registered .user-icon {
    font-size: 1.5rem;
}

.user-profile-registered .user-name {
    color: #FFD700;
    font-weight: 600;
}

.registered-badge {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

.user-profile-temp {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.temp-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.temp-user-info .user-icon {
    font-size: 1.2rem;
}

.temp-user-id {
    color: #bdc3c7;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.btn-register-bonus {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(231,76,60,0.4);
    animation: pulseRegister 2s infinite;
}

.btn-register-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.6);
}

.register-icon {
    font-size: 1.5rem;
}

.register-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    text-align: left;
}

.register-text strong {
    font-size: 1rem;
    display: block;
}

.register-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

@keyframes pulseRegister {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(231,76,60,0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231,76,60,0.8);
    }
}

.b2b-fassreifung-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><rect width="100" height="100" fill="white"/><path d="M0 0L50 50L0 100M50 0L100 50L50 100" stroke="white" stroke-width="0.5" fill="none"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

/* Header Section */
.b2b-fass-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.b2b-fass-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.b2b-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    color: #ecf0f1;
    margin-top: 0.5rem;
}

/* Elegant Countdown Timer */
.b2b-countdown-elegant {
    display: inline-block;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(201,176,140,0.3);
    margin-top: 1rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.countdown-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.countdown-segment {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.countdown-unit {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #bdc3c7;
    margin-top: 0.25rem;
}

.countdown-separator {
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0 0.25rem;
}

/* Main Fass Area */
.b2b-fass-main {
    position: relative;
    z-index: 1;
}

.b2b-fass-visualization {
    margin-bottom: 3rem;
}

.b2b-fass-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.b2b-fass-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Animated barrel fill */
.barrel-liquid {
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Level markers */
.level-marker {
    transition: all 0.3s ease;
}

.level-marker.level-reached text {
    filter: drop-shadow(0 0 5px rgba(255,215,0,0.5));
}

/* Current Discount Display */
.b2b-current-discount {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.discount-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1;
}

.discount-label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ecf0f1;
    margin-top: 0.5rem;
}

/* Info Section */
.b2b-fass-info {
    text-align: center;
    margin-bottom: 3rem;
}

.b2b-sales-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 10px;
}

.sales-icon {
    font-size: 2rem;
}

.sales-text {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin: 0;
}

.sales-text strong {
    color: #FFD700;
    font-weight: 700;
}

/* CTA Section */
.b2b-cta-section {
    margin-bottom: 2rem;
}

.cta-main {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 0.5rem;
}

.cta-main .highlight {
    color: #FFD700;
    font-weight: 700;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}

.cta-main .level-name {
    color: #FFD700;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-benefit {
    font-size: 1.1rem;
    color: #bdc3c7;
}

.cta-benefit strong {
    color: #FFD700;
}

.maximum-reached .cta-main {
    font-size: 2rem;
}

/* Products Button */
.b2b-products-button {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2c3e50;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.b2b-products-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.5);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* Activity Feed */
.b2b-activity-feed {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0,0,0,0.2);
    border-radius: 15px;
    border: 1px solid rgba(255,215,0,0.2);
}

.activity-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-icon {
    font-size: 1.8rem;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    background: rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: slideInActivity 0.5s ease-out;
}

.activity-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

@keyframes slideInActivity {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-user {
    color: #FFD700;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    min-width: 100px;
}

.activity-action {
    color: #ecf0f1;
    flex: 1;
}

.activity-impact {
    color: #27ae60;
    font-weight: bold;
    background: rgba(39,174,96,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Levels Overview */
.b2b-levels-overview {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.b2b-levels-overview h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.level-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.level-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.level-card.reached {
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.3);
}

.level-card.active {
    background: rgba(255,215,0,0.2);
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.level-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.level-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin: 0.5rem 0;
}

.level-requirement {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin: 0.5rem 0;
}

.level-discount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
}

/* Products Section */
.b2b-products-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(255,215,0,0.2);
}

.products-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.b2b-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default: 3 columns, wird per JS überschrieben */
    gap: 2rem;
    margin: 3rem 0;
}

/* Responsive product grid */
@media (max-width: 1024px) {
    .b2b-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .b2b-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card Wrapper - Container für beide Quadrate */
.product-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Oberes Quadrat - Bildbereich */
.product-image-section {
    position: relative;
    width: 200px;
    min-width: 180px;
    height: 280px;
    min-height: 250px;
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.product-image-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
    border-color: #FFD700;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.discount-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(231,76,60,0.3);
}

.product-image-section .product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-image-section .product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Unteres Quadrat - Produktinfo */
.product-info-section {
    width: 600px;
    min-width: 400px;
    background: rgba(109, 124, 144, 0.5);
    border: 2px solid rgba(255,215,0,0.2);
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    margin-top: 0;
    transition: all 0.3s ease;
}

.product-info-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,215,0,0.2);
    border-color: #FFD700;
}

.product-icon {
    font-size: 5rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.product-info-section .product-title,
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0 0 0.5rem 0;
}

.product-info-section .product-description,
.product-description {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-info-section .product-pricing,
.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-info-section .product-actions,
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Quantity Control */
.product-quantity-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ecf0f1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(0,0,0,0.2);
    padding: 0.75rem;
    border-radius: 10px;
}

.qty-btn {
    background: #3498db;
    border: 2px solid #3498db;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.qty-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(52,152,219,0.4);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: #FFD700;
    width: 80px;
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Request Button */
.btn-submit-request-inline {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-request-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(39,174,96,0.4);
}

.btn-submit-request-inline:active {
    transform: scale(0.98);
}

.btn-submit-request-inline .request-icon {
    font-size: 1.3rem;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #FFD700;
    margin: 0 0 0.5rem 0;
}

.product-description {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.2rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    font-family: 'Playfair Display', serif;
}

/* Product Progress Info */
.product-progress-info {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.products-to-next-level {
    font-size: 0.95rem;
    color: #ecf0f1;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-to-next-level strong {
    color: #FFD700;
    font-size: 1.1rem;
}

.progress-icon {
    font-size: 1.2rem;
}

.mini-progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 10px;
    transition: width 1s ease;
}

.max-discount-reached {
    color: #FFD700;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-add-to-cart-inline {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.btn-add-to-cart-inline:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.btn-add-to-cart-inline:active {
    transform: scale(0.98);
}

.btn-add-to-cart-inline .cart-icon {
    font-size: 1.3rem;
}

.btn-add-to-cart-inline .cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #2c3e50;
}

.btn-add-to-cart-inline.has-items {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.btn-add-to-auction {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-add-to-auction:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,215,0,0.4);
}

.btn-add-to-auction:active {
    transform: scale(0.98);
}

.cart-icon {
    font-size: 1.3rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 0.5rem;
}

.qty-decrease,
.qty-increase {
    background: rgba(255,215,0,0.2);
    border: 1px solid #FFD700;
    color: #FFD700;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-decrease:hover,
.qty-increase:hover {
    background: rgba(255,215,0,0.4);
}

.qty-input {
    background: transparent;
    border: 1px solid rgba(255,215,0,0.3);
    color: #FFD700;
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
}

/* Next Discount Callout */
.next-discount-callout {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

/* Main CTA Section */
.b2b-main-cta-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.15));
    border: 3px solid #FFD700;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255,215,0,0.3);
}

.cta-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
}

.summary-icon {
    font-size: 3rem;
}

.summary-text {
    text-align: left;
}

.summary-title {
    font-size: 1.1rem;
    color: #bdc3c7;
    margin: 0 0 0.5rem 0;
}

.summary-count {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin: 0;
}

.btn-submit-request {
    background: linear-gradient(135deg, #27ae60, #229954);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 6px 25px rgba(39,174,96,0.4);
    margin-bottom: 1.5rem;
    animation: pulseSubmit 2s infinite;
}

.btn-submit-request:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(39,174,96,0.6);
}

.btn-submit-request:active:not(:disabled) {
    transform: translateY(-1px) scale(1.02);
}

.btn-submit-request:disabled {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    cursor: not-allowed;
    opacity: 0.6;
    animation: none;
}

@keyframes pulseSubmit {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(39,174,96,0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(39,174,96,0.7);
    }
}

.submit-icon {
    font-size: 2rem;
}

.submit-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
    text-align: left;
}

.submit-text strong {
    font-size: 1.3rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-text small {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.cta-disclaimer {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.callout-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin: 0 0 1rem 0;
}

.callout-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.highlight-number {
    color: #FFD700;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.highlight-discount {
    color: #FFA500;
    font-size: 1.5rem;
    font-weight: bold;
}

.callout-progress {
    max-width: 600px;
    margin: 0 auto;
}

.callout-progress-bar {
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.callout-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 15px;
    position: relative;
    transition: width 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
}

.progress-text {
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .b2b-fassreifung-container {
        padding: 2rem 1rem;
    }

    .b2b-fass-title {
        font-size: 1.8rem;
    }

    .b2b-subtitle {
        font-size: 1rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .discount-value {
        font-size: 2.5rem;
    }

    .b2b-current-discount {
        padding: 1rem 1.5rem;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .b2b-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.b2b-current-discount {
    animation: pulse 2s infinite;
}

@keyframes fillBarrel {
    from {
        width: 0;
    }
    to {
        width: var(--fill-width);
    }
}

.barrel-liquid {
    animation: fillBarrel 2s ease-out forwards;
}

/* Loading animation for products */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .b2b-fassreifung-container {
        background: white;
        color: black;
        border: 1px solid black;
    }

    .b2b-fass-title,
    .discount-value,
    .cta-main .highlight,
    .level-card h4,
    .level-discount {
        color: black !important;
    }

    .b2b-products-button,
    .b2b-modal {
        display: none;
    }
}