* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #2d3436;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 5%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #636e72;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

nav ul li a:hover {
    background: #f1f2f6;
    color: #2d3436;
}

.cart-icon {
    position: relative;
    padding: 0 15px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: 0;
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 0.8em;
}

.hero {
    height: 60vh;
    background: linear-gradient(rgba(125,125,0,0.1), rgba(125,125,0,0.1)), 
                url('https://images.pexels.com/photos/2881229/pexels-photo-2881229.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 60px;
    text-align: center;
    padding: 0 5%;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background-color: #E4405F;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background-color: #C13584;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.filter-container {
    display: flex;
    padding: 6rem 5% 2rem;
    gap: 2rem;
}

.filter-sidebar {
    width: 280px;
    position: sticky;
    top: 6rem;
    height: fit-content;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.clear-filters {
    color: #0984e3;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dfe6e9;
}

.filter-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.filter-option {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.filter-option:hover {
    background: #f8f9fa;
}

.filter-option input {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    accent-color: #0984e3;
}

.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image {
    height: 220px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #2d3436;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #0984e3;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 20px;
}

.cart-items {
    height: calc(100% - 150px);
    overflow-y: auto;
}

.checkout-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: white;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        padding-top: 5rem;
    }

    .filter-sidebar {
        width: 100%;
        position: static;
    }

    .cart-modal {
        width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    background: white;
}

.about-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3436;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #0984e3;
    margin-bottom: 1rem;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 5%;
    background: #f8f9fa;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.trust-icon {
    font-size: 2rem;
    color: #0984e3;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .key-features {
        grid-template-columns: 1fr;
    }
}


/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 5%;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.content-container {
    padding: 6rem 5% 2rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.policy-content,
.terms-content,
.shipping-content {
    line-height: 1.8;
    margin-top: 2rem;
}

.policy-content h2,
.terms-content h2,
.shipping-content h2 {
    margin: 2rem 0 1rem;
    color: #2d3436;
}

.review {
    background: white;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-container {
    padding: 6rem 5% 2rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 60vh;
}

.text-content {
    line-height: 1.8;
    margin-top: 2rem;
}

.text-content h2 {
    margin: 2rem 0 1rem;
    color: #2d3436;
    font-size: 1.4em;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: #636e72;
}

