
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .swiper {
      width: 100%;
      height: 100dvh;
      aspect-ratio: 16 / 9;
      max-height: 100vh;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      will-change: transform;
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
      background: #000;
      position: relative;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      will-change: transform;
    }

    .swiper-slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 16 / 9;
      background-color: #000;
    }

    .swiper-slide video[poster] {
      background-size: cover;
      background-position: center;
    }

    .mute-button {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: rgba(0, 0, 0, 0.3);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .mute-button:hover {
      background: rgba(0, 0, 0, 0.5);
      transform: scale(1.1);
    }

    .mute-button svg {
      width: 20px;
      height: 20px;
      fill: white;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
    }

    .loading-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 18px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
      background-color: rgba(0, 0, 0, 0.3);
      padding: 20px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
    }

    .spinner {
      width: 40px;
      height: 40px;
      border: 4px solid rgba(255, 255, 255, 0.3);
      border-top: 4px solid white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .error-message {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #ff6b6b;
      font-size: 16px;
      text-align: center;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      padding: 20px;
      border-radius: 10px;
    }

    .ad_wrap {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      z-index: 999999;
      padding-left: 10px;
      background: transparent;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      pointer-events: auto;
      height: auto;
    }

    .ad-container {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      width: 100%;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-scrollbar-width: 0px;
      padding-left: 10px;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      white-space: nowrap;
      touch-action: pan-x;
      will-change: scroll-position;
      height: auto;
      min-height: 140px;
    }

    .ad-container::-webkit-scrollbar {
      display: none;
    }

    .ad-widgetSec {
      background-color: #fff;
      display: inline-flex;
      flex-shrink: 0;
      width: 88vw;
      margin-right: 10px;
      align-items: center;
      font-family: "Lato", sans-serif;
      border-radius: 8px;
      z-index: 999999;
      overflow: hidden;
      min-width: 88vw;
      max-width: 88vw;
      height: 120px;
      vertical-align: top;
    }

    .img {
      width: 100px;
      flex-shrink: 0;
      height: 120px;
      overflow: hidden;
      margin-right: 10px;
    }

    .img img {
      height: 100%;
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .title {
      font-size: 13px;
      line-height: 16px;
      margin-bottom: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box !important;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      color: #000;
      padding-right: 10px;
    }

    .title a {
      text-decoration: none;
      color: #000;
      text-wrap: auto;
    }

    .price {
      display: flex;
      font-size: 24px;
      font-weight: 600;
      color: #d0011b;
      line-height: 1;
    }

    .price .prd_prc-dis {
      display: flex;
      font-size: 14px;
      color: #999;
      padding: 5px;
      font-weight: 400;
    }

    .price .prd_prc-dis .prd_prc-cst {
      text-decoration: line-through;
      padding: 0px 5px 0px 0px;
    }

    .prd_btn-icn {
      width: 70px;
      margin-right: 10px;
    }

    .prd_btn-icn img {
      width: 100%;
      height: 100%;
      -o-object-fit: contain;
      object-fit: contain;
    }

    .prd_btn-txt {
      background-color: #d0011b;
      color: white;
      padding: 8px 16px;
      font-size: 14px;
    }

    .prd_btn-wrp a {
      width: 100%;
      display: flex;
      text-decoration: none;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .ad-widgetSec {
        width: 80vw;
        min-width: 80vw;
        max-width: 80vw;
        display: inline-flex;
        height: 100px;
      }

      .img {
        width: 80px;
        height: 100px;
      }

      .title {
        font-size: 12px;
        line-height: 14px;
      }

      .price {
        font-size: 20px;
      }

      .prd_btn-txt {
        padding: 6px 12px;
        font-size: 12px;
      }

      .prd_btn-icn {
        width: 50px;
      }

      .ad-container {
        min-height: 120px;
      }
    }
    .mute-button {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.7);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .mute-button:hover {
      background: rgba(0, 0, 0, 0.9);
    }

    .mute-button svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .loading-indicator {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 18px;
      z-index: 1000;
    }

    .error-message {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #ff6b6b;
      font-size: 16px;
      text-align: center;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      padding: 20px;
      border-radius: 10px;
    }

    .crtsy_by {
      position: absolute;
      top: 30px;
      color: #fff;
      z-index: 9;
      left: 10px;
      font-family: arial;
      font-size: 10px;
    }

    /* Safari-specific optimizations */
    .swiper-wrapper {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      will-change: transform;
      -webkit-transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
    }

    .swiper-slide {
      -webkit-transition: -webkit-transform 0.6s ease;
      transition: transform 0.6s ease;
    }
