/* =====================================================
   BriskWind Elektronika – WARM_FRIENDLY FLEXBOX CSS
   Author: Professional CSS/UI Designer
   ---- CSS only, display: flex ONLY, mobile-first, responsive ----
===================================================== */

/* -------------------
   CSS RESET & BASELINE
---------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure,
figcaption, footer, header, hgroup, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF7F3;
  color: #1A2233;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
:root {
  --color-primary: #e36d2c;
  --color-primary-dark: #c35617;
  --color-secondary: #f9b826;
  --color-accent: #F7FAFC;
  --color-text: #1A2233;
  --color-muted: #977a64;
  --color-danger: #D7263D;
  --color-success: #018752;
  --shadow1: 0 2px 8px rgba(227,109,44,0.09);
  --shadow2: 0 4px 21px rgba(230,175,145,0.13);
}

/* Custom font loading (Assume loaded via <link>) */
h1, h2, h3, .logo, .button, .cta-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}
p, li, input, button, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}

/* -------------
  LAYOUT UTILS
--------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLUID SPACING */
@media (max-width: 600px) {
  .section { padding: 32px 5vw; margin-bottom: 36px; }
  .container { padding: 0 8px; }
}

/* --------------
   TYPOGRAPHY
-------------- */
h1 {
  font-size: 2.25rem;
  line-height: 1.19;
  color: var(--color-primary);
  margin-bottom: 8px;
}
h2 {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.18rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
h1,h2,h3 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 8px;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
strong { font-weight: 600; }
a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color .14s;
}
a:hover, a:focus {
  color: var(--color-primary);
  text-decoration: underline;
}

/* -------------
   HEADER & NAV
-------------- */
header {
  background: #fff6ec;
  box-shadow: var(--shadow1);
  border-bottom: 1px solid #f5e1cf;
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 12px;
}
.logo img {
  height: 44px;
  display: block;
  border-radius: 8px;
  background: #ffe0c1;
  padding: 4px 12px;
  box-shadow: 0 2px 10px rgba(227,109,44,0.11);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 22px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #fff4e9;
  color: var(--color-primary);
}
.cta-header {
  margin-left: 16px;
}
/* Always hide .mobile-menu by default on desktop! */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .main-nav { gap: 9px; }
  .cta-header { margin-left: 7px; }
}
@media (max-width: 768px) {
  header .container { gap: 8px; }
  .main-nav { display: none; }
  .cta-header { display: none; }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    line-height: 1;
    background: none;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    outline: none;
    padding: 4px 10px;
    margin-left: auto;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #fff6ec;
    box-shadow: 0 10px 44px 0 rgba(227,109,44,0.14);
    z-index: 200;
    transform: translateX(-100vw);
    transition: transform .35s cubic-bezier(.82,-0.03,.35,.99);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    align-self: flex-end;
    margin: 18px 20px 8px 0;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--color-primary-dark);
    cursor: pointer;
    padding: 3px 15px;
    border-radius: 50%;
    transition: background .18s;
  }
  .mobile-menu-close:hover {
    background: #ffe9d9;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    margin: 40px 32px;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  .mobile-nav a {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    padding: 10px 6px 10px 4px;
    border-radius: 18px;
    transition: background 0.15s, color 0.14s;
    width: 100%;
  }
  .mobile-nav a:active,
  .mobile-nav a:hover {
    background: #ffe6ce;
    color: var(--color-primary);
  }
}

/* ------------------
   HERO / SECTION / CTA
------------------- */
.hero {
  background: #fff7ed;
  border-radius: 0 0 42px 42px;
  box-shadow: var(--shadow2);
  margin-bottom: 36px;
  padding: 36px 0 18px 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cta, .thank-you {
  background: #fff9f4;
  border-radius: 24px;
  box-shadow: 0 2px 14px rgba(249,184,38,0.1);
  margin-bottom: 42px;
  padding: 32px 22px;
}
.cta .button,
.thank-you .button { margin-top: 12px; }

@media (max-width: 500px) {
  .hero, .cta, .thank-you { border-radius: 0 0 18px 18px; }
}

/* --------------
   BUTTONS
-------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 28px;
  border: none;
  border-radius: 24px;
  min-width: 112px;
  box-shadow: 0 3px 12px rgba(227,109,44,0.07);
  cursor: pointer;
  transition: background .18s, box-shadow .12s, transform .13s;
  margin-top: 8px;
}
.button.primary {
  background: var(--color-secondary);
  color: var(--color-text);
  box-shadow: 0 5px 18px rgba(249,184,38,0.08);
}
.button:disabled,
button[disabled] {
  opacity: 0.55 !important;
  background: #e3e3e3 !important;
  color: #aaa !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}
.button:hover:not([disabled]), .button:focus:not([disabled]) {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(227,109,44,0.23);
}
.button.primary:hover, .button.primary:focus {
  background: #fcc965;
  color: #be6d17;
}

/* ----------------------
   CARD / GRID FLEX LAYOUTS
------------------------ */
.features-grid,
.category-grid,
.product-grid,
.guide-grid,
.promotion-grid,
.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 12px;
}
.features-grid .feature,
.category-grid .category-card,
.product-grid .product-card,
.guide-grid .guide-card,
.promotion-grid .promo-card,
.news-grid .news-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow1);
  padding: 24px 18px 18px 18px;
  flex: 1 1 245px;
  min-width: 220px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .15s;
  position: relative;
}
.features-grid .feature img,
.category-grid .category-card img {
  width: 55px;
  height: 55px;
  margin-bottom: 6px;
  border-radius: 22px;
  background: #ffe8d7;
  padding: 7px;
}
.features-grid .feature:hover,
.category-grid .category-card:hover,
.product-grid .product-card:hover,
.guide-grid .guide-card:hover,
.promotion-grid .promo-card:hover,
.news-grid .news-card:hover {
  box-shadow: 0 8px 36px rgba(227,109,44,0.13);
  transform: translateY(-4px) scale(1.016);
  z-index: 3;
}
@media (max-width: 900px) {
  .features-grid, .category-grid, .product-grid, .guide-grid, .promotion-grid, .news-grid {
    gap: 15px;
  }
  .features-grid .feature,
  .category-grid .category-card,
  .product-grid .product-card,
  .guide-grid .guide-card,
  .promotion-grid .promo-card,
  .news-grid .news-card {
    max-width: 100%;
    min-width: 170px;
  }
}
@media (max-width: 600px) {
  .features-grid, .category-grid, .product-grid, .guide-grid, .promotion-grid, .news-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid .feature,
  .category-grid .category-card,
  .product-grid .product-card,
  .guide-grid .guide-card,
  .promotion-grid .promo-card,
  .news-grid .news-card {
    max-width: 100%;
    margin-bottom: 12px;
  }
}

/* --------------
 USP / ICON LISTS
--------------- */
.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}
.usp-list li {
  align-items: center;
  font-size: 1rem;
  color: var(--color-primary-dark);
  background: #fff7ed;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(249,184,38,0.07);
  padding: 12px 18px 12px 10px;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.usp-list img {
  width: 32px;
  height: 32px;
  background: #ffeee0;
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

/* ---------------
   CATEGORY / PRODUCT LISTS
---------------- */
.category-list {
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--color-muted);
}
.promotion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0;
}
.promotion-list li strong { color: var(--color-primary-dark); }

/* --------------
   TESTIMONIALS
---------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  color: #1A2233;
  border-radius: 20px;
  box-shadow: 0 5px 22px rgba(249,184,38,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  min-width: 240px; max-width: 380px;
  flex: 1 1 240px;
  transition: box-shadow .14s, transform .13s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 38px rgba(227,109,44,0.13);
  transform: translateY(-4px) scale(1.012);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #472b18;
  font-style: italic;
}
.testimonial-meta {
  font-size: .95rem;
  color: var(--color-muted);
  margin-top: 3px;
}
@media (max-width: 900px) {
  .testimonial-slider { gap: 13px; }
}
@media (max-width: 500px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 8px;
  }
  .testimonial-card {
    min-width: 0; max-width: 100%;
  }
}

/* ---------------
   FORMS
---------------- */
input[type=text], input[type=email], textarea {
  appearance: none;
  border-radius: 18px;
  border: 1.5px solid #ffe1c5;
  background: #fff7ed;
  color: #45311f;
  font-size: 1rem;
  padding: 12px 14px;
  width: 100%;
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 3px rgba(227,109,44,0.05);
  transition: border-color .13s, box-shadow .16s;
}
input:focus, textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 2px #ffdec1;
}
/* Optional search bar styling (Shop page) */
.search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.search-bar input {
  max-width: 240px;
  min-width: 100px;
}
.search-bar button { min-width: 90px; }

/* FAQ ON CONTACT PAGE */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.faq-question {
  background: #fff7ed;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 1.5px 10px rgba(249,184,38,0.06);
}
.faq-question h3 {
  margin-bottom: 7px;
}
.faq-answer {
  color: var(--color-muted);
  font-size: .98rem;
}

/* ---------------
   FOOTER
---------------- */
footer {
  background: #fff4e4;
  color: #8a623b;
  margin-top: 36px;
  border-top: 1.5px solid #f3ddb9;
  font-size: .99rem;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 10px 0;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-menu a {
  color: var(--color-primary-dark);
  padding: 6px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color .15s;
}
.footer-menu a:hover { color: var(--color-primary); }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .96rem;
}
.contact-info img {
  width: 21px; height: 21px;
  background: #ffeedd;
  border-radius: 6px;
  padding: 2.5px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links a img {
  width: 33px; height: 33px;
  padding: 6px;
  background: #ffefd7;
  border-radius: 50%;
  border: 1.5px solid #ffbe7f;
  transition: box-shadow .16s, background .13s;
}
.social-links a:hover img {
  background: #ffd0a5;
  box-shadow: 0 5px 18px rgba(227,109,44,0.22);
}
.footer-bottom {
  text-align: center;
  color: #b9936c;
  font-size: .95rem;
  margin-top: 12px;
  padding-bottom: 14px;
}
@media (max-width: 880px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 0 5px 0;
  }
  .social-links { margin-bottom: 10px; }
}

/* -------------
   THANK YOU PAGE
---------------- */
.thank-you {
  text-align: center;
  align-items: center;
  justify-content: center;
}

/* -------------
   MISC CONTENT
---------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-section {
  margin-bottom: 44px;
}
.guide-list, .news-list, .promotion-list, .product-list {
  margin-bottom: 36px;
}

/* -------------
   COOKIE CONSENT BANNER
---------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: #fff7ed;
  color: #462b12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 -4px 48px 0 rgba(227,109,44,0.09);
  border-top: 1.5px solid #ffd0a8;
  width: 100%;
  padding: 22px 0 20px 0;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  animation: slideUpBanner .36s;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
}
.cookie-banner .button {
  min-width: 120px;
  font-size: .98rem;
  padding: 8px 20px;
  margin-top: 0;
}
.cookie-banner .button.settings {
  background: #fff0e0;
  color: #d27327;
  box-shadow: 0 2px 8px rgba(249,184,38,0.1);
}
.cookie-banner .button.reject {
  background: #ffe3e3;
  color: var(--color-danger);
}
.cookie-banner .button.settings:hover,
.cookie-banner .button.reject:hover {
  background: #ffe7ca;
  color: var(--color-primary-dark);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,20,11,0.24);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff9f4;
  border-radius: 24px;
  box-shadow: 0 2px 40px 0 rgba(227,109,44,0.19);
  max-width: 430px;
  width: 98vw;
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
  align-items: flex-start;
  animation: modalBounce .23s;
  position: relative;
}
@keyframes modalBounce {
  0% { transform: scale(.95) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
}
.cookie-category .cookie-switch {
  margin-left: auto;
}
.cookie-category .always-on {
  font-size: .97rem;
  color: var(--color-success);
  font-weight: 500;
}
.cookie-switch {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #ffe1c5;
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background .18s;
  cursor: pointer;
  margin-left: 3px;
}
.cookie-switch:checked {
  background: var(--color-primary);
}
.cookie-switch::after {
  content: '';
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px; left: 4px;
  transition: left .18s;
  box-shadow: 0 1px 3px rgba(230,175,126,0.09);
}
.cookie-switch:checked::after {
  left: 20px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 14px;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: var(--color-primary-dark);
  cursor: pointer;
}
.cookie-modal .button {
  min-width: 96px;
  font-size: .97rem;
  margin-top: 0;
}
.cookie-modal .button.save {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal .button.save:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

/* -------------
   RESPONSIVE FLEX LAYOUTS
---------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { margin-bottom: 20px; position: relative; }
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 850px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 600px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* -------------------
   ANIMATIONS
--------------------- */
.button, .card, .feature, .category-card, .testimonial-card, .cta, .promo-card, .news-card, .guide-card {
  transition: box-shadow .14s, transform .13s, background .14s, color .13s;
}

/* ---------------
   ACCESSIBILITY/MISC
----------------- */
*:focus {
  outline: 2px dashed var(--color-primary);
  outline-offset: 1.5px;
}
::-webkit-input-placeholder { color: #b18c71; opacity:1; }
::-moz-placeholder { color: #b18c71; opacity:1; }
:-ms-input-placeholder { color: #b18c71; opacity:1; }
::placeholder { color: #b18c71; opacity:1; }

/* Hide scroll for sliding menus */
body.mobile-menu-open, body.body-modal-open {
  overflow: hidden;
}

/* -----------
 END
------------ */