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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header Styles */
header {
    background: #fff;
    color: #333;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
nav ul.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul.nav-menu li {
    position: relative;
}

nav ul.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

nav ul.nav-menu a:hover,
nav ul.nav-menu a.active {
    color: #f39c12;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 4px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #f39c12;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots .dot.active {
    background: #fff;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: #f39c12;
    color: #fff;
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

/* Collections Section */
.collections {
    padding: 80px 0;
    background: #f8f9fa;
}

.collections h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.collection-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.collection-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.collection-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.3rem;
    color: #1a1a1a;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

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

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card h3 {
    padding: 15px;
    font-size: 1rem;
    color: #333;
    min-height: 60px;
}

.product-card .price {
    padding: 0 15px 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f39c12;
}

/* Popular Items Section */
.popular-items {
    padding: 80px 0;
    background: #fff;
}

.popular-items h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.popular-items .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.popular-items .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.instagram-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.instagram-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
}

.instagram-grid a:hover {
    transform: scale(1.05);
}

.instagram-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f39c12;
}

.feature p {
    opacity: 0.8;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #f39c12;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* Page Hero */
.page-hero {
    background: #f8f8f8;
    color: #333;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #555;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background: #f8f8f8;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #2a5298;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Lookbook Section */
.lookbook-section {
    padding: 80px 0;
    background: #fff;
}

.lookbook-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 640px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
}

.lookbook-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.lookbook-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.lookbook-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Page */
.team-content {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.team-member h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.team-subtitle {
    font-style: italic;
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    line-height: 1.8;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2a5298;
}

.contact-item p {
    line-height: 1.8;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    margin-bottom: 10px;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a5298;
}

/* Shop Page */
.shop-filters {
    padding: 40px 0;
    background: #f8f9fa;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.filter-btn.active {
    background: #2a5298;
    color: #fff;
    border-color: #2a5298;
}

.search-box {
    text-align: center;
}

.search-box input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
    border-color: #2a5298;
}

.shop-products {
    padding: 60px 0;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #666;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #f39c12;
}

.breadcrumb span {
    color: #666;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-info-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.product-price {
    font-size: 2rem;
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-sku,
.product-category {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.product-sku span,
.product-category span {
    color: #1a1a1a;
    font-weight: 600;
}

.product-description {
    margin: 30px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-description h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-description #product-description p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.product-description #product-description strong {
    display: block;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    color: #1a1a1a;
}

.product-description #product-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-description #product-description ul li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.6;
    color: #333;
}

.product-description #product-description ul li:last-child {
    border-bottom: none;
}

.product-actions {
    margin-top: 30px;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: #f8f8f8;
}

.related-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-content,
    .hero-image {
        padding: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
    }

    nav ul.nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px 0;
    }

    nav ul.nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        margin: 0;
        padding: 0;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .collection-grid,
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-info-section h1 {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .related-products h2 {
        font-size: 2rem;
    }
}
