<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Container gÃ©nÃ©ral === */
.ams-search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* === Formulaire de recherche === */
#amazon-search-form,
#ams-combined-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 700px;
    margin: 20px auto;
    padding: 10px;
    gap: 10px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

#amazon-search-input,
#ams-combined-search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    min-width: 240px;
    transition: border-color 0.3s ease;
}

#amazon-search-input:focus,
#ams-combined-search-input:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 2px rgba(28,110,242,0.2);
}

#amazon-search-form button[type="submit"],
#ams-combined-search-form button[type="submit"] {
    padding: 12px 18px;
    background-color: #ff9900;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#amazon-search-form button[type="submit"]:hover,
#ams-combined-search-form button[type="submit"]:hover {
    background-color: #ca7900;
}

/* === RÃ©sultats de recherche === */
.ams-platform-results {
    margin-top: 30px;
}

.ams-platform-title {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #eee;
}

/* === Grille de produits === */
.product-grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.product-grid,
.ams-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* === Cartes de produits === */
.product-card,
.ams-product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover,
.ams-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* === Images des produits === */
.product-card img,
.ams-product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 5px;
}

/* === DÃ©tails du produit === */
.ams-product-details {
    padding: 15px;
}

.product-card h3,
.ams-product-title {
    font-size: 1rem;
    margin: 10px 0;
    color: #333;
}

.ams-product-price {
    font-weight: bold;
    color: #B12704;
    margin-bottom: 10px;
}

/* === Bouton d'achat === */
.ams-product-link {
    display: inline-block;
    padding: 8px 15px;
    background: #FF9900;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.ams-product-link:hover {
    background: #FF8C00;
}

/* === Comparaison de prix === */
.ams-compare-prices {
    display: block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.ams-compare-prices:hover {
    background: #e0e0e0;
}

.ams-prices-comparison {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    font-size: 14px;
}

/* === Liste de prix par pays === */
.product-card .price-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.product-card .price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 6px;
    background-color: #f9f9f9;
    font-size: 0.95rem;
}

.product-card .price-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #222;
    width: 100%;
}

.product-card .price-list .price-de,
.product-card .price-list .price-fr,
.product-card .price-list .price-it,
.product-card .price-list .price-es {
    font-weight: bold;
    color: #008000;
    font-size: 14px !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

.product-card .price-list a::after {
    content: 'âž”';
    margin-left: auto;
    font-size: 1rem;
    color: #888;
}

.product-card .price-list a.has-arrow::after {
    content: '';
}

/* === Prix AliExpress === */
.price-aliexpress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
}



.price-aliexpress .price,
.price.price-ali {
    font-weight: bold !important;
    color: #E65100 !important;
    font-size: 14px !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

/* === Prix Temu === */
.price-temu .temu-logo {
    width: 30px !important;
    height: auto !important;
    image-rendering: auto !important;
}

.price-temu .price {
    font-weight: bold !important;
    color: #E65100 !important;
    font-size: 14px !important;
    text-align: center !important;
    flex-grow: 1 !important;
}

/* === Divers === */
.ams-loader {
    padding: 20px;
    text-align: center;
    color: #666;
}

.ams-error {
    padding: 15px;
    background: #ffebee;
    color: #c62828;
    border-radius: 4px;
}

div#amazon-search-results {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
</pre></body></html>