/* ============================================
   SeksiPrice.com - Redesigned Stylesheet
   Sexy, dark, elegant, responsive
   ============================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: #0d0a0c;
  color: #d8cec4;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: #e8a0bf; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #f5c6d0; }

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: #f5f0eb; font-weight: 400; }
h1 { font-size: 2.4rem; line-height: 1.3; margin-bottom: 0.5em; }
h2 { font-size: 1.6rem; margin-bottom: 0.5em; }
h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
p { margin-bottom: 1em; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #f5f0eb;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 15px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b2252, transparent);
}

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

.content-wrapper { display: flex; gap: 40px; align-items: flex-start; }
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: rgba(13, 10, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 34, 82, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8a0bf;
}
.site-logo:hover { color: #f5c6d0; }
.logo-icon { display: flex; align-items: center; }
.logo-icon svg { width: 22px; height: 22px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.logo-text span { color: #f5f0eb; }

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  color: #c9b8a8;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.25s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
}
.nav-link:hover { color: #f5f0eb; background: rgba(139, 34, 82, 0.15); }

/* Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1014;
  border: 1px solid rgba(139, 34, 82, 0.25);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #c9b8a8;
  font-size: 0.88rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background: rgba(139, 34, 82, 0.2);
  color: #f5f0eb;
}
.di-icon { display: flex; align-items: center; color: #e8a0bf; flex-shrink: 0; }
.di-icon svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e8a0bf;
  margin: 5px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 10, 12, 0.98);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  color: #c9b8a8;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.mobile-link:hover { color: #e8a0bf; }
.ml-icon { display: flex; color: #e8a0bf; }
.ml-icon svg { width: 18px; height: 18px; }

.mobile-divider {
  width: 40px;
  height: 1px;
  background: rgba(139, 34, 82, 0.3);
  margin: 8px 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,12,0.6) 0%, rgba(13,10,12,0.85) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
}

.hero-content h1 {
  font-size: 2.8rem;
  color: #f5f0eb;
  margin-bottom: 18px;
}
.hero-content h1 em {
  color: #e8a0bf;
  font-style: italic;
}

.hero-content p {
  font-size: 1.05rem;
  color: #c9b8a8;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b2252, #a52a6a);
  color: #f5f0eb;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: linear-gradient(135deg, #a52a6a, #c43a7a);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(139, 34, 82, 0.35);
  color: #fff;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
  padding: 60px 0 40px;
}

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

.category-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1014;
  border: 1px solid rgba(139, 34, 82, 0.12);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}
.category-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.category-card:hover {
  border-color: rgba(139, 34, 82, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 34, 82, 0.12);
}
.category-card.visible:hover {
  transform: translateY(-4px);
}

.cat-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 16, 20, 0.9) 100%);
}

.cat-card-body {
  padding: 18px 16px;
  text-align: center;
}

.cat-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8a0bf;
  margin-bottom: 8px;
}
.cat-card-icon svg { width: 22px; height: 22px; }

.cat-card-body h3 {
  font-size: 1.05rem;
  color: #f5f0eb;
  margin-bottom: 6px;
}

.cat-card-body p {
  font-size: 0.82rem;
  color: #a89888;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cat-count {
  font-size: 0.75rem;
  color: #8b6878;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Small category cards (on category page) */
.categories-grid-sm {
  grid-template-columns: repeat(4, 1fr);
}
.category-card-sm .cat-card-img { height: 100px; }
.category-card-sm .cat-card-body { padding: 14px 12px; }
.category-card-sm .cat-card-body p { display: none; }
.category-card-sm .cat-count { display: none; }

/* ============================================
   STORIES SECTION & CARDS
   ============================================ */
.stories-section {
  padding: 50px 0 60px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 30px;
}

.story-card {
  background: linear-gradient(145deg, #151012 0%, #1a1216 100%);
  border: 1px solid rgba(139, 34, 82, 0.1);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
}
.story-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b2252, #e8a0bf, #8b2252);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-card:hover {
  border-color: rgba(139, 34, 82, 0.3);
  box-shadow: 0 6px 24px rgba(139, 34, 82, 0.1);
}
.story-card.visible:hover { transform: translateY(-3px); }
.story-card:hover::before { opacity: 1; }

.card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #e8a0bf;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.cat-icon { display: inline-flex; align-items: center; }
.cat-icon svg { width: 13px; height: 13px; }

.story-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #f5f0eb;
  line-height: 1.4;
}
.story-card h3 a { color: inherit; }
.story-card h3 a:hover { color: #e8a0bf; }

.story-card .excerpt {
  font-size: 0.85rem;
  color: #a89888;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.story-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #e8a0bf;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}
.story-card .read-more svg { transition: transform 0.25s ease; }
.story-card .read-more:hover { color: #f5c6d0; }
.story-card .read-more:hover svg { transform: translateX(3px); }

/* ============================================
   CATEGORY HERO
   ============================================ */
.category-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,12,0.4) 0%, rgba(13,10,12,0.92) 100%);
}

.category-hero-content {
  position: relative;
  text-align: center;
  padding: 60px 20px 40px;
  width: 100%;
}

.cat-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e8a0bf;
  margin-bottom: 12px;
}
.cat-hero-icon svg { width: 28px; height: 28px; }

.category-hero-content h1 {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 10px;
}

.category-hero-content p {
  font-size: 1rem;
  color: #c9b8a8;
  max-width: 500px;
  margin: 0 auto 12px;
}

.cat-hero-count {
  font-size: 0.78rem;
  color: #8b6878;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.other-categories {
  padding: 50px 0 60px;
  border-top: 1px solid rgba(139, 34, 82, 0.1);
}

/* ============================================
   STORY PAGE
   ============================================ */
.story-page { padding: 30px 0 60px; }

.story-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 34, 82, 0.12);
}

.story-category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(139, 34, 82, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #e8a0bf;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  transition: background 0.2s;
}
.story-category-link:hover { background: rgba(139, 34, 82, 0.25); color: #f5c6d0; }
.story-category-link svg { width: 14px; height: 14px; }

.story-header h1 {
  font-size: 2.2rem;
  font-style: italic;
  margin-bottom: 12px;
}

.story-intro {
  font-size: 1.05rem;
  color: #a89888;
  font-style: italic;
  line-height: 1.6;
}

.story-body {
  font-size: 1.05rem;
  line-height: 2;
  color: #d8cec4;
}

.story-body p { margin-bottom: 1.4em; text-indent: 2em; }
.story-body p:first-child { text-indent: 0; }

.story-body p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.2em;
  float: left;
  line-height: 0.8;
  margin-right: 10px;
  margin-top: 6px;
  color: #e8a0bf;
}

/* Story Nav */
.story-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid rgba(139, 34, 82, 0.12);
  gap: 16px;
}

.story-nav a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: rgba(139, 34, 82, 0.08);
  border: 1px solid rgba(139, 34, 82, 0.12);
  border-radius: 8px;
  color: #c9b8a8;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  max-width: 45%;
}
.story-nav a:hover {
  background: rgba(139, 34, 82, 0.18);
  border-color: rgba(139, 34, 82, 0.3);
  color: #f5f0eb;
}

.nav-prev { text-align: left; }
.nav-next { text-align: right; margin-left: auto; }

.nav-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8b6878;
}
.nav-label svg { width: 12px; height: 12px; }

.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  color: #e8a0bf;
}

/* Related Stories */
.related-stories {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(139, 34, 82, 0.12);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-block {
  background: linear-gradient(145deg, #141012 0%, #181216 100%);
  border: 1px solid rgba(139, 34, 82, 0.1);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 22px;
}

.sidebar-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #e8a0bf;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139, 34, 82, 0.12);
}

.sidebar-block ul { list-style: none; }
.sidebar-block li { margin-bottom: 4px; }

.sidebar-block li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  color: #c9b8a8;
  font-size: 0.88rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.sidebar-block li a:hover { color: #e8a0bf; background: rgba(139, 34, 82, 0.08); }
.sidebar-block li a.active { color: #e8a0bf; }

.sb-icon { display: flex; align-items: center; color: #e8a0bf; flex-shrink: 0; }
.sb-icon svg { width: 15px; height: 15px; }

.sidebar-block li a .count {
  margin-left: auto;
  font-size: 0.78rem;
  color: #6b5060;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: 12px 0;
  font-size: 0.82rem;
  color: #6b5060;
}
.breadcrumbs a { color: #8b6878; }
.breadcrumbs a:hover { color: #e8a0bf; }
.breadcrumbs .sep { margin: 0 8px; color: #4a3a42; }

.breadcrumbs-light a { color: #a89888; }
.breadcrumbs-light .sep { color: #6b5060; }
.breadcrumbs-light { color: #8b6878; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 35px 0 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pagination a {
  background: rgba(139, 34, 82, 0.08);
  border: 1px solid rgba(139, 34, 82, 0.15);
  color: #c9b8a8;
}
.pagination a:hover {
  background: rgba(139, 34, 82, 0.25);
  border-color: rgba(139, 34, 82, 0.35);
  color: #f5f0eb;
}
.pagination a.prev-next { padding: 0 16px; font-size: 0.82rem; }

.pagination .current {
  background: #8b2252;
  border: 1px solid #a52a6a;
  color: #f5f0eb;
  font-weight: 700;
}

.pagination .dots { color: #6b5060; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, #0a0809 0%, #0d0a0c 100%);
  border-top: 1px solid rgba(139, 34, 82, 0.1);
  padding: 45px 0 20px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-about { max-width: 300px; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #e8a0bf;
  margin-bottom: 12px;
}
.footer-logo svg { width: 18px; height: 18px; }

.footer-about p {
  color: #6b5060;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-col { flex: 1; min-width: 160px; }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #e8a0bf;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 5px; }

.footer-col a {
  color: #7a6a70;
  font-size: 0.84rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #e8a0bf; }

.footer-recommendations {
  padding: 18px 0;
  margin-top: 25px;
  border-top: 1px solid rgba(139, 34, 82, 0.08);
}
.footer-recommendations p {
  font-size: 0.78rem;
  color: #5a4a50;
  line-height: 1.8;
  text-align: center;
}
.footer-recommendations a {
  color: #6b5a60;
  transition: color 0.2s;
}
.footer-recommendations a:hover { color: #a89888; }

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(139, 34, 82, 0.06);
  color: #4a3a42;
  font-size: 0.78rem;
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  text-align: center;
  padding: 100px 20px;
}
.page-404 h1 { font-size: 4rem; color: #8b2252; }
.page-404 p { color: #a89888; margin-bottom: 20px; }
.page-404 a {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(139, 34, 82, 0.2);
  border: 1px solid rgba(139, 34, 82, 0.3);
  border-radius: 8px;
  color: #e8a0bf;
  font-weight: 600;
}
.page-404 a:hover {
  background: rgba(139, 34, 82, 0.35);
  color: #f5f0eb;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid-sm { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .content-wrapper { flex-direction: column; }
  .sidebar { width: 100%; }
  .stories-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2rem; }
  .story-header h1 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  
  .hero { min-height: 340px; }
  .hero-content { padding: 60px 20px 40px; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 0.95rem; }
  
  .categories-section { padding: 40px 0 30px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-card-img { height: 100px; }
  .cat-card-body { padding: 14px 12px; }
  .cat-card-body p { display: none; }
  
  .category-hero { min-height: 240px; }
  .category-hero-content h1 { font-size: 1.6rem; }
  
  .stories-section { padding: 35px 0 50px; }
  
  .story-body { font-size: 1rem; line-height: 1.85; }
  .story-body p:first-child::first-letter { font-size: 2.6em; }
  
  .story-nav { flex-direction: column; }
  .story-nav a { max-width: 100%; }
  
  .footer-inner { flex-direction: column; }
  .footer-about { max-width: 100%; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .categories-grid-sm { grid-template-columns: 1fr 1fr; }
  .cat-card-img { height: 80px; }
  .cat-card-body h3 { font-size: 0.92rem; }
  
  .story-card { padding: 20px; }
  .story-card h3 { font-size: 1.05rem; }
  
  .hero-content h1 { font-size: 1.5rem; }
  .hero-btn { padding: 12px 24px; font-size: 0.88rem; }
}
