* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Intro Paragraph */
.intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    display: flex;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-info {
    width: 60%;
    padding: 1.5rem;
    z-index: 1;
}

.product-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
}

.view-more, .view-more-arrow {
    background-color: #333;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.view-more:hover, .view-more-arrow:hover {
    background-color: #555;
}

/* Category-specific styles */
.workwear {
    background-color: #f0e6d2; /* Light beige */
}

.shoes {
    background-color: #d9e6eb; /* Light blue */
}

.lingerie {
    background-color: #f5e1e5; /* Light pink */
}

.sofa {
    background-color: #d9e6eb; /* Light blue */
}

.curtain {
    background-color: #f0e6d2; /* Light beige */
}

.mattress {
    background-color: #f5e1e5; /* Light pink */
}

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 2rem;
}

.arrow {
    display: inline-block;
    margin-left: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        flex-direction: column;
        height: auto;
    }
    
    .product-info {
        width: 100%;
    }
    
    .product-image {
        position: relative;
        width: 100%;
        height: 200px;
    }
}

.footer {
    background-color: #ffffff;
    color: #333;
    padding: 3rem 2rem;
    border-top: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer h3, .footer h4 {
    color: #8B4513;
    margin-bottom: 1rem;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer a {
    text-decoration: none;
    color: #333;
  }
  
  .footer a:hover {
    color: #8B4513;
  }
  
  .footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-newsletter input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .footer-newsletter button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .footer-newsletter button:hover {
    background-color: #A0522D;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #777;
  }
  