@charset "UTF-8";
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: "Clement";
  src: url("../fonts/ClementSaintGermain-Regular.5558384.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Clement-bold";
  src: url("../fonts/ClementSaintGermain-Bold.dd920d3.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Apercu";
  src: url("../fonts/ApercuPro-Regular.2a38115.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Apercu-light";
  src: url("../fonts/ApercuPro-Light.aed0893.woff2");
  font-weight: normal;
  font-style: normal;
}

/* ======================== GLOBAL STYLES ======================== */
html {
  font-size: 62.5%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: white;
  color: black;
  font-family: "Clement", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  overflow-x: hidden;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 1.5rem;
  }
}

h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
}

a {
  color: black;
  transition: all 0.4s linear;
}
a:hover {
  color: black;
  text-decoration: none;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

strong {
  font-weight: 600;
}

img {
  max-width: 100%;
}

.grid {
  display: grid;
}

/* ======================== ADMIN BACK-OFFICE STYLES ======================== */

/* Admin Layout */
body:has(.admin-sidebar) {
  margin: 0;
  padding: 0;
  overflow-x: auto;
}

.admin-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  z-index: 1000;
  transition: transform 0.3s ease;
  overflow-y: auto;
  font-family: "Apercu", sans-serif;
}

.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.sidebar-header h5 {
  font-family: "Clement-bold", sans-serif;
  font-size: 1.8rem;
  margin: 0;
  color: white;
  text-align: center;
  letter-spacing: 2px;
}

.sidebar-nav {
  padding: 1rem 0;
}

.nav-section {
  margin-bottom: 1rem;
}

.nav-section-title {
  font-family: "Apercu-light", sans-serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-left-color: rgba(255, 255, 255, 0.3);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-left-color: #007bff;
  font-weight: 500;
}

.nav-link i {
  width: 20px;
  margin-right: 1rem;
  font-size: 1.4rem;
}

.nav-link span {
  font-size: 1.4rem;
}

/* Main Content */
.main-content {
  margin-left: 280px;
  min-height: 100vh;
  background: #f8f9fa;
  font-family: "Apercu", sans-serif;
}

.top-header {
  background: white;
  border-bottom: 1px solid #e9ecef;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-header h4 {
  font-family: "Clement", sans-serif;
  font-size: 2.4rem;
  margin: 0;
  color: #2d2d2d;
}

.user-dropdown {
  position: relative;
}

.user-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  color: #2d2d2d;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.user-dropdown .dropdown-toggle:hover {
  background: #f8f9fa;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
}

.content-area {
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

/* Tables */
.table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Apercu", sans-serif;
}

.table thead th {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: white;
  font-family: "Clement", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.5rem 1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table tbody td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #e9ecef;
  font-size: 1.4rem;
  vertical-align: middle;
}

.table tbody tr:hover {
  background: #f8f9fa;
}

/* Buttons */
.btn {
  font-family: "Apercu", sans-serif;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: 1px solid #007bff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004494);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-success {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
}

.btn-success:hover {
  background: linear-gradient(135deg, #1e7e34, #155724);
  transform: translateY(-1px);
}

.btn-warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #212529;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  transform: translateY(-1px);
}

.btn-danger {
  background: linear-gradient(135deg, #dc3545, #b02a37);
  color: white;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #b02a37, #92212b);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #545b62);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #545b62, #454d55);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}

/* Forms */
.form-control {
  font-family: "Apercu", sans-serif;
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

.form-label {
  font-family: "Clement", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid #dee2e6;
  padding: 1.5rem 2rem;
}

.card-header h5 {
  font-family: "Clement", sans-serif;
  font-size: 1.8rem;
  margin: 0;
  color: #2d2d2d;
}

.card-body {
  padding: 2rem;
}

/* Alerts */
.alert {
  border: none;
  border-radius: 8px;
  font-family: "Apercu", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

.alert-warning {
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  color: #856404;
}

.alert-info {
  background: linear-gradient(135deg, #d1ecf1, #bee5eb);
  color: #0c5460;
}

/* Color Swatches */
.color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  display: inline-block;
  margin-right: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.show {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .content-area {
    padding: 1rem;
  }

  .top-header {
    padding: 1rem;
  }

  .top-header h4 {
    font-size: 1.8rem;
  }

  .table-responsive {
    font-size: 1.2rem;
  }
}

/* Dropdown Menus */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
  font-family: "Apercu", sans-serif;
}

.dropdown-item {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  color: #2d2d2d;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #007bff;
}

/* Badge Styles */
.badge {
  font-family: "Apercu", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* Language Flags */
.language-flag {
  width: 24px;
  height: 16px;
  display: inline-block;
  margin-right: 0.5rem;
  border-radius: 2px;
}

/* Search Input Styling */
#searchInput {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
}

#searchInput:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
  outline: none;
}

/* ======================== FRONT-END STYLES (EXISTING) ======================== */

header {
  font-family: "Apercu", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
header .lang {
  display: flex;
}
header .lang li {
  font-size: 1.4rem;
}
header .lang li::after {
  content: "|";
  margin: 0 0.5rem;
}
header .lang li:last-child::after {
  display: none;
}
header .lang li a {
  color: #aaaaaa;
}
header .lang li a:hover {
  color: black;
}
header .lang li a.active {
  color: black;
  text-decoration: underline;
}
header .search input {
  background: url("../img/loupe.png") no-repeat 98%;
  border: 1px solid #707070;
  border-radius: 1rem;
  height: 4rem;
  width: 26rem;
  padding-left: 1rem;
}

.home {
  height: 100vh;
  width: 100vw;
}
.home .wrapper {
  padding: 3rem;
}
.home main {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home main {
    padding: 10rem 18rem;
  }
}
.home main .logo {
  margin-bottom: 5rem;
  width: 11rem;
}
.home main .grid {
  gap: 5rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .home main .grid {
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
  }
}
.home main .bloc {
  border: 1px solid #eee;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.1);
  height: 25rem;
  width: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 3rem;
  position: relative;
}
.home main .bloc:before, .home main .bloc:after {
  content: "";
  background: black;
  width: 3rem;
  height: 6px;
  position: absolute;
  transform: rotate(-8deg);
}
.home main .bloc:before {
  top: -3px;
}
.home main .bloc:after {
  bottom: -5px;
}
.home main .bloc h2 {
  font-size: 2.4rem;
  margin-bottom: 5rem;
  position: relative;
}
.home main .bloc h2:after {
  content: "";
  background: black;
  height: 1px;
  width: 10rem;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
.home main .bloc img {
  width: 10rem;
}

.accueil {
  width: 100vw;
}
.accueil .wrapper {
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .accueil .wrapper {
    padding: 3rem;
  }
}
.accueil .tabs {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.accueil .tabs .logo {
  margin: 0 2rem 0.5rem 0;
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .logo {
    margin-right: 4rem;
  }
}
.accueil .tabs .tab-link {
  border: 1px solid black;
  border-bottom: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: "Clement-bold", sans-serif;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .tab-link {
    font-size: 1.6rem;
    height: 4rem;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil .tabs .tab-link {
    font-size: 1.8rem;
    padding: 1rem 4rem;
  }
}
.accueil .tabs .tab-link:hover {
  background: #ebebeb;
}
.accueil .tabs .tab-link.active {
  background: black;
  color: white;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .tab-link.active {
    height: 5rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil .tabs .tab-link.active {
    font-size: 2.6rem;
  }
}
.accueil main .collections {
  background: black;
  color: white;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  width: 100vw;
  margin-left: -2rem;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .accueil main .collections {
    align-items: center;
    height: 5rem;
    margin-left: -3rem;
  }
}
.accueil main .collections p {
  font-family: "Clement-bold", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .accueil main .collections p {
    font-size: 1.8rem;
  }
}
.accueil main .collections p::after {
  content: "›";
  font-size: 2rem;
  margin-left: 1rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul {
    display: flex;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil main .collections ul {
    font-size: 1.4rem;
  }
}
.accueil main .collections ul li a {
  display: block;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul li a {
    display: inline;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul li::after {
    content: "|";
    margin: 0 1rem;
  }
  .accueil main .collections ul li:last-child::after {
    display: none;
  }
}
.accueil main .collections a {
  color: white;
}
.accueil main .collections a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.accueil main .collections a.active {
  font-family: "Clement-bold", sans-serif;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.accueil main .tab-content {
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.accueil main .content {
  padding: 6rem 0;
  text-align: center;
}
.accueil main h2 {
  display: inline-block;
  font-family: "Apercu", sans-serif;
  font-size: 5vw;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .accueil main h2 {
    font-size: 4vw;
    margin-bottom: 6rem;
  }
}
.accueil main h2:before, .accueil main h2:after {
  content: "";
  background: black;
  width: 5rem;
  height: 3px;
  position: absolute;
  top: 40%;
}
@media screen and (min-width: 992px) {
  .accueil main h2:before, .accueil main h2:after {
    top: 45%;
    width: 8rem;
  }
}
.accueil main h2:before {
  left: -6rem;
}
@media screen and (min-width: 992px) {
  .accueil main h2:before {
    left: -10rem;
  }
}
.accueil main h2:after {
  right: -6rem;
}
@media screen and (min-width: 992px) {
  .accueil main h2:after {
    right: -10rem;
  }
}
.accueil main .grid-senteurs {
  display: grid;
  grid-template-columns: repeat(3, minmax(6rem, 19rem));
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .accueil main .grid-senteurs {
    grid-template-columns: repeat(6, minmax(6rem, 19rem));
    margin-bottom: 20rem;
  }
}

.fiche {
  padding: 3rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fiche {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .fiche {
    padding: 3rem;
  }
}
.fiche .grid {
  gap: 3rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .fiche .grid {
    gap: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .fiche .grid {
    grid-template-columns: 50% 1fr;
    gap: 15rem;
  }
}
.fiche .grid.bottom {
  border-top: 1px solid black;
  padding-top: 4rem;
}
.fiche .familles {
  background: #e2950a;
  color: white;
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 1rem;
  order: 1;
}
@media screen and (min-width: 768px) {
  .fiche .familles {
    font-size: 1.8rem;
    order: 2;
    position: absolute;
    top: 3rem;
    right: 3rem;
  }
}
.fiche .familles a {
  color: white;
  padding: 0 1rem;
}
.fiche .familles a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.fiche .familles a:first-child {
  font-family: "Clement-bold", sans-serif;
}
.fiche .titre {
  order: 2;
}
@media screen and (min-width: 768px) {
  .fiche .titre {
    order: 1;
  }
}
.fiche .titre h1 {
  display: flex;
  align-items: center;
  font-size: 4rem;
  position: relative;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .fiche .titre h1 {
    font-size: 4vw;
  }
}
.fiche .titre h1 .pictos {
  display: block;
  margin: 0 0 1rem 2rem;
  position: relative;
  height: 5rem;
  width: 5rem;
}
.fiche .titre h1 .pictos img {
  position: absolute;
  right: 0;
  width: 5rem;
}
.fiche .titre h1 .pictos img#sound2 {
  visibility: hidden;
}
.fiche .titre h1::after {
  content: "";
  background: black;
  height: 1rem;
  width: 3rem;
  position: absolute;
  left: 0;
  bottom: -2rem;
}
.fiche .titre p {
  font-size: 1.8rem;
  font-style: italic;
}
.fiche .txt {
  font-size: 2rem;
}
.fiche .olfactif {
  font-size: 2rem;
}
.fiche .olfactif h3 {
  font-family: "Clement-bold", sans-serif;
  margin-bottom: 0.5rem;
}
.fiche .olfactif li {
  list-style: disc;
  list-style-position: inside;
}
.fiche .visuels {
  display: flex;
  align-items: self-start;
  gap: 2rem;
}
.fiche .visuels img {
  max-width: 15rem;
}
.fiche .couleurs {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.fiche .couleurs .papier {
  display: flex;
  align-items: flex-start;
  height: 18.5rem;
  width: 15rem;
  position: relative;
}
.fiche .couleurs .papier span {
  display: block;
  height: 18.5rem;
  width: 30%;
}
.fiche .couleurs .papier span:nth-child(2) {
  opacity: 0.85;
}
.fiche .couleurs .papier span:nth-child(2), .fiche .couleurs .papier span:nth-child(4) {
  width: 21%;
}
.fiche .couleurs .papier span:nth-child(3) {
  width: 12%;
}
.fiche .couleurs .papier img {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: auto;
}
.fiche .couleurs li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.fiche .couleurs li:last-child {
  margin-bottom: 0;
}
.fiche .couleurs li span {
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  margin-right: 1rem;
}
.fiche #video_sound {
  background: white;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  padding: 2rem;
  position: absolute;
  top: 23rem;
  left: 1rem;
  width: calc(100vw - 6rem);
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .fiche #video_sound {
    top: 15rem;
    left: 2rem;
    width: calc(100vw - 10rem);
  }
}
@media screen and (min-width: 992px) {
  .fiche #video_sound {
    top: 1rem;
    left: auto;
    right: -2rem;
    width: 45vw;
  }
}

/* ======================== ADMIN LOGIN PAGE STYLES ======================== */

.admin-login-body {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Apercu", sans-serif;
  padding: 2rem;
}

.admin-login-container {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.admin-login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.admin-login-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 3rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.decoration-dots {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.decoration-dots::before,
.decoration-dots::after {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.decoration-dots::after {
  background: rgba(255, 255, 255, 0.6);
}

.brand-logo h1 {
  font-family: "Clement-bold", sans-serif;
  font-size: 2.8rem;
  margin: 0;
  letter-spacing: 3px;
  color: white;
}

.brand-subtitle {
  font-family: "Apercu-light", sans-serif;
  font-size: 1.4rem;
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.admin-login-body {
  padding: 3rem 2rem;
}

/* Login Form Styles */
.form-floating {
  margin-bottom: 2rem;
  position: relative;
}

.form-floating input.form-control {
  font-family: "Apercu", sans-serif;
  font-size: 1.6rem;
  padding: 1.8rem 1.5rem 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  height: auto;
}

.form-floating input.form-control:focus {
  border-color: #007bff;
  background: white;
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.15);
  outline: none;
}

.form-floating label {
  font-family: "Clement", sans-serif;
  font-size: 1.4rem;
  color: #6c757d;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.form-floating.focused label,
.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label {
  color: #007bff;
  font-size: 1.2rem;
  transform: translateY(-0.5rem);
}

.form-check {
  margin-bottom: 2rem;
}

.form-check-input {
  width: 1.8rem;
  height: 1.8rem;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.form-check-label {
  font-family: "Apercu", sans-serif;
  font-size: 1.4rem;
  color: #6c757d;
  margin-left: 0.5rem;
  cursor: pointer;
}

.btn-login {
  width: 100%;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-family: "Clement", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-login:hover {
  background: linear-gradient(135deg, #0056b3, #004494);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.btn-login:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Alert Styles for Login */
.admin-login-body .alert {
  border: none;
  border-radius: 12px;
  font-family: "Apercu", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.admin-login-body .alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

/* Login Icons */
.admin-login-body .bi {
  color: #007bff;
}

.form-check-label .bi {
  color: #007bff;
}

/* Responsive Design for Login */
@media (max-width: 576px) {
  .admin-login-body {
    padding: 1rem;
  }

  .admin-login-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .brand-logo h1 {
    font-size: 2.4rem;
  }

  .admin-login-body {
    padding: 2rem 1.5rem;
  }

  .form-floating input.form-control {
    font-size: 1.4rem;
    padding: 1.6rem 1.2rem 0.8rem;
  }

  .btn-login {
    font-size: 1.4rem;
    padding: 1.2rem 1.5rem;
  }
}

/* Loading Animation for Login Button */
.btn-login.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-login.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-left: 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*# sourceMappingURL=clement.css.map */
