* { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
body { background-color: #f8f9fa; color: #333; display: flex; flex-direction: column; min-height: 100vh; }
.top-disclaimer { background-color: #dc3545; color: white; text-align: center; padding: 10px; font-size: 0.9em; }
header { background-color: #fff; padding: 20px 0; border-bottom: 1px solid #eee; }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.logo a { text-decoration: none; color: #0056b3; font-size: 1.5em; font-weight: bold; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { text-decoration: none; color: #333; font-weight: bold; }
main { max-width: 1200px; margin: 40px auto; padding: 0 20px; flex: 1; width: 100%; }
footer { background-color: #343a40; color: white; padding: 40px 20px; margin-top: auto; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.footer-links { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #ccc; text-decoration: none; }
.footer-info { text-align: center; color: #bbb; }
.long-disclaimer { font-size: 0.8em; color: #888; text-align: center; border-top: 1px solid #555; padding-top: 20px; }
.hero { text-align: center; padding: 60px 20px; background-color: #e9ecef; border-radius: 8px; margin-bottom: 40px; }
.hero h2 { margin-bottom: 15px; }
.btn { display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 4px; border: none; cursor: pointer; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.product-card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
.product-card img { max-width: 100%; height: auto; margin-bottom: 15px; }
.condition { color: #28a745; font-size: 0.9em; margin: 10px 0; font-weight: bold; }
.price { font-size: 1.2em; font-weight: bold; margin-bottom: 15px; }
#cart-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; background: white; }
#cart-table th, #cart-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; }
.cart-summary { text-align: right; padding: 20px; background: white; border-radius: 8px; }
.trust-badges { margin: 15px 0; color: #28a745; font-weight: bold; }
.policy-section { background: white; padding: 30px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.policy-section h2 { margin-bottom: 15px; color: #0056b3; }
.features { display: flex; gap: 20px; margin-top: 40px; }
.feature { flex: 1; background: white; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
input, textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; }
