/* Estilos para el frontend del plugin OpenSea Importer */

/* Widget de tipo de cambio */
.gpos-exchange-widget {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #eee;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.gpos-exchange-widget p {
    margin: 5px 0;
    line-height: 1.6;
}

.gpos-exchange-widget .label {
    font-weight: 600;
    color: #333;
    margin-right: 5px;
}

.gpos-exchange-widget .value {
    color: #0073aa;
    font-weight: 700;
}

.gpos-exchange-widget .last-update {
    font-size: 12px;
    color: #777;
    font-style: italic;
    margin-top: 8px;
    border-top: 1px solid #eee;
    padding-top: 5px;
}

/* Información NFT en página de producto */
.opensea-nft-info {
    margin: 30px 0;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

.opensea-nft-info h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.opensea-nft-info p {
    margin: 8px 0;
    line-height: 1.6;
}

.opensea-nft-info strong {
    color: #333;
    font-weight: 600;
}

.opensea-nft-info .button {
    margin-top: 15px;
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.opensea-nft-info .button:hover {
    background-color: #005a87;
}

/* Estilo para la barra superior con tipo de cambio */
.gpos-header-exchange-rate {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
}

.gpos-header-exchange-rate span {
    margin: 0 10px;
    display: inline-block;
}

.gpos-header-exchange-rate .label {
    font-weight: normal;
}

.gpos-header-exchange-rate .value {
    font-weight: bold;
    color: #ffcc00;
    margin-left: 3px;
}

@media (max-width: 768px) {
    .gpos-header-exchange-rate {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .gpos-header-exchange-rate span {
        margin: 0 5px;
    }
}

/* Estilos para atributos NFT */
.woocommerce div.product .opensea-attributes {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.woocommerce div.product .opensea-attributes h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.woocommerce div.product .opensea-attributes table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce div.product .opensea-attributes table th,
.woocommerce div.product .opensea-attributes table td {
    padding: 8px 10px;
    border: 1px solid #e5e5e5;
}

.woocommerce div.product .opensea-attributes table th {
    background-color: #f7f7f7;
    text-align: left;
    font-weight: 600;
    width: 30%;
}

.woocommerce div.product .opensea-attributes table td {
    color: #555;
}

/* Badge NFT para productos en catálogo */
.opensea-nft-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0073aa;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 9;
    border-bottom-left-radius: 4px;
}

.opensea-nft-badge:before {
    content: "NFT";
}