    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #fff8f0;
      background-size: cover;
      color: #4b3d2a;
      overflow-x: hidden;
    }

    header {
      background: linear-gradient(to right, #f5e7d6, #f9dac4);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      animation: fadeDown 1s ease;
    }

    @keyframes fadeDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .logo-container {
      display: flex;
      align-items: center;
    }

    .logo {
      height: 60px;
      width: 60px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
      border: 2px solid #9b6c3f;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
      padding: 0;
    }

    nav a {
      text-decoration: none;
      color: #4b3d2a;
      font-weight: bold;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      height: 2px;
      width: 0%;
      background: #9b6c3f;
      transition: 0.3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .hero {
      padding: 120px 20px;
      text-align: center;
      background: linear-gradient(to bottom, #f8f0e3, #e5ccb4);
      background-image: url('https://www.transparenttextures.com/patterns/beige-paper.png');
      background-blend-mode: overlay;
      animation: fadeIn 2s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .hero h2 {
      font-size: 3.2rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px #ccc;
    }

    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      color: #5f4b3b;
    }

    .about {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 60px 20px;
    }

    .about-img {
      flex: 1;
      text-align: center;
      animation: zoomIn 1.5s ease;
      background: url('https://media.giphy.com/media/xT0GqeSlGSRQut4Npu/giphy.gif') center center no-repeat;
      background-size: cover;
      border-radius: 50%;
      padding: 10px;
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    .about-img img {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #d4aa7d;
    }

    .about-text {
      flex: 2;
      padding: 20px;
      animation: fadeUp 1.5s ease;
    }

    @keyframes fadeUp {
      from { transform: translateY(20px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .store {
      padding: 60px 20px;
      text-align: center;
    }

    .store h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .product-card {
      background-color: white;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      padding: 20px;
      position: relative;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .product-card:hover {
      transform: scale(1.05) rotate(-1deg);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .product-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
    }

    .product-card h3 {
      font-size: 1.2rem;
      margin: 15px 0 5px;
    }

    .price {
      color: #9b6c3f;
      font-weight: bold;
    }

    .stock {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #25D366;
      color: white;
      padding: 4px 8px;
      border-radius: 5px;
      font-size: 0.8rem;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .contact {
      text-align: center;
      padding: 60px 20px;
    }

    .whatsapp-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #25D366;
      color: white;
      font-weight: bold;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.2s ease;
      box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

    .whatsapp-btn:hover {
      background-color: #1ebc59;
      transform: scale(1.05);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      height: 60px;
      width: 60px;
      z-index: 100;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .whatsapp-float img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    @media (max-width: 768px) {
      .about {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        padding: 20px 0;
      }

.footer {
  margin: auto;
  width: 100%;
  background: #f1e3d3;
  padding: 20px 10px;
  box-shadow: inset 0 1px 0 #e0c9b0;
  margin-top: 60px;
}

.footer-content {
  width: 100%;
  text-align: center;
  color: #4b3d2a;
  font-size: 0.95rem;
}
    }