
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #fdfcf7 0%, #f8f5ed 100%);
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem;
    }

    .header {
      text-align: center;
      margin-bottom: 3rem;
      opacity: 0;
      animation: fadeInUp 1s ease-out forwards;
    }

    .header h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: #a68554;
      margin-bottom: 1rem;
      font-weight: 300;
      letter-spacing: -0.02em;
    }

    .header p {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      color: #666;
      font-weight: 300;
    }

    /* Reuse header/footer from home2.css */
  .main-header, .main-footer {
    background-color: #a68554;
    color: white;
  }
  
  .logo-img {
    height: 45px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
  }
  
  .header-flex, .footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
  }
  
  .footer-cols div {
    margin: 20px;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    padding-bottom: 20px;
  }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .product-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(166, 133, 84, 0.1);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      opacity: 0;
      transform: translateY(50px);
      animation: slideInUp 0.6s ease-out forwards;
    }

    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.4s; }
    .product-card:nth-child(3) { animation-delay: 0.7s; }
    .product-card:nth-child(4) { animation-delay: 0.10s; }

    .product-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 25px 50px rgba(166, 133, 84, 0.15);
      border-color: rgba(166, 133, 84, 0.2);
    }

    .image-container {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
      background: linear-gradient(45deg, #f8f5ed, #fff);
    }

    .product-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
      filter: brightness(1.05) saturate(1.1);
    }

    .product-card:hover img {
      transform: scale(1.1) rotate(2deg);
    }

    .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(166, 133, 84, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-card:hover .image-overlay {
      opacity: 1;
    }

    .card-content {
      padding: 1.5rem;
      text-align: center;
      position: relative;
    }

    .product-card h3 {
      font-size: clamp(1.2rem, 2.5vw, 1.4rem);
      color: #a68554;
      margin-bottom: 0.75rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      transition: color 0.3s ease;
    }

    .product-card:hover h3 {
      color: #8c6f42;
    }

    .product-card p {
      font-size: clamp(0.9rem, 2vw, 1rem);
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(135deg, #a68554 0%, #8c6f42 100%);
      color: white;
      text-decoration: none;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(166, 133, 84, 0.3);
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: left 0.6s ease;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(166, 133, 84, 0.4);
    }

    .btn:active {
      transform: translateY(0);
    }

    .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    .floating-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(166, 133, 84, 0.05);
      animation: float 6s ease-in-out infinite;
    }

    .floating-circle:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-circle:nth-child(2) {
      width: 120px;
      height: 120px;
      top: 60%;
      right: 15%;
      animation-delay: 2s;
    }

    .floating-circle:nth-child(3) {
      width: 60px;
      height: 60px;
      bottom: 30%;
      left: 20%;
      animation-delay: 4s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
    }

    @media (max-width: 768px) {
      .container {
        padding: 1rem;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .header {
        margin-bottom: 2rem;
      }

      .card-content {
        padding: 1.25rem;
      }

      .product-card:hover {
        transform: translateY(-8px) scale(1.01);
      }
    }

    

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
 
      /* Responsive for mobile */
  @media (max-width: 768px) {
    .header-flex, .nav-links, .footer-cols {
      flex-direction: column;
      text-align: center;
    }
  
    .nav {
      display: none;
    }
  
    .nav.open {
      display: block;
    }
  
    .menu-toggle {
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
    }
  
    .menu-toggle .bar {
      width: 25px;
      height: 3px;
      background-color: white;
    }
  
    .terms-container {
      padding: 50px 15px;
    }
  }