/* ==========================================================================
   [V12-COMPONENT] 4. Promo Section (ps-)
   ========================================================================== */
#od-promo-slider { padding: 40px 0 60px; background: #fff; overflow: hidden; }
.ps-viewport-container { position: relative; }
.ps-banner-area { position: relative; }
.ps-viewport { overflow: hidden; margin: 0 -10px; padding: 0 10px; }
.ps-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }
.ps-slide { flex: 0 0 calc(50% - 20px); margin: 0 10px; box-sizing: border-box; }
.ps-item { border-radius: 20px; padding: 45px 50px; display: flex; align-items: center; justify-content: space-between; position: relative; overflow: hidden; cursor: pointer; transition: 0.3s; height: 100%; }
.ps-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06); }
.ps-item.timer { background: #f0f4f4; }
.ps-item.shipping { background: #fcf2f4; }
.ps-item.vip { background: #f9f0f4; }
.ps-item.weekend { background: #f0f4f8; }
.ps-text { z-index: 2; max-width: 65%; }
.ps-text h3 { font-size: 28px; font-weight: 900; margin-bottom: 12px; color: #111; letter-spacing: -0.04em; }
.ps-text p { font-size: 15px; color: #555; font-weight: 600; }
.ps-icon { width: 140px; height: 140px; object-fit: contain; transition: transform 0.4s; z-index: 2; }
.ps-item:hover .ps-icon { transform: scale(1.1); }
.ps-item::before { content: ''; position: absolute; right: -20px; top: -20px; width: 180px; height: 180px; background: rgba(255, 255, 255, 0.4); border-radius: 50%; z-index: 1; }
.ps-arrow-wrapper { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; z-index: 10; padding: 0 10px; }
.ps-arrow { width: 50px; height: 50px; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(4px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; pointer-events: auto; color: #111; transition: 0.3s; opacity: 0; }
#od-promo-slider:hover .ps-arrow { opacity: 1; }
.ps-arrow:hover { background: #fff; color: var(--ml-accent); transform: scale(1.1); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); }
.ps-arrow svg { width: 32px; height: 32px; }
.ps-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 35px; }
.ps-dot { width: 8px; height: 8px; border-radius: 50%; background: #e0e0e0; cursor: pointer; transition: 0.3s; }
.ps-dot.is-active { width: 24px; background: var(--ml-accent); border-radius: 4px; }

@media (max-width: 1024px) {
  .ps-slide { flex: 0 0 calc(100% - 20px); }
  .ps-item { padding: 30px; }
  .ps-text h3 { font-size: 22px; }
  .ps-icon { width: 100px; height: 100px; }
}
