/* ======== CSS RESET + BASE ======== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #1a1d2b;
  color: #f4f4f6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #fac43d;
  text-decoration: none;
  transition: color .2s linear;
}
a:hover, a:focus {
  color: #eebbc3;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =========== COLOR VARIABLES (NO CSS custom properties for max compatibility) ========= */
:root {
  /* For reference only */
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #eebbc3;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  letter-spacing: .01em;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, li, span {
  font-size: 1rem;
}
p {
  color: #f4f4f6;
  margin-bottom: 12px;
}

/* ========== LAYOUT CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ========== HEADER ========== */
header {
  background: linear-gradient(90deg, #232946 0%, #1a1d2b 100%);
  box-shadow: 0 2px 18px 0 rgba(34,34,68,0.15);
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f4f4f6;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  transition: color .2s linear, background .18s linear;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #fac43d;
  background: #232946;
}
.cta.primary {
  background: #fac43d;
  color: #232946;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(250,196,61,0.10);
  margin-left: 20px;
  transition: background .18s, color .18s, box-shadow .2s;
  border: 2px solid transparent;
}
.cta.primary:hover, .cta.primary:focus {
  background: #eebbc3;
  color: #232946;
  box-shadow: 0 4px 24px 0 rgba(238,187,195,0.15);
  border-color: #eebbc3;
}
.cta.secondary {
  background: transparent;
  color: #fac43d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 24px;
  padding: 8px 22px;
  font-size: 1rem;
  box-shadow: 0 2px 6px 0 rgba(250,196,61,0.08);
  border: 2px solid #fac43d;
  transition: background .18s, color .18s, border-color .18s;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #fac43d;
  color: #232946;
  border-color: #fac43d;
}

/* ======== BURGER MENU, MOBILE NAV ========= */
.mobile-menu-toggle {
  background: #eebbc3;
  color: #232946;
  font-size: 2rem;
  border-radius: 50%;
  border: 2px solid #fac43d;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s, background .18s, color .16s;
  margin-left: 16px;
  z-index: 160;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fac43d;
  color: #eebbc3;
  box-shadow: 0 0 12px #fac43d;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: linear-gradient(135deg,#232946 70%,#333669 100%);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.6,0,0.4,1);
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  box-shadow: -4px 0 24px 0 rgba(34,34,68,0.20);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fac43d;
  color: #232946;
  font-size: 2rem;
  border-radius: 50%;
  border: 2px solid #eebbc3;
  width: 44px;
  height: 44px;
  margin-top: 24px;
  margin-bottom: 24px;
  align-self: flex-end;
  transition: background .20s, color .15s, box-shadow .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eebbc3;
  color: #232946;
  box-shadow: 0 0 10px #eebbc3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
}
.mobile-nav a {
  color: #f4f4f6;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  border-radius: 10px;
  text-align: right;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eebbc3;
  color: #232946;
}

@media (max-width: 1020px) {
  header .container {
    gap: 0;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    margin-left: 8px;
  }
}
@media (min-width:901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== SECTION + GENERAL SPACING ========= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 780px) {
  section {
    padding: 32px 0 32px 0;
  }
  .content-wrapper,
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
}

/* ========== FLEX COMPONENTS ========= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-block {
  background: #232946;
  box-shadow: 0 4px 18px 0 rgba(250,196,61, 0.08);
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 3px solid #fac43d;
  position: relative;
  transition: box-shadow .18s, transform .18s, border-color .16s;
}
.feature-block img {
  max-height: 48px;
  margin-bottom: 8px;
}
.feature-block:hover, .feature-block:focus-within {
  box-shadow: 0 8px 28px 0 rgba(238,187,195,.20);
  border-bottom: 3px solid #eebbc3;
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

.collections-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: space-between;
}
.collection-card {
  flex: 1 1 260px;
  background: #232946;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(234,188,200,.09);
  margin-bottom: 20px;
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .18s, transform .16s;
  min-width: 230px;
}
.collection-card:hover, .collection-card:focus-within {
  box-shadow: 0 8px 32px 0 #fac43d44;
  transform: translateY(-6px) scale(1.025);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.product-card {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 340px;
  background: #232946;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(250,196,61,0.11);
  padding: 24px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow .16s, transform .14s;
}
.product-card:hover, .product-card:focus-within {
  box-shadow: 0 8px 24px 0 #fac43d55;
  transform: translateY(-4px) scale(1.018);
}
.discount-badge {
  position: absolute;
  top: 20px; right: 16px;
  background: #fac43d;
  color: #232946;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 1rem;
  box-shadow: 0 2px 10px #fac43d44;
  z-index: 1;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-card {
  background: #232946;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(234,188,200,0.08);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .18s, transform .16s;
}
.blog-card:hover, .blog-card:focus-within {
  box-shadow: 0 8px 32px 0 #eebbc344;
  transform: translateY(-4px) scale(1.018);
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.usp-block {
  background: #232946;
  border-radius: 16px;
  padding: 26px 20px 18px 20px;
  flex: 1 1 200px;
  min-width: 160px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px 0 #fac43d13;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.usp-block img {
  height: 32px;
  margin-bottom: 10px;
}
.usp-block span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fac43d;
  font-weight: 600;
  font-size: 1.1rem;
}

.categories-filter,.filters,.sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.filter-btn, .sort-btn {
  background: #232946;
  color: #fac43d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 8px 22px;
  border: 2px solid #fac43d;
  transition: background .14s, color .14s, border-color .16s;
  margin-bottom: 6px;
  font-size: 1rem;
}
.filter-btn:hover, .filter-btn:focus,
.sort-btn:hover, .sort-btn:focus {
  background: #fac43d;
  color: #232946;
  border-color: #eebbc3;
}

/* ========== TESTIMONIALS ========= */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  max-width: 390px;
  background: #fafcff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 6px 36px rgba(35,41,70,0.11);
  color: #232946;
  font-size: 1.1rem;
  border-left: 5px solid #fac43d;
  position: relative;
  overflow: hidden;
  transition: box-shadow .15s, border-color .16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 36px #fac43d33;
  border-color: #eebbc3;
}
.testimonial-card p {
  color: #232946;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #232946;
  font-size: 0.95rem;
  letter-spacing: .02em;
}

/* ========== NEWSLETTER (blog page) ========= */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #232946;
  box-shadow: 0 4px 16px 0 #eebbc370;
  padding: 32px 24px;
  border-radius: 20px;
  margin-bottom: 32px;
  color: #f4f4f6;
}
.newsletter-signup img {
  width: 36px;
  height: 36px;
}
.newsletter-signup span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fac43d;
  font-size: 1.2rem;
}
.newsletter-description p {
  margin-bottom: 4px;
}

/* ========== ABOUT / TEAM BIO ========= */
.team-bio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #232946;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 #fac43d26;
  padding: 22px 18px 16px 18px;
  flex: 1 1 200px;
  min-width: 160px;
  margin-bottom: 20px;
}

/* ========== CONTACT PAGE ========= */
.contact-info-block, .info-section {
  background: #232946;
  border-radius: 16px;
  box-shadow: 0 2px 9px 0 #eebbc349;
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
}
.contact-info-block h2, .info-section h2 {
  margin-bottom: 10px;
  color: #fac43d;
}
.contact-info-block p, .info-section li {
  color: #fafcff;
  margin-bottom: 6px;
}
.location-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.location-map {
  flex: 1 1 180px;
  min-width: 100px;
  text-align: left;
}
.address-details {
  flex: 1 1 180px;
  min-width: 100px;
  color: #fafcff;
}

/* ========== FOOTER ========= */
footer {
  background: #232946;
  padding: 48px 0 16px 0;
  box-shadow: 0 -2px 14px 0 #23294618;
}
footer .container {
  flex-direction: column;
  gap: 26px;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #eebbc3;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .16s, color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #eebbc3;
  color: #232946;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #fafcff;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.footer-contact img {
  height: 18px;
  margin-right: 7px;
}
footer p {
  margin-top: 12px;
  color: #53608c;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ========== STATIC PAGES: TEXT BLOCKS & TIMELINE ========= */
.text-section {
  background: #232946;
  border-radius: 15px;
  padding: 26px 20px 20px 20px;
  box-shadow: 0 2px 8px 0 #fac43d11;
  margin-bottom: 20px;
  color: #fafcff;
}
.text-section h2 {
  color: #fac43d;
  margin-top: 18px;
}
.text-section ul {
  margin-left: 18px;
  margin-bottom: 12px;
}
.text-section li {
  list-style: disc;
  margin-bottom: 6px;
  color: #fafcff;
}
.timeline {
  background: #232946;
  border-radius: 12px;
  padding: 18px 18px;
  margin-top: 14px;
  box-shadow: 0 1px 5px 0 #eebbc318;
}
.timeline li {
  color: #fac43d;
  font-weight: 500;
  margin-bottom: 7px;
  padding-left: 8px;
  border-left: 3px solid #eebbc3;
}
.timeline li strong {
  font-weight: 900;
  color: #eebbc3;
}

/* ========== THANK YOU / CONFIRMATION ========= */
.confirmation {
  background: #232946;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 #eebbc355;
  padding: 48px 36px;
  text-align: center;
  align-items: center;
  margin-top: 32px;
  margin-bottom: 32px;
  color: #f4f4f6;
  max-width: 600px;
}
.thank-you-message {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* ========== UTILITY/MISCELLANEOUS ========= */
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232946;
  box-shadow: 0 4px 18px 0 #eebbc320;
  border-radius: 16px;
  padding: 24px 18px;
}
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** Responsive Flex Tweaks *****/
@media (max-width: 900px) {
  .feature-grid,
  .usp-list,
  .card-container,
  .blog-list,
  .collections-list,
  .team-bio-list,
  .product-list,
  .testimonials-slider,
  .footer-contact {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section, .location-block {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 780px) {
  .confirmation {
    padding: 30px 8px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.12rem;
    margin-bottom: 8px;
  }
  section {
    padding: 20px 2px;
    margin-bottom: 32px;
  }
  .feature-block,
  .blog-card,
  .collection-card,
  .product-card {
    padding: 18px 10px;
  }
  .newslettrer-signup {
    padding: 16px 6px;
  }
}

/* ========== MICRO-INTERACTIONS / SHADOWS / NEON ACCENT ========= */
.cta.primary, .cta.secondary, .filter-btn, .sort-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .2s, background .16s, color .13s, transform .12s;
}
.cta.primary:active, .cta.secondary:active, .filter-btn:active, .sort-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.96);
}/***** Futuristic Neon Glow on Focus *****/
.cta.primary:focus, .cta.secondary:focus, .filter-btn:focus, .sort-btn:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: none;
  box-shadow: 0 0 0 3px #7fffd4;
}
.feature-block:focus-within,
.collection-card:focus-within,
.product-card:focus-within {
  box-shadow: 0 0 0 2px #eebbc3, 0 8px 32px 0 #eebbc355;
}

/***** Neon Accent Underlines *****/
.main-nav a::after, .mobile-nav a::after {
  content: '';
  display: block;
  height: 2px;
  background: #fac43d;
  width: 0%;
  margin-top: 3px;
  border-radius: 2px;
  transition: width .22s cubic-bezier(.6,0,.3,1);
}
.main-nav a:hover::after,
.main-nav a:focus::after,
.mobile-nav a:hover::after,
.mobile-nav a:focus::after {
  width: 80%;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #232946;
  color: #fafcff;
  width: 100%;
  z-index: 3000;
  padding: 22px 14px 22px 20px;
  box-shadow: 0 -2px 22px 0 #23294670;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform .38s cubic-bezier(.7,0,.3,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner-text {
  flex: 2 2 60%;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #fac43d;
  color: #232946;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  margin: 0 4px 0 0;
  box-shadow: 0 2px 8px 0 #fac43d44;
  font-size: 1rem;
  transition: background .14s, color .12s, box-shadow .15s, border-color .12s;
}
.cookie-btn.secondary {
  background: #232946;
  color: #fac43d;
  border: 2px solid #fac43d;
  box-shadow: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #eebbc3;
  color: #232946;
  box-shadow: 0 4px 24px #eebbc333;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #fac43d;
  color: #232946;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 6px;
    font-size: .97rem;
  }
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 4000;
  background: rgba(34,41,70,0.63);
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fafcff;
  color: #232946;
  min-width: 320px;
  max-width: 95vw;
  border-radius: 20px;
  box-shadow: 0 8px 48px 0 #23294655, 0 0 0 4px #fac43d76;
  z-index: 4100;
  animation: cookiePop .25s cubic-bezier(.82,0,.38,1);
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookiePop {
  from { opacity: 0; transform: translate(-50%,-40%) scale(.93);}
  to { opacity: 1; transform: translate(-50%,-50%) scale(1);}
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  color: #232946;
  font-weight: bold;
  margin-bottom: 6px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #232946;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #fac43d;
}
.cookie-modal-category .always-on {
  color: #7a819e;
  font-style: italic;
  font-size: 0.93rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}
.cookie-modal-close {
  background: #fac43d;
  color: #232946;
  border-radius: 50%;
  font-size: 1.3rem;
  padding: 0.25em 0.38em;
  border: none;
  align-self: flex-end;
  position: absolute;
  top: 18px; right: 18px;
  transition: background .14s, color .12s, box-shadow .15s, border-color .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eebbc3;
  color: #232946;
}

/* ========== SCROLLBARS (Futuristic) ========== */
body::-webkit-scrollbar {
  width: 10px;
  background: #232946;
}
body::-webkit-scrollbar-thumb {
  background: #eebbc3;
  border-radius: 8px;
}

/**** CUSTOM SELECTION ****/
::selection {
  background: #fac43d;
  color: #232946;
}

/* ========== UTILITY CLASSES ========= */
.hide { display: none !important; }
.w-100 { width: 100%; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }

/********************
 FUTURISTIC ACCENTS
********************/
/* Neon glowing underline for headings */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 48px;
  border-radius: 2px;
  background: #fac43d;
  margin-top: 9px;
  filter: drop-shadow(0 0 6px #fac43d);
}

/********** END OF CSS **********/
