:root {
    --primary-color: #D95D8A;
    --background-color: #FFF9FB;
    --text-color: #333;
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
  }

  /* --- STYLE NEWS TICKER (RUNNING TEXT) --- */
  .news-ticker {
    background-color: whitesmoke;
    color: black;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    font-size: 0.9em;
    font-weight: 500;
    z-index: 1100;
  }

  .ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
  }

  .ticker-content span {
    display: inline-block;
    padding-right: 100px;
    /* Jarak antar teks */
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-100%);
    }
  }

  .news-ticker:hover .ticker-content {
    animation-play-state: paused;
  }

  .header-container {
    background-color: rgba(255, 249, 251, 0.85);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #FEEAEE;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
  }

  /* ... (Sisa CSS kamu tetap sama seperti sebelumnya) ... */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5em;
    color: var(--text-color);
    text-decoration: none;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 35px;
  }

  nav ul li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
  }

  .cart-icon {
    position: relative;
    cursor: pointer;
    text-decoration: none;
  }

  .cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--background-color);
  }

  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 3.5em;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
  }

  .hero-images {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  .hero-images img {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .about {
    background-color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
  }

  .footer {
    background-color: #4A4A4A;
    text-align: center;
    padding: 30px 20px;
    color: white;
  }