/* Floating Price Header */
.pm-floating-price-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    z-index: 999999;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.pm-floating-price-header.minimized {
    transform: translateY(-80%);
}

.pm-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pm-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #d4af37;
}

.pm-header-prices {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.pm-header-metal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.pm-metal-symbol {
    font-weight: 700;
    font-size: 0.8rem;
    color: #d4af37;
}

.pm-metal-name {
    font-size: 0.7rem;
    opacity: 0.8;
}

.pm-metal-price {
    font-weight: 700;
    font-size: 1rem;
    color: #ffd700;
}

.pm-metal-change {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.pm-header-toggle button {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Adjust body for fixed header */
body {
    padding-top: 60px;
}

/* Simple Product Price Display */
.pm-simple-price-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
}

.pm-final-price .woocommerce-Price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
}

.pm-live-indicator-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #28a745;
    font-weight: 600;
    margin-top: 10px;
}

.pm-live-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pm-pulse 2s infinite;
}

@keyframes pm-pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Enhanced Add to Cart */
.pm-enhanced-cart-simple {
    margin: 20px 0;
    text-align: center;
}

.pm-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.price-updated {
    background: rgba(212, 175, 55, 0.3) !important;
    transition: background 0.5s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pm-header-prices {
        gap: 15px;
    }
    
    .pm-header-metal {
        font-size: 0.8rem;
    }
    
    .pm-final-price .woocommerce-Price-amount {
        font-size: 2rem;
    }
    
    .pm-trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
    
    body {
        padding-top: 50px;
    }
}