@tailwind base; @tailwind components; @tailwind utilities; :root { --oc-font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif; --oc-bg: #f5f5f7; --oc-surface: #ffffff; --oc-border: #d2d2d7; --oc-text: #1d1d1f; --oc-muted: #6e6e73; --oc-primary: #0071e3; --oc-primary-strong: #0066cc; --oc-primary-soft: #e8f3ff; --oc-primary-soft-border: #bfdcff; --oc-chip: #f5f5f7; } html, body { min-height: 100%; } body { font-family: var(--oc-font-sans); background: radial-gradient(circle at top right, #eef5ff 0%, var(--oc-bg) 30%); color: var(--oc-text); } h1, h2, h3, h4, h5, h6 { letter-spacing: -0.01em; } .brand-logo { position: relative; width: 1.18rem; height: 1.42rem; display: inline-block; border-radius: 60% 60% 55% 55% / 62% 62% 70% 70%; background: var(--oc-text); box-shadow: 0 4px 12px rgba(29, 29, 31, 0.16); transform: translateY(1px); } .brand-logo::before { content: ""; position: absolute; top: -0.34rem; right: 0.12rem; width: 0.44rem; height: 0.25rem; border-radius: 100% 0; background: var(--oc-text); transform: rotate(-32deg); } .brand-logo::after { content: ""; position: absolute; top: 0.14rem; left: 50%; transform: translateX(-50%); width: 0.12rem; height: 0.16rem; border-radius: 999px; background: var(--oc-surface); } .brand-text { max-width: 7.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 1.12rem; font-weight: 700; color: var(--oc-text); letter-spacing: -0.03em; } .market-nav-surface { background: rgba(251, 251, 253, 0.88); backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid var(--oc-border); } .oc-nav-wrap { max-width: 1320px; margin: 0 auto; padding: 10px 16px 12px; } .oc-nav-main { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 10px 12px; } .oc-topbar { display: flex; align-items: center; justify-content: flex-start; gap: 10px; grid-column: 1 / 2; min-width: 0; } .oc-brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; } .oc-brand-image { height: 1.8rem; } .oc-topbar .oc-brand { flex: 0 1 auto; } .oc-search { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 50px; padding: 0 16px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 20px rgba(29, 29, 31, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.75); } .oc-search-main { grid-column: 1 / -1; grid-row: 2; } .oc-search-icon { color: #6e6e73; flex-shrink: 0; } .oc-search-input { width: 100%; border: 0; background: transparent; color: var(--oc-text); font-size: 1rem; line-height: 1.4; outline: none; } .oc-search-input::placeholder { color: #8d8d92; } .oc-search-submit { display: none; border: 0; background: transparent; color: #4b5563; font-size: 0.95rem; font-weight: 600; white-space: nowrap; cursor: pointer; } .oc-actions { display: flex; align-items: center; grid-column: 2 / 4; grid-row: 1; justify-content: flex-end; gap: 8px; flex-wrap: nowrap; min-width: 0; } .oc-location { position: relative; flex: 1 1 auto; min-width: 0; } .oc-location-trigger { justify-content: space-between; width: 100%; } .oc-location-label { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .oc-pill { display: inline-flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 14px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: #4b5563; font-size: 0.92rem; font-weight: 600; box-shadow: 0 6px 18px rgba(29, 29, 31, 0.05); } .oc-pill-strong { color: #fff; background: linear-gradient(180deg, #2997ff, var(--oc-primary)); border-color: transparent; box-shadow: 0 10px 22px rgba(0, 113, 227, 0.18); } .oc-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px; font-size: 0.92rem; font-weight: 700; flex-shrink: 0; } .oc-text-link { color: #6e6e73; font-size: 0.95rem; font-weight: 500; transition: color 0.2s ease; } .oc-text-link:hover { color: var(--oc-text); } .oc-auth-link { display: none; align-items: center; min-height: 44px; } .oc-logout { display: none; } .oc-mobile-menu-shell { position: fixed; inset: 0; z-index: 80; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s ease; } .oc-mobile-menu-shell.is-open { opacity: 1; visibility: visible; pointer-events: auto; } .oc-mobile-menu-backdrop { position: absolute; inset: 0; border: 0; background: rgba(15, 23, 42, 0.22); backdrop-filter: saturate(150%) blur(16px); } .oc-mobile-menu-panel { position: absolute; top: 12px; left: 12px; right: 12px; max-height: calc(100vh - 24px); overflow: auto; padding: 18px; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 28px; background: rgba(255, 255, 255, 0.9); box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22); transform: translateY(-12px) scale(0.985); transition: transform 0.24s ease; } .oc-mobile-menu-shell.is-open .oc-mobile-menu-panel { transform: translateY(0) scale(1); } .oc-mobile-menu-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; } .oc-mobile-menu-title { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; } .oc-mobile-menu-close { display: inline-flex; flex-shrink: 0; } .oc-mobile-menu-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 16px; } .oc-mobile-menu-primary { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 16px; border-radius: 16px; border: 1px solid rgba(29, 29, 31, 0.08); background: rgba(255, 255, 255, 0.92); color: var(--oc-text); font-size: 0.95rem; font-weight: 700; } .oc-mobile-menu-primary-strong { background: linear-gradient(180deg, #2997ff, var(--oc-primary)); color: #fff; border-color: transparent; } .oc-mobile-menu-section { margin-top: 16px; } .oc-mobile-menu-label { margin-bottom: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7280; } .oc-mobile-menu-list { display: grid; gap: 8px; } .oc-mobile-menu-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 54px; padding: 0 18px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 18px; background: rgba(255, 255, 255, 0.92); font-size: 0.98rem; font-weight: 600; color: var(--oc-text); } .oc-mobile-menu-languages { display: flex; flex-wrap: wrap; gap: 8px; } .oc-mobile-menu-language { display: inline-flex; align-items: center; min-height: 38px; padding: 0 12px; border-radius: 999px; border: 1px solid rgba(29, 29, 31, 0.08); background: rgba(255, 255, 255, 0.92); color: #475569; font-size: 0.82rem; font-weight: 600; } .oc-mobile-menu-language.is-active { color: var(--oc-primary); border-color: var(--oc-primary-soft-border); background: var(--oc-primary-soft); } .oc-mobile-menu-logout { margin-top: 18px; } .oc-mobile-menu-logout-btn { width: 100%; min-height: 52px; border: 0; border-radius: 18px; background: #111827; color: #fff; font-size: 0.96rem; font-weight: 700; cursor: pointer; } .oc-category-row { display: none; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(29, 29, 31, 0.08); } .oc-category-track { display: flex; align-items: center; gap: 8px; overflow-x: auto; padding-bottom: 2px; } .oc-category-pill { display: inline-flex; align-items: center; gap: 10px; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(29, 29, 31, 0.08); background: rgba(255, 255, 255, 0.84); color: var(--oc-text); font-size: 0.95rem; font-weight: 600; white-space: nowrap; } .oc-category-link { display: inline-flex; align-items: center; min-height: 46px; padding: 0 18px; border-radius: 999px; color: #4b5563; font-size: 0.95rem; font-weight: 500; white-space: nowrap; transition: background 0.2s ease, color 0.2s ease; } .oc-category-link:hover, .oc-category-pill:hover, .oc-pill:hover { background: rgba(255, 255, 255, 0.98); color: var(--oc-text); } .search-shell { border: 1px solid var(--oc-border); background: #ffffff; border-radius: 999px; } .chip-btn { border: 1px solid var(--oc-border); background: var(--oc-chip); border-radius: 999px; } .btn-primary { background: linear-gradient(180deg, #0a84ff, var(--oc-primary)); color: #ffffff; border-radius: 999px; box-shadow: 0 6px 16px rgba(0, 113, 227, 0.24); transition: background 0.2s ease, box-shadow 0.2s ease; } .btn-primary:hover { background: linear-gradient(180deg, var(--oc-primary), var(--oc-primary-strong)); box-shadow: 0 8px 18px rgba(0, 113, 227, 0.3); } .header-utility { width: 2.6rem; height: 2.6rem; flex: 0 0 2.6rem; border-radius: 999px; border: 1px solid var(--oc-border); background: rgba(255, 255, 255, 0.96); display: none; align-items: center; justify-content: center; color: #4b5563; box-shadow: 0 6px 16px rgba(29, 29, 31, 0.06); transition: all 0.2s ease; } .header-utility svg { width: 1.125rem; height: 1.125rem; } .header-utility.oc-compact-menu-trigger, .header-utility.oc-mobile-menu-close { display: inline-flex; flex-shrink: 0; } .header-utility:hover { border-color: var(--oc-primary-soft-border); color: var(--oc-primary); } .location-panel { width: min(calc(100vw - 32px), 360px); } .location-panel select { border: 1px solid var(--oc-border); border-radius: 0.75rem; background: #f7f7f8; color: #374151; padding: 0.55rem 0.75rem; font-size: 0.875rem; } @media (min-width: 768px) { .oc-nav-wrap { padding-top: 14px; padding-bottom: 12px; } .brand-text { max-width: none; font-size: 1.32rem; } .oc-actions { justify-content: flex-end; flex-wrap: nowrap; } .oc-location { flex: 0 1 240px; } .oc-mobile-menu-panel { top: 16px; right: 16px; left: auto; width: min(420px, calc(100vw - 32px)); max-height: calc(100vh - 32px); } } @media (min-width: 1024px) { .brand-logo { width: 1.45rem; height: 1.7rem; box-shadow: 0 5px 14px rgba(29, 29, 31, 0.18); } .brand-logo::before { top: -0.42rem; right: 0.14rem; width: 0.54rem; height: 0.31rem; } .brand-logo::after { top: 0.18rem; width: 0.16rem; height: 0.2rem; } .oc-nav-wrap { padding: 18px 16px 14px; } .oc-brand-image { height: 2.25rem; } .oc-nav-main { grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 16px; } .oc-topbar { justify-content: flex-start; min-width: 0; gap: 16px; } .oc-search-main { grid-column: auto; grid-row: auto; } .oc-search { min-height: 3.35rem; padding: 0 16px 0 18px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75); } .oc-search-submit { display: inline-flex; align-items: center; justify-content: center; min-width: 5.25rem; text-align: center; } .oc-actions { grid-column: auto; grid-row: auto; justify-content: flex-end; gap: 12px; flex-wrap: nowrap; } .oc-location { flex: 0 0 192px; } .oc-pill, .oc-cta { min-height: 3rem; } .oc-pill { padding: 0 16px; font-size: 0.95rem; font-weight: 500; box-shadow: none; } .oc-cta { padding: 0 22px; font-size: 0.96rem; } .header-utility { width: 3rem; height: 3rem; flex-basis: 3rem; box-shadow: none; } .oc-text-link { min-height: 3rem; display: inline-flex; align-items: center; } .oc-auth-link { display: inline-flex; } .oc-desktop-utility { display: inline-flex; } .oc-logout { display: block; } .header-utility.oc-compact-menu-trigger, .oc-mobile-menu-shell { display: none; } .oc-category-row { display: block; } } @media (min-width: 1280px) { .brand-text { max-width: none; font-size: 1.7rem; } } summary::-webkit-details-marker { display: none; } [dir="rtl"] { text-align: right; } .listing-filter-card { border: 1px solid var(--oc-border); border-radius: 14px; background: var(--oc-surface); } .listing-card { border: 1px solid var(--oc-border); border-radius: 12px; overflow: hidden; background: var(--oc-surface); transition: box-shadow 0.2s ease, transform 0.2s ease; } .listing-card:hover { box-shadow: 0 14px 28px rgba(29, 29, 31, 0.12); transform: translateY(-2px); } .listing-title { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; } .lt-wrap { max-width: 1320px; margin: 0 auto; padding: 24px 16px 56px; } .site-main .lt-wrap h1, .site-main .lt-wrap h2, .site-main .lt-wrap h3, .site-main .lt-wrap h4 { text-align: left; margin-inline: 0; text-wrap: pretty; } .lt-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; font-size: 0.84rem; color: var(--oc-muted); } .lt-breadcrumb a { color: #4b5563; text-decoration: none; } .lt-breadcrumb a:hover { color: var(--oc-text); } .lt-breadcrumb span:last-child { color: var(--oc-text); font-weight: 600; } .lt-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 24px; align-items: start; } .lt-main-column { min-width: 0; } .lt-card { border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 28px; background: rgba(255, 255, 255, 0.88); box-shadow: 0 24px 64px rgba(15, 23, 42, 0.07); backdrop-filter: saturate(180%) blur(18px); } .lt-media-card { padding: 18px; overflow: hidden; } .lt-gallery-main { position: relative; min-height: 560px; border-radius: 24px; overflow: hidden; background: linear-gradient(180deg, #eef3f8 0%, #e7ebf2 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8); } .lt-gallery-main::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72); pointer-events: none; } .lt-gallery-main img { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 560px; object-fit: contain; padding: 40px; } .lt-gallery-main-empty { min-height: 560px; display: grid; place-items: center; color: #667085; font-size: 0.95rem; } .lt-gallery-top { position: absolute; top: 16px; left: 16px; right: 16px; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; } .lt-gallery-pills { display: flex; flex-wrap: wrap; gap: 8px; } .lt-badge { display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px; border-radius: 999px; background: var(--oc-primary); color: #ffffff; font-size: 0.8rem; font-weight: 700; letter-spacing: -0.01em; } .lt-badge-soft { border: 1px solid rgba(29, 29, 31, 0.08); background: rgba(255, 255, 255, 0.9); color: var(--oc-text); } .lt-badge-muted { border: 0; background: rgba(29, 29, 31, 0.7); color: #ffffff; } .lt-icon-btn { width: 44px; height: 44px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--oc-text); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14); transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease; } .lt-icon-btn:hover { transform: translateY(-1px); } .lt-icon-btn.is-active { background: var(--oc-primary); color: #ffffff; } .lt-gallery-nav { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); width: 50px; height: 50px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.94); color: var(--oc-text); display: grid; place-items: center; cursor: pointer; box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14); } .lt-gallery-nav[data-gallery-prev] { left: 18px; } .lt-gallery-nav[data-gallery-next] { right: 18px; } .lt-thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 14px 2px 2px; } .lt-thumb { width: 94px; min-width: 94px; height: 74px; border: 1px solid transparent; border-radius: 18px; overflow: hidden; background: #d8dde5; box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06); cursor: pointer; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; } .lt-thumb:hover { transform: translateY(-1px); } .lt-thumb.is-active { border-color: rgba(0, 113, 227, 0.3); box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12); } .lt-thumb img { width: 100%; height: 100%; object-fit: cover; } .lt-summary-card, .lt-detail-card, .lt-side-card { padding: 24px; } .lt-summary-card, .lt-detail-card { margin-top: 16px; } .lt-overline { margin: 0 0 8px; color: var(--oc-primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; } .lt-title { margin: 0; max-width: 15ch; font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.04; font-weight: 700; letter-spacing: -0.05em; color: var(--oc-text); } .lt-price { margin-top: 16px; font-size: clamp(1.9rem, 2.7vw, 3rem); line-height: 1; font-weight: 700; letter-spacing: -0.04em; color: var(--oc-text); } .lt-subtitle { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; color: var(--oc-muted); font-size: 1rem; } .lt-overview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 24px; } .lt-overview-item, .lt-feature-item, .lt-video-card { border: 1px solid rgba(29, 29, 31, 0.08); background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82); } .lt-overview-item { min-height: 94px; border-radius: 22px; padding: 16px 18px; } .lt-overview-label { display: block; color: var(--oc-muted); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; } .lt-overview-value { display: block; margin-top: 8px; color: var(--oc-text); font-size: 1rem; font-weight: 700; line-height: 1.4; } .lt-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 18px; } .lt-section-title { margin: 0; color: var(--oc-text); font-size: 1.55rem; font-weight: 700; letter-spacing: -0.03em; } .lt-section-copy { margin: 6px 0 0; max-width: 38rem; color: var(--oc-muted); font-size: 0.95rem; line-height: 1.6; } .lt-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .lt-feature-item { min-height: 94px; border-radius: 22px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; } .lt-feature-item span { color: var(--oc-muted); font-size: 0.88rem; } .lt-feature-item strong { color: var(--oc-text); font-size: 1rem; font-weight: 700; line-height: 1.45; } .lt-description { color: #344054; font-size: 1rem; line-height: 1.8; } .lt-video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } .lt-video-card { border-radius: 24px; padding: 14px; } .lt-video-player { width: 100%; aspect-ratio: 16 / 10; border-radius: 18px; background: #020617; } .lt-video-title { margin: 12px 4px 2px; color: var(--oc-text); font-size: 0.95rem; font-weight: 600; } .lt-side-card { position: sticky; top: 92px; } .lt-seller-panel { display: grid; gap: 18px; } .lt-seller-head { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(29, 29, 31, 0.06); border-radius: 24px; background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%); } .lt-avatar { width: 60px; height: 60px; border-radius: 999px; background: radial-gradient(circle at top, #ffffff 0%, #dfeaf8 45%, #b6d5f7 100%); color: #003a75; display: grid; place-items: center; font-size: 1.3rem; font-weight: 700; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85); } .lt-seller-kicker { margin: 0 0 4px; color: var(--oc-primary); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; } .lt-seller-name { margin: 0; color: var(--oc-text); font-size: 1.65rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; } .lt-seller-meta { margin-top: 4px; color: var(--oc-muted); font-size: 0.92rem; line-height: 1.5; } .lt-actions { display: grid; gap: 10px; } .lt-row-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .lt-action-form { width: 100%; } .lt-action-form .lt-btn { width: 100%; } .lt-btn { width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid rgba(0, 113, 227, 0.18); border-radius: 999px; background: rgba(0, 113, 227, 0.08); color: var(--oc-primary); font-size: 0.96rem; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease; } .lt-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0, 113, 227, 0.12); } .lt-btn:disabled { opacity: 0.48; cursor: not-allowed; box-shadow: none; } .lt-btn-main { border-color: transparent; background: linear-gradient(180deg, #1581eb 0%, #0071e3 100%); color: #ffffff; box-shadow: 0 16px 34px rgba(0, 113, 227, 0.24); } .lt-btn-outline { border-color: rgba(29, 29, 31, 0.12); background: #ffffff; color: var(--oc-text); box-shadow: none; } .lt-contact-strip { display: flex; flex-wrap: wrap; gap: 10px; } .lt-contact-link { flex: 1 1 auto; min-width: 0; padding: 12px 14px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 18px; background: #f8f9fb; color: #344054; font-size: 0.9rem; text-decoration: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .lt-report { min-height: 52px; border: 1px solid rgba(29, 29, 31, 0.12); border-radius: 999px; background: #ffffff; color: var(--oc-text); font-size: 0.95rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; } .lt-policy { color: var(--oc-muted); font-size: 0.82rem; line-height: 1.6; text-align: center; padding: 0 8px; } .lt-related { margin-top: 30px; } .lt-related-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; } .lt-related-title { margin: 0; color: var(--oc-text); font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; } .lt-related-copy { margin: 0; color: var(--oc-muted); font-size: 0.95rem; line-height: 1.6; } .lt-scroll-wrap { position: relative; margin-top: 16px; } .lt-scroll-track { display: flex; gap: 16px; overflow-x: auto; scroll-behavior: smooth; padding: 2px 2px 10px; } .lt-rel-card { min-width: 260px; width: 260px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 24px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06); overflow: hidden; color: inherit; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; } .lt-rel-card:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1); } .lt-rel-photo { height: 184px; background: linear-gradient(180deg, #edf1f5 0%, #dfe6ee 100%); } .lt-rel-photo img { width: 100%; height: 100%; object-fit: cover; } .lt-rel-body { padding: 16px; } .lt-rel-price { color: var(--oc-text); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; } .lt-rel-title { margin-top: 8px; color: #1f2937; font-size: 1rem; font-weight: 600; line-height: 1.45; min-height: 2.9em; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; } .lt-rel-city { margin-top: 10px; color: var(--oc-muted); font-size: 0.88rem; } .lt-scroll-btn { position: absolute; top: 42%; transform: translateY(-50%); width: 46px; height: 46px; border: 1px solid rgba(29, 29, 31, 0.08); border-radius: 999px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12); display: grid; place-items: center; cursor: pointer; } .lt-scroll-btn.prev { left: -18px; } .lt-scroll-btn.next { right: -18px; } .lt-pill-wrap { margin-top: 26px; } .lt-pill-title { margin: 0 0 12px; color: var(--oc-text); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; } .lt-pills { display: flex; flex-wrap: wrap; gap: 10px; } .lt-pill { border: 1px solid rgba(29, 29, 31, 0.08); background: rgba(255, 255, 255, 0.86); border-radius: 999px; padding: 10px 16px; color: #344054; text-decoration: none; font-size: 0.92rem; font-weight: 600; } .text-rose-500, .text-rose-600, .text-rose-700 { color: var(--oc-primary) !important; } .bg-rose-50 { background-color: var(--oc-primary-soft) !important; } .bg-rose-100 { background-color: #dcecff !important; } .bg-rose-500 { background-color: var(--oc-primary) !important; } .bg-rose-600 { background-color: var(--oc-primary-strong) !important; } .border-rose-200, .border-rose-300 { border-color: var(--oc-primary-soft-border) !important; } .hover\:text-rose-500:hover, .hover\:text-rose-600:hover, .hover\:text-rose-700:hover { color: var(--oc-primary) !important; } .hover\:bg-rose-50:hover { background-color: var(--oc-primary-soft) !important; } .hover\:bg-rose-100:hover { background-color: #dcecff !important; } .hover\:bg-rose-600:hover { background-color: var(--oc-primary-strong) !important; } .focus\:ring-rose-200:focus { --tw-ring-color: rgba(0, 113, 227, 0.24) !important; } .accent-rose-500 { accent-color: var(--oc-primary) !important; } @media (max-width: 1080px) { .lt-grid { grid-template-columns: 1fr; } .lt-side-card { position: static; } .lt-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lt-scroll-btn { display: none; } } @media (max-width: 720px) { .lt-wrap { padding: 18px 12px 40px; } .lt-card { border-radius: 24px; } .lt-media-card, .lt-summary-card, .lt-detail-card, .lt-side-card { padding: 14px; } .lt-gallery-main, .lt-gallery-main img, .lt-gallery-main-empty { min-height: 360px; } .lt-gallery-main img { padding: 26px; } .lt-title { max-width: none; font-size: 2rem; } .lt-price { font-size: 1.8rem; } .lt-overview-grid, .lt-feature-grid, .lt-video-grid, .lt-row-2 { grid-template-columns: 1fr; } .lt-related-head { align-items: flex-start; flex-direction: column; } .lt-rel-card { min-width: 220px; width: 220px; } .lt-rel-photo { height: 156px; } } @media (max-width: 480px) { .lt-wrap { padding: 14px 10px 34px; } .lt-breadcrumb { margin-bottom: 12px; font-size: 0.78rem; } .lt-gallery-main, .lt-gallery-main img, .lt-gallery-main-empty { min-height: 300px; } .lt-gallery-main img { padding: 18px; } .lt-gallery-top { top: 12px; left: 12px; right: 12px; } .lt-thumb { width: 76px; min-width: 76px; height: 60px; border-radius: 16px; } .lt-seller-head { padding: 16px; } .lt-seller-name { font-size: 1.35rem; } .lt-contact-strip { flex-direction: column; } } html { font-family: var(--oc-font-sans); } body, button, input, select, textarea { font-family: var(--oc-font-sans); } .site-main h1, .site-main h2, .site-main h3, .site-main h4 { text-align: center; letter-spacing: -0.03em; text-wrap: balance; } .site-main h1 { margin-inline: auto; } .listing-filter-card, .listing-card, .panel-surface, .panel-list-card { box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05); } .listing-filter-card, .listing-card { border-color: #d9e2ef; } .listing-filter-card { text-align: center; border-radius: 18px; } .listing-card { border-radius: 18px; text-align: center; } .listing-card .listing-title { max-width: 26ch; margin-inline: auto; line-height: 1.45; } .panel-surface { background: rgba(255, 255, 255, 0.94); border: 1px solid #d9e2ef; border-radius: 24px; padding: 1.5rem; text-align: center; } .panel-toolbar { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 1.5rem; } .panel-search { position: relative; width: 100%; max-width: 42rem; } .panel-search-icon { position: absolute; top: 50%; left: 1.15rem; transform: translateY(-50%); color: #94a3b8; } .panel-search-input { width: 100%; height: 3.25rem; border-radius: 999px; border: 1px solid #cfd8e3; background: #ffffff; padding: 0 1.25rem 0 3.1rem; font-size: 1rem; font-weight: 600; color: #334155; text-align: center; } .panel-search-input::placeholder { color: #94a3b8; font-weight: 500; } .panel-filter-tabs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; } .panel-filter-tab { min-height: 2.75rem; padding: 0.75rem 1.3rem; border-radius: 999px; border: 1px solid #cfd8e3; background: #ffffff; color: #475569; font-size: 0.95rem; font-weight: 600; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; } .panel-filter-tab:hover { background: #f8fafc; } .panel-filter-tab.is-active { border-color: var(--oc-primary-soft-border); background: var(--oc-primary-soft); color: var(--oc-primary); } .panel-list-card { border: 1px solid #d9e2ef; border-radius: 24px; background: #fbfcfe; padding: 1.25rem; text-align: center; } .panel-list-card-body { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; } .panel-list-media { width: 100%; max-width: 16.25rem; height: 11rem; border-radius: 18px; overflow: hidden; } .panel-list-main { display: flex; flex: 1; min-width: 0; flex-direction: column; align-items: center; } .panel-list-summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; } .panel-list-price { font-size: 1.9rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; } .panel-status-badge { display: inline-flex; min-height: 2.25rem; align-items: center; justify-content: center; padding: 0 1rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700; } .panel-list-title { max-width: 26ch; margin-top: 0.35rem; font-size: 1.2rem; font-weight: 700; line-height: 1.35; } .panel-list-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-top: auto; padding-top: 1.25rem; } .panel-action-btn { min-height: 2.75rem; border-radius: 999px; padding: 0.75rem 1.35rem; font-size: 0.95rem; font-weight: 700; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; } .panel-action-btn-secondary { border: 1px solid var(--oc-primary-soft-border); background: #ffffff; color: var(--oc-primary); } .panel-action-btn-secondary:hover { background: var(--oc-primary-soft); } .panel-action-btn-primary { border: 1px solid var(--oc-primary); background: var(--oc-primary); color: #ffffff; } .panel-action-btn-primary:hover { border-color: var(--oc-primary-strong); background: var(--oc-primary-strong); } .panel-list-aside { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.95rem; } .panel-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; } .panel-stat-box { display: inline-flex; min-width: 5.5rem; min-height: 2.75rem; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 1rem; background: #e9eff6; padding: 0.75rem 1rem; font-size: 0.95rem; font-weight: 700; color: #475569; } .panel-list-dates { max-width: 24ch; font-size: 0.95rem; color: #64748b; text-align: center; } .panel-inline-note { margin-top: 1rem; border-radius: 1rem; background: #eef6ff; padding: 0.9rem 1rem; font-size: 0.95rem; color: #334155; text-align: center; } .panel-empty-state { border: 1px dashed #cbd5e1; border-radius: 1rem; padding: 4rem 1rem; text-align: center; color: #64748b; } @media (min-width: 1280px) { .panel-list-card-body { flex-direction: row; align-items: center; justify-content: space-between; } .panel-list-main { padding-inline: 1rem; } .panel-list-aside { flex: 0 0 15rem; } } @media (max-width: 1080px) { .lt-price { font-size: 2rem; } .lt-seller-name, .lt-section-title, .lt-related-title, .lt-pill-title { font-size: 1.35rem; } } @media (max-width: 640px) { .panel-surface { padding: 1.1rem; border-radius: 20px; } .panel-list-card { padding: 1rem; border-radius: 20px; } .panel-list-price { font-size: 1.6rem; } .panel-list-title { font-size: 1.05rem; } .lt-price { font-size: 1.75rem; } .lt-title { font-size: 1.15rem; } .lt-meta { text-align: center; } } .profile-page h1, .profile-page h2, .profile-page h3, .profile-page h4 { text-align: left; } .profile-page h1 { margin-inline: 0; } .profile-page .profile-side-nav { align-self: start; } .profile-page .panel-side-nav { text-align: left; } .profile-page .panel-surface.profile-card { padding: 2rem; border-radius: 30px; text-align: left; border-color: rgba(217, 226, 239, 0.9); background: rgba(255, 255, 255, 0.92); box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08); overflow: hidden; } .profile-page .panel-surface.profile-card-danger { border-color: rgba(253, 164, 175, 0.5); background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 242, 0.92)); } .account-section-kicker { font-size: 0.68rem; font-weight: 700; line-height: 1; letter-spacing: 0.26em; text-transform: uppercase; color: #64748b; } .account-inline-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 2.25rem; padding: 0 0.9rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; line-height: 1; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; } .account-field { display: flex; flex-direction: column; gap: 0.65rem; } .account-label { display: block; font-size: 0.82rem; font-weight: 700; line-height: 1.4; color: #0f172a; } .account-helper, .account-error { font-size: 0.82rem; line-height: 1.55; } .account-helper { color: #64748b; } .account-error { color: #dc2626; } .account-input { width: 100%; min-height: 3.5rem; border: 1px solid #d9e2ef; border-radius: 20px; background: #f8fafc; padding: 0.95rem 1rem; color: #0f172a; font-size: 0.96rem; font-weight: 500; line-height: 1.5; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8); transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; } .account-input::placeholder { color: #94a3b8; } .account-input:focus { outline: 0; border-color: #7dd3fc; background: #ffffff; box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22), 0 14px 34px rgba(14, 165, 233, 0.12); } .account-primary-button, .account-secondary-button, .account-danger-button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.25rem; padding: 0 1.25rem; border-radius: 999px; font-size: 0.83rem; font-weight: 800; line-height: 1; letter-spacing: 0.14em; text-transform: uppercase; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease; } .account-primary-button:hover, .account-secondary-button:hover, .account-danger-button:hover { transform: translateY(-1px); } .account-primary-button { border: 0; background: linear-gradient(180deg, #1d9bf0, #0f6fe8); color: #ffffff; box-shadow: 0 16px 30px rgba(15, 111, 232, 0.24); } .account-primary-button:hover { box-shadow: 0 18px 34px rgba(15, 111, 232, 0.28); } .account-secondary-button { border: 1px solid #d9e2ef; background: #ffffff; color: #0f172a; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06); } .account-secondary-button:hover { border-color: #cbd5e1; background: #f8fafc; } .account-danger-button { border: 0; background: linear-gradient(180deg, #ef4444, #dc2626); color: #ffffff; box-shadow: 0 16px 30px rgba(220, 38, 38, 0.2); } .account-danger-button:hover { box-shadow: 0 18px 34px rgba(220, 38, 38, 0.24); } @media (min-width: 1280px) { .profile-page .profile-side-nav { position: sticky; top: 108px; } } @media (max-width: 640px) { .profile-page .panel-surface.profile-card { padding: 1.25rem; border-radius: 24px; } .account-primary-button, .account-secondary-button, .account-danger-button { width: 100%; } }