/*
Theme Name: Bunnyecom
Theme URI: https://bunnyecom.com
Description: A premium e-commerce WordPress theme for beauty and skincare brands
Version: 1.0.0
Author: Bunnyecom
Author URI: https://bunnyecom.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bunnyecom
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ── Minimal Premium: Pure Black & White ── */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-light: #FAFAFA;
  --bg-main: #FFFFFF;
  --bg-sidebar: #FFFFFF;
  --bg-sand: #FAFAFA;
  --bg-highlight: #F5F5F5;
  --text-main: #000000;
  --text-muted: #525252;
  --text-light: #737373;
  --border-light: #E5E5E5;
  --accent: #000000;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  line-height: 1.7;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 { font-size: 52px; line-height: 1.1; }
h2 { font-size: 36px; line-height: 1.15; }
h3 { font-size: 26px; line-height: 1.2; }
h4 { font-size: 20px; line-height: 1.3; }

/* Paragraphs & Links */
p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Code */
code, pre {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

code {
  background: var(--bg-sand);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--accent);
}

pre {
  background: var(--black);
  color: var(--gray-50);
  padding: 20px 24px;
  border-radius: 10px;
  font-size: 13px;
  overflow-x: auto;
  margin: 16px 0 24px;
  line-height: 1.65;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  margin-left: 20px;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 6px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 28px;
}

thead {
  background: var(--black);
}

th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-muted);
  vertical-align: top;
}

/* Content Width */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 56px;
}

/* Callouts */
.callout {
  background: var(--gray-light);
  border-left: 3px solid var(--black);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.callout strong {
  color: var(--black);
}

.callout-tip {
  border-left-color: var(--gray-700);
  background: var(--gray-50);
}

/* ─── SITE HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
}

.site-header .container {
  width: 100%;
  padding: 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header .logo-wrap {
  display: flex;
  align-items: center;
}

.site-header .logo-wrap .logo-name,
.site-header .logo-wrap a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header .site-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.site-header .site-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.site-header .site-nav a:hover {
  opacity: 0.5;
}

/* ─── SITE FOOTER ─────────────────────────────────────── */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 40px 24px;
  text-align: center;
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  gap: 24px;
}

.site-footer .footer-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer .footer-nav a:hover {
  opacity: 0.5;
}

.site-footer .site-info p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* ─── SITE CONTENT ────────────────────────────────────── */
.site-content {
  min-height: calc(100vh - 64px - 120px);
  background: var(--white);
}
