/* General Styles */
body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
}

/* Header */
.main-header {
    padding: 10px 40px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-links a {
    margin-right: 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.logo {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #000;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-actions a {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 400;
}

.wishlist-icon span, .cart-icon span {
    font-size: 12px;
    margin-left: 5px;
    color: #888;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 100px 40px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    padding-right: 80px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    color: #666;
    max-width: 450px;
    margin-bottom: 40px;
}

.shop-now {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.slider-controls {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 300;
    color: #888;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 100%;
}

.hero-promo-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: #000;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}

.hero-promo-badge .count {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.hero-promo-badge .text {
    display: block;
    font-size: 11px;
    opacity: 0.8;
}

/* Category Tiles */
.category-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.tile {
    background: #fff;
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.tile:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.tile img {
    max-height: 120px;
    max-width: 120px;
    margin-right: 30px;
}

.tile-text {
    display: flex;
    flex-direction: column;
}

.tile-text .sub {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.tile-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin: 0;
}

.eco-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(27, 77, 63, 0.1);
    color: #1B4D3F;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 500;
}

/* Featured Products */
.featured-products {
    padding: 60px 40px;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.featured-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.product-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #f0f0f0;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s;
}

.product-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-item img {
    display: block;
    margin: 0 auto 15px;
    max-height: 200px;
}

.product-item .category {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.product-item h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-item .price {
    font-size: 16px;
    font-weight: 500;
}

.product-item .price del {
    color: #aaa;
    font-size: 14px;
    font-weight: 300;
    margin-left: 5px;
}

.variant-dots {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.dark { background: #333; }
.dot.tan { background: #d2b48c; }
.dot.black { background: #000; }

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4A6E53;
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 600;
}

/* Newsletter & Follow */
.connect {
    background: #fff;
    padding: 80px 40px;
    border-top: 1px solid #f0f0f0;
}

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

.connect .divider {
    width: 1px;
    height: 100px;
    background: #e0e0e0;
    margin: 0 60px;
}

.newsletter, .follow-us {
    text-align: center;
}

.section-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.connect h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-sub, .follow-sub {
    font-size: 15px;
    color: #666;
    max-width: 350px;
    margin: 0 auto 30px auto;
}

.newsletter form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.newsletter input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 14px;
    width: 250px;
}

.newsletter button {
    padding: 10px 25px;
    background: #a9bfa9;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons img {
    height: 30px;
}

/* Footer */
.main-footer {
    padding: 40px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    font-size: 13px;
    color: #888;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    max-width: 100px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons img {
    max-height: 25px;
}