* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.header {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-text {
    max-width: 70%;
}

.header-image {
    max-width: 150px;
    margin-right: 20px;
}

.header-image img {
    width: 100%;
    border-radius: 5px;
}

.header h1 {
    color: #0066cc;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.header p {
    color: #333;
    font-size: 1rem;
}

.delivery-icon {
    max-width: 120px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 180px;
    overflow: hidden;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    object-fit: contain;
    max-height: 150px;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.product-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #e55c00;
}

.services-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.service-image img {
    width: 100%;
    object-fit: contain;
    max-height: 150px;
}

.service-info {
    padding: 15px;
    text-align: center;
}

.service-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.service-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Modal styling - Updated for right side positioning */
.modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: flex-start;
    justify-content: flex-end;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 350px;
    height: 100%;
    position: relative;
    overflow-y: auto;
    animation: slideInRight 0.3s forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #ff6600;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.modal-product-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin: 20px 0;
    display: block;
}

.modal-button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: #e55c00;
}

#modalTitle {
    padding-right: 30px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-image {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .header-text {
        max-width: 100%;
    }

    .delivery-icon {
        margin-top: 15px;
    }

    .products-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .modal-content {
        width: 100%;
        max-width: none;
        border-radius: 0;
    }
}

@media (max-width: 500px) {
    .products-container, .services-container {
        grid-template-columns: 1fr;
    }
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Footer styling */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo and service section */
.footer-brand {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding-right: 15px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
}

.shop-text {
    color: orange; /* Gold color for SHOP */
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.service-icon {
    color: orange;
    margin-right: 10px;
    font-size: 18px;
}

/* Middle section - Fun description */
.footer-fun {
    flex: 2;
    min-width: 300px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.section-title {
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid orange;
    padding-bottom: 5px;
    display: inline-block;
}

/* Payment section */
.footer-payment {
    flex: 1;
    min-width: 250px;
    padding-left: 15px;
}

.payment-cards {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-card {
    width: 40px;
    height: 25px;
    border-radius: 3px;
    overflow: hidden;
}

.payment-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer bottom - Copyright and links */
.footer-bottom {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: orange;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: orange;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-fun {
        flex: 1 100%;
        order: 3;
    }
    
    .footer-brand, .footer-payment {
        flex: 1 45%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-brand, .footer-payment, .footer-fun {
        width: 100%;
        padding: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}