#od-time-sale {
      padding: 100px 0;
      background: transparent;
      border-top: 1px solid var(--ml-border);
    }

    .ts-title-area {
      text-align: center;
      margin-bottom: 50px;
    }

    .ts-title-area h2 {
      font-size: 32px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    /* Animated Clock Icon */
    .ts-clock {
      position: relative;
      width: 44px;
      height: 44px;
      background: var(--ml-accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ts-clock svg {
      width: 24px;
      height: 24px;
    }

    .ts-clock .hand {
      transform-origin: 12px 12px;
      animation: clock-rotate linear infinite;
    }

    .ts-clock .hour {
      animation-duration: 12s;
    }

    .ts-clock .minute {
      animation-duration: 2s;
    }

    @keyframes clock-rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .ts-title-area p {
      font-size: 15px;
      color: var(--ml-muted);
      margin-top: 10px;
    }

    .ts-viewport-container {
      position: relative;
    }

    .ts-swiper {
      padding-bottom: 60px;
      overflow: hidden;
    }

    .ts-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .ts-slide {
      flex: 0 0 calc(33.333% - 20px);
      margin: 0 10px;
      box-sizing: border-box;
    }

    .ts-item {
      position: relative;
      cursor: pointer;
      transition: 0.3s;
    }

    .ts-thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: #f8f8f8;
      aspect-ratio: 1 / 1.1;
      margin-bottom: 20px;
    }

    .ts-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.6s;
    }

    .ts-item:hover .ts-thumb img {
      transform: scale(1.05);
    }

    .ts-thumb .img-hover {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: 0.4s;
    }

    .ts-item:hover .ts-thumb .img-hover {
      opacity: 1;
    }

    /* Timer Style */
    .ts-timer-box {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(5px);
      color: #fff;
      padding: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--ml-font);
      z-index: 10;
      font-size: 14px;
      font-weight: 700;
    }

    .ts-timer-box .icon {
      width: 16px;
      height: 16px;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }

    .ts-timer-box.ended {
      background: rgba(0, 0, 0, 0.4);
    }

    .ts-timer-box.upcoming {
      background: rgba(0, 88, 255, 0.7);
    }

    .ts-actions {
      position: absolute;
      top: 15px;
      right: 15px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transform: translateX(50px);
      opacity: 0;
      transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
      z-index: 15;
    }

    .ts-item:hover .ts-actions {
      transform: translateX(0);
      opacity: 1;
    }

    .ts-action-btn {
      width: 40px;
      height: 40px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: 0.2s;
      border: none;
      cursor: pointer;
    }

    .ts-action-btn:hover {
      background: var(--ml-accent);
      color: #fff;
    }

    .ts-action-btn svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .ts-info {
      text-align: left;
    }

    .ts-colorchips {
      display: flex;
      gap: 4px;
      margin-bottom: 12px;
    }

    .ts-colorchip {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .ts-name {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
      display: block;
    }

    .ts-summary {
      font-size: 13px;
      color: var(--ml-muted);
      margin-bottom: 12px;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .ts-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }

    .ts-price-sale {
      font-size: 18px;
      font-weight: 800;
      color: #111;
    }

    .ts-price-original {
      font-size: 14px;
      color: #bbb;
      text-decoration: line-through;
    }

    .ts-discount {
      font-size: 18px;
      font-weight: 900;
      color: var(--ml-accent);
      margin-right: 4px;
    }

    .ts-review {
      margin-top: 10px;
      font-size: 12px;
      color: #999;
      font-weight: 600;
    }

    .ts-pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .ts-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ddd;
      transition: 0.3s;
      cursor: pointer;
    }

    .ts-dot.is-active {
      width: 24px;
      background: var(--ml-accent);
      border-radius: 4px;
    }

    .ts-arrow-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 0;
      padding-top: calc((var(--ml-content-width) / 3 - 20px) * 1.1 / 2 + 10px);
      display: flex;
      justify-content: space-between;
      pointer-events: none;
      z-index: 20;
      margin: 0 -25px;
    }

    .ts-arrow {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      opacity: 0;
      transition: 0.3s;
      transform: translateY(-50%);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    #od-time-sale:hover .ts-arrow {
      opacity: 1;
    }

    .ts-arrow:hover {
      background: #fff;
      color: var(--ml-accent);
      transform: translateY(-50%) scale(1.1);
    }

    .ts-arrow svg {
      width: 28px;
      height: 28px;
    }