
  :root {
    --primary: #5a3d5c;
    --secondary: #e8c4a2;
    --accent: #c85f5f;
    --dark: #2c2c2c;
    --light: #f5f5f5;
    --gray: #e0e0e0;
    --text: #333333;
    --text-light: #f5f5f5;
    --transition: all 0.3s ease;
  }

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

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

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

  section {
    padding: 4rem 0;
    position: relative;
  }

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

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

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

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

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

  p {
    margin-bottom: 1.5rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

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

  .btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
  }

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

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

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

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

  .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 16px;
  }

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

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

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

  .hero-section h1, .hero-section .subtitle {
    color: var(--light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .hero-section .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  /* Intro Section */
  .intro-section {
    background-color: var(--light);
  }

  .intro-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .intro-content {
    flex: 1;
  }

  .intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Collection Section */
  .collection-section {
    background-color: var(--gray);
    text-align: center;
  }

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

  .collection-item {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding-bottom: 1.5rem;
  }

  .collection-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .collection-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .collection-item h3, .collection-item p {
    padding: 0 1.5rem;
  }

  /* Materials Section */
  .materials-section {
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
    position: relative;
  }

  .materials-section h2 {
    color: var(--light);
  }

  .materials-section h2:after {
    background-color: var(--secondary);
  }

  .materials-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .material-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    transition: var(--transition);
  }

  .material-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }

  .material-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
  }

  .material-card h3 {
    color: var(--light);
  }

  /* Custom Section */
  .custom-section {
    background-color: var(--light);
  }

  .custom-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .custom-content {
    flex: 1;
  }

  .custom-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .custom-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .custom-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
  }

  .custom-features i {
    color: var(--accent);
    margin-right: 0.75rem;
  }

  /* Inspiration Section */
  .inspiration-section {
    background-color: var(--gray);
    text-align: center;
  }

  .inspiration-slider {
    position: relative;
    margin-bottom: 1.5rem;
  }

  .inspiration-slide {
    display: none;
    position: relative;
  }

  .inspiration-slide.active {
    display: block;
  }

  .inspiration-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
  }

  .inspiration-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    border-radius: 0 0 8px 8px;
    text-align: left;
    color: var(--light);
  }

  .inspiration-caption h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .prev-btn, .next-btn {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .prev-btn:hover, .next-btn:hover {
    background-color: var(--accent);
  }

  .slider-dots {
    display: flex;
    gap: 0.5rem;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
  }

  .dot.active {
    background-color: var(--primary);
  }

  /* CTA Section */
  .cta-section {
    background-color: var(--secondary);
    text-align: center;
    padding: 5rem 0;
  }

  .cta-section h2 {
    color: var(--primary);
  }

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

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

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

    h2 {
      font-size: 2.25rem;
    }

    .intro-section .container {
      flex-direction: row;
      align-items: center;
    }

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

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

    .custom-section .container {
      flex-direction: row;
      align-items: center;
    }

    .cta-buttons {
      flex-direction: row;
      justify-content: center;
    }

    .inspiration-slide.active {
      display: block;
    }
  }

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

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