    * {
      margin: 0;
      padding: 0;
      font-family: 'Arial', sans-serif;
    }


    .header {
      position: absolute;
      top: 0;
      padding: 10px 15px;
      z-index: 2;
    }


    /* Desktop styles */
    @media screen and (min-width: 1024px) {
      .header {
        left: calc(100% - 66%);
        width: calc(100% - 48%);
      }

      .mobile-nav {
        width: calc(100% - 70%);
        left: calc(100% - 65%) !important;
      }
    }

    .logo {
      height: 50px;
    }

    .video-info {
      position: absolute;
      right: calc(100% - 96%);
      bottom: calc(100% - 75%);
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      gap: 15px;
      z-index: 2;
    }

    .action-icon {
      font-size: 24px;
      cursor: pointer;
      text-shadow: 2px 5px 18px #020202;
    }

    .action-icon svg{
      filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.7));
    }

    .views {
      font-size: 14px;
      text-align: center;
    }

    /* Add to cart button */
    .customize_btn {
      position: absolute;
      bottom: calc(100% - 84%);
      transform: translateX(-50%);
      background-color: #b61e8f;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 16px;
      cursor: pointer;
      width: 80%;
      text-align: center;
      left: 42%;
    }

    .product-info {
      position: absolute;
      bottom: calc(100% - 98%);
      left: calc(100% - 96%);
      display: flex;
      align-items: center;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);
      padding: 5px;
      border-radius: 8px;
      width: calc(100% - 8%);
    }

    .product-image {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 5px;
      margin-right: 10px;
    }

    .product-details {
      flex: 1;
      overflow: hidden;
      width: 100%;
    }

    .product-title {
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 16px;
      white-space: nowrap;
      animation: marquee 15s linear infinite;
      max-width: 100%;
    }

    @keyframes marquee {
      0% { transform: translateX(5%); }
      100% { transform: translateX(-100%); }
    }

    .product-price {
      font-size: 14px;
    }

    .price-discount {
      text-decoration: line-through;
      color: #ccc;
      margin-right: 5px;
      font-size: 12px;
    }

    .price-current {
      color: #fff;
      font-weight: bold;
    }

    .mobile-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 64px;
      background-color: #000;
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 5;
      box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
      border-top: 1px solid white; 
    }

    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-size: 12px;
      cursor: pointer;
    }

    .nav-icon {
      font-size: 20px;
      margin-bottom: 3px;
      position: relative; /* needed for absolute badge */
    }

    .nav-item.active {
      color: #b61e8f;
    }

    .badge {
      position: absolute;
      top: 0;
      right: -12px;
      background-color: #b61e8f;
      color: white;
      font-size: 10px;
      font-weight: bold;
      padding: 2px 4px;
      border-radius: 10px;
      line-height: 1.1;
    }

    