/* ==========================================
   EZÜST KALAND — Fő stíluslap
   Mobile-first, reszponzív dizájn
   ========================================== */

/* === CSS VÁLTOZÓK === */
:root {
  --primary: #1a3a6b;
  --primary-light: #254e8f;
  --accent: #f0a500;
  --accent-dark: #d4920a;
  --bg: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #6c757d;
  --border: #dee2e6;
  --border-radius: 10px;
  --border-radius-lg: 16px;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-base: "Inter", sans-serif;
  --font-heading: "Merriweather", serif;
}

/* === RESET & ALAP === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

/* === TIPOGRÁFIA === */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h1 {
  font-size: 1.8rem;
}
h2 {
  font-size: 1.45rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1.05rem;
}

p {
  margin-bottom: 1rem;
}

/* === KONTÉNER === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === GOMBOK === */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* === FEJLÉC / HEADER === */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 1rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-icon {
  font-size: 2rem;
}

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

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 400;
  font-family: var(--font-base);
  color: var(--text-light);
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8px);
}

.main-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.main-nav.open {
  display: block;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-links a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: var(--border-radius);
  color: var(--text);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--bg);
  color: var(--primary);
}

.nav-cta {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.nav-cta .btn {
  width: 100%;
  display: block;
  text-align: center;
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 58, 107, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
}

.slide-content {
  text-align: center;
  color: var(--white);
  max-width: 700px;
}

.slide-content h1 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.slide-content p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.slide-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slider-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
  left: 0.75rem;
}
.slider-arrow.next {
  right: 0.75rem;
}

/* === HIRDETÉS HELYFOGLALÓK === */
.ad-placeholder {
  background: #e9ecef;
  border: 2px dashed #adb5bd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 0.85rem;
  text-align: center;
  margin: 1.5rem auto;
}

.ad-leaderboard {
  width: 728px;
  max-width: 100%;
  height: 90px;
}
.ad-medium-rect {
  width: 300px;
  height: 250px;
}
.ad-skyscraper {
  width: 160px;
  height: 600px;
}
.ad-mobile {
  width: 320px;
  max-width: 100%;
  height: 50px;
  display: block !important;
}

/* Mobile: leaderboard/skyscraper → mobile banner */
@media (max-width: 767px) {
  .ad-leaderboard,
  .ad-skyscraper {
    display: none;
  }
  .ad-mobile-show {
    display: flex !important;
  }
}

/* === SZEKCIÓ ELRENDEZÉS === */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

/* === BLOG KÁRTYÁK === */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
}

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

.card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.6);
}

.card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.card-link:hover {
  gap: 0.6rem;
}

/* === HÍRLISTA === */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: var(--transition);
}

.news-item:hover {
  box-shadow: var(--shadow-hover);
}

.news-item-img {
  height: 160px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-img-placeholder {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.news-item-body {
  padding: 1rem;
  flex: 1;
}

.news-item-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.news-item-body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.news-item-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* === TERMÉKEK === */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-placeholder {
  font-size: 3rem;
}

.product-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.btn-buy {
  background: var(--accent);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-buy:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* === RÓLUNK SZEKCIÓ (főoldal) === */
.about-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.about-preview-text h2 {
  font-size: 1.45rem;
}

/* === FELIRATKOZÁS === */
.newsletter-section {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  padding: 0.9rem 1.25rem;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  font-family: var(--font-base);
}

.newsletter-form button {
  width: 100%;
}

/* === AD INLINE WRAP === */
.ads-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
}

/* === LÁBLÉC / FOOTER === */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--accent);
}

.footer-col p,
.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.35rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.footer-newsletter input {
  padding: 0.65rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-base);
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-newsletter button:hover {
  background: var(--accent-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0.3rem;
}

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

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 58, 107, 0.97);
  color: var(--white);
  padding: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-accept-all {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-base);
}

.btn-accept-all:hover {
  background: var(--accent-dark);
}

.btn-reject-all {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.6rem 1.5rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-base);
}

.btn-reject-all:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

/* === BELSŐ OLDALAK === */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0;
}

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.page-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content ul li {
  margin-bottom: 0.3rem;
}

/* === RÓLUNK OLDAL === */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 0;
}

.about-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 280px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.value-item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* === BLOG / HÍREK LISTA OLDAL === */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
}

/* === BLOG POSZT OLDAL === */
.post-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-img {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-img-placeholder {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.5);
}

.post-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.post-body ul li {
  margin-bottom: 0.35rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.back-link:hover {
  color: var(--accent);
}

/* === SHOP OLDAL === */
.shop-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* === KAPCSOLAT OLDAL === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
}

.contact-info h2 {
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-form-wrap h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-base);
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === PRIVACY / COOKIE OLDALAK === */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ==========================================
   TABLET — 768px+
   ========================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.7rem;
  }

  .header-inner {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: flex !important;
    border-top: none;
    padding: 0;
    align-items: center;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: row;
    gap: 0.25rem;
  }

  .nav-links a {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .nav-cta .btn {
    width: auto;
    display: inline-block;
  }

  .hero-slider {
    height: 420px;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-item {
    flex-direction: row;
  }

  .news-item-img {
    width: 200px;
    height: auto;
    flex-shrink: 0;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    flex: 1;
  }

  .newsletter-form button {
    width: auto;
  }

  .cookie-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .cookie-content p {
    margin-bottom: 0;
    flex: 1;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }

  .about-content {
    flex-direction: row;
  }

  .about-img {
    flex: 1;
    height: auto;
    min-height: 320px;
  }

  .about-text {
    flex: 1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .footer-newsletter {
    flex-direction: row;
  }

  .footer-newsletter input {
    flex: 1;
  }

  .footer-newsletter button {
    white-space: nowrap;
  }
}

/* ==========================================
   DESKTOP — 1200px+
   ========================================== */
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }

  .container {
    padding: 0 2rem;
  }

  .hero-slider {
    height: 520px;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
