/* Reset & base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f3f0ec;
    color: #111;
    line-height: 1.6;
  }
  
  /* Header styles */
  header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }
  
  header h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  /* Navigation styles */
  nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #111;
    font-weight: 500;
  }
  
  /* Main content area */
  main {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  main h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  main p {
    font-size: 1rem;
    color: #333;
  }
  
  /* Footer */
  footer {
    text-align: center;
    font-size: 0.8rem;
    padding: 2rem;
    border-top: 1px solid #ccc;
    color: #888;
    margin-top: 3rem;
  }
  
  /* Product summary styles */
  .product-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .product {
    border-top: 1px solid #ccc;
    padding-top: 1.5rem;
  }
  
  .product h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .product p {
    color: #444;
  }
  
  .product a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #555;
    text-decoration: underline;
  }
  /* Product detail layout */
.product-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
  }
  
  .product-photo {
    width: 300px;
    max-width: 100%;
    height: auto;
  }
  
  .product-details {
    max-width: 400px;
  }
  
  .product-info-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  /* ---------------------------------- */
/* Aebor Sky Gradient Section Styles */
/* ---------------------------------- */

.sky-gradient-window {
  background: linear-gradient(
    to bottom,
    #7697c2 0%,
    #85a4ca 16%,
    #98b0cc 32%,
    #b3bfc8 48%,
    #d6cdc1 67%,
    #f5d3aa 85%,
    #ce796d 100%
  );
  padding: 3rem 2rem;
  margin: 0;
  width: 100%;
  border-radius: 0;
  text-align: center;
  color: white;
}

.sky-gradient-window h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.sky-gradient-window p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}