/* ========================================
   Jukujo Theme - Main Stylesheet
   Design: Simple, Fast, Conversion-Optimized
   Mobile-first, White background
   ======================================== */

/* --- Screen Reader Text (WordPress default hidden) --- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* --- CSS Variables --- */
:root {
  --color-bg-dark: #1a1a2e;
  --color-accent: #8b5cf6;
  --color-cta: #ef4444;
  --color-cta-hover: #dc2626;
  --color-highlight-bg: #fef3c7;
  --color-tag-bg: #ede9fe;
  --color-tag-text: #6d28d9;
  --color-rank-gold: #f59e0b;
  --color-rank-silver: #9ca3af;
  --color-rank-bronze: #d97706;
  --color-text: #2d2d3a;
  --color-text-sub: #6e6e80;
  --color-border: #e5e5e5;
  --color-bg-light: #f8f8fa;
  --color-link: #8b5cf6;
  --color-link-hover: #7c3aed;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.8;
  color: var(--color-text);
  background: #fff;
}

a { color: var(--color-link); text-decoration: none; }
a:hover { color: var(--color-link-hover); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* --- Accessibility --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

a:focus-visible { outline-offset: 3px; }

/* --- Layout --- */
.site-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrap {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.main-content { flex: 1; min-width: 0; }

.sidebar {
  width: 300px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .content-wrap { flex-direction: column; gap: 24px; }
  .sidebar { width: 100%; }
}

/* --- Header (Dark) --- */
.site-header {
  border-bottom: none;
  padding: 12px 0;
  background: var(--color-bg-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.site-title a { color: inherit; }
.site-title a:hover { text-decoration: none; }

.site-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
}

.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  padding: 4px 0;
}

.site-nav a:hover { color: #fff; text-decoration: none; }

@media (max-width: 768px) {
  .site-nav { display: none; }
}

/* --- Hamburger Menu (Mobile) --- */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 201;
}

.hamburger-btn span,
.hamburger-btn span::before,
.hamburger-btn span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  transition: var(--transition);
}

.hamburger-btn span { top: 50%; transform: translateY(-50%); }
.hamburger-btn span::before { content: ''; top: -8px; }
.hamburger-btn span::after { content: ''; top: 8px; }

.hamburger-btn.is-active span { background: transparent; }
.hamburger-btn.is-active span::before { top: 0; transform: rotate(45deg); }
.hamburger-btn.is-active span::after { top: 0; transform: rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--color-bg-dark);
  z-index: 200;
  transition: right var(--transition);
  padding: 60px 24px 24px;
  overflow-y: auto;
}

.mobile-drawer.is-open { right: 0; }

.mobile-drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-drawer a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 14px 0;
  font-size: 0.95rem;
}

.mobile-drawer a:hover { color: var(--color-accent); text-decoration: none; }

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
}

.drawer-overlay.is-visible { display: block; }

@media (max-width: 768px) {
  .hamburger-btn { display: block; }
  .site-nav { display: none; }
}

/* --- Category Bar --- */
.category-bar {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-bar::-webkit-scrollbar { display: none; }

.category-bar-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.category-bar a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--color-text-sub);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.category-bar a:hover {
  color: var(--color-accent);
  background: rgba(139,92,246,0.05);
  text-decoration: none;
}

@media (max-width: 768px) {
  .category-bar-inner { justify-content: flex-start; }
}

/* --- Article Single (14-element template) --- */
.article-single {
  padding: 24px 0;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .article-title { font-size: 1.25rem; }
}

/* Title Sale Badge */
.title-sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  padding: 3px 10px;
  background: var(--color-cta);
  color: #fff;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}
.title-sale-rate { font-weight: 800; }
.title-sale-end { opacity: 0.8; font-size: 0.7rem; }

/* Element 2: Tags (Pill Style) */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.article-tags a {
  display: inline-block;
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  transition: background var(--transition);
}

.article-tags a:hover {
  background: #ddd6fe;
  text-decoration: none;
}

/* Video poster (click to play) */
.video-wrapper {
  position: relative;
}
.video-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}
.video-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.video-poster-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition);
}
.video-poster-overlay:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.8);
}

/* Element 3: Lead text (AI-generated) */
.article-lead {
  background: #fafafa;
  border-left: 3px solid var(--color-accent);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
}

/* Element 4: Sample video */
.article-video {
  margin-bottom: 20px;
}

.article-video iframe,
.article-video video {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--radius);
}

/* Element 5, 9: Affiliate CTA buttons */
.cta-button {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cta), #f97316);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius);
  margin: 20px 0;
  box-shadow: 0 4px 14px rgba(239,68,68,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239,68,68,0.45);
  text-decoration: none;
  color: #fff;
}

.cta-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 5s infinite;
}

@keyframes shimmer {
  0%, 80% { left: -100%; }
  100% { left: 200%; }
}

.cta-button small {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 4px;
  opacity: 0.9;
}

/* Element 6: Highlight commentary (AI-generated) */
.article-highlights {
  margin: 20px 0;
  padding: 16px 20px;
  background: var(--color-highlight-bg);
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.9;
}

.article-highlights h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e65100;
}

/* Element 7: Product title above details */
.article-product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 0;
  padding: 10px 12px;
  border-left: 4px solid var(--color-accent, #8b5cf6);
  line-height: 1.5;
}

/* Element 7: Details table */
.article-details {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 20px;
  font-size: 0.9rem;
}

.article-details th {
  background: #f5f5f5;
  text-align: left;
  padding: 8px 12px;
  width: 100px;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-sub);
}

.article-details td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border);
}

/* Element 8: Sample images grid */
.article-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.article-images img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.3s;
}

.article-images img:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .article-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .article-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/* Element 10: User reviews */
.article-review {
  border-left: 3px solid #ccc;
  padding: 12px 20px;
  margin: 20px 0;
  background: #fafafa;
  font-size: 0.9rem;
  color: var(--color-text-sub);
  font-style: italic;
}

/* Element 11: GIF image */
.article-gif {
  text-align: center;
  margin: 20px 0;
}

/* Element 12-13: Free section */
.article-free-section {
  margin: 24px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: var(--radius);
}

.article-free-section h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #111;
}

.article-free-section p {
  font-size: 0.9rem;
  color: var(--color-text-sub);
}

/* Element 14: Related posts */
.related-posts {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.related-posts h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: #111;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

.related-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card-sale {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-cta);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 0 0 0 var(--radius);
  z-index: 2;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.related-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform 0.4s ease; }
.related-card:hover img { transform: scale(1.05); }

.related-card-body {
  padding: 10px 12px;
}

.related-card-body h3 {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Star Rating --- */
.star-rating {
  display: inline-flex;
  gap: 1px;
  color: var(--color-rank-gold);
  font-size: 1rem;
  vertical-align: middle;
}

.star-rating .star-empty { color: #d1d5db; }

/* --- Archive Pages (Category / Tag) --- */
.archive-header {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.archive-header h1 {
  font-size: 1.5rem;
  color: #111;
}

.archive-header p {
  font-size: 0.9rem;
  color: var(--color-text-sub);
  margin-top: 4px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* --- Post Card with Hover Effects --- */
.post-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.post-card a { color: inherit; }
.post-card a:hover { text-decoration: none; }

.post-card-thumb {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb { transform: scale(1.05); }

.post-card-body { padding: 12px; }

.post-card-body h2 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.post-card-meta {
  font-size: 0.75rem;
  color: var(--color-text-sub);
}

/* --- Category Badge --- */
.post-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(139,92,246,0.85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 2;
}

/* --- Card Sale Badge --- */
.post-card-sale {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--color-cta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 0 0 0 var(--radius);
  z-index: 2;
}

/* --- Sidebar --- */
.sidebar-widget {
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 0.95rem;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  margin-bottom: 12px;
  color: #111;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
}

.sidebar-widget li a { color: var(--color-text); }
.sidebar-widget li a:hover { color: var(--color-link); }

.category-count { color: var(--color-text-sub); font-size: 0.75rem; }

/* Single page ranking */
.single-ranking {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}
.single-ranking h2 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: #111;
}

/* Popular ranking */
.ranking-item {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ranking-thumb-wrap {
  position: relative;
  flex-shrink: 0;
}
.ranking-item img {
  width: 80px;
  height: 55px;
  object-fit: cover;
  border-radius: 3px;
}
.ranking-sale {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--color-cta);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 0 3px 0 3px;
  line-height: 1.4;
}

.ranking-item-body h4 {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-num {
  font-size: 0.7rem;
  color: var(--color-text-sub);
  margin-top: 2px;
}

/* --- Ranking Badge --- */
.ranking-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ranking-badge--gold { background: var(--color-rank-gold); }
.ranking-badge--silver { background: var(--color-rank-silver); }
.ranking-badge--bronze { background: var(--color-rank-bronze); }
.ranking-badge--default { background: #d1d5db; color: var(--color-text-sub); }

/* --- Pagination --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 32px 0;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-size: 0.85rem;
  color: var(--color-text-sub);
}

.pagination .current {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.pagination a:hover {
  background: #f5f5f5;
  text-decoration: none;
}

/* --- Footer (Dark) --- */
.site-footer {
  background: var(--color-bg-dark);
  border-top: none;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* --- 404 Page --- */
.error-404-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.error-404-categories a {
  display: inline-block;
  background: var(--color-tag-bg);
  color: var(--color-tag-text);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  transition: background var(--transition);
}

.error-404-categories a:hover {
  background: #ddd6fe;
  text-decoration: none;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open { display: flex; }

.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* --- Scroll to Top --- */
.scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-dark);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background var(--transition), transform var(--transition);
}
.scroll-top-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-text-sub);
  padding: 8px 0;
}

.breadcrumb a { color: var(--color-text-sub); }
.breadcrumb span { margin: 0 4px; }

/* --- Actress row inside details table --- */
.detail-actress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-actress-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}
.detail-actress-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-actress-body {
  color: var(--color-text-sub);
  font-size: 0.75rem;
  letter-spacing: 0.3px;
}

/* --- Sale Badge (inline in price cell) --- */
.sale-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--color-cta);
  color: #fff;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}
.sale-badge-rate { font-weight: 800; }
.sale-badge-end { opacity: 0.85; }

/* Original price (strikethrough) */
.price-original {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
  margin-right: 4px;
}

/* Sale price */
.price-sale {
  color: var(--color-cta);
  font-weight: 700;
}

/* --- Sale Link (shared: top page & article page) --- */
.sale-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  font-size: 0.88rem;
  text-decoration: none;
  margin: 0 0 24px;
  transition: box-shadow var(--transition);
}
.sale-link:hover {
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  text-decoration: none;
}
.sale-link-badge {
  background: var(--color-cta);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  flex-shrink: 0;
}
.sale-link-text { flex: 1; }
.sale-link-arrow {
  color: var(--color-text-sub);
  flex-shrink: 0;
}
.sale-link:hover .sale-link-arrow { color: var(--color-cta); }

/* --- Sale Page Header --- */
.sale-page-header {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  border-bottom: none;
  padding: 24px;
}
.sale-page-header h1 { font-size: 1.2rem; }
