/*
Theme Name: OOPBuy European Aesthetic SEO Theme
Theme URI: https://cnfansfindspreadsheet.com/
Author: SEO Expert
Description: Sophisticated European-styled light theme for OOPBuy with vector icons, warm luxury palette, and zero broken image dependencies.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: oopbuy-european-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-gradient: linear-gradient(180deg, #fbf9f5 0%, #f4efe6 100%);
  --card-bg: #ffffff;
  --text-main: #1c1917;
  --text-muted: #78716c;
  --accent-primary: #9a3412; /* European Terracotta / Rust */
  --accent-secondary: #065f46; /* Deep Emerald */
  --accent-gradient: linear-gradient(135deg, #9a3412 0%, #c2410c 100%);
  --button-buy-gradient: linear-gradient(135deg, #065f46 0%, #047857 100%);
  --border-light: rgba(214, 211, 209, 0.6);
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 4px rgba(28, 25, 23, 0.03);
  --shadow-md: 0 12px 24px -4px rgba(28, 25, 23, 0.06);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header & Navigation */
header.site-header {
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; height: 84px; }

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #f5f5f4;
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.nav-menu { display: flex; list-style: none; gap: 16px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  color: var(--text-main);
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.nav-item > a:hover {
  color: var(--accent-primary);
  background: rgba(154, 52, 18, 0.06);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  min-width: 230px;
  border-radius: var(--radius-xl);
  padding: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.dropdown-menu li a:hover {
  color: var(--accent-primary);
  background: #f5f5f4;
  transform: translateX(4px);
}

/* Hero Section - European Minimalist */
.hero-section {
  padding: 70px 0 40px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: #f5f5f4;
  color: var(--accent-primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  border: 1px solid var(--border-light);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.6;
}

.cta-buttons { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  gap: 18px; 
  flex-wrap: wrap; 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(154, 52, 18, 0.25);
}

.btn-buy {
  background: var(--button-buy-gradient);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(6, 95, 70, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* Foreword / European Boutique Section */
.foreword-section {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin: 36px 0 50px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.foreword-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.foreword-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.foreword-highlights {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(154, 52, 18, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.foreword-visual {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  height: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f5f5f4;
  text-align: center;
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.foreword-visual svg {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  color: #f59e0b;
}

.foreword-visual span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.foreword-visual p {
  font-size: 12.5px;
  color: #a8a29e;
  margin-top: 6px;
}

/* Category Grid - European Style Accent Tiles */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--text-main);
}

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

.cat-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cat-card-banner {
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cat-card-banner svg {
  width: 42px;
  height: 42px;
  transition: var(--transition-smooth);
}

.cat-card-content {
  padding: 16px 10px;
  text-align: center;
}

.cat-card-content h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.2px;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 52, 18, 0.4);
  box-shadow: var(--shadow-md);
}

.cat-card:hover .cat-card-banner svg {
  transform: scale(1.1);
}

.cat-card:hover .cat-card-content h3 {
  color: var(--accent-primary);
}

/* Category Soft European Palette */
.bg-shoes { background: #fef3c7; color: #b45309; }
.bg-hoodies { background: #fee2e2; color: #b91c1c; }
.bg-tshirts { background: #dcfce7; color: #15803d; }
.bg-jackets { background: #ffedd5; color: #c2410c; }
.bg-pants { background: #f3e8ff; color: #6b21a8; }
.bg-headwear { background: #ccfbf1; color: #0f766e; }
.bg-belt { background: #ffe4e6; color: #be123c; }
.bg-jersey { background: #fef9c3; color: #a16207; }
.bg-accessories { background: #f5f5f4; color: #44403c; }
.bg-other { background: #cffaff; color: #0e7490; }

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.article-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.35;
}

.article-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(154, 52, 18, 0.3);
}

/* Single Page Content Area */
.content-area {
  background: var(--card-bg);
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin: 36px 0 60px;
}

.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--text-main);
  font-weight: 700;
}

.entry-content {
  color: #44403c;
  font-size: 16px;
  line-height: 1.8;
}

.internal-link-box {
  background: #fdf8f6;
  border-left: 4px solid var(--accent-primary);
  padding: 20px 24px;
  margin: 32px 0 10px;
  border-radius: 4px var(--radius-xl) var(--radius-xl) 4px;
}

.link-primary { color: var(--accent-primary); font-weight: 700; }
.link-accent { color: var(--accent-secondary); font-weight: 700; }

footer.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  background: #fdfbf7;
}

@media (max-width: 900px) {
  .foreword-section { grid-template-columns: 1fr; padding: 28px; }
  .foreword-visual { height: 210px; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; }
  .header-inner { flex-direction: column; height: auto; padding: 18px 0; gap: 14px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .article-grid { grid-template-columns: 1fr; }
  .content-area { padding: 24px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
}