/* Base Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #f5f3f0; /* Main off-white/beige background */
    --bg-darker: #e8e4dc; /* Slightly darker beige for sections */
    --text-main: #4a443e; /* Dark brownish-grey for elegant text */
    --text-muted: #7d756d; /* Lighter text for secondary info */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Tagline */
.site-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #3b3631;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--text-muted);
}

.brand-tagline span {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-top: 8px;
}

/* Top Product Showcase */
.hero-products {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    text-align: center;
    width: 250px;
}

.product-card .img-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e2ddd3; /* Placeholder color for product images */
    border-radius: 4px;
    margin-bottom: 15px;
    background-size: cover; 
}

.product-card h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 5px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.product-card button {
    background: none;
    border: none;
    border-bottom: 1px solid var(--text-main);
    padding-bottom: 2px;
    font-family: var(--font-body);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: var(--text-main);
    transition: opacity 0.3s ease;
}

.product-card button:hover {
    opacity: 0.6;
}

/* Split Sections (Eco & Charity) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-darker);
    min-height: 400px;
    margin-bottom: 5px;
}

.content-box {
    flex: 1;
    min-width: 300px;
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-box {
    flex: 1;
    min-width: 300px;
    background-color: #d1cbc1;
    background-size: cover;
    background-position: center;
}

/* Specific split section stylings */
.eco-section h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 10px;
}

.eco-section h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.eco-section ul {
    list-style: none;
    margin-top: 15px;
}

.eco-section ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.eco-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.charity-section {
    background-color: #e5e0d8;
}

.charity-section h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 20px;
}

.charity-section p {
    font-size: 15px;
    margin-bottom: 5px;
}

/* Background Image placeholders - Update URLs with your actual images */
.camisole-bg {
    /* background-image: url('camisole-hanger.jpg'); */
    background-color: #d8d4cd;
}

.fabric-bg {
    /* background-image: url('folded-fabric.jpg'); */
    background-color: #dedad2;
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 5%;
    background-color: var(--bg-light);
    gap: 20px;
    border-bottom: 1px solid #e0dbd1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-main);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
}

.feature-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Featured Collection */
.featured-collection {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.featured-collection h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--text-main);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }
    
    .image-box {
        min-height: 300px;
    }
    
    .features-bar {
        justify-content: flex-start;
    }
    
    .feature-item {
        width: 100%;
    }
}