    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Merriweather', serif;
      background: #fefcf8;
      margin: 0;
      padding: 0;
      color: #3e3e3e;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    a:focus, button:focus {
      outline: 2px solid #6a994e;
      outline-offset: 2px;
    }
    .container {
      max-width: 1140px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    header {
      background-color: #6a994e;
      color: #fff;
      padding: 1.5rem 1rem;
      font-family: 'Quicksand', sans-serif;
      text-align: center;
    }
    header .top-bar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      font-size: 1rem;
    }
    header .top-bar > div {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }
    header .top-bar a {
      color: #fff;
      font-weight: 600;
      transition: color 0.3s ease;
    }
    header .top-bar a:hover, header .top-bar a:focus {
      color: #cdeac0;
    }
    header h1 {
      margin: 0.5rem 0 0;
      font-weight: 700;
      font-size: 2rem;
    }
    header h1 a.home-link {
      color: #fff;
      font-weight: 700;
      text-decoration: none;
    }
    header h1 a.home-link:hover, header h1 a.home-link:focus {
      color: #cdeac0;
    }
    main {
      background: #fffefb;
      padding: 2rem 1rem;
      font-family: 'Quicksand', sans-serif;
      color: #4b3b2a;
      min-height: 60vh;
    }
    main h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: #49732b;
      text-align: center;
    }
    main p {
      max-width: 800px;
      margin: 0 auto 2rem auto;
      font-size: 1.15rem;
      line-height: 1.7;
      color: #594d3a;
      text-align: center;
    }
    /* Ürün kartı */
    article.product {
      display: flex;
      flex-wrap: wrap;
      background: #fffefb;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      margin: 0 auto 3rem auto;
      overflow: hidden;
      border: 1px solid #e1dbc7;
      max-width: 900px;
      transition: box-shadow 0.3s ease;
    }
    article.product:hover,
    article.product:focus-within {
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }
    .product a img {
      width: 100%;
      height: auto;
      object-fit: cover;
      max-width: 300px;
      border-right: 1px solid #eee4d0;
      display: block;
    }
    .product-info {
      flex: 1;
      padding: 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .product-info h2 {
      margin: 0 0 0.5rem 0;
      font-size: 1.8rem;
      font-family: 'Quicksand', sans-serif;
      color: #4b3b2a;
    }
    .product-info p {
      margin: 0.7rem 0;
      font-size: 1.1rem;
      line-height: 1.6;
      color: #5a5143;
    }
    .price {
      color: #b13e2e;
      font-weight: bold;
      font-size: 1.3rem;
      margin-top: 0.7rem;
    }
    .share-buttons {
      margin-top: 1rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .share-buttons a {
      color: #5f5a4a;
      font-size: 1.8rem;
      transition: color 0.3s ease;
    }
    .share-buttons a:hover,
    .share-buttons a:focus {
      color: #6a994e;
      outline: none;
    }
    footer {
      background-color: #6a994e;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1rem;
      font-family: 'Quicksand', sans-serif;
      font-size: 1rem;
    }
    footer a {
      color: #d1d1d1;
      font-weight: 600;
    }
    footer a:hover, footer a:focus {
      color: #cdeac0;
      text-decoration: underline;
    }
    .social-icons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-left: 0.25rem;
    }
    .social-icons a {
      font-size: 1.5rem;
      color: #fff;
      transition: color 0.3s ease;
    }
    .social-icons a:hover, .social-icons a:focus {
      color: #cdeac0;
    }
    @media (max-width: 768px) {
      article.product {
        flex-direction: column;
        max-width: 100%;
      }
      article.product a img {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee4d0;
      }
      .product-info {
        padding: 1rem;
      }
    }
    @media (max-width: 600px) {
      header .top-bar {
        flex-direction: column;
        gap: 0.75rem;
      }
      header h1 {
        font-size: 1.6rem;
      }
      main h2 {
        font-size: 1.5rem;
      }
      main p {
        font-size: 1rem;
      }
    }