
  :root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --success: #27ae60;
    --error: #e74c3c;
    --gray-light: #f5f5f5;
    --gray: #95a5a6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
  }

  /* General Styles */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  section {
    padding: 5rem 1.5rem;
    position: relative;
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
  }

  .content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  h1, h2, h3 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
  }

  h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
  }

  h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
  }

  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .section-header p {
    max-width: 600px;
    margin: 0 auto 2rem;
  }

  /* Hero Section */
  .hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
  }

  .hero-section .content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    max-width: 800px;
  }

  .hero-section h1 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 2rem;
  }

  /* Featured Collection */
  .featured-collection {
    background-color: var(--light);
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .product-image-container {
    height: 250px;
    overflow: hidden;
  }

  .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  .product-card:hover .product-image-container img {
    transform: scale(1.05);
  }

  .product-info {
    padding: 1.5rem;
  }

  .product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .product-features i {
    color: var(--success);
  }

  .btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }

  .btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
  }

  /* Design Trends */
  .design-trends {
    background-color: white;
  }

  .trends-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .trend-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
  }

  .trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .trend-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .trend-icon i {
    font-size: 1.5rem;
  }

  /* Limited Edition */
  .limited-edition {
    background-color: var(--light);
  }

  .limited-product {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .product-image {
    height: 300px;
    overflow: hidden;
  }

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

  .product-details {
    padding: 2rem;
  }

  .limited-badge {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  .product-description {
    margin-bottom: 2rem;
  }

  .product-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .feature i {
    color: var(--secondary);
    font-size: 1.25rem;
  }

  .btn-exclusive {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
  }

  .btn-exclusive:hover {
    background-color: #1a2530;
    transform: translateY(-2px);
  }

  /* Newsletter */
  .newsletter {
    background-color: var(--primary);
    color: white;
    text-align: center;
  }

  .newsletter-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter h2, .newsletter p {
    color: white;
  }

  .newsletter h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .form-group {
    text-align: left;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
  }

  .form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .checkbox input {
    margin-top: 0.25rem;
  }

  .btn-subscribe {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }

  .btn-subscribe:hover {
    background-color: #d35400;
    transform: translateY(-2px);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .trends-container {
      grid-template-columns: repeat(2, 1fr);
    }

    .limited-product {
      flex-direction: row;
    }

    .product-image {
      flex: 1;
      height: auto;
    }

    .product-details {
      flex: 1;
    }
  }

  @media (min-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .trends-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
