/* --- CSS RESET & NORMALIZE --- */
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;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F6FA;
  color: #243854;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: #297FF6;
  text-decoration: none;
  transition: color .2s;
  outline: none;
}
a:focus, a:hover {
  color: #ff7e5e;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* --- BRAND COLORS (PLAYFUL DYNAMIC VARIATIONS) ---*/
:root {
  --primary: #243854;
  --secondary: #6FC7F7;
  --accent: #FFD05C;
  --accent-light: #F5F6FA;
  --surface: #fff;
  --border: #e6eef9;
  --danger: #ff7e5e;
  --success: #57de88;
  --info: #60A6F9;
  --highlight-orange: #FFD05C;
  --highlight-pink: #FFBECB;
  --highlight-blue: #80E1FF;
}

/* --- TYPOGRAPHY (DYNAMIC & FUN) ---*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.16;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.38rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}
p {
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: var(--secondary);
}

/* Fun dynamic font for playful accents */
.text-fun {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--highlight-orange);
}
.text-center {
  text-align: center;
}
blockquote {
  background: var(--highlight-pink);
  color: var(--primary);
  border-left: 8px solid var(--highlight-orange);
  padding: 18px 26px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 32px 0;
  font-size: 1.08rem;
}
blockquote cite {
  display: block;
  font-size: 0.98rem;
  color: var(--secondary);
  margin-top: 10px;
}

/* --- LAYOUT CONTAINERS ---*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(90deg, var(--highlight-blue) 0%, var(--accent) 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(50,90,200,0.12);
  padding: 44px 20px;
  margin-bottom: 40px;
  position: relative;
  animation: heroBounce 1.2s cubic-bezier(.61,1.1,.6,.97);
}
@keyframes heroBounce {
  0% { transform: scale(0.98) translateY(60px); opacity: 0.42; }
  70% { transform: scale(1.02) translateY(-14px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- FLEX UTILITY CLASSES ---*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--surface);
  border-radius: 22px;
  box-shadow: 0 3px 12px rgba(69, 179, 255, 0.09);
  margin-bottom: 20px;
  padding: 24px 20px;
  flex: 1 1 290px;
  min-width: 260px;
  transition: transform 0.21s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-5px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(36, 56, 84, 0.24);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff9f3;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(255,190,203,0.14);
  font-size: 1.08rem;
  color: #243854;
  margin: 0 12px 20px 0;
  min-width: 220px;
  max-width: 370px;
  transition: box-shadow 0.21s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px 0px rgba(127,196,242,0.17);
  transform: translateY(-4px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Feature grid used in index, shop, etc */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: var(--accent-light);
  border-radius: 18px;
  padding: 24px 20px 18px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(127,196,242,0.13);
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(255,208,92,0.17);
  transform: translateY(-4px) scale(1.02);
}
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.product-categories > div {
  flex: 1 1 200px;
  background: #eaf8fd;
  border-radius: 20px;
  padding: 24px 18px 16px 18px;
  box-shadow: 0 2px 8px rgba(50, 180, 255, 0.06);
  text-align: center;
  transition: box-shadow 0.19s, transform 0.17s;
}
.product-categories > div:hover {
  box-shadow: 0 8px 24px 0 rgba(255,190,203,0.13);
  transform: scale(1.03) rotate(1deg);
}
.featured-products {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.featured-products > div {
  flex: 1 1 200px;
  background: #fffefe;
  border-radius: 18px;
  padding: 18px 16px 12px 16px;
  box-shadow: 0 2px 8px rgba(255,208,92,0.06);
  text-align: center;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.article-list,
ul.article-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 38px;
}
.quick-tips ul,
.design-trends ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 16px 0;
}
.faq-list dl{
  margin: 0;
}
.faq-list dt{
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin-top: 14px;
  margin-bottom: 2px;
}
.faq-list dd{
  margin-left: 18px;
  margin-bottom: 6px;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 0 0;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
}

/* --- BUTTONS & CTAs (PLAYFUL DYNAMIC) ---*/
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, var(--info) 0, var(--highlight-orange) 70%, var(--highlight-pink) 100%);
  color: #243854;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  border: none;
  border-radius: 30px;
  box-shadow: 0 3px 14px 0 rgba(255,208,92,0.18);
  padding: 14px 36px;
  margin: 24px 0;
  cursor: pointer;
  outline: none;
  transition: transform 0.18s, background 0.25s, box-shadow 0.2s;
  text-shadow: 1px 2px 8px rgba(255,255,255,0.07);
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, var(--highlight-orange) 0, var(--highlight-blue) 90%);
  transform: scale(1.03) rotate(-2deg);
  box-shadow: 0 6px 28px 0 rgba(127,196,242,0.21);
}
button, .button {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 19px;
  border: none;
  padding: 11px 24px;
  font-weight: 700;
  font-size: 1rem;
  margin: 6px 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 3px 18px 0 rgba(36, 56, 84,0.15);
  transform: scale(1.055);
}
/* Link Styling for dynamic hover */
.main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-right: 22px;
  background: none;
  position: relative;
  display: inline-block;
  padding: 8px 2px;
  border-radius: 9px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.main-nav a:last-child, .footer-nav a:last-child, .mobile-nav a:last-child {
  margin-right: 0;
}
.main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  background: var(--highlight-orange);
  color: #243854;
  box-shadow: 0 3px 20px 0px rgba(255,208,92,0.12);
  text-decoration: none;
}

/* --- HEADER & NAVIGATION (FLEXBOX ONLY) ---*/
header {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 24px 18px 14px 18px;
  z-index: 100;
  box-shadow: 0 3px 16px 0 rgba(127,196,242,0.14);
}
header img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 20px;
}
header .cta-btn {
  margin-left: auto;
}
.mobile-menu-toggle {
  display: none;
  background: var(--highlight-orange);
  color: var(--primary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.2rem;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 12px rgba(255,208,92,0.12);
  margin-left: 18px;
  transition: box-shadow .18s, background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--highlight-pink);
  color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(255,190,203,0.15);
}

/* --- MOBILE MENU (Overlay Navigation) ---*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1500;
  background: rgba(255,255,255, 0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.8,1.5,.7,1);
  box-shadow: 0 12px 32px 0 rgba(36, 56, 84, 0.15);
  padding: 32px 40px 24px 26px;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--danger);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-right: 2px;
  box-shadow: 0 3px 16px 0 rgba(255,95,95,0.12);
  transition: background .16s, color .16s, box-shadow .2s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--highlight-orange);
  color: var(--primary);
  box-shadow: 0 10px 28px 0 rgba(255,208,92,0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  padding: 14px 0 14px 6px;
  border-radius: 11px;
  color: var(--primary);
  width: 100%;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--highlight-blue);
  color: var(--primary);
}

/* --- SEARCH BAR ---*/
.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(127,196,242,0.10);
  padding: 8px 12px;
  margin: 18px 0 4px 0;
  max-width: 540px;
}
.search-bar label {
  margin-right: 5px;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.search-bar input[type="search"] {
  flex: 1 1 160px;
  border: none;
  outline: none;
  padding: 8px 10px 9px 10px;
  font-size: 1rem;
  border-radius: 8px;
  background: #f3fcff;
  color: var(--primary);
  transition: background .18s, box-shadow .18s;
}
.search-bar input[type="search"]:focus {
  box-shadow: 0 1px 10px 0 #cdeefc33;
  background: #eaf8fd;
}
.search-bar button {
  background: var(--highlight-orange);
  border-radius: 50%;
  padding: 0;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 7px 0 rgba(255,208,92,0.09);
  transition: background .17s, box-shadow .14s;
}
.search-bar button:hover {
  background: var(--highlight-blue);
}
.search-bar img {
  width: 24px;
  height: 24px;
}

/* --- TABLES & PRICING TABLE ---*/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fffefe;
  box-shadow: 0 2px 10px 0 rgba(255, 208,92, 0.08);
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 1.05rem;
}
.pricing-table th {
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:nth-child(even) td {
  background: #f8faff;
}
.pricing-table tr:nth-child(odd) td {
  background: #fff;
}

/* --- CONTACT DETAILS ---*/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 34px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f9f9fb;
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
}
.map {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #E9F3FF;
  padding: 20px 25px;
  border-radius: 18px;
  margin-top: 8px;
  box-shadow: 0 3px 16px rgba(96,166,249,0.09);
}
/* --- LIST BULLETS AND STYLES ---*/
ul,ol {
  margin-left: 32px;
  margin-bottom: 16px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 8px;
  font-size: 1rem;
  padding-left: 24px;
}
ul li:before, ol li:before {
  content: '\2022';
  color: var(--highlight-orange);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.3em;
}
.feature-bullets li:before {
  color: var(--highlight-blue);
}


/* --- SLIDERS/TESTIMONIAL SLIDER ---*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 18px 0;
  justify-content: flex-start;
}

/* --- FOOTER STYLES ---*/
footer {
  background: var(--primary);
  color: #fff;
  border-radius: 45px 45px 0 0;
  margin-top: 70px;
  margin-bottom: 0;
  padding: 0 8px 0 8px;
  box-shadow: 0 -4px 24px 0 rgba(36,56,84, 0.15);
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  padding: 40px 0 10px 0;
  width: 100%;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
}
.footer-main img {
  max-height: 52px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 16px 0 0;
}
.footer-nav a {
  color: #fff;
  font-size: 1.07rem;
  background: none;
  padding: 5px 2px;
  border-radius: 8px;
  transition: background .17s, color .17s;
}
.footer-nav a:hover {
  background: var(--highlight-orange);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 26px;
  margin-right: 7px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 14px auto 0 auto;
  justify-content: center;
  width: 100%;
}
.footer-social a img {
  width: 34px;
  height: 34px;
  transition: transform .15s, filter .12s;
  border-radius: 50%;
  filter: grayscale(15%);
  background: var(--highlight-blue);
  box-shadow: 0 1px 8px 0 rgba(100,196,255,0.09);
}
.footer-social a:hover img {
  transform: scale(1.15) rotate(-4deg);
  filter: grayscale(0%);
  background: var(--highlight-orange);
}
.footer-bottom {
  text-align: center;
  padding: 14px 0 20px 0;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: none;
  width: 100%;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) ---*/
@media (max-width: 1020px) {
  .container {
    max-width: 92vw;
  }
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 30px 0 6px 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 0;
    margin-left: 8px;
    font-size: 0.97rem;
    flex: none;
  }
  .footer-main {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  .content-wrapper, .section{
      padding: 18px 6px;
  }
  .hero-section {
      padding: 20px 8px;
      margin-bottom: 24px;
  }
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    padding: 12px 18px;
    font-size: 1.02rem;
    margin: 14px 0 6px 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header {
    padding: 16px 9px 8px 9px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .feature-grid, .product-categories, .featured-products, .testimonial-slider, .card-container, .content-grid, .contact-details {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.06rem;
    margin-bottom: 10px;
  }
  .footer-social {
    gap: 10px;
  }
  .hero-section {
    border-radius: 18px;
    padding: 13px 4px;
  }
  .mobile-menu {
    padding: 18px 10px 16px 10px;
  }
}

/* --- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2999;
  background: var(--highlight-blue);
  color: var(--primary);
  box-shadow: 0 -5px 36px 0 rgba(127,196,242,0.21);
  padding: 26px 12vw 18px 12vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1.08rem;
  border-radius: 36px 36px 0 0;
  animation: cookieAppear 0.78s cubic-bezier(.76,1.64,.51,.93);
}
@keyframes cookieAppear {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons{
  display: flex;
  gap: 19px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .button {
  font-size: 1.01rem;
  padding: 11px 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: background .15s, color .17s;
}
.cookie-banner .button-accept {
  background: var(--success);
  color: var(--primary);
}
.cookie-banner .button-accept:hover{
  background: var(--highlight-orange);
  color: var(--primary);
}
.cookie-banner .button-reject {
  background: #fff !important;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-banner .button-reject:hover{
  background: var(--danger);
  color: #fff;
}
.cookie-banner .button-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .button-settings:hover{
  background: var(--highlight-blue);
  color: var(--primary);
}
@media (max-width:900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 8vw 18px 8vw;
    gap: 14px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-banner-buttons{
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width:600px) {
  .cookie-banner {
    border-radius: 12px 12px 0 0;
    padding: 18px 12px 13px 12px;
    font-size: 0.89rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 3002;
  top: 0; left:0; bottom: 0; right: 0;
  background: rgba(51,103,160,0.30);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalAppear 0.44s cubic-bezier(.62,1.43,.88,.97);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; transform: scale(0.92) translateY(44px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 26px;
  padding: 34px 28px 26px 28px;
  min-width: 270px;
  max-width: 96vw;
  box-shadow: 0 6px 48px 0 rgba(96,166,249, 0.18);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: cookieContentAppear 0.6s cubic-bezier(.82,1.2,.60,.99);
}
@keyframes cookieContentAppear {
  0% { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-content h2 {
  color: var(--danger);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-modal-close {
  background: var(--danger);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-right: -4px;
  margin-top: -12px;
  margin-bottom: 9px;
  transition: background .15s;
}
.cookie-modal-close:hover {
  background: var(--highlight-orange);
  color: var(--primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-category label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-right: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--success);
  width: 20px;
  height: 20px;
  border: 2px solid var(--secondary);
  border-radius: 6px;
  vertical-align: middle;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: var(--highlight-orange);
  opacity: .75;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal-actions button {
  font-size: 1.02rem;
  padding: 10px 20px;
  border-radius: 13px;
  font-weight: 700;
}

/* --- SCROLLBAR PLAYFUL ---*/
body {
  scrollbar-color: var(--highlight-orange) #eaf8fd;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px; background: #eaf8fd;
}
::-webkit-scrollbar-thumb {
  background: var(--highlight-orange);
  border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

/* --- OVERRIDES/SPECIAL CASES FOR PLAYFUL FEEL ---*/
.design-trends h3, .quick-tips h3, .faq-list h3 {
  color: var(--secondary);
  font-size:1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
}
.confirmation-message {
  color: var(--highlight-orange);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.next-steps a { color: var(--secondary); text-decoration: underline; }
.next-steps a:hover { color: var(--danger); }

/* --- UTILITY & A11Y ---*/
.sr-only {
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* --- PREVENT ABSOLUTE POSITION CONTENT (Only for animation/decor) ---*/
/* Decorative element demo (to animate confetti, speech bubble, etc.) */
.hero-section::after {
  content: '';
  display: block;
  position: absolute;
  top: -32px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: radial-gradient(ellipse at center, var(--highlight-orange) 60%, transparent 100%);
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

/* --- DEMO: MICRO-INTERACTIONS (cards pop, shadow, etc) ---*/
.card, .feature-grid > div, .product-categories > div, .testimonial-card {
  transition: transform 0.19s, box-shadow 0.19s;
}
.card:focus, .feature-grid > div:focus, .product-categories > div:focus, .testimonial-card:focus {
  outline: 2px solid var(--highlight-blue);
  outline-offset: 3px;
}

/* No overlap enforcement */
.card, .card-content, .content-wrapper, .testimonial-card, .section, .feature-grid > div {
  margin-bottom: 20px;
}

/* --- END --- */
