:root {
    --accent: #222;
    --text-dark: #222;
    --text-light: #555;
    --bg-light: #f8f9f8;
  }
  
  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
  }
  
  /* --- HERO --- */
  .hero {
    background: var(--bg-light);
    padding: 5rem 2rem;
    display: flex;
    justify-content: center;
  }
  
  .hero-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    gap: 3rem;
  }
  
  .hero-text {
    flex: 1;
    min-width: 280px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  /* --- ABOUT --- */
  .about {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 700px;
    margin: auto;
  }
  
  .about-text {
    max-width: 580px;
    text-align: left;
    background: #fff;
    padding: 1rem 0;
  }
  
  .about-text h2 {
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .about-text p {
    line-height: 1.8;
    color: var(--text-light);
  }
  
  .about-image img {
    width: 90%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
  }
  
  /* --- DESIGN --- */
  .design {
    padding: 5rem 2rem;
    background: var(--bg-light);
  }
  
  .design-inner {
    max-width: 800px;
    margin: auto;
  }
  
  .design-text p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
  }
  
  /* --- PRODUCTS --- */
  .products {
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .products h2 {
    color: var(--accent);
  }
  
  .product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .product {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 1.5rem;
    width: 280px;
    transition: transform 0.3s ease;
  }
  
  .product:hover {
    transform: translateY(-5px);
  }
  
  .product img {
    width: 100%;
    border-radius: 10px;
  }
  
  .price {
    color: var(--accent);
    font-weight: bold;
  }
  
  /* --- PAYMENT --- */
  .payment {
    padding: 5rem 2rem;
  }
  
  .payment-inner {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    line-height: 1.8;
  }
  
  /* --- CONTACT --- */
  .contact {
    background: #fff;
    padding: 6rem 2rem;
    text-align: center;
  }
  
  .contact-inner {
    max-width: 700px;
    margin: auto;
  }
  
  .contact h2 {
    color: var(--accent);
    margin-bottom: 1rem;
  }
  
  .contact-lead {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  
  .contact-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  
  .contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 280px;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
  }
  
  .cta-button {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background: #3f8b5a;
  }
  
  .note {
    margin-top: 2.5rem;
    color: var(--text-light);
  }
  
  /* --- FOOTER --- */
  footer {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  /* --- ANIMATIONS --- */
  .fade-in, .slide-up, .slide-in-right {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
  }

  .order-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: white;
    color: #b22222;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
  .order-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
  }
  
  @keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideInRight {
    to { opacity: 1; transform: translateX(0); }
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
    .hero-inner, .contact-options { flex-direction: column; text-align: center; }
    .product-list { flex-direction: column; align-items: center; }
    .about-text { text-align: center; }
  }
