/* ------------------------------------------------------
   RESET & BASE
---------------------------------------------------------*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  background: #fafbfc;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3E50;
  font-size: 16px;
  background: #fafbfc;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: .01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #E67E22;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2C3E50;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222b38;
  font-weight: bold;
  letter-spacing: -1px;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 7px; }
p {
  margin-bottom: 18px;
}
button, .btn-primary, .btn-secondary, .btn-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  padding: 12px 26px;
  transition: background 0.18s cubic-bezier(.4,1.7,0.7,1.12), color 0.18s;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
  box-shadow: 0 2px 10px rgba(44,62,80,0.04);
}
/* ------------------------------------------------------
   CUSTOM PROPERTIES (with fallbacks)
---------------------------------------------------------*/
:root {
  --color-primary: #2C3E50;
  --color-secondary: #E67E22;
  --color-accent: #FFFFFF;
  --color-bg: #fafbfc;
  --color-error: #D91E18;
  --color-info: #12CBC4;
  --color-success: #27AE60;
  --color-shadow: rgba(44,62,80,0.1);
  --radius: 18px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ------------------------------------------------------
   LAYOUT: CONTAINER, FLEXBOX, SPACING
---------------------------------------------------------*/
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(44,62,80,0.11);
  padding: 28px 22px 26px 22px;
  margin-bottom: 20px;
  position: relative;
}
.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: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(44,62,80,0.14);
  margin-bottom: 20px;
  margin-top: 20px;
  min-width: 260px;
  max-width: 500px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------*/
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 16px 0 rgba(44,62,80,0.07);
  z-index: 22;
  position: relative;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  max-height: 45px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 3px 2px;
}
.main-nav a::after {
  content: "";
  display: block;
  height: 2.5px;
  width: 0;
  background: #E67E22;
  border-radius: 2px;
  transition: width 0.2s;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.btn-primary {
  background: #E67E22;
  color: #fff;
  border-radius: 24px;
  border: none;
  box-shadow: 0 3px 10px rgba(230,126,34,0.1);
}
.btn-primary:hover, .btn-primary:focus {
  background: #2C3E50;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #E67E22;
  border: 2px solid #E67E22;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E67E22;
  color: #fff;
}
.btn-link {
  background: transparent;
  color: #2C3E50;
  padding: 0 6px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.btn-link:hover, .btn-link:focus {
  background: #E67E22;
  color: #fff;
}

/* Burger menu button */
.mobile-menu-toggle {
  background: #E67E22;
  color: #fff;
  font-size: 2rem;
  display: none;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 17px;
  right: 18px;
  z-index: 98;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(44,62,80,0.10);
}
.mobile-menu-toggle:active {
  background: #222b38;
}

/* Mobile menu styles */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 305px;
  height: 100vh;
  background: #2C3E50;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.61,1.22,0.33,1), box-shadow 0.2s;
  box-shadow: 0 0 30px 2px rgba(44,62,80,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 40px 10px rgba(44,62,80,0.21);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 18px 16px 10px 0;
  cursor: pointer;
  padding: 6px;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E67E22;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px 32px 32px 32px;
  align-items: flex-start;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 2px;
  width: 100%;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E67E22;
  color: #fff;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1059px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1060px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ------------------------------------------------------
 HERO, SECTIONS, LAYOUTS
---------------------------------------------------------*/
.hero {
  background: linear-gradient(90deg,#fff 60%, #FCE9D7 100%);
  border-bottom: 3px solid #E67E22;
  min-height: 330px;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero h1 {
  color: #E67E22;
  font-size: 2.5rem;
  font-weight: 900;
  text-shadow: 1px 2px 0px rgba(44,62,80,0.11);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 650px;
  margin-bottom: 22px;
  color: #2C3E50;
}
.hero .btn-primary,
.hero .btn-secondary {
  margin-top: 6px;
  font-size: 1.08rem;
  letter-spacing: 0.4px;
}
/* Features Section */
.features ul, .category-features ul, .service-benefits ul,
.personalizare-info ul, .personalizare-benefits ul, .brand-story ul, .why-choose-us ul, .guarantee-highlight ul, .livrare-info ul, .livrare-benefits ul, .services-list ul, .product-listings ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 20px;
}
.features li, .category-features li, .service-benefits li, .product-listings li, .guarantee-highlight li,
.services-list li, .personalizare-info li, .personalizare-benefits li, .brand-story li, .why-choose-us li, .livrare-info li, .livrare-benefits li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  min-width: 240px;
  gap: 14px;
  font-weight: 500;
  color: #2C3E50;
  transition: box-shadow 0.16s, transform 0.18s;
}
.features li img, .category-features li img, .service-benefits li img, .personalizare-benefits li img, .guarantee-highlight li img, .product-listings li img, .livrare-info li img, .livrare-benefits li img {
  width: 36px;
  height: 36px;
  margin-right: 5px;
}
.features li:hover, .category-features li:hover, .service-benefits li:hover, .personalizare-benefits li:hover, .guarantee-highlight li:hover, .brand-story li:hover, .product-listings li:hover, .why-choose-us li:hover, .livrare-info li:hover, .livrare-benefits li:hover {
  box-shadow: 0 5px 18px 0 #E67E22aa;
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
}

.cta-banner {
  background: #E67E22;
  color: #fff;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(230,126,34,0.10);
  margin: 50px 20px 20px 20px;
  padding: 40px 20px;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner .btn-primary {
  background: #fff;
  color: #E67E22;
  font-weight: 800;
  border: none;
}
.cta-banner .btn-primary:hover {
  background: #2C3E50;
  color: #fff;
}

/* Testimonials Styling - high contrast for readability */
.testimonials {
  margin-top: 40px;
  margin-bottom: 40px;
}
.testimonials h2 {
  color: #E67E22;
}
.testimonial-card {
  background: #fff;
  color: #1E252F;
  min-height: 110px;
  border-left: 5px solid #E67E22;
}
.testimonial-star {
  display: flex;
  gap: 4px;
  align-items: center;
}
.testimonial-card p {
  font-size: 1.07rem;
  line-height: 1.4;
}
.testimonial-card span {
  color: #e67e22;
  font-size: .97rem;
  margin-top: 7px;
  font-weight: bold;
}

/* About summary, list and team sections */
.about-summary, .brand-story, .team, .why-choose-us, .service-highlights {
  margin-bottom: 60px;
  padding-bottom: 20px;
}
.brand-values {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 7px;
}
.brand-values img {
  height: 42px;
  width: 42px;
}

/* Listings table for livrare page */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 14px #E67E2233;
  border-radius: 14px;
  overflow: hidden;
}
thead {
  background: #E67E22;
  color: #fff;
}
thead tr th {
  padding: 16px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
}
tbody tr td {
  padding: 13px 6px;
  border-bottom: 1px solid #F3A766;
  font-size: 1.04rem;
  color: #2C3E50;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Contact Details */
.contact-details p, .footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-details img, .footer-contact img {
  width: 22px;
  height: 22px;
}

/* ------------------------------------------------------
   FOOTER
---------------------------------------------------------*/
footer {
  background: #2C3E50;
  color: #fff;
  margin-top: 60px;
  padding: 45px 0 22px 0;
  border-top: 4px solid #E67E22;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 240px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
}
.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  font-size: 1.12rem;
  color: #E67E22;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #fff;
  font-weight: 500;
  font-size: .98rem;
  transition: color .16s;
  text-decoration: none;
}
.footer-links a:hover, .footer-links a:focus {
  color: #E67E22;
}
.footer-contact p {
  font-size: .98rem;
}
.footer-newsletter p {
  font-size: .98rem;
  margin-top: 5px;
}
footer p, footer nav, footer h4 {
  margin-bottom: 6px;
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 8800;
  background: #fff;
  color: #222b38;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  border-top: 3px solid #E67E22;
  padding: 26px 18px 26px 18px;
  box-shadow: 0 -5px 30px #2c3e5033;
  font-size: 1rem;
  animation: cookieSlideIn .8s cubic-bezier(.55,1.28,.33,1.02) 1;
}
@keyframes cookieSlideIn {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 20px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  margin: 0 2px;
  font-size: 1rem;
  transition: background .16s, color .16s;
  box-shadow: 0 2px 12px #E67E2233;
}
.cookie-consent-banner .accept {
  background: #E67E22;
  color: #fff;
}
.cookie-consent-banner .accept:hover {
  background: #27ae60;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #E67E22;
  border: 2px solid #E67E22;
}
.cookie-consent-banner .reject:hover {
  background: #E67E22;
  color: #fff;
}
.cookie-consent-banner .settings {
  background: #2C3E50;
  color: #fff;
}
.cookie-consent-banner .settings:hover {
  background: #12CBC4;
  color: #2C3E50;
}
/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,62,80,0.27);
  animation: fadeIn .3s;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, visibility .2s;
}
#cookie-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #2C3E50;
  border-radius: 16px;
  padding: 40px 26px 28px 26px;
  min-width: 330px;
  max-width: 90vw;
  box-shadow: 0 6px 38px #2c3e5033;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn .4s cubic-bezier(.46,1.87,0.35,1.14);
}
@keyframes popIn {
  from {transform: scale(.8); opacity: 0;}
  to   {transform: scale(1); opacity: 1;}
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FCE9D7;
  border-radius: 9px;
  padding: 13px 19px;
  font-size: 1.08rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.cookie-category .enabled {
  color: #27ae60;
  font-weight: bold;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 24px;
  background: #E67E22;
  position: relative;
  margin-left: 9px;
  transition: background .21s;
  cursor: pointer;
}
.cookie-toggle[aria-checked="false"] {
  background: #cfd8dc;
}
.cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .16s;
}
.cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 22px;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  border-radius: 24px;
  padding: 10px 30px;
  background: #E67E22;
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  transition: background .15s, color .15s;
}
.cookie-modal-actions button.close {
  background: #fff;
  color: #E67E22;
  border: 2px solid #E67E22;
}
.cookie-modal-actions button.close:hover {
  background: #E67E22;
  color: #fff;
}
.cookie-modal-actions button.save {
  background: #27ae60;
  color: #fff;
}

/* ------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------*/
.btn-primary, .btn-secondary, .btn-link, .main-nav a, .card, .testimonial-card, .cookie-consent-banner, .mobile-menu {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.18s;
  transition-timing-function: cubic-bezier(.56,1.33,0.46,1);
}
.card:hover {
  box-shadow: 0 8px 30px #E67E2238;
  transform: translateY(-5px) scale(1.02);
}

/* ------------------------------------------------------
   MEDIA QUERIES: MOBILE FIRST
---------------------------------------------------------*/
@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
  }
  .footer-brand, .footer-links, .footer-contact, .footer-newsletter {
    min-width: 220px;
    flex: 1 1 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .cta-banner {
    margin: 35px 10px 15px 10px;
  }
  table, thead, tbody, tr, td, th {
    font-size: .95rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.01rem;
  }
  .content-wrapper {
    padding: 0;
  }
  .section {
    margin-bottom: 35px;
    padding: 20px 6px;
  }
  .features ul, .category-features ul, .service-benefits ul, .personalizare-info ul, .personalizare-benefits ul, .brand-story ul, .why-choose-us ul, .guarantee-highlight ul, .product-listings ul, .livrare-info ul, .livrare-benefits ul {
    flex-direction: column;
    gap: 12px;
    min-width: 0;
  }
  .card, .testimonial-card, .cta-banner, .card-container {
    min-width: 0;
    max-width: 100%;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
  .about-summary, .features, .brand-story, .team, .why-choose-us, .service-highlights {
    margin-bottom: 34px;
    padding-bottom: 0px;
  }
  .cookie-modal-content {
    padding: 18px 5vw 14px 5vw;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .btn-primary, .btn-secondary, .btn-link, .cookie-consent-banner button {
    padding: 8px 12px;
    font-size: .96rem;
  }
  .testimonial-card, .card {
    padding: 13px 7px 13px 7px;
    font-size: .97rem;
    min-width: 0;
  }
  .footer-brand img {
    width: 40px;
    height: 40px;
  }
}

/* ------------------------------------------------------
   VIBRANT ENERGETIC: COLORS, TYPOGRAPHY, VISUALS
---------------------------------------------------------*/
body, html {
  background: linear-gradient(180deg, #FFFFFF 70%, #FCE9D7 110%);
}
.btn-primary, .btn-secondary {
  font-size: 1.11rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 28px;
  box-shadow: 0 4px 20px #E67E2257, 0 1.5px 10px #2c3e5021;
}
.btn-primary:active, .btn-secondary:active, .btn-link:active {
  opacity: .85;
  transform: scale(.97);
}
.card, .testimonial-card, .features li, .category-features li, .service-benefits li, .personalizare-info li, .personalizare-benefits li, .guarantee-highlight li, .product-listings li, .why-choose-us li, .team, .brand-story li, .livrare-info li, .livrare-benefits li {
  border-radius: 18px;
  box-shadow: 0 2px 8px #E67E2231;
  border: none;
}
.card {
  border-left: 6px solid #E67E22;
  background: #fff;
}
.card.highlight {
  border-left: 6px solid #12CBC4;
  background: #F3F5F9;
}

h1, h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
}
h1 {
  color: #E67E22;
  text-shadow: 2px 2px 0 #fff3;
}
h2 {
  color: #2C3E50;
}

strong, b {
  color: #E67E22;
  font-weight: bold;
}

section {
  background: none;
}

/* Visual accent divider for sections if needed */
.section-divider {
  width: 60px;
  height: 5px;
  background: #E67E22;
  border-radius: 3px;
  margin-bottom: 17px;
  margin-top: 7px;
}

/* Table highlight rows on hover */
tbody tr:hover {
  background: #fff8ed;
  transition: background .14s;
}

/* Misc: policy content, highlight for privacy & gdpr */
.policy-hero, .policy-content {
  background: #fff5e9;
  border-radius: 14px;
  margin-bottom: 35px;
  padding: 27px 19px;
}
.policy-hero h1, .policy-content h2, .policy-content h3 {
  color: #E67E22;
}
.policy-content ul li::before {
  content: '◉';
  color: #E67E22;
  margin-right: 7px;
}

/* ------------------------------------------------------
 ACCESSIBILITY focus state
---------------------------------------------------------*/
.btn-primary:focus, .btn-secondary:focus, .btn-link:focus, .main-nav a:focus, .footer-links a:focus, .mobile-nav a:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-consent-banner button:focus {
  outline: 2px solid #12CBC4;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #fce9d7aa;
}

/* ------------------------------------------------------
   END OF STYLES
---------------------------------------------------------*/
