/* Gold Price Display Plugin Styles */

.gpd-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #dee2e6;
    position: relative;
    overflow: hidden;
}

.gpd-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.gpd-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.gpd-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

/* Main Price Display */
.gpd-main-price {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #e6c200;
    position: relative;
    overflow: hidden;
}

.gpd-main-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
}

.gpd-main-price:hover::before {
    left: 100%;
}

.gpd-current-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.gpd-price-label {
    font-size: 16px;
    font-weight: 500;
    color: #8b6914;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gpd-price-value {
    font-size: 42px;
    font-weight: 800;
    color: #8b6914;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.gpd-price-unit {
    font-size: 14px;
    color: #8b6914;
    opacity: 0.8;
    font-style: italic;
}

/* Price Change */
.gpd-price-change {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.gpd-change-positive {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.gpd-change-negative {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.gpd-change-amount {
    font-weight: 700;
}

.gpd-change-percent {
    opacity: 0.9;
}

/* Details Grid */
.gpd-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.gpd-detail-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 22px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gpd-detail-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gpd-detail-label {
    font-weight: 600;
    color: #495057;
    font-size: 15px;
    margin-right: 15px;
}

.gpd-detail-value {
    font-weight: 700;
    color: #2c3e50;
    font-size: 17px;
    text-align: right;
}

/* Gram Prices */
.gpd-gram-prices {
    margin-bottom: 25px;
}

.gpd-gram-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.gpd-gram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    padding: 0 10px;
}

.gpd-gram-item {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 15px 12px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #f39c12;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(243, 156, 18, 0.15);
}

.gpd-gram-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.gpd-gram-karat {
    display: block;
    font-weight: 700;
    color: #d68910;
    font-size: 15px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.gpd-gram-price {
    display: block;
    font-weight: 600;
    color: #8b6914;
    font-size: 17px;
}

.gpd-timestamp {
    text-align: center;
    margin-top: 25px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    font-size: 14px;
    color: #666;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.gpd-disclaimer {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #888;
    font-style: italic;
    padding: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    border: 1px dashed #ccc;
}

.gpd-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gpd-container {
        margin: 10px;
        padding: 20px;
    }
    
    .gpd-price-value {
        font-size: 36px;
    }
    
    .gpd-title {
        font-size: 24px;
    }
    
    .gpd-details-grid {
        grid-template-columns: 1fr;
    }
    
    .gpd-gram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gpd-detail-item {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .gpd-container {
        padding: 15px;
        margin: 5px;
    }
    
    .gpd-price-value {
        font-size: 32px;
    }
    
    .gpd-title {
        font-size: 22px;
    }
    
    .gpd-main-price {
        padding: 20px;
    }
    
    .gpd-gram-grid {
        grid-template-columns: 1fr;
    }
    
    .gpd-price-change {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Loading animation */
.gpd-loading {
    text-align: center;
    padding: 20px;
}

.gpd-loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility improvements */
.gpd-price-item:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .gpd-container {
        box-shadow: none;
        border: 1px solid #000;
        background: white;
    }
    
    .gpd-price-item {
        background: white !important;
        border: 1px solid #000;
        color: #000 !important;
    }
}