:root {
    --primary-color: #FF4136;
    --secondary-color: #0074D9;
    --text-color: #333;
    --background-color: #F8F8F8;
    --accent-color: #FFDC00;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

.header {
    background-color: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo svg {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.laser-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    z-index: -1;
    animation: pulse 5s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.05; }
    100% { opacity: 0.15; }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-item {
    border: 1px solid #eaeaea;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Style for the cart icon */
.cart-icon {
    position: relative;
    margin-left: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.cart-icon a {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}

.cart-icon a:hover {
    color: #ff4136;
}

/* Style for the cart item count */
#cart-count {
    position: absolute;
    top: -10px;
    right: 0;
    background-color: #ff4136;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 0.8em;
    font-weight: bold;
}


.product-item h3 {
    margin: 10px 0;
}

.product-item .price {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.buy-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4136;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #e03a2f;
}
#cart-items {
    margin-bottom: 20px;
}

.checkout-button {
    background-color: #ff4136;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.checkout-button:hover {
    background-color: #e03a2f;
}

.section {
        padding: 80px 0;
    }
    
    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        margin-bottom: 40px;
        text-align: center;
        color: var(--secondary-color);
    }
    
    .team-member {
        text-align: center;
        margin-top: 40px;
    }
    
    .team-photo {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
    }
    
    .services-grid, .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .service-item, .gallery-item {
        background-color: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .service-item:hover, .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .price {
        font-weight: bold;
        color: var(--primary-color);
        margin-top: 10px;
    }
    
    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .contact-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .contact-info, .contact-form {
        flex: 1;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
    }
    
    .contact-form input, .contact-form textarea {
        margin-bottom: 20px;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
    
    .submit-button {
        background-color: var(--primary-color);
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .submit-button:hover {
        background-color: var(--secondary-color);
    }
    
    .footer {
        background-color: var(--text-color);
        color: white;
        text-align: center;
        padding: 20px 0;
    }
    
    @media (max-width: 768px) {
        .nav-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
    
        .nav-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: 0.3s;
        }
    
        .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: white;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }
    
        .nav-links.show {
            display: flex;
        }
    
        .nav-links li {
            margin: 10px 0;
        }
    
        .hero-title {
            font-size: 2.5rem;
        }
    
        .hero-subtitle {
            font-size: 1.2rem;
        }
    
        .contact-content {
            flex-direction: column;
        }
    
        .contact-info, .contact-form {
            width: 100%;
        }
    
        .contact-info {
            margin-bottom: 30px;
        }
    }
    
    /* Accessibility improvements */
    .visually-hidden {
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        clip: rect(1px 1px 1px 1px);
        clip: rect(1px, 1px, 1px, 1px);
        white-space: nowrap;
    }
    
    a:focus, button:focus, input:focus, textarea:focus {
        outline: 2px solid var(--secondary-color);
        outline-offset: 2px;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Print styles */
    @media print {
        .header, .footer, .cta-button, .contact-form {
            display: none;
        }
    
        body {
            font-size: 12pt;
            line-height: 1.5;
        }
    
        .container {
            width: 100%;
            max-width: none;
        }
    }