/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Welcome Banner */
.welcome-banner {
    background: #f8f9fa;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

/* Header/Navigation */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

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

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.btn-account {
    background: transparent;
    color: #333;
}

.btn-cart {
    background: #007bff;
    color: white;
}

/* Hero Section - Updated v2 */
.hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') center/cover;
    display: flex;
    position: relative;
    background-position: center top;
    background-size: cover;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-bottom: 0.75rem;
}

.btn-shop-all {
    padding: 1rem 3rem;
    background: white;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
    display: inline-block;
}

.btn-shop-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    background: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    text-transform: lowercase;
}

/* Special Offers Section */
.special-offers {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.special-offers h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.offer-card:hover .offer-img {
    transform: scale(1.05);
}

.offer-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: white;
    border-radius: 0;
    padding: 1rem;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.offer-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    background: white;
}

@media (max-width: 968px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.footer-links h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #333;
    text-decoration: underline;
}

.footer-copyright {
    color: #666;
    font-size: 0.875rem;
    text-align: right;
}

.footer-copyright p {
    margin: 0;
}

.footer-policies h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.footer-policies ul {
    list-style: none;
}

.footer-policies a {
    color: #666;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-policies a:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-copyright {
        text-align: center;
    }
}

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

    .hero h1 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}