    .content-section {
      margin-top: 100vh;
      background: #f8f9fa;
      background-image: url("data:image/svg+xml,%3Csvg width='120' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q30 0 60 20 T120 20' stroke='%23ed64a6' stroke-opacity='0.1' fill='transparent' stroke-width='2'/%3E%3C/svg%3E");
      position: relative;
      z-index: 10;
      border-radius: 8px 8px 0 0;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    }
    
    /* Feature Section */
    .features-section {
      padding: 50px 40px;
      background: white;
      margin: 0;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .feature-item {
      text-align: center;
      padding: 20px;
    }
    .feature-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 15px;
      background: #f8f9fa;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #e74c3c;
    }
    .feature-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #2c3e50;
    }
    .feature-desc {
      font-size: 14px;
      color: #7f8c8d;
      line-height: 1.4;
    }
    
    /* Category Cards */
    .category-section {
      padding: 0 40px 40px;
    }
    .category-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .category-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .category-image {
      width: 100%;
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    .category-content {
      padding: 25px;
      text-align: center;
    }
    .category-title {
      font-size: 20px;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .category-arrow {
      color: #e74c3c;
    }
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 40px 40px 20px;
    }
    .section-title {
      font-size: 28px;
      font-weight: bold;
      color: #2c3e50;
      border-bottom: 3px solid #e74c3c;
      display: inline-block;
      padding-bottom: 5px;
    }
    .nav-arrows {
      display: flex;
      gap: 10px;
    }
    .nav-arrow {
      width: 40px;
      height: 40px;
      border: 2px solid #e74c3c;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #e74c3c;
      background: white;
      transition: all 0.3s ease;
    }
    .nav-arrow:hover {
      background: #e74c3c;
      color: white;
    }
    
    .products-container {
      position: relative;
      margin-top: -50px;
      padding-top: 50px;
    }
    .products {
      display: flex;
      overflow-x: auto;
      padding: 20px 40px;
      gap: 25px;
      scroll-behavior: smooth;
    }
    .products::-webkit-scrollbar {
      height: 8px;
    }
    .products::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 8px;
    }
    .products::-webkit-scrollbar-thumb {
      background: #e74c3c;
      border-radius: 8px;
    }
    
    /* Product Card - Wider and improved */
    .product-card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      border: 1px solid #f1f2f6;
      text-align: center;
      min-width: 280px;
      width: 280px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    /* 3 dots menu */
    .product-menu {
      position: absolute;
      top: 15px;
      right: 15px;
      cursor: pointer;
      color: #7f8c8d;
      font-size: 18px;
    }
    .dropdown {
      position: absolute;
      top: 25px;
      right: 0;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 10px 0;
      min-width: 120px;
      display: none;
      z-index: 100;
    }
    .dropdown.show {
      display: block;
    }
    .dropdown-item {
      padding: 8px 15px;
      cursor: pointer;
      font-size: 14px;
      color: #2c3e50;
      transition: background 0.3s ease;
    }
    .dropdown-item:hover {
      background: #f8f9fa;
    }
    
    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: contain;
      border-radius: 8px;
      margin-bottom: 15px;
    }
    .product-card h4 {
      height: 35px;
      margin: 15px 0 8px;
      font-size: 18px;
      font-weight: 600;
      color: #2c3e50;
    }
    .product-description {
      font-size: 13px;
      color: #7f8c8d;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .product-card .price {
      color: #e74c3c;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 15px;
    }
    
    /* Buttons - Side by side with icons */
    .button-container {
      display: flex;
      gap: 8px;
      justify-content: center;
    }
    .product-card button {
      flex: 1;
      padding: 10px 12px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all 0.3s ease;
    }

    .product-card a {
        flex: 1;
        padding: 10px 12px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: all 0.3s ease;
        text-decoration: none;
  }

    .add-cart {
      background: #34495e;
      color: white;
    }
    .add-cart:hover {
      background: #2c3e50;
      transform: translateY(-1px);
    }
    .buy-now {
      background: #27ae60;
      color: white;
    }
    .buy-now:hover {
      background: #229954;
      transform: translateY(-1px);
    }