/* THEME 3: SHOP.CO STYLE */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Oswald:wght@700&display=swap');

:root {
  --bg-main: #FFFFFF;
  --bg-card: #F0F0F0; /* Светло-серый фон карточек одежды */
  --bg-header: #FFFFFF;
  --accent: #000000;
  --text-main: #000000;
  --text-gray: #666666;
  --border-color: #E0E0E0;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif; /* Супер-жирный, высокий шрифт */
  --shadow-sm: none; /* Убираем тени для плоского фэшн-дизайна */
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: var(--font-main); background-color: var(--bg-main); color: var(--text-gray); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }

a { text-decoration: none; color: inherit; transition: opacity 0.2s ease; }
a:hover { opacity: 0.6; }

h1, h2, h3, h4 { color: var(--text-main); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; width: 100%; }

.site-header { background: var(--bg-header); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
.header-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px; max-width: 1440px; margin: 0 auto; }
.logo { font-size: 2.5rem; font-weight: 900; font-family: var(--font-heading); color: var(--text-main); letter-spacing: -1px; }

.header-nav { display: none; } /* Спрячем нижнюю панель навигации, перенесем её визуально в топ */
.header-top::after {
  content: 'MEN \00a0\00a0 WOMEN \00a0\00a0 KIDS \00a0\00a0 SALE';
  font-family: var(--font-main); font-weight: 500; color: var(--text-main); font-size: 1rem; position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links { display: none; } /* Используем трюк выше для имитации фэшн меню */

.bottom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 50px 0; }

.post-thumb-card { 
  position: relative; background: var(--bg-card); 
  border: none; border-radius: 20px; /* Скругление как у карточек товара на скрине */
  display: flex; flex-direction: column; justify-content: space-between; 
  padding: 30px; transition: transform 0.3s ease; 
  min-height: 350px; 
}
.post-thumb-card:hover { transform: scale(1.02); }

.cat-badge { background: #000; color: #fff; padding: 8px 20px; font-size: 0.75rem; font-weight: 600; border-radius: 30px; display: inline-block; margin-bottom: 20px; width: fit-content; text-transform: uppercase; letter-spacing: 1px; }

.post-thumb-title { color: var(--text-main); font-size: 1.4rem; line-height: 1.2; font-family: var(--font-heading); }

.post-container { max-width: 1000px; margin: 60px auto; background: var(--bg-main); padding: 0 20px; border: none; box-shadow: none; }
.post-h1 { font-size: 4.5rem; line-height: 1; margin-bottom: 20px; word-wrap: break-word; }
.post-meta-info { display: flex; align-items: center; gap: 15px; border-bottom: 1px solid var(--border-color); border-top: none; padding-bottom: 20px; margin-bottom: 40px; font-size: 1rem; color: #000; font-weight: 500; }
.post-meta-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; filter: grayscale(100%); }
.post-content { font-size: 1.1rem; line-height: 1.6; }
.post-content h2 { font-size: 2.5rem; margin: 60px 0 20px; border-bottom: none; padding-bottom: 0; }
.post-content p { margin-bottom: 20px; }
.post-content a { color: var(--text-main); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }

.pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0 80px; }
.page-link { width: 40px; height: 40px; display: flex; justify-content: center; align-items: center; border: none; background: transparent; color: var(--text-gray); font-weight: 500; border-radius: 50%; }
.page-link:hover { background: var(--bg-card); color: var(--text-main); }
.page-link.active { background: var(--text-main); color: #fff; }

.site-footer { background: var(--bg-card); border-top: none; padding: 80px 0 30px; margin-top: auto; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.footer-title { margin-bottom: 25px; font-weight: 700; font-family: var(--font-heading); font-size: 1.3rem; letter-spacing: 1px; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--border-color); font-size: 0.9rem; color: var(--text-gray); }