
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
}

/* Hero Section */
.accessories-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1585123388860-7a6b6b5642f2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out 0.5s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-family: 'Times New Roman', serif;
}

/* Categories */
.category-nav {
    padding: 3rem 10%;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-card {
    min-width: 200px;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* Products Grid */
.accessories-grid {
    padding: 4rem 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 2px solid #c5a47e;
}

.product-details {
    padding: 1.5rem;
}

.product-title {
    color: #c5a47e;
    margin-bottom: 0.5rem;
}

.add-to-cart {
    position: absolute;
    top: 15px;
    right: -50px;
    background: #c5a47e;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.product-card:hover .add-to-cart {
    right: 15px;
}

/* Featured Collection */
.featured-collection {
    margin: 4rem 10%;
    background: #1a1a1a;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.featured-image {
    height: 400px;
    object-fit: cover;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 10%;
    text-align: center;
    background: #1a1a1a;
}

.newsletter-input {
    padding: 15px 25px;
    border: 2px solid #c5a47e;
    border-radius: 30px;
    background: transparent;
    color: white;
    margin-top: 2rem;
    width: 400px;
    max-width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-collection {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}
