

    body {
      font-family: Arial, sans-serif;
    }
    .product {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      padding: 8px;
      margin: 10px;
    }
    .slider {
      display: flex;
      overflow: hidden;
      width: 160px;
      height: 220px;
      position: relative;
      border: 2px solid #000;
      border-radius: 6px;
      background-size: cover;
      background-position: center;
    }
    .slider img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.5s ease;
    }
    .slider-images {
      display: flex;
      transition: transform 0.5s ease;
    }
    .slider-buttons {
      display: flex;
      justify-content: space-between;
      position: absolute;
      width: 100%;
      top: 50%;
      transform: translateY(-50%);
    }
    .slider-button {
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      cursor: pointer;
      padding: 3px 5px;
      border-radius: 5px;
      font-size: 10px;
    }
    .dots-container {
      display: flex;
      justify-content: center;
      position: absolute;
      width: 100%;
      bottom: 6px;
    }
    .dot {
      height: 6px;
      width: 6px;
      margin: 3px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s;
    }
    .active-dot {
      background-color: #333;
    }
    .product-details {
      flex: 1;
      margin-left: 10px;
    }
    .product h2 {
      margin: 0;
      font-size: 12px;
      color: blue;
      text-decoration: underline;
      cursor: pointer;
      transition: color 0.3s;
    }
    .product h2:hover {
      color: darkblue;
    }
    .product p {
      margin: 2px 0;
      font-size: 11px;
    }
    .button-container {
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
    .add-to-cart-container {
      display: flex;
      gap: 5px;
    }
    .add-to-cart {
      color: white;
      padding: 3px 6px;
      text-align: center;
      border: none;
      cursor: pointer;
      font-size: 11px;
      border-radius: 5px;
    }
    .add-to-cart-container:nth-of-type(1) .add-to-cart:nth-of-type(1) {
      background: linear-gradient(45deg, #ff5733, #20a74d);
    }
    .add-to-cart-container:nth-of-type(1) .add-to-cart:nth-of-type(2) {
      background: linear-gradient(45deg, #33b5e5, #0099cc);
    }
    .add-to-cart-container:nth-of-type(2) .add-to-cart:nth-of-type(1) {
      background: linear-gradient(45deg, #9c27b0, #673ab7);
    }
    .add-to-cart-container:nth-of-type(2) .add-to-cart:nth-of-type(2) {
      background: linear-gradient(45deg, #ff9800, #f57c00);
    }
    .add-to-cart:hover {
      transform: scale(1.05);
      box-shadow: 0 3px 6px rgba(255, 69, 0, 0.6);
    }
    
    /* Dropdown container */
    .dropdown {
      position: relative;
      display: inline-block;
    }

    /* Dropdown content (hidden by default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 140px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      border-radius: 5px;
      z-index: 1;
      margin-top: 4px;
    }

    /* Links inside the dropdown */
    .dropdown-content a {
      color: black;
      padding: 8px 12px;
      text-decoration: none;
      display: block;
      font-size: 12px;
      cursor: pointer;
    }

    /* Hover effect on dropdown links */
    .dropdown-content a:hover {
      background-color: #ddd;
    }

    /* Show dropdown content on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Style for the dropdown button */
    .buy-now {
      background: linear-gradient(45deg, #1e90ff, #0000cd);
      color: white;
      padding: 5px 8px;
      text-align: center;
      border: none;
      cursor: pointer;
      margin-top: 8px;
      font-size: 12px;
      border-radius: 5px;
      user-select: none;
      white-space: nowrap;
    }

    .buy-now:hover {
      transform: scale(1.05);
      box-shadow: 0 3px 6px rgba(0, 0, 205, 0.6);
    }

    .brand-text {
      position: absolute;
      top: 8px;
      left: 8px;
      background-color: #006eab; /* Acer-blue or any desired color */
      color: white;
      font-weight: 500;
      padding: 1px 6px;
      border-radius: 12px;
      font-size: 10px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s;
      z-index: 10;
      box-shadow: 0 0 2px rgba(0,0,0,0.2);
      text-transform: uppercase;
    }

    .brand-text:hover {
      background-color: #004f7c;
    }
  