
  :root {
    --primary: #4a6d8c;
    --primary-dark: #345672;
    --secondary: #d8b26e;
    --secondary-light: #f0deb6;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #707070;
    --accent: #b85c5c;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

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

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

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

  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1em;
    position: relative;
  }

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

  p {
    margin-bottom: 1.5em;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .btn {
    display: inline-block;
    padding: 0.8em 1.8em;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }

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

  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
  }

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

  .btn-secondary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
  }

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

  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
  }

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

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

  /* Hero Section */
  .favorites-hero {
    position: relative;
    padding: 6rem 0;
    background-color: var(--gray-light);
    text-align: center;
    overflow: hidden;
  }

  .favorites-hero h1 {
    color: var(--primary-dark);
    font-size: 3.5rem;
    margin-bottom: 0.3em;
    position: relative;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 2em;
  }

  /* Intro Section */
  .favorites-intro {
    padding: 5rem 0;
    background-color: #fff;
  }

  .favorites-intro .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-direction: column;
  }

  .intro-content {
    flex: 1;
  }

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

  /* Empty Favorites Section */
  .empty-favorites {
    padding: 5rem 0;
    background-color: var(--gray-light);
    text-align: center;
  }

  .empty-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }

  .empty-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
  }

  .action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  /* How to Use Section */
  .how-to-use {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
  }

  .steps-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .step {
    padding: 2rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .step:hover {
    transform: translateY(-10px);
  }

  .step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .step-icon i {
    font-size: 2rem;
  }

  /* Recommendations Section */
  .recommendations {
    padding: 5rem 0;
    position: relative;
    background-color: var(--gray-light);
    text-align: center;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin: 3rem 0;
  }

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

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

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

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

  .favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .favorite-btn i {
    font-size: 1.2rem;
    color: var(--accent);
  }

  .favorite-btn:hover {
    background-color: var(--accent);
  }

  .favorite-btn:hover i {
    color: var(--text-light);
  }

  .product-info {
    padding: 1.5rem;
    text-align: left;
  }

  .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
  }

  .price {
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  .view-more {
    margin-top: 2rem;
  }

  /* Inspiration Section */
  .inspiration {
    padding: 5rem 0;
    background-color: #fff;
  }

  .inspiration-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-light);
  }

  .gallery-caption h3 {
    margin-bottom: 0.3em;
  }

  .gallery-caption p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

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

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

    .favorites-intro .container {
      flex-direction: row;
    }

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

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

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

    .gallery-item.large {
      grid-column: span 2;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 4rem;
    }

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

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

    .inspiration-gallery {
      grid-template-columns: 2fr 1fr 1fr;
    }

    .gallery-item.large {
      grid-column: 1;
      grid-row: span 2;
    }
  }
