/* =========================
   Évasion Souvenir - style.css
   Industrial Modern Aesthetic
   ========================= */

/* ====== FONT IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --color-primary: #264653;
  --color-secondary: #2a9d8f;
  --color-accent: #f4a261;
  --color-bg: #181c1f;
  --color-bg-light: #23272b;
  --color-surface: #23272b;
  --color-surface-light: #2d3338;
  --color-metal: #bfc6ce;
  --color-metal-dark: #6c757d;
  --color-text: #e6e6e6;
  --color-text-light: #f7f7f7;
  --color-text-dark: #23272b;
  --color-shadow: rgba(0,0,0,0.25);
  --color-border: #31363b;
  --color-success: #2a9d8f;
  --color-warning: #f4a261;
  --color-error: #e76f51;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px var(--color-shadow);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-text-light);
  margin-top: 0;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h4 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: none;
}
p, ul, ol {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 1em;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}

/* ====== LINKS ====== */
a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-accent);
}

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

/* ====== HEADER & NAVIGATION ====== */
header {
  background: linear-gradient(90deg, var(--color-bg) 80%, var(--color-metal-dark) 100%);
  border-bottom: 2px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-metal);
  letter-spacing: 0.02em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.btn-primary {
  background: linear-gradient(90deg, var(--color-secondary) 80%, var(--color-accent) 100%);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  margin-left: 24px;
  box-shadow: 0 2px 8px var(--color-shadow);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  outline: none;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--color-accent) 80%, var(--color-secondary) 100%);
  color: var(--color-bg);
  box-shadow: 0 4px 16px var(--color-shadow);
}

/* ====== MOBILE MENU ====== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-metal);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  transition: color var(--transition);
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,28,31,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 40px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-metal);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  border-left: 4px solid transparent;
  padding-left: 12px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-left: 4px solid var(--color-accent);
}

@media (max-width: 1024px) {
  header .container {
    gap: 12px;
  }
  header nav {
    gap: 12px;
  }
  .btn-primary {
    margin-left: 12px;
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-height: 56px;
  }
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====== MAIN SECTIONS & SPACING ====== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--color-shadow);
  position: relative;
}
section:last-child {
  margin-bottom: 0;
}

/* ====== FLEXBOX LAYOUTS ====== */
.features-grid, .product-grid, .collections-grid, .gallery-grid, .gallery-slider, .testimonials-grid, .blog-grid, .team-grid, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 24px;
}
.features-grid > div, .product-grid > div, .collections-grid > div, .gallery-grid > div, .gallery-slider > div, .blog-grid > div, .team-grid > div, .faq-list > div {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 260px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
}
.features-grid > div:hover, .product-grid > div:hover, .collections-grid > div:hover, .gallery-grid > div:hover, .gallery-slider > div:hover, .blog-grid > div:hover, .team-grid > div:hover, .faq-list > div:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-color: var(--color-accent);
  background: var(--color-surface-light);
}

/* Card containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 18px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-color: var(--color-accent);
}

.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;
}
.text-image-section > * {
  flex: 1 1 320px;
  min-width: 220px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f7f7f7;
  color: #23272b;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  border-left: 6px solid var(--color-accent);
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-color: var(--color-secondary);
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1.2em;
  font-weight: 700;
}
.testimonial-card p{
  color: #000;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== BADGES ====== */
.badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: 0.85em;
  font-weight: 700;
  border-radius: 12px;
  padding: 2px 12px;
  margin-left: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 1px 4px var(--color-shadow);
}

/* ====== FILTERS & OPTIONS ====== */
.product-options, .collection-filters, .blog-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  align-items: center;
}
.product-options span, .collection-filters span, .blog-options span {
  color: var(--color-metal);
  font-size: 1rem;
  font-family: var(--font-display);
}
.product-options button, .collection-filters button, .blog-options button {
  background: var(--color-bg-light);
  color: var(--color-metal);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-left: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.product-options button:hover, .collection-filters button:hover, .blog-options button:hover {
  background: var(--color-secondary);
  color: var(--color-text-dark);
  border-color: var(--color-secondary);
}

/* ====== TIMELINE (A PROPOS) ====== */
.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.timeline li {
  position: relative;
  padding-left: 28px;
  color: var(--color-metal);
  font-size: 1rem;
}
.timeline li:before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 1px 4px var(--color-shadow);
}

/* ====== ORDER SUMMARY (MERCI) ====== */
.order-summary {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 18px;
  margin: 24px 0;
  border: 1px solid var(--color-border);
}
.order-summary ul {
  margin: 0;
  padding: 0 0 0 18px;
}
.order-summary li {
  margin-bottom: 10px;
  color: var(--color-metal);
}

/* ====== FOOTER ====== */
footer {
  background: linear-gradient(90deg, var(--color-bg) 80%, var(--color-metal-dark) 100%);
  border-top: 2px solid var(--color-border);
  padding: 40px 0 24px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: var(--color-metal);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  color: var(--color-metal);
  font-size: 0.95rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
footer span {
  color: var(--color-metal-dark);
  font-size: 0.9rem;
  margin-top: 18px;
  display: block;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* ====== FORMS & INPUTS ====== */
input[type="text"], input[type="email"], textarea {
  background: var(--color-bg-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 16px;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* ====== FAQ LIST ====== */
.faq-list > div {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-list > div:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-color: var(--color-accent);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
  .features-grid > div, .product-grid > div, .collections-grid > div, .gallery-grid > div, .gallery-slider > div, .blog-grid > div, .team-grid > div, .faq-list > div {
    flex: 1 1 220px;
    min-width: 180px;
  }
}
@media (max-width: 900px) {
  .features-grid, .product-grid, .collections-grid, .gallery-grid, .gallery-slider, .testimonials-grid, .blog-grid, .team-grid, .faq-list {
    gap: 16px;
  }
  .features-grid > div, .product-grid > div, .collections-grid > div, .gallery-grid > div, .gallery-slider > div, .blog-grid > div, .team-grid > div, .faq-list > div {
    padding: 20px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 0;
    gap: 16px;
  }
  .features-grid, .product-grid, .collections-grid, .gallery-grid, .gallery-slider, .testimonials-grid, .blog-grid, .team-grid, .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .features-grid > div, .product-grid > div, .collections-grid > div, .gallery-grid > div, .gallery-slider > div, .blog-grid > div, .team-grid > div, .faq-list > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ====== MICRO-INTERACTIONS ====== */
.btn-primary, .product-options button, .collection-filters button, .blog-options button {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-primary:active, .product-options button:active, .collection-filters button:active, .blog-options button:active {
  transform: scale(0.97);
}
.card, .features-grid > div, .product-grid > div, .collections-grid > div, .gallery-grid > div, .gallery-slider > div, .blog-grid > div, .team-grid > div, .faq-list > div {
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}
.card:active, .features-grid > div:active, .product-grid > div:active, .collections-grid > div:active, .gallery-grid > div:active, .gallery-slider > div:active, .blog-grid > div:active, .team-grid > div:active, .faq-list > div:active {
  transform: scale(0.98);
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-bg-light);
  color: var(--color-text);
  box-shadow: 0 -2px 16px var(--color-shadow);
  padding: 24px 16px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  border-top: 2px solid var(--color-border);
  animation: cookie-slide-in 0.5s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  margin-left: 0;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: var(--color-text-dark);
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}
.cookie-banner .reject {
  background: var(--color-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}
.cookie-banner .settings {
  background: var(--color-bg-light);
  color: var(--color-metal);
  border: 1px solid var(--color-border);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: var(--color-text-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.98rem;
    padding: 18px 6px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* ====== COOKIE MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,28,31,0.92);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-bg-light);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px var(--color-shadow);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-fade-in 0.4s cubic-bezier(.4,0,.2,1);
  position: relative;
}
@keyframes modal-fade-in {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-metal);
  font-weight: 700;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.cookie-modal .cookie-category .always-on {
  color: var(--color-success);
  font-size: 0.95em;
  font-weight: 700;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-secondary);
}
.cookie-modal button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  padding: 10px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-modal .accept {
  background: var(--color-secondary);
  color: var(--color-text-dark);
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}
.cookie-modal .reject {
  background: var(--color-bg);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.cookie-modal .reject:hover, .cookie-modal .reject:focus {
  background: var(--color-accent);
  color: var(--color-bg);
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6px 18px 6px;
    min-width: 0;
  }
}

/* ====== SCROLLBAR STYLING ====== */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-metal-dark);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* ====== UTILITY CLASSES ====== */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 20px !important; }

/* ====== Z-INDEX LAYERS ====== */
header { z-index: 100; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 4000; }

/* ====== INDUSTRIAL MODERN DECORATIVE ACCENTS ====== */
section:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  border-radius: 6px 0 0 6px;
  opacity: 0.12;
  z-index: 0;
}
section {
  position: relative;
  z-index: 1;
}

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