/* ------ CSS RESET & BASE ------ */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #ABD6FF 0%, #FFFFFF 100%);
  color: #1E2E38;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1E2E38;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #005fa3;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #1E2E38;
  margin-bottom: 0.65em;
}
h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
}
p, ul, ol, blockquote, li {
  font-size: 1rem;
  color: #1E2E38;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* ------ CONTAINER & LAYOUT ------ */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 rgba(30,46,56,0.05);
}

/* ------ HEADER & NAVIGATION ------ */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(30,46,56,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1E2E38;
  padding: 8px 0;
  transition: color 0.2s;
}
nav a:hover, nav a.active {
  color: #FCD12A;
}
.btn-primary {
  background: linear-gradient(90deg, #1E2E38 60%, #ABD6FF 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-size: 1.125rem;
  margin-left: 16px;
  box-shadow: 0 3px 16px rgba(30,46,56,0.12);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FCD12A 0%, #ABD6FF 100%);
  color: #1E2E38;
  box-shadow: 0 6px 24px rgba(171, 214, 255, 0.20);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* Hamburger (mobile) menu */
.mobile-menu-toggle {
  display: none;
  background: #ABD6FF;
  color: #1E2E38;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1101;
  margin-left: 16px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FCD12A;
  color: #1E2E38;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 0 72px rgba(30,46,56,0.14);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.92,.01,.41,1.01);
  z-index: 1100;
  padding: 32px 24px 24px 24px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #1E2E38;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FCD12A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  color: #1E2E38;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #ABD6FF;
}

@media (max-width:991px) {
  nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width:992px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  nav {
    display: flex !important;
  }
}

/* ------ TYPOGRAPHY SCALE ------ */
.subtitle {
  color: #5E6D7C;
  font-size: 1.125rem;
  margin-bottom: 20px;
  margin-top: 0;
}

/* ------ GRADIENT BANNERS ------ */
.cta-banner {
  background: linear-gradient(120deg, #ABD6FF 20%, #FCD12A 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(250, 192, 46, 0.10);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto;
  margin-bottom: 24px;
}
.cta-banner h2 {
  color: #1E2E38;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 800;
}
.cta-banner p {
  color: #1E2E38;
  font-size: 1rem;
}

/* ------ FLEX CONTENT STRUCTURES (MANDATORY PATTERNS) ------ */
/* Feature grid - used for icons, product features, etc. */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  justify-content: flex-start;
}
.feature-grid li, .feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(171, 214, 255, 0.10);
  padding: 24px 20px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover, .feature-grid > div:hover {
  box-shadow: 0 6px 32px rgba(30, 46, 56, 0.15), 0 0 0 2px #ABD6FF inset;
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 6px;
}
.feature-grid h3 {
  font-size: 1.12rem;
  color: #1E2E38;
  margin-bottom: 0;
}
.feature-grid p {
  color: #374151;
  font-size: 0.98rem;
}

.badge {
  display: inline-block;
  background: #FCD12A;
  color: #1E2E38;
  padding: 3px 15px;
  border-radius: 13px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-left: 8px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #F7FAFC;
  padding: 24px 20px;
  border-radius: 13px;
}
.text-section ul {
  padding-left: 20px;
  margin-bottom: 0;
  list-style: disc inside;
}
.text-section li {
  margin-bottom: 10px;
}
.text-section img {
  vertical-align: middle;
  height: 20px;
  margin-right: 6px;
}
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 14px 0 0 0;
}
.category-nav a {
  background: #F7FAFC;
  color: #1E2E38;
  padding: 8px 18px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(171, 214, 255, 0.12);
  transition: background 0.18s, color 0.18s;
}
.category-nav a:hover, .category-nav a:focus {
  background: #ABD6FF;
  color: #1E2E38;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,46,56,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 19px;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(171,214,255,0.22);
  transform: translateY(-5px) scale(1.01);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #F7FAFC;
  color: #212939;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(171, 214, 255, 0.12);
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-card blockquote {
  color: #1E2E38;
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.5;
}
.testimonial-card p {
  font-size: 1rem;
  color: #42465E;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.bestsellers-list ul,
.room-ideas-list,
.guide-list,
.style-tips ul,
.trend-highlights ul,
.faq-summary ul,
.quality-standards ul {
  list-style: disc inside;
  margin-bottom: 0;
  padding-left: 20px;
  margin-top: 10px;
  color: #212939;
}
.bestsellers-list ul li,
.room-ideas-list li,
.guide-list li {
  margin-bottom: 10px;
}
.special-offer-banner {
  background: #ABD6FF;
  color: #1E2E38;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.1rem;
  margin-top: 22px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}

/* ------ FOOTER ------ */
footer {
  background: #1E2E38;
  color: #fff;
  padding: 40px 0 20px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 40px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-menu a {
  color: #ABD6FF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FCD12A;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  text-align: center;
}
.contact-info img {
  height: 20px;
  width: 20px;
  margin-right: 7px;
  vertical-align: middle;
}
.contact-info p{
  color: white;
}
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 12px 0;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7FAFC;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: box-shadow .18s, background .18s;
}
.social-links a:hover,
.social-links a:focus {
  background: #ABD6FF;
  box-shadow: 0 2px 10px 0 #ABD6FF66;
}
.social-links img {
  height: 22px;
  width: 22px;
}
.copyright {
  color: #eee;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ------ COOKIE CONSENT BANNER ------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#1E2E38 80%, #ABD6FF 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 26px 24px 18px 24px;
  z-index: 1200;
  box-shadow: 0 -6px 28px 0 rgba(30,46,56,0.10);
  animation: slideup-cookie 0.6s cubic-bezier(.69,-0.34,.26,1.23);
  font-size: 1rem;
}
@keyframes slideup-cookie {
  0% {transform: translateY(100%);opacity: 0;}
  100% {transform: translateY(0);opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 26px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 10px 0 rgba(30,46,56,0.04);
}
#cookie-accept {
  background: #FCD12A;
  color: #1E2E38;
}
#cookie-accept:hover, #cookie-accept:focus {
  background: #ABD6FF;
  color: #1E2E38;
}
#cookie-reject {
  background: #F7FAFC;
  color: #1E2E38;
}
#cookie-reject:hover, #cookie-reject:focus {
  background: #ABD6FF;
  color: #fff;
}
#cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #ABD6FF;
  font-weight: 600;
  text-decoration: underline;
  padding: 9px 19px;
}
#cookie-settings:hover, #cookie-settings:focus {
  background: #ABD6FF;
  color: #1E2E38;
  text-decoration: none;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1300;
  background: rgba(30, 46, 56, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-cookie 0.35s;
}
@keyframes fadein-cookie {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  color: #1E2E38;
  border-radius: 18px;
  padding: 38px 28px 30px 28px;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 6px 40px 0 rgba(171, 214, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popup-cookie .42s cubic-bezier(.72,-0.41,.32,1.26);
  margin: 24px;
}
@keyframes popup-cookie {
  0% { transform: scale(0.8) translateY(-87px); opacity: 0;}
  100% { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content h2 {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1E2E38;
  margin-bottom: 12px;
}
.cookie-modal-content label {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #ABD6FF;
  width: 17px;
  height: 17px;
}
.cookie-modal-content .modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-content button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 18px;
  border: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
#cookie-save {
  background: #FCD12A;
  color: #1E2E38;
}
#cookie-save:hover, #cookie-save:focus {
  background: #ABD6FF;
  color: #fff;
}
#cookie-cancel {
  background: #F7FAFC;
  color: #1E2E38;
}
#cookie-cancel:hover, #cookie-cancel:focus {
  background: #ABD6FF;
  color: #fff;
}
/* ------ RESPONSIVE DESIGN - MOBILE FIRST ------ */
@media (max-width: 991px) {
  .container {
    padding: 0 12px;
    max-width: 100vw;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .feature-grid {
    gap: 16px;
  }
  .feature-grid li, .feature-grid > div {
    min-width: 90vw;
    max-width: 99vw;
    width: 100%;
    align-items: flex-start;
    padding: 18px 8px;
  }
  .cta-banner {
    padding: 23px 10px;
    border-radius: 16px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .testimonial-card {
    padding: 15px 7px;
    border-radius: 11px;
    margin-bottom: 13px;
  }
  .footer-menu {
    gap: 12px;
    flex-wrap: wrap;
  }
  .room-ideas-list, .guide-list {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .container {
    padding: 0 5px;
  }
}

/* ------ UTILITY & MICRO-INTERACTION CLASSES ------ */
.fade-in {
  animation: fadeIn .45s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------ HELPER CLASSES ------ */
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ------ VISIBILITY CLASSES ------ */
@media (min-width: 769px) {
  .only-mobile { display: none !important; }
}
@media (max-width: 991px) {
  .only-desktop { display: none !important; }
}

/* ------ SPECIAL COMPONENTS ------ */
.quality-standards ul, .faq-summary ul, .style-tips ul, .trend-highlights ul {
  font-size: 1rem;
  color: #272F3D;
}
.room-ideas-list li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 1.05rem;
  color: #1E2E38;
}
.support-contact {
  margin-top: 12px;
  font-size: 1.05rem;
}
.support-contact a {
  color: #ABD6FF;
  font-weight: 600;
}
.support-contact a:hover {
  text-decoration: underline;
}

/* ------ INPUT FIELDS - For forms if present (future-proof) ------ */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #ABD6FF;
  border-radius: 9px;
  padding: 10px 15px;
  outline: none;
  margin-bottom: 13px;
  transition: border-color 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FCD12A;
  box-shadow: 0 0 0 2px #ABD6FF33;
}
button:focus, a:focus {
  outline: 2px solid #ABD6FF;
  outline-offset: 2px;
}

/* ------ VISUAL Hierarchy ------ */
h1, .cta-banner h2, .section h1 {
  font-size: 2rem;
  letter-spacing: -0.015em;
}
h2, .section h2 {
  font-size: 1.45rem;
}
h3 {
  font-size: 1.15rem;
}
@media (min-width: 1200px) {
  h1, .cta-banner h2 { font-size: 2.7rem; }
  h2, .section h2 { font-size: 2rem; }
  h3 { font-size: 1.18rem; }
}

/* ------ Gradient_modern Consistency ------ */
::-webkit-scrollbar {
  width: 8px;
  background: #F7FAFC;
}
::-webkit-scrollbar-thumb {
  background: #ABD6FF;
  border-radius: 10px;
  transition: background 0.22s;
}
::-webkit-scrollbar-thumb:hover {
  background: #1E2E38;
}

/* ------ ENSURE CONSISTENT MARGIN BETWEEN ELEMENTS ------ */
section, .section {
  margin-bottom: 60px;
}
.card, .feature-grid li, .feature-grid > div, .testimonial-card, .cta-banner, .text-section {
  margin-bottom: 24px;
}

/* ------ SHOWCASE: NO OVERLAP, RESPONSIVE SPACING ------ */
.card + .card,
.testimonial-card + .testimonial-card,
.feature-grid > * + * {
  margin-left: 0;
}

/* ENDS MAIN CSS */
