@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --primary: #7B3F00;
  --primary-dark: #5C2E00;
  --primary-light: #A0522D;
  --secondary: #D4A853;
  --secondary-dark: #B8892F;
  --secondary-light: #F0C878;
  --accent: #2C4A3E;
  --accent-light: #3D6B5C;
  --bg-cream: #FAF5EC;
  --bg-warm: #F5EDD8;
  --bg-paper: #FFF8F0;
  --text-dark: #1A0F00;
  --text-body: #3D2B1A;
  --text-muted: #7A6050;
  --text-light: #B09080;
  --border-warm: #E8D5B5;
  --border-book: #C9A87A;
  --shadow-warm: rgba(123, 63, 0, 0.15);
  --shadow-deep: rgba(123, 63, 0, 0.3);
  --gold-gradient: linear-gradient(135deg, #D4A853 0%, #F0C878 50%, #D4A853 100%);
  --primary-gradient: linear-gradient(135deg, #7B3F00 0%, #A0522D 100%);
  --paper-gradient: linear-gradient(180deg, #FAF5EC 0%, #F5EDD8 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-cream);
  color: var(--text-body);
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-warm);
  border-left: 1px solid var(--border-warm);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary-light) 100%);
  border-radius: 5px;
  border: 2px solid var(--bg-warm);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */

.site-header {
  background-color: #fff8f0;
  border-bottom: 2px solid var(--border-book);
  box-shadow: 0 2px 20px var(--shadow-warm);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px var(--shadow-deep);
}

.header-top-bar {
  background: var(--primary-gradient);
  color: #fff8f0;
  font-size: 0.8rem;
  padding: 6px 0;
  letter-spacing: 0.04em;
}

.header-top-bar a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-top-bar a:hover {
  color: #ffffff;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrapper img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  font-family: 'Georgia', serif;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--bg-warm);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--primary);
  background-color: var(--bg-warm);
}

.nav-link.active::after {
  transform: scaleX(1);
  background: var(--primary);
}

.nav-link i {
  font-size: 0.95rem;
  color: var(--secondary-dark);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border-book);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all 0.2s ease;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  background-color: var(--bg-warm);
  border-color: var(--primary);
}

/* Mobile menu panel */
.mobile-menu {
  background-color: #fff8f0;
  border-top: 1px solid var(--border-warm);
  padding: 12px 0 16px;
  box-shadow: 0 8px 20px var(--shadow-warm);
}

.mobile-menu .nav-link {
  display: flex;
  padding: 12px 20px;
  border-radius: 0;
  font-size: 0.95rem;
}

.mobile-menu .nav-link::after {
  display: none;
}

.mobile-menu .nav-link:hover {
  background-color: var(--bg-warm);
  padding-left: 28px;
}

@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero-section {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 83, 0.2);
  border: 1px solid rgba(212, 168, 83, 0.5);
  color: var(--secondary-light);
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  color: #fff8f0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
}

.hero-title span {
  color: var(--secondary-light);
}

.hero-subtitle {
  color: rgba(250, 245, 236, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-book-decoration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-stack {
  position: relative;
  width: 220px;
  height: 280px;
}

.book-card-deco {
  position: absolute;
  border-radius: 6px 10px 10px 6px;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.3);
}

/* =========================================================
   SECTION STYLES
   ========================================================= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.section-title {
  color: var(--text-dark);
  font-family: 'Georgia', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-title.light {
  color: #fff8f0;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
  margin: 16px 0 32px;
}

.section-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

.section-bg-warm {
  background-color: var(--bg-warm);
}

.section-bg-paper {
  background-color: var(--bg-paper);
}

.section-bg-dark {
  background: var(--primary-gradient);
}

/* =========================================================
   BOOK CARDS
   ========================================================= */

.book-card {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;
}

.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-warm), 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--border-book);
}

.book-card-cover {
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 3/4;
}

.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.book-card:hover .book-card-cover img {
  transform: scale(1.04);
}

.book-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-novo {
  background: var(--accent);
  color: #e8f5f0;
}

.badge-preporuka {
  background: var(--secondary);
  color: var(--text-dark);
}

.badge-akcija {
  background: #c0392b;
  color: #ffffff;
}

.book-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.book-genre {
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.book-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Georgia', serif;
  line-height: 1.35;
  margin-bottom: 4px;
}

.book-author {
  font-size: 0.82rem;
  color: var(--primary-light);
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.book-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  font-family: Arial, sans-serif;
  margin-top: auto;
}

.book-price-old {
  font-size: 0.82rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}

.book-rating i {
  color: var(--secondary);
  font-size: 0.78rem;
}

.book-rating span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: Arial, sans-serif;
  margin-left: 4px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff8f0;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--shadow-warm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow-deep);
  color: #fff8f0;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 83, 0.5);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff8f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-warm);
}

.btn-outline-light {
  background: transparent;
  color: #fff8f0;
  border-color: rgba(250, 245, 236, 0.6);
}

.btn-outline-light:hover {
  background: rgba(250, 245, 236, 0.15);
  border-color: #fff8f0;
  color: #fff8f0;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
}

.btn-ghost:hover {
  background: var(--bg-warm);
  color: var(--primary-dark);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 1.1rem;
}

/* =========================================================
   FORMS
   ========================================================= */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: #c0392b;
  margin-left: 3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1.5px solid var(--border-book);
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: Arial, sans-serif;
  color: var(--text-body);
  transition: all 0.25s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
  background: var(--bg-paper);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: var(--secondary-dark);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237B3F00' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  font-family: Arial, sans-serif;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-success {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: Arial, sans-serif;
  margin-top: 5px;
}

.form-card {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px var(--shadow-warm);
}

.form-card-header {
  border-bottom: 2px solid var(--border-warm);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.checkbox-wrapper,
.radio-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"],
.radio-wrapper input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-wrapper label,
.radio-wrapper label {
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  color: var(--text-body);
  cursor: pointer;
  line-height: 1.5;
}

/* =========================================================
   ACCORDION
   ========================================================= */

.accordion {
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.accordion-item {
  border-bottom: 1px solid var(--border-warm);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #ffffff;
  transition: background 0.2s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--bg-paper);
  color: var(--primary);
}

.accordion-header .accordion-icon {
  color: var(--secondary-dark);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-header.active {
  background: var(--bg-warm);
  color: var(--primary);
  border-bottom: 1px solid var(--border-warm);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-content {
  padding: 0 24px;
  background: var(--bg-paper);
  overflow: hidden;
}

.accordion-content-inner {
  padding: 20px 0;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.8;
  font-family: Arial, sans-serif;
}

/* =========================================================
   CARDS & GRIDS
   ========================================================= */

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-warm);
  border-color: var(--border-book);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-warm);
  border: 1.5px solid var(--border-warm);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff8f0;
  border-color: var(--primary);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Georgia', serif;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-family: Arial, sans-serif;
}

/* Event cards */
.event-card {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  gap: 0;
  transition: all 0.3s ease;
  cursor: default;
}

.event-card:hover {
  box-shadow: 0 8px 30px var(--shadow-warm);
  border-color: var(--border-book);
  transform: translateY(-3px);
}

.event-date-block {
  background: var(--primary-gradient);
  color: #fff8f0;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  text-align: center;
}

.event-date-day {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  line-height: 1;
}

.event-date-month {
  font-size: 0.72rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 3px;
}

.event-body {
  padding: 16px 20px;
  flex: 1;
}

.event-type {
  font-size: 0.7rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.event-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Georgia', serif;
  margin-bottom: 6px;
  line-height: 1.3;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.event-meta i {
  color: var(--secondary-dark);
  margin-right: 3px;
}

/* Testimonial cards */
.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-warm);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--secondary-light);
  line-height: 0.5;
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  font-family: 'Georgia', serif;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--border-book);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: Arial, sans-serif;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: Arial, sans-serif;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2C1800;
  border-top: 2px solid var(--secondary-dark);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#cookie-banner.visible {
  transform: translateY(0);
}

.cookie-icon {
  color: var(--secondary);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cookie-text-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff8f0;
  font-family: Arial, sans-serif;
  margin-bottom: 4px;
}

.cookie-text-body {
  font-size: 0.82rem;
  color: #d4bfaa;
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

.cookie-text-body a {
  color: var(--secondary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.cookie-text-body a:hover {
  color: #ffffff;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  background: var(--gold-gradient);
  color: var(--text-dark);
  border: none;
  padding: 10px 22px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.5);
}

.btn-cookie-decline {
  background: transparent;
  color: #a09080;
  border: 1.5px solid #5a4030;
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-cookie-decline:hover {
  color: #d4bfaa;
  border-color: #8a6050;
  background: rgba(255,255,255,0.05);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #1A0F00;
  color: #d4bfaa;
  border-top: 3px solid var(--secondary-dark);
}

.footer-logo-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff8f0;
  font-family: 'Georgia', serif;
}

.footer-tagline {
  font-size: 0.8rem;
  color: #a09080;
  letter-spacing: 0.06em;
  font-family: Arial, sans-serif;
}

.footer-heading {
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 168, 83, 0.25);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a09080;
  text-decoration: none;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.footer-link i {
  font-size: 0.85rem;
  color: var(--secondary-dark);
  width: 16px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--secondary-light);
  padding-left: 4px;
}

.footer-link:hover i {
  color: var(--secondary);
}

.footer-description {
  font-size: 0.88rem;
  color: #8a7868;
  line-height: 1.7;
  font-family: Arial, sans-serif;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a09080;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 168, 83, 0.15);
  padding: 16px 0;
  font-size: 0.78rem;
  font-family: Arial, sans-serif;
  color: #6a5848;
}

.footer-bottom a {
  color: #8a7868;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--secondary-light);
}

/* =========================================================
   PAGE HERO (INNER PAGES)
   ========================================================= */

.page-hero {
  background: var(--primary-gradient);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-title {
  color: #fff8f0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: 'Georgia', serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero-subtitle {
  color: rgba(250, 245, 236, 0.75);
  font-size: 1rem;
  font-family: Arial, sans-serif;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  color: rgba(250, 245, 236, 0.6);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb i {
  font-size: 0.65rem;
}

/* =========================================================
   GIFT VOUCHER / POKLON BON
   ========================================================= */

.voucher-card {
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px var(--shadow-deep);
}

.voucher-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212,168,83,0.25) 0%, transparent 70%);
}

.voucher-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(250,245,236,0.08) 0%, transparent 70%);
}

.voucher-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-light);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.voucher-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,236,0.65);
  font-family: Arial, sans-serif;
  margin-top: 4px;
}

/* =========================================================
   STATS / COUNTERS
   ========================================================= */

.stat-item {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats-section {
  background: #ffffff;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}

.stats-divider {
  width: 1px;
  background: var(--border-warm);
  align-self: stretch;
  margin: 20px 0;
}

/* =========================================================
   NEWSLETTER SECTION
   ========================================================= */

.newsletter-section {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(250,245,236,0.07) 0%, transparent 70%);
}

.newsletter-title {
  color: #e8f5f0;
  font-family: 'Georgia', serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.newsletter-subtitle {
  color: rgba(232, 245, 240, 0.7);
  font-size: 0.92rem;
  font-family: Arial, sans-serif;
  margin-top: 6px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(232, 245, 240, 0.12);
  border: 1.5px solid rgba(232, 245, 240, 0.3);
  border-radius: 8px;
  color: #e8f5f0;
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  outline: none;
  transition: all 0.25s ease;
}

.newsletter-input::placeholder {
  color: rgba(232, 245, 240, 0.5);
}

.newsletter-input:focus {
  border-color: var(--secondary);
  background: rgba(232, 245, 240, 0.18);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.25);
}

/* =========================================================
   CATEGORY PILLS / TAGS
   ========================================================= */

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: var(--bg-warm);
  border: 1px solid var(--border-book);
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: Arial, sans-serif;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.category-pill:hover,
.category-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff8f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--shadow-warm);
}

/* =========================================================
   NOTICE / ALERT BOXES
   ========================================================= */

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.alert i {
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-info {
  background: #EBF4FA;
  border: 1px solid #90CAE6;
  color: #1A4A6A;
}

.alert-success {
  background: #EBF7F2;
  border: 1px solid #82C9A8;
  color: #1A4A35;
}

.alert-warning {
  background: #FEF9EC;
  border: 1px solid var(--secondary);
  color: #5C3F00;
}

.alert-error {
  background: #FBF0F0;
  border: 1px solid #E8A0A0;
  color: #6A1A1A;
}

/* =========================================================
   LOADING SPINNER
   ========================================================= */

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border-warm);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: opacity 0.4s ease;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease both;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease both;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.shimmer-text {
  background: linear-gradient(90deg, var(--secondary-dark) 0%, var(--secondary-light) 40%, var(--secondary-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */

.text-primary { color: var(--primary); }
.text-secondary-brand { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted-warm { color: var(--text-muted); }

.bg-primary { background-color: var(--primary); }
.bg-secondary-brand { background-color: var(--secondary); }
.bg-cream { background-color: var(--bg-cream); }
.bg-warm { background-color: var(--bg-warm); }

.border-warm { border-color: var(--border-warm); }
.border-book { border-color: var(--border-book); }

.shadow-warm { box-shadow: 0 4px 20px var(--shadow-warm); }
.shadow-warm-lg { box-shadow: 0 12px 40px var(--shadow-warm); }

.rounded-book { border-radius: 12px; }

.prose-warm {
  color: var(--text-body);
  font-family: 'Georgia', serif;
  line-height: 1.8;
  font-size: 1rem;
}

.prose-warm h2 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.prose-warm h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 20px 0 8px;
}

.prose-warm p {
  margin-bottom: 16px;
}

.prose-warm ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.prose-warm ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.prose-warm ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.prose-warm a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.prose-warm a:hover {
  color: var(--primary);
}

/* =========================================================
   CONTACT PAGE SPECIFIC
   ========================================================= */

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-warm);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  border: 1.5px solid var(--border-book);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.contact-info-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-value a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

/* =========================================================
   MAP PLACEHOLDER
   ========================================================= */

.map-placeholder {
  background: var(--bg-warm);
  border: 1.5px dashed var(--border-book);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  min-height: 280px;
}

.map-placeholder i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

/* =========================================================
   SEARCH BAR
   ========================================================= */

.search-bar {
  display: flex;
  background: #ffffff;
  border: 2px solid var(--border-book);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px var(--shadow-warm);
}

.search-bar:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px var(--shadow-warm);
}

.search-bar input {
  flex: 1;
  padding: 13px 20px;
  border: none;
  outline: none;
  font-size: 0.92rem;
  font-family: Arial, sans-serif;
  color: var(--text-body);
  background: transparent;
}

.search-bar input::placeholder {
  color: var(--text-light);
}

.search-bar button {
  padding: 10px 20px;
  background: var(--primary-gradient);
  border: none;
  cursor: pointer;
  color: #fff8f0;
  font-size: 1.1rem;
  transition: opacity 0.2s ease;
  border-radius: 0 48px 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.search-bar button:hover {
  opacity: 0.88;
}

/* =========================================================
   PAGINATION
   ========================================================= */

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: var(--text-body);
  border: 1.5px solid var(--border-warm);
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;