
  :root {
    --primary: #ff5722;
    --secondary: #2196f3;
    --dark: #212121;
    --light: #f5f5f5;
    --gray: #757575;
    --success: #4caf50;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
  }

  /* Typography */
  h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
  }

  h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
  }

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

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

  p {
    margin-bottom: 1.5rem;
  }

  .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 2rem;
  }

  .section-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--gray);
  }

  /* Buttons */
  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .btn-primary {
    background-color: var(--primary);
    color: var(--white);
  }

  .btn-primary:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-secondary:hover {
    background-color: rgba(255, 87, 34, 0.1);
    transform: translateY(-2px);
  }

  /* Sections */
  section {
    padding: 5rem 0;
    position: relative;
  }

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

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

  .hero-section .bg-image {
    opacity: 0.7;
  }

  .hero-section .container {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
  }

  /* Featured Products */
  .featured-products {
    background-color: var(--white);
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .product-card:hover {
    transform: translateY(-5px);
  }

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

  .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

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

  .new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
  }

  .product-details {
    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;
    font-size: 0.9rem;
  }

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

  /* Innovation Spotlight */
  .innovation-spotlight {
    background-color: var(--dark);
    color: var(--white);
  }

  .innovation-spotlight h2 {
    color: var(--white);
  }

  .innovation-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .innovation-text {
    flex: 1;
  }

  .innovation-text p {
    color: var(--light);
  }

  .innovation-text a {
    color: var(--secondary);
    text-decoration: underline;
  }

  .innovation-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .innovation-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Seasonal Collection */
  .collection-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collection-category {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding-bottom: 2rem;
  }

  .collection-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 1.5rem;
  }

  .collection-category h3 {
    margin-bottom: 1rem;
  }

  .collection-category p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
  }

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

  .newsletter-signup h2 {
    color: var(--white);
  }

  .newsletter-signup h2::after {
    background-color: var(--white);
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
  }

  .form-group input,
  .form-group select {
    padding: 12px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 1rem;
  }

  .newsletter-form button {
    margin-top: 1rem;
    background-color: var(--dark);
  }

  .newsletter-form button:hover {
    background-color: #000000;
  }

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

    h2 {
      font-size: 2.5rem;
    }

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

    .innovation-content {
      flex-direction: row;
    }

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

    .newsletter-form {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      min-width: 200px;
    }

    .newsletter-form button {
      min-width: 150px;
    }
  }

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

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

    .hero-section {
      min-height: 70vh;
    }
  }

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