* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    background: #ffffff;
  }
  
  /* HEADER */
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    z-index: 1000;
  }
  
  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    gap: 14px;
  }
  
  .header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #b28b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 1px;
  }
  
  .logo-text {
    font-family: "Playfair Display", serif;
    font-size: 20px;
  }
  
  .header-nav {
    display: flex;
    gap: 20px;
    font-size: 14px;
  }
  
  .header-nav a {
    text-decoration: none;
    color: #222;
    position: relative;
  }
  
  .header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #111;
    transition: width 0.2s;
  }
  
  .header-nav a:hover::after {
    width: 100%;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .header-note {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #f7f6f0;
  }
  
  .icon-link {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
  }
  
  .header-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid #111;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    background: #111;
  }
  
  /* HERO */
  
  .hero {
    position: relative;
    height: 80vh;
    min-height: 520px;
    margin-top: 72px; /* header height */
    background: url("https://pngimg.com/d/macaron_PNG88.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  
  .hero-content {
    position: relative;
    max-width: 760px;
    padding: 24px;
    text-align: center;
    color: #fff;
  }
  
  .hero-subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 16px;
  }
  
  .hero-text {
    max-width: 620px;
    margin: 0 auto 22px;
    font-size: 15px;
  }
  
  .btn-primary {
    padding: 10px 26px;
    border-radius: 999px;
    border: none;
    background: #f3f2ea;
    color: #111;
    font-size: 15px;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background: #ffffff;
  }
  
  /* PRODUCTS */
  
  .products-section {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 24px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 6px;
  }
  
  .section-header p {
    color: #555;
    font-size: 14px;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
  }
  
  .product-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
    display: flex;
    flex-direction: column;
  }
  
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #fafafa;
  }
  
  .product-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  
  .product-info h3 {
    font-size: 16px;
    margin: 0;
  }
  
  .product-desc {
    margin: 0;
    font-size: 13px;
    color: #666;
  }
  
  .product-price {
    font-weight: 500;
    margin: 0;
  }
  
  .btn-secondary {
    margin-top: 6px;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
  }
  
  /* CART SIDEBAR */
  
  .cart {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1200;
    display: flex;
    flex-direction: column;
  }
  
  .cart.open {
    right: 0;
  }
  
  .cart-header {
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
  }
  
  .cart-items {
    flex: 1;
    padding: 14px 18px;
    overflow-y: auto;
    font-size: 14px;
  }
  
  .cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
  }
  
  .cart-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }
  
  .cart-qty button {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
    line-height: 1;
    padding: 0;
  }
  
  .cart-qty button:hover {
    background: #e6e6e6;
  }
  
  .cart-item-sum {
    min-width: 60px;
    text-align: right;
    font-size: 13px;
  }
  
  .cart-summary {
    padding: 14px 18px 18px;
    border-top: 1px solid #eee;
  }
  
  .cart-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .cart-total-row {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 500;
  }
  
  .checkout-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }
  
  .checkout-form input,
  .checkout-form textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  
  .checkout-form textarea {
    min-height: 70px;
    resize: vertical;
  }
  
  .full-width {
    width: 100%;
    margin-top: 4px;
  }
  
  .cart-note {
    margin-top: 8px;
    font-size: 12px;
    color: #666;
  }
  
  /* MARKET SECTION */
  
  .market-section {
    background: #faf9f5;
    padding: 40px 24px 50px;
  }
  
  .market-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
  }
  
  .market-text {
    flex: 1 1 260px;
    font-size: 14px;
  }
  
  .market-text h2 {
    font-family: "Playfair Display", serif;
    margin: 0 0 8px;
  }
  
  .market-map {
    flex: 2 1 320px;
    min-height: 260px;
  }
  
  .market-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
  }
  
  /* FOOTER */
  
  .footer {
    border-top: 1px solid #eee;
    background: #f8f7f4;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px 26px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
  }
  
  .footer a {
    color: #111;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 900px) {
    .header-nav {
      display: none;
    }
  
    .header-inner {
      justify-content: space-between;
    }
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 32px;
    }
  
    .footer-inner,
    .market-inner {
      flex-direction: column;
    }
  
    .cart {
      width: 100%;
      right: -100%;
    }
  
    .cart.open {
      right: 0;
    }
  }

  @media (max-width: 900px) {
    .header-nav {
      display: none; /* меню прячем, чтоб шапка не ломалась */
    }
  
    .header-inner {
      justify-content: space-between;
      padding: 0 12px;
    }
  
    .logo-text {
      font-size: 18px;
    }
  
    .header-badge {
      display: none; /* при желании можно оставить */
    }
  }
  
  @media (max-width: 900px) {
    .header-nav {
      display: none; /* меню прячем, чтоб шапка не ломалась */
    }
  
    .header-inner {
      justify-content: space-between;
      padding: 0 12px;
    }
  
    .logo-text {
      font-size: 18px;
    }
  
    .header-badge {
      display: none; /* при желании можно оставить */
    }
  }
  