/* ========================================================================
   VELORA GADGETS — style.css
   Vibrant Energetic Style (Electric colors, bold high-energy UI)
   FLEXBOX ONLY — NO CSS GRID! Responsive, with mobile menu & cookie banner
   ======================================================================== */

/* === RESET & BASELINE === */
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #14213D;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #FCA311; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #14213D; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #14213D;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 700; }
p { margin-bottom: 16px; font-size: 1rem; }
blockquote {
  border-left: 4px solid #FCA311;
  color: #14213D;
  font-style: italic;
  margin: 0 0 16px 0;
  padding: 0 0 0 20px;
}

/* === CONTAINER AND LAYOUT === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px 0 rgba(20,33,61,.05), 0 1.5px 4px 0 rgba(252,163,17,0.08);
  margin-bottom: 28px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E5E5E5;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(252,163,17,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* === HEADER === */
header {
  width: 100%;
  background: #14213D;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(20,33,61,0.10);
  position: sticky;
  top: 0;
  z-index: 1200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  gap: 12px;
}
header img {
  height: 44px;
  min-width: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background .18s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FCA311;
  color: #14213D;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #FCA311;
  color: #14213D;
  font-size: 1.14rem;
  font-weight: 900;
  border: none;
  border-radius: 10px;
  padding: 10px 28px;
  margin-left: 18px;
  box-shadow: 0 2px 10px 0 rgba(252,163,17,.10);
  cursor: pointer;
  transition: background-color .22s, color .22s, box-shadow .20s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #14213D;
  color: #FCA311;
  box-shadow: 0 4px 20px 0 rgba(252,163,17,0.18);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  background: #FCA311;
  color: #14213D;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 2rem;
  font-family: inherit;
  display: none;
  cursor: pointer;
  box-shadow: 0 1.5px 10px 0 rgba(252,163,17,0.17);
  transition: background .2s, color .2s;
  margin-left: 16px;
  z-index: 1202;
}

.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #14213D;
  color: #FCA311;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #14213D;
  z-index: 1400;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 24px 24px 24px;
  box-shadow: -4px 0 48px 0 rgba(20,33,61,0.23);
}
.mobile-menu.open { transform: translateX(0%); }

.mobile-menu-close {
  background: #FCA311;
  color: #14213D;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  font-family: inherit;
  padding: 8px 20px 8px 14px;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 22px;
  box-shadow: 0 2px 8px 0 rgba(252,163,17,0.13);
  z-index: 1450;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #14213D; color: #FCA311; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 70px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 0 10px 0;
  width: 100%;
  border-bottom: 2px solid #FCA3112d;
  border-radius: 0;
  transition: color .17s, background .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FCA311;
  background: none;
}

/* === RESPONSIVE FLEX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 20px 0 rgba(20,33,61,0.09),0 1.5px 7px 0 rgba(252,163,17,0.11);
  padding: 25px 24px 20px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 30px 0 rgba(20,33,61,0.14),0 3px 15px 0 rgba(252,163,17,0.18);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(20,33,61,0.11);
  border-radius: 18px;
  margin-bottom: 24px;
  min-width: 200px;
  max-width: 570px;
  color: #14213D;
  border-left: 5px solid #FCA311;
  position: relative;
}
.testimonial-card p {
  font-size: 1.12rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #14213D;
}
.testimonial-card div {
  color: #FCA311;
  font-size: 1.25rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: bold;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 14px 18px 16px;
  min-width: 200px;
}

/* --- Highlighted Price Badges and Icons --- */
.price {
  background: #FCA311;
  color: #14213D;
  font-weight: bold;
  border-radius: 7px;
  padding: 3.5px 10px;
  margin-left: 12px;
  font-size: 1.01rem;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 6px 0 rgba(252,163,17,0.10);
}
li img {
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #14213D;
  color: #fff;
  padding: 54px 0 32px 0;
  box-shadow: 0 -2px 24px 0 rgba(24,24,65,.09);
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-brand img {
  width: 46px; height: 46px;
  margin-bottom: 10px;
}
.footer-contact {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 24px;
}
.footer-nav a {
  color: #FCA311;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  letter-spacing: .01em;
  padding: 3px 0;
  border-radius: 3px;
  transition: background .15s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FCA311;
  color: #14213D;
  padding-left: 7px;
}

/* === FORM ELEMENTS, BUTTONS, BLOCKS === */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid #E5E5E5;
  padding: 8px 12px;
  margin-bottom: 18px;
  transition: border .17s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FCA311;
}
button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 9px;
  border: none;
  background: #FCA311;
  color: #14213D;
  cursor: pointer;
  padding: 10px 26px;
  font-size: 1.04rem;
  transition: background .17s, color .16s, box-shadow .15s;
  outline: none;
}
button:hover, button:focus {
  background: #14213D;
  color: #FCA311;
  box-shadow: 0 3px 15px 0 rgba(252,163,17,0.12);
}

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 2000;
  background: #14213D;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 24px 0 rgba(20,33,61,0.14);
  padding: 28px 24px 18px 24px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 1;
  transition: opacity .44s cubic-bezier(.87,.29,.57,1.05);
}
.cookie-banner[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn {
  padding: 7px 18px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(252,163,17,0.10);
  font-weight: bold;
  transition: background .18s, color .18s;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: #FCA311;
  color: #14213D;
}
.cookie-btn.reject {
  background: #E5E5E5;
  color: #14213D;
}
.cookie-btn.settings {
  background: transparent;
  color: #FCA311;
  border: 1.5px solid #FCA311;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #14213D;
  color: #FCA311;
  border: 1.5px solid #FCA311;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,33,61,0.88);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .35s cubic-bezier(.42,0,.64,1);
}
.cookie-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #14213D;
  border-radius: 20px;
  box-shadow: 0 8px 30px 0 rgba(20,33,61,0.33);
  padding: 36px 30px 24px 30px;
  max-width: 410px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.05rem;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #FCA311;
  color: #14213D;
  border: none;
  border-radius: 7px;
  font-size: 1.25rem;
  padding: 2px 9px;
  cursor: pointer;
  transition: background .18s, color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #14213D; color: #FCA311; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: #E5E5E5;
  outline: none; border: none;
  position: relative;
  transition: background .15s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #FCA311;
}
.cookie-toggle:after {
  content: "";
  display: block;
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(20,33,61,0.13);
  transition: left .16s;
}
.cookie-toggle:checked:after { left: 20px; }
.cookie-category-label {
  font-size: 1rem;
  font-weight: bold;
  color: #14213D;
}
.cookie-category-desc {
  font-size: 0.92rem;
  color: #575757;
}

/* === RESPONSIVE (MOBILE FIRST) === */
@media (max-width: 1020px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav { gap: 12px; }
}
@media (max-width: 900px) {
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 768px) {
  .container { padding: 0 6px; }
  .content-wrapper, .section {
    padding: 22px 7px;
    border-radius: 12px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.24rem; }
  .testimonial-card { padding: 13px; max-width: 100vw; }
  .footer-brand img { margin-bottom: 5px; }
  .footer-contact, .footer-nav { margin-left: 0; margin-top: 4px; }
  .footer-nav { flex-direction: column; }
  .card-container, .content-grid { flex-direction: column; gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  /* Hide desktop nav, show mobile toggle */
  .main-nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block !important; }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .main-nav, .cta-btn { display: initial !important; }
}

/* === MICRO-INTERACTIONS, TRANSITIONS === */
.cta-btn, .cookie-btn, button, .card {
  transition: background .21s, color .15s, box-shadow .17s, transform .17s;
}
.card:hover, .cta-btn:hover, .cookie-btn:hover, button:hover,
.card:focus-within, .cta-btn:focus, .cookie-btn:focus, button:focus {
  filter: brightness(1.04) drop-shadow(0 2px 12px #FCA31122);
  outline: none;
}

/* === FOCUS INDICATION === */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus { outline: 2.5px solid #FCA311; outline-offset: 3px; }

/* === MISC UTILS === */
.hide { display: none !important; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* === SCROLLBAR STYLE === */
::-webkit-scrollbar { width: 10px; background: #E5E5E5; }
::-webkit-scrollbar-thumb { background: #FCA311; border-radius: 10px; }

/* === SECTIONS & CARD SPACING === */
section { margin-bottom: 60px; }
section:last-child { margin-bottom: 0; }
.card + .card { margin-left: 20px; }
.content-wrapper + .content-wrapper {
  margin-top: 24px;
}

/* === DARK TEXT ON LIGHT BG FOR TESTIMONIALS/REVIEWS === */
.testimonial-card { background: #fff; color: #14213D; }
.testimonial-card p, .testimonial-card span, .testimonial-card div { color: #14213D !important; }

/* === VIBRANT/ENERGETIC COLOR ACCENTS === */
strong, b, .feature-label { color: #FCA311; font-weight: bold; }
.emph { color: #14213D; background: #FCA311; border-radius: 4px; padding: 1px 7px; }

/* === SELECTED FORM ELEMENTS (dummy, matching contact sample) === */
.text-section ul li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  color: #14213D;
}

input[type=checkbox], input[type=radio] {
  accent-color: #FCA311;
}

/* === ANIMATIONS (card, modal, mobile-menu) === */
@keyframes modalIn {
  0% { transform: scale(.89) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content { animation: modalIn .46s cubic-bezier(.81,0,.22,1) 1; }
.mobile-menu.open { animation: modalIn .33s cubic-bezier(.63,0,.37,1) 1; }

/* === END === */