/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.logoo{
    font-size: 2rem;
    color: white;
    font-weight: bold;
    margin-right: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
/* Header Styles */
.laptops-container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.laptops-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
}

.product-count {
    color: #666;
    font-size: 14px;
}

/* Filter Styles */
.filters {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.filter-btn:hover {
    background: #f5f5f5;
}

/* Laptop List Styles */
.laptops-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.laptop-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    gap: 20px;
    width: 100%;
}

.laptop-item img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.laptop-info {
    flex: 1;
}

.laptop-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

.specs {
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.specs span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.specs span:not(:last-child)::after {
    content: "•";
    margin-left: 5px;
    color: #999;
}

.status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    min-width: 120px;
}

.grade {
    background: #FFD700;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.grade::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffd700;
    display: inline-block;
}

.grade-a::before {
    background-color: #4CAF50;
}

.grade-b::before {
    background-color: #2196F3;
}

.grade-c::before {
    background-color: #FFC107;
}

.grade-mix {
    display: flex;
    align-items: center;
    gap: 2px;
}

.grade-mix span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.grade-mix .a {
    background-color: #4CAF50;
}

.grade-mix .b {
    background-color: #2196F3;
}

.grade-mix .c {
    background-color: #FFC107;
}

.stock {
    min-width: 80px;
    text-align: right;
    font-size: 14px;
}

.stock[data-count="+10"]::after {
    content: "+10";
    background-color: #4CAF50;
    color: white;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 12px;
}

.condition {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #28a745;
}

.condition.repair {
    color: #dc3545;
}

.repair-note {
    font-size: 12px;
    color: #666;
}

.price {
    min-width: 100px;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.price::before {
    content: '€';
    margin-right: 2px;
}

.cents {
    font-size: 12px;
    position: relative;
    top: -5px;
}

.tva {
    color: #0066cc;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .laptops-list,
    .filters,
    .laptops-header {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .laptops-container {
        width: 95%;
        padding: 10px;
    }
    
    .laptop-item {
        flex-wrap: wrap;
    }
    
    .laptop-info {
        width: 100%;
        order: 2;
    }
    
    .specs {
        flex-wrap: wrap;
    }
    
    .status {
        width: 100%;
        align-items: flex-start;
        order: 3;
    }
    
} 