* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    direction: rtl;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(153, 27, 27, 0.95));
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    font-weight: 300;
}

.table-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oils-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.oils-table thead {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.oils-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.oils-table th:first-child {
    border-top-right-radius: 15px;
}

.oils-table th:last-child {
    border-top-left-radius: 15px;
}

.oils-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.oils-table tbody tr:hover {
    background-color: #fef2f2;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.oils-table tbody tr:last-child {
    border-bottom: none;
}

.oils-table td {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: #374151;
}

.product-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.2);
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #dc2626;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    color: #4b5563;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .table-container {
        padding: 15px;
    }
    
    .oils-table th,
    .oils-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .product-image {
        width: 80px;
        height: 80px;
    }
    
    .price {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .oils-table {
        font-size: 0.8rem;
    }
    
    .product-image {
        width: 60px;
        height: 60px;
    }
    
    .oils-table th,
    .oils-table td {
        padding: 8px 5px;
    }
}



.car-wash-section {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.car-wash-section h2 {
    color: #dc2626;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.car-wash-section .table-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow-x: auto;
}

.car-wash-section .oils-table thead {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.car-wash-section .oils-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-wash-section .oils-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
}

.car-wash-section .oils-table tbody tr:hover {
    background-color: #fef2f2;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.car-wash-section .oils-table tbody tr:last-child {
    border-bottom: none;
}

.car-wash-section .oils-table td {
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    color: #374151;
}

@media (max-width: 768px) {
    .car-wash-section h2 {
        font-size: 1.5rem;
    }
    .car-wash-section .oils-table th,
    .car-wash-section .oils-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .car-wash-section .oils-table {
        font-size: 0.8rem;
    }
    .car-wash-section .oils-table th,
    .car-wash-section .oils-table td {
        padding: 8px 5px;
    }
}

