body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f4f9; color: #333; margin: 0; padding: 20px; }
.container { max-width: 1000px; margin: 0 auto; }

/* Header & Search */
header { text-align: center; margin-bottom: 40px; }
input[type="text"] { padding: 12px; width: 60%; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; }
button { padding: 12px 20px; background-color: #007bff; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; }
button:hover { background-color: #0056b3; }

/* Style du Logo */
.site-logo {
    max-width: 250px; /* Largeur max pour ne pas prendre tout l'écran */
    height: auto;     /* Garde les proportions */
    display: block;   /* Permet de le centrer */
    margin: 0 auto 20px auto; /* Centré horizontalement + marge en bas */
}

/* Product Card */
.product-card { background: white; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 30px; padding: 20px; overflow: hidden; }
.product-header { display: flex; gap: 20px; border-bottom: 2px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.product-img img { max-width: 150px; border-radius: 4px; border: 1px solid #eee; }
.product-info h2 { margin: 0 0 5px 0; color: #2c3e50; }
.product-info .model { color: #007bff; }
.product-info .ref { color: #7f8c8d; font-style: italic; margin-bottom: 10px; }

/* Contract Badges */
.contract-badge { display: inline-block; padding: 5px 10px; border-radius: 15px; font-size: 0.9em; font-weight: bold; color: white; }
.contract-badge.yes { background-color: #28a745; }
.contract-badge.no { background-color: #dc3545; }
.contract-badge.demand { background-color: #ffc107; color: #333; }

/* Packages Grid */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.package-item { border: 1px solid #e1e1e1; border-radius: 6px; padding: 15px; background: #fafafa; }
.pkg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.pkg-name { font-weight: bold; color: #333; }
.pkg-price { color: #d35400; font-weight: bold; font-size: 1.1em; }
.pkg-desc { font-size: 0.9em; color: #555; line-height: 1.4;  }

.no-result { text-align: center; font-size: 1.2em; color: #666; margin-top: 40px; }