/* THE OUTLET Main Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-branding {
    text-align: center;
    margin-bottom: 20px;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.site-description {
    font-size: 14px;
    color: #777;
    margin: 5px 0 0;
}

/* Navigation */
.main-navigation {
    text-align: center;
    margin-bottom: 20px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.main-navigation li {
    margin: 0 15px;
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #000;
}

/* Hero Section */
.hero-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #333;
    color: #fff;
}

/* Featured Products */
.featured-products {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #000;
    margin: 15px auto 0;
}

/* Brands Section */
.brands-section {
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #f9f9f9;
}

.the-outlet-brands {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.brand-item h3 {
    font-size: 16px;
    margin: 0;
}

/* Footer */
.site-footer {
    background-color: #f5f5f5;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.footer-widget li {
    margin-bottom: 8px;
}

.footer-widget a {
    color: #666;
    text-decoration: none;
}

.footer-widget a:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #777;
    font-size: 14px;
}

/* Product Cards */
.products .product {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.products .product img {
    margin-bottom: 10px;
}

.products .product h2 {
    font-size: 16px;
    margin-bottom: 5px;
}

.products .product .price {
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}

.products .product .button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.products .product .button:hover {
    background-color: #333;
}

/* Original Price Display */
.original-price-before-markup {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 0;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .footer-widgets {
        flex-direction: column;
    }
    
    .footer-widget {
        width: 100%;
        margin-bottom: 30px;
    }
}
