* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #fafaf8;
    color: #1e2a2e;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e2a2e, #2c3e2f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo span {
    font-size: 11px;
    font-weight: 500;
    color: #7f8c8d;
    display: block;
    margin-top: -3px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #2d3e40;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.navbar a:hover {
    color: #b8860b;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    color: #2d3e40;
    font-size: 18px;
    transition: 0.2s;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #b8860b;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f5ef 100%);
    border-radius: 0 0 30px 30px;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-tag {
    background: #e9dfce;
    padding: 5px 15px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #9b7b3c;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1c2b2e;
}

.hero-content p {
    font-size: 16px;
    color: #556b6f;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #1e2a2e;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #b8860b;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background: #dad5c8;
    height: 300px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(45deg, #ccc5b7 25%, #e3ddcf 25%);
    background-size: 20px 20px;
}

.placeholder-img {
    font-weight: 600;
    color: #5d5342;
}

/* Features */
.features {
    padding: 50px 0;
    background: white;
}

.features .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    text-align: center;
    flex: 1;
    min-width: 180px;
    padding: 20px 12px;
    background: #fefcf8;
    border-radius: 18px;
}

.feature-box i {
    font-size: 32px;
    color: #b8860b;
    margin-bottom: 12px;
}

.feature-box h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Products */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title p {
    color: #6c7a7e;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    border: 1px solid #efede8;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.05);
}

.product-image {
    height: 220px;
    background: #f2efe9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.img-placeholder {
    font-weight: 600;
    color: #a19b8f;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #b8860b;
    color: white;
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 50px;
}

.product-badge.new {
    background: #2c6e4e;
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 17px;
    margin-bottom: 5px;
}

.product-price {
    font-weight: 800;
    font-size: 19px;
    color: #b8860b;
    margin: 6px 0 12px 0;
}

/* Selector Groups */
.selector-group {
    margin-bottom: 12px;
}

.selector-group label {
    font-size: 13px;
    font-weight: 600;
    color: #556b6f;
    display: block;
    margin-bottom: 6px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    width: 42px;
    padding: 6px 0;
    background: #f3f1ec;
    border: 1px solid #e0dcd3;
    border-radius: 8px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.size-btn:hover {
    background: #e8e4db;
}

.size-btn.active {
    background: #1e2a2e;
    color: white;
    border-color: #1e2a2e;
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #e0dcd3;
    cursor: pointer;
    transition: all 0.2s;
}

.color-btn:hover {
    transform: scale(1.05);
}

.color-btn.active {
    border: 3px solid #1e2a2e;
    box-shadow: 0 0 0 2px #b8860b;
    transform: scale(1.05);
}

.selected-info {
    font-size: 12px;
    color: #7f8c8d;
    margin: 10px 0;
    padding: 6px 0;
    border-top: 1px solid #efede8;
    border-bottom: 1px solid #efede8;
}

.btn-add-to-cart {
    width: 100%;
    background: #f3f1ec;
    border: none;
    padding: 10px;
    border-radius: 40px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.btn-add-to-cart:hover {
    background: #1e2a2e;
    color: white;
}

/* Testimonials */
.testimonials {
    padding: 50px 0;
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #f9f7f2;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
}

.testimonial-card i.fa-quote-right {
    font-size: 28px;
    color: #b8860b;
    opacity: 0.3;
    margin-bottom: 12px;
}

.testimonial-card h4 {
    margin: 12px 0 4px;
}

/* Newsletter */
.newsletter {
    background: #1e2a2e;
    color: white;
    padding: 45px 20px;
    text-align: center;
    border-radius: 40px;
    margin: 30px 0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 22px;
    width: 280px;
    border-radius: 60px;
    border: none;
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form button {
    background: #b8860b;
    border: none;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: bold;
    font-family: inherit;
    cursor: pointer;
    color: white;
}

/* Footer */
.footer {
    background-color: #0b191c;
    color: #cfd8dc;
    padding-top: 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 30px;
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col a {
    color: #b6c5ca;
    text-decoration: none;
}

.social-links a {
    background: #273c3f;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 5px 3px 0 0;
}

.footer-bottom {
    text-align: center;
    padding: 18px;
    border-top: 1px solid #2a4247;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
        margin-top: 30px;
    }
    .navbar {
        display: none;
    }
    .hero-content h2 {
        font-size: 30px;
    }
}
.product-image {
    height: 250px;
    background: #f2efe9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}