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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.cart-icon {
    cursor: pointer;
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-icon:hover {
    background: #efefef;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 6rem 1rem 4rem;
    margin-top: 70px; /* Account for fixed header */
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.products {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #ffffff;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.product-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 1rem 0 !important;
}

.category-section {
    margin: 4rem 0;
}

.category-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

button {
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

button:hover {
    background: #333;
    transform: translateY(-2px);
}

.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
}

/* Add these new styles after your existing CSS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #666;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #666;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 4rem 0;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #1a1a1a;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Update the media query for mobile responsiveness */
    @media (max-width: 768px) {
        .mobile-menu-toggle {
            display: flex;
        }
        
        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .nav-links.active {
            display: flex;
        }
        
        /* Make sure cart is visible in mobile menu */
        .cart-icon {
            margin-top: 1rem;
        }
        
        /* Other responsive styles remain the same */
        .about-content,
        .contact-content,
        .testimonials-grid,
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .about-image {
        order: -1;
    }

    .contact-form {
        margin-top: 2rem;
    }
}

/* Add smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Clean, minimal styling */
.checkout-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Apple-style buttons */
button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transform: scale(1);
}

button:hover {
    transform: scale(1.02);
    background: #333;
}

/* Smooth form inputs */
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin: 8px 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* Clean cart items */
.checkout-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    margin: 1rem 0;
    background: #f8f8f8;
    border-radius: 8px;
    transform: translateY(0);
}

.checkout-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Remove button */
.remove-btn {
    background: #ff3b30;
    padding: 8px 16px;
    font-size: 14px;
}

.remove-btn:hover {
    background: #ff2419;
}

/* Total price */
.checkout-total {
    font-size: 24px;
    font-weight: 500;
    text-align: right;
    margin: 2rem 0;
}

/* Place order button */
.checkout-button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    background: #007aff;
    margin-top: 2rem;
}

.checkout-button:hover {
    background: #0066d6;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-item {
    animation: fadeIn 0.3s ease;
}

/* Success message */
.success-message {
    padding: 1rem;
    background: #34c759;
    color: white;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

/* Add these styles at the end of your existing styles.css */

.checkout-body {
    background-color: #f8f9fa;
    padding-top: 80px;
}

.checkout-header {
    background: white;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.checkout-items-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.checkout-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    gap: 1.5rem;
}

.checkout-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.remove-btn {
    background: none;
    color: #dc3545;
    width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background: #fff1f1;
    transform: none;
}

.summary-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.summary-details {
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.summary-row.total {
    border-top: 2px solid #000;
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.delivery-options,
.payment-options {
    display: grid;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-card,
.payment-card {
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.radio-card:hover,
.payment-card:hover {
    border-color: #000;
}

.radio-content,
.payment-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-content img {
    height: 24px;
    width: auto;
}

input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .radio-content,
input[type="radio"]:checked + .payment-content {
    font-weight: 600;
}

input[type="radio"]:checked + .radio-content i,
input[type="radio"]:checked + .payment-content i {
    color: #000;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group i {
    margin-right: 0.5rem;
    color: #666;
}

input[type="text"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #000;
    outline: none;
}

.checkout-button {
    background: #000;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 2rem;
    transition: all 0.2s ease;
}

.checkout-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.checkout-button i {
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        position: static;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.clock {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.clock {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-right: 1rem;
}