      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        background-color: #cdc6be;
        color: #5f432e;
        line-height: 1.6;
      }

      body,
      html {
        margin: 0;
        padding: 0;
        height: 100%;
        overflow-x: hidden;
      }

      .background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("/assets/img/bgimg.jpg");
        background-size: cover;
        background-position: center;
        z-index: -1;
      }

      @media (max-width: 600px) {
        .background {
          background-image: url("/assets/img/bgimgmobile.jpg");
          background-attachment: scroll;
        }
      }

      .content {
        position: relative;
        z-index: 1;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* Header Styles */
      header {
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(95, 67, 46, 0.2);
        padding: 24px 0;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
      }

      .header-title {
        font-size: 2rem;
        font-weight: 700;
        color: #5f432e;
        letter-spacing: -0.5px;
        margin-top: 1.5rem;
      }

      .header-subtitle {
        color: rgba(95, 67, 46, 0.7);
        margin-top: 8px;
        font-size: 0.95rem;
        font-weight: 300;
      }

      .back-btn {
        background: transparent;
        color: #5f432e;
        border: 2px solid rgba(95, 67, 46, 0.3);
        padding: 10px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .back-btn:hover {
        background: rgba(95, 67, 46, 0.1);
        border-color: #5f432e;
      }

      /* Main Content */
      main {
        padding: 60px 0;
      }

      .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 10rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Product Card Styles */
      .product-card {
  background: rgba(255, 255, 255, 0.2); /* transparent background */
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(95, 67, 46, 0.1);
  box-shadow: 0 8px 32px rgba(95, 67, 46, 0.1);
  backdrop-filter: blur(10px);           /* adds blur effect */
  -webkit-backdrop-filter: blur(10px);   /* Safari support */
}

      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 60px rgba(95, 67, 46, 0.15);
        border-color: rgba(95, 67, 46, 0.3);
      }

      .product-image {
        position: relative;
        overflow: hidden;
      }

      .product-image img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        transition: transform 0.4s ease;
      }

      .product-card:hover .product-image img {
        transform: scale(1.08);
      }

      .discount-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #5f432e, #4a3424);
        color: #cdc6be;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(95, 67, 46, 0.3);
      }

      .product-content {
        padding: 15px;
      }

      .product-title {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 16px;
        color: #5f432e !important;
        transition: color 0.3s ease;
        letter-spacing: -0.3px;
      }

      .product-description {
        color: rgba(95, 67, 46, 0.7);
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
        font-weight: 300;
      }

      .price-container {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 28px;
      }

      .current-price {
        font-size: 1.75rem;
        font-weight: 700;
        color: #5f432e;
        letter-spacing: -0.5px;
      }

      .original-price {
        font-size: 1.2rem;
        color: rgba(95, 67, 46, 0.5);
        text-decoration: line-through;
        font-weight: 400;
      }

      .add-to-cart-btn {
        width: 100%;
        background: linear-gradient(135deg, #5f432e, #4a3424);
        color: #cdc6be;
        border: none;
        padding: 16px 24px;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 16px rgba(95, 67, 46, 0.2);
        text-decoration: none;
      }

      .add-to-cart-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(95, 67, 46, 0.3);
      }

      /* Info Section */
      .info-section {
        margin-top: 80px;
        text-align: center;
      }

      .info-title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 48px;
        color: #5f432e;
        letter-spacing: -0.5px;
      }

      .info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .info-item {
  padding: 32px 24px;
  background: linear-gradient(
    145deg,
    rgba(225, 220, 216, 0.6),
    rgba(210, 204, 198, 0.6)
  ); /* transparent gradient */
  border-radius: 16px;
  border: 1px solid rgba(95, 67, 46, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
}


      .info-item:hover {
        transform: translateY(-4px);
        border-color: rgba(95, 67, 46, 0.3);
        box-shadow: 0 12px 32px rgba(95, 67, 46, 0.1);
      }

      .info-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(
          135deg,
          rgba(95, 67, 46, 0.2),
          rgba(95, 67, 46, 0.1)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.5rem;
        border: 2px solid rgba(95, 67, 46, 0.2);
      }

      .info-item h3 {
        font-weight: 600;
        margin-bottom: 12px;
        color: #5f432e !important;
        font-size: 1.1rem;
      }

      .info-item p {
        color: rgba(95, 67, 46, 0.7);
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 300;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          text-align: center;
        }

        .header-title {
          font-size: 1.75rem;
        }

        .products-grid {
          grid-template-columns: 1fr;
          gap: 32px;
        }

        .info-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 480px) {
        .container {
          padding: 0 16px;
        }

        .product-content {
          padding: 24px;
        }
      }

      i {
        color: #5f432e;
      }
