@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap";
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.accueil {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  text-align: center;
  min-height: 100vh;
}
.accueil-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  color: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.description.image-texte {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
  background: #ffffff1a;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0000001a;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.description.image-texte:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, gold, #d4af37);
  z-index: 1;
}
.highlight {
  color: #d4af37;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #d4af37, gold);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  border-radius: 50px;
  margin-top: 60px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #d4af374d;
  text-decoration: none;
}
.description.image-texte img {
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.2rem auto 0;
  box-shadow: 0 10px 25px #00000026;
  display: block;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.description.image-texte img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px #0003;
}
.image-temps,
.image-montre {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px #00000026;
  margin: 1rem auto;
  display: block;
  transition: transform 0.4s;
}
.image-temps:hover,
.image-montre:hover {
  transform: scale(1.02);
}
.logo-montre {
  width: 220px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  padding-top: 30px;
}
.description-section {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #333;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0000001a;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
}
.description-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
  color: #eee4e4;
  position: relative;
  display: inline-block;
}
.description-section h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, gold);
  border-radius: 3px;
}
.description {
  color: #fff;
  text-align: center;
  font-size: 1.25rem;
  margin: 1rem 0 0;
  padding: 3rem;
}
@media (max-width: 767px) {
  .accueil {
    padding: 1rem 0.5rem;
  }
  .description-section h2 {
    font-size: 1.5rem;
  }
  .description {
    padding: 7rem;
    font-size: 2rem;
  }
  .description.image-texte {
    padding: 1.2rem;
    font-size: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .accueil-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .logo-montre {
    padding-top: 20px;
    width: 100px;
  }
  .description-section {
    padding: 1.5rem 0.7rem;
  }
  .btn {
    margin-top: 80px;
    font-size: 1rem;
    padding: 0.8rem 1.4rem;
  }
}
@media (min-width: 1200px) {
  .accueil {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
  }
  .description.image-texte {
    font-size: 1.25rem;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
  }
  .description.image-texte img {
    max-width: 220px;
    margin-left: 2rem;
    margin-top: 0;
  }
  .logo-montre {
    width: 200px;
    padding-top: 120px;
  }
  .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-top: 100px;
  }
}
.a-propos-modern-container {
  padding-top: 80px;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ece9e9;
  font-family:
    Helvetica Neue,
    Arial,
    sans-serif;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  padding: 2rem;
  box-sizing: border-box;
}
.a-propos-hero {
  height: 70vh;
  background-image: url(/images/montreapropos.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000b3, #0000004d);
}
.hero-title {
  padding-top: 150px;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.a-propos-content {
  margin: 1rem auto;
  padding: 2rem;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  box-sizing: border-box;
  border-radius: 12px;
  background-color: linear-gradient(90deg, #07070e 60%, #fbaf08 100%);
}
.a-propos-modern-section {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #ece9e9;
  padding: 2.5rem;
  box-shadow: 0 10px 30px #00000014;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.a-propos-modern-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px #0000001f;
}
.section-header {
  margin-bottom: 2rem;
  text-align: center;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1rem;
}
.divider {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, #d4af37, #f5d27a);
  margin: 0 auto;
}
.a-propos-modern-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}
.brand-name {
  font-family:
    Dancing Script,
    cursive;
  font-size: 1.3em;
  font-weight: 900;
  color: #d4af37;
}
.timeline {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.timeline-item {
  text-align: center;
}
.timeline-year {
  background: #d4af37;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: #fff;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  justify-items: center;
  align-items: center;
  width: 100%;
}
.philosophy-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 110px;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 1rem 0;
}
.item1 {
  background-image: url(/images/pulsar3.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item2 {
  background-image: url(/images/seiko2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item3 {
  background-image: url(/images/lip2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item4 {
  background-image: url(/images/CasioEdifice.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item5 {
  background-image: url(/images/maserati2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item6 {
  background-image: url(/images/tissot.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item7 {
  background-image: url(/images/fossil2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item8 {
  background-image: url(/images/festina2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.item9 {
  background-image: url(/images/lotus2.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.philosophy-icon {
  font-size: 2rem;
  color: #d4af37;
  margin-bottom: 1rem;
}
.philosophy-item h3 {
  font-family:
    Dancing Script,
    cursive;
  font-size: 1.2rem;
  padding: 3rem;
  color: gold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  background: linear-gradient(45deg, #000000b3, #0006);
  border-radius: 8px;
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.philosophy-item p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0;
}
.modern-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 2rem auto;
}
.modern-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.list-icon {
  color: #d4af37;
  font-size: 1.2rem;
  margin-right: 1rem;
}
.philosophy-item.brand-bg {
  box-shadow: 0 4px 18px #00000017;
  min-height: 110px;
  position: relative;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.philosophy-item.brand-bg:hover {
  box-shadow: 0 8px 30px 2px #d4af3726;
  transform: translateY(-3px) scale(1.03);
}
.cta-button {
  text-decoration: none;
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  margin: 2rem auto 0;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px #d4af374d;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px #d4af3766;
}
@media screen and (max-width: 900px) {
  .a-propos-modern-container {
    padding-top: 80px;
    flex-direction: column;
  }
  .hero-title {
    padding-top: 200px;
    font-size: 2.5rem;
  }
  .a-propos-content {
    padding: 0 1rem;
    margin-top: 0;
  }
  .a-propos-modern-section {
    background-color: linear-gradient(90deg, #07070e 60%, #fbaf08 100%);
    padding: 1.5rem;
  }
  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.guarantee-section {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  border: 1px solid #eee;
}
.philosophy-item {
  width: 70% !important;
  padding: 2rem 0;
  min-height: auto;
}
@media (max-width: 768px) {
  .a-propos-modern-container {
    padding-top: 80px;
    flex-direction: column;
  }
  .hero-title {
    padding-top: 50px;
    font-size: 2.5rem;
  }
  .a-propos-content {
    padding: 0 1rem;
    margin-top: 0;
  }
  .a-propos-modern-section {
    background-color: linear-gradient(90deg, #07070e 60%, #fbaf08 100%);
    padding: 1.5rem;
  }
  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .philosophy-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    align-items: center;
  }
  .philosophy-item {
    max-width: 70% !important;
    padding: 2rem 0;
    min-height: auto;
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px #0000004d;
  z-index: 1000;
  transition: background 0.3s ease;
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: gold;
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.navbar-logo img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #ffd70033;
  transition: transform 0.25s;
}
.navbar-logo:hover img {
  transform: scale(1.07);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.35s ease;
}
.navbar-links a {
  color: gold;
  text-decoration: none;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.25s;
}
.navbar-links a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, gold, orange);
  transition: width 0.25s;
}
.navbar-links a:hover {
  color: gold;
}
.navbar-links a:hover:after {
  width: 100%;
}
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon {
  color: gold;
  font-size: 1.4rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    color 0.3s;
}
.icon:hover {
  color: #fff;
  transform: scale(1.15);
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: gold;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .navbar-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: linear-gradient(90deg, #07070e 60%, #fbaf08);
    padding: 1rem 0;
    gap: 1rem;
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .navbar-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .navbar-toggle {
    display: block;
  }
  .navbar-icons {
    gap: 0.7rem;
  }
}
@media (max-width: 500px) {
  .navbar-logo span {
    display: none;
  }
  .navbar-logo img {
    height: 42px;
    width: 42px;
  }
}
.footer {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #e0e1dd;
  text-align: center;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 1.5rem 0.7rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}
.footer-logo {
  font-family:
    Dancing Script,
    cursive;
  font-size: 1.5rem;
  color: gold;
}
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
  }
  .footer-logo {
    font-size: 1.7rem;
    text-align: left;
  }
}
@media (max-width: 500px) {
  .footer-content {
    padding: 0 1rem;
    gap: 0.2rem;
  }
  .footer-logo {
    font-size: 1rem;
  }
}
.montres-container {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  text-align: center;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.montres-container h1 {
  color: gold;
  padding-top: 5rem;
  font-size: 2rem;
}
.intro-text {
  color: #e6dfdf;
  max-width: 600px;
  margin: 1rem auto 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  padding: 0 1rem;
}
.montres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
}
.montres-list h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.montre-card {
  border-radius: 10px;
  box-shadow: 0 2px 8px #0003;
  padding: 1rem;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.montre-card:hover {
  transform: translateY(-5px);
}
.montre-image-container {
  margin-bottom: 1rem;
}
.montre-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}
.montre-image:hover {
  opacity: 0.8;
}
.montre-info-link {
  text-decoration: none;
  color: inherit;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.montre-info-link:hover {
  text-decoration: none;
}
.montre-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #978d8d;
}
.montre-card p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: #c7bfbf;
  line-height: 1.4;
}
.instructions-banner {
  background: linear-gradient(90deg, #fbaf08 10%, #101357 90%);
  color: #fff;
  padding: 1rem;
  margin: 1.5rem auto 2rem;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 8px 25px #00000026;
  animation: slideDown 0.5s ease-out;
}
.instructions-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.instructions-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.instructions-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.instructions-text strong {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.instructions-text span {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}
.close-instructions {
  background: #fff3;
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.close-instructions:hover {
  background: #ffffff4d;
  transform: scale(1.1);
}
.montre-image-container {
  position: relative;
  overflow: hidden;
}
.image-overlay {
  position: absolute;
  inset: 0;
  background: #000000b3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.montre-image-button:hover .image-overlay {
  opacity: 1;
}
.zoom-hint {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  background: #667eeae6;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.details-hint {
  color: #667eea;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translate(-10px);
}
.montre-info-link:hover .details-hint {
  opacity: 1;
  transform: translate(0);
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .instructions-banner {
    margin: 1rem 0.5rem 1.5rem;
    padding: 0.875rem;
  }
  .montres-grid {
    grid-template-columns: 1fr 1fr;
  }
  .instructions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .instructions-text {
    font-size: 0.85rem;
  }
  .instructions-text span {
    font-size: 0.8rem;
  }
  .close-instructions {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .instructions-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .instructions-text span {
    font-size: 0.8rem;
  }
  .zoom-hint {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
@media screen and (max-width: 900px) {
  .montres-container {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .montres-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .montre-card {
    padding: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .montres-container {
    margin-top: 80px;
    max-width: 100%;
    padding: 0 0.5rem;
    min-width: 420px;
  }
  .montres-container h1 {
    font-size: 1.5rem;
    padding-top: 0.5rem;
  }
  .montres-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
  }
  .montre-card {
    padding: 0.8rem;
    margin: 0 auto;
  }
  .montre-image {
    width: 100%;
    height: auto;
    max-width: 250px;
  }
  .montre-card h3 {
    font-size: 1.5rem;
  }
  .montre-card p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 420px) {
  .montres-container {
    min-width: 322px;
  }
}
.close-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #0000004d;
}
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  background-size: cover;
  background-position: center;
}
.login-form {
  background: #333;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px #0000001a;
  width: 100%;
  max-width: 400px;
}
.login-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: gold;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}
.form-group input {
  width: 90%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
button:hover:not(:disabled) {
  opacity: 0.9;
}
button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.error-message {
  color: #e74c3c;
  margin-bottom: 1rem;
  text-align: center;
  padding: 10px;
  background-color: #f8d7da;
  border-radius: 4px;
}
.admin-container {
  padding-top: 100px;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e1e1e1;
}
.admin-title {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #e8ecf0;
  font-size: 2rem;
  margin: 0;
}
.admin-actions {
  display: flex;
  gap: 1rem;
}
#description {
  color: #000408;
  width: 350px;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-align: center;
}
.admin-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 2rem;
}
.admin-tab {
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1rem;
  color: #f3eeee;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.admin-tab.active {
  color: #e5e8eb;
  border-bottom-color: #e6e9ec;
  font-weight: 600;
}
.admin-tab:hover {
  color: #2c3e50;
}
.upload-form {
  color: #fff;
  padding: 2rem;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  text-align: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px #0000000d;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #eff2f5;
}
.form-group input[type="text"],
.form-group input[type="file"] {
  width: 90%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}
.form-group input:focus {
  outline: none;
  border-color: #4a6491;
  box-shadow: 0 0 0 2px #4a649133;
}
.btn-primary {
  background: linear-gradient(135deg, #2c3e50, #4a6491);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  opacity: 0.9;
}
.montres-list {
  width: 100%;
  text-align: center;
}
.montres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.montre-card {
  background: #0c0404;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px #0000001a;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.montre-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px #00000026;
}
.montre-images {
  margin: 1rem 0;
}
.image-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.image-preview-container {
  position: relative;
  display: inline-block;
}
.preview-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.no-image {
  font-style: italic;
  color: #999;
}
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
.zoomed-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px #00000080;
}
.close-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px #0000004d;
}
.close-modal:hover {
  background: #f0f0f0;
}
.montre-images-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.montre-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.montre-info {
  padding: 1.5rem;
}
.montre-info h3 {
  margin: 0 0 0.5rem;
  color: gold;
  font-size: 1.25rem;
}
.montre-info p {
  margin: 0.25rem 0;
  color: #cfcaca;
}
.montre-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
}
.btn-delete {
  background: linear-gradient(135deg, #0e0c0c, #deea0a);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-delete:hover {
  opacity: 0.9;
}
.btn-edit {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.btn-edit:hover {
  opacity: 0.9;
}
.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.loading {
  text-align: center;
  padding: 2rem;
  color: #666;
}
.empty-state {
  text-align: center;
  padding: 3rem;
  color: #666;
}
.empty-state p {
  margin-bottom: 1.5rem;
}
.contact-messages-list {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  background-color: #000408;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px #0000001a;
}
.contact-messages-list ul {
  list-style-type: none;
  padding: 0;
}
@media (max-width: 768px) {
  .admin-container {
    padding: 6rem;
    margin-top: 50px;
    width: auto;
    height: auto;
  }
  .admin-header {
    flex-direction: column;
  }
  .montres-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.montre-card {
  animation: fadeIn 0.3s ease-out;
}
@media screen and (max-width: 500px) {
  .montre-images {
    flex-direction: column;
    align-items: center;
  }
  .admin-header {
    padding: 5rem;
  }
  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  .preview-image {
    width: 80px;
    height: 80px;
  }
}
.categories-container {
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
}
.categories-header {
  text-align: center;
  margin-bottom: 40px;
  background-color: #333;
}
.categories-header h1 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 15px;
  font-weight: 300;
}
.categories-intro {
  font-size: 1.1rem;
  color: #f2f7f7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.water-resistance-section {
  margin-top: 2rem;
  text-align: center;
  background-color: #222;
  color: #fff;
}
.water-table {
  width: 100%;
  max-width: 600px;
  margin: 1rem auto;
  border-collapse: collapse;
  border: 1px solid gold;
  color: #090808;
}
.water-table th,
.water-table td {
  border: 1px solid #333;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
}
.water-table th {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  font-weight: 700;
}
.custom-carousel {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
  margin-bottom: 40px;
}
.carousel-slide {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  padding: 0;
}
.category-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.category-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, #000c);
  color: #fff;
  padding: 30px;
  text-align: left;
}
.category-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.category-description {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}
.category-content {
  padding: 40px;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
}
.category-features {
  margin-bottom: 30px;
}
.category-features h3 {
  color: gold;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.features-list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}
.feature-item {
  background: #333;
  color: #f5f8f6;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 2px 10px #0000000d;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.feature-icon {
  color: #27ae60;
  font-weight: 700;
}
.subcategories-section {
  margin-top: 30px;
}
.subcategories-title {
  color: gold;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}
.subcategories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.subcategory-card {
  background: #333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px #00000014;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.subcategory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #00000026;
}
.subcategory-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.subcategory-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.subcategory-card:hover .subcategory-image {
  transform: scale(1.05);
}
.subcategory-overlay {
  position: absolute;
  inset: 0;
  background: #2c3e50b3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.subcategory-card:hover .subcategory-overlay {
  opacity: 1;
}
.discover-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
.subcategory-info {
  padding: 20px;
}
.subcategory-name {
  color: gold;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 500;
}
.subcategory-description {
  color: #f4f7f7;
  margin-bottom: 10px;
  line-height: 1.4;
  font-size: 0.9rem;
}
.models-count {
  color: #f9f5f2;
  font-size: 0.8rem;
  font-weight: 600;
}
.categories-footer {
  text-align: center;
  padding: 30px;
  background: #333;
  color: #fff;
  border-radius: 10px;
  margin-top: 20px;
}
.categories-footer p {
  margin-bottom: 15px;
  color: #e4e7eb;
}
.expert-advice-link {
  display: inline-block;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.expert-advice-link:hover {
  background: #2980b9;
}
@media (max-width: 768px) {
  .categories-header h1 {
    padding-top: 50px;
    font-size: 2rem;
  }
  .category-content {
    padding: 20px;
  }
  .category-hero {
    height: 200px;
  }
  .category-overlay {
    padding: 20px;
  }
  .category-title {
    font-size: 1.5rem;
  }
  .features-list {
    flex-direction: column;
  }
  .subcategories-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .categories-container {
    padding: 10px;
  }
  .category-hero {
    height: 150px;
  }
}
.carousel .control-arrow,
.carousel.carousel-slider .control-arrow {
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  opacity: 0.4;
  filter: alpha(opacity=40);
  position: absolute;
  z-index: 2;
  top: 20px;
  background: none;
  border: 0;
  font-size: 32px;
  cursor: pointer;
}
.carousel .control-arrow:focus,
.carousel .control-arrow:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .control-arrow:before,
.carousel.carousel-slider .control-arrow:before {
  margin: 0 5px;
  display: inline-block;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  content: "";
}
.carousel .control-disabled.control-arrow {
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: inherit;
  display: none;
}
.carousel .control-prev.control-arrow {
  left: 0;
}
.carousel .control-prev.control-arrow:before {
  border-right: 8px solid #fff;
}
.carousel .control-next.control-arrow {
  right: 0;
}
.carousel .control-next.control-arrow:before {
  border-left: 8px solid #fff;
}
.carousel-root {
  outline: none;
}
.carousel {
  position: relative;
  width: 100%;
}
.carousel * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.carousel img {
  width: 100%;
  display: inline-block;
  pointer-events: none;
}
.carousel .carousel {
  position: relative;
}
.carousel .control-arrow {
  outline: 0;
  border: 0;
  background: none;
  top: 50%;
  margin-top: -13px;
  font-size: 18px;
}
.carousel .thumbs-wrapper {
  margin: 20px;
  overflow: hidden;
}
.carousel .thumbs {
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  position: relative;
  list-style: none;
  white-space: nowrap;
}
.carousel .thumb {
  -webkit-transition: border 0.15s ease-in;
  -moz-transition: border 0.15s ease-in;
  -ms-transition: border 0.15s ease-in;
  -o-transition: border 0.15s ease-in;
  transition: border 0.15s ease-in;
  display: inline-block;
  margin-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  border: 3px solid #fff;
  padding: 2px;
}
.carousel .thumb:focus {
  border: 3px solid #ccc;
  outline: none;
}
.carousel .thumb.selected,
.carousel .thumb:hover {
  border: 3px solid #333;
}
.carousel .thumb img {
  vertical-align: top;
}
.carousel.carousel-slider {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.carousel.carousel-slider .control-arrow {
  top: 0;
  color: #fff;
  font-size: 26px;
  bottom: 0;
  margin-top: 0;
  padding: 5px;
}
.carousel.carousel-slider .control-arrow:hover {
  background: #0003;
}
.carousel .slider-wrapper {
  overflow: hidden;
  margin: auto;
  width: 100%;
  -webkit-transition: height 0.15s ease-in;
  -moz-transition: height 0.15s ease-in;
  -ms-transition: height 0.15s ease-in;
  -o-transition: height 0.15s ease-in;
  transition: height 0.15s ease-in;
}
.carousel .slider-wrapper.axis-horizontal .slider {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-horizontal .slider .slide {
  flex-direction: column;
  flex-flow: column;
}
.carousel .slider-wrapper.axis-vertical {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.carousel .slider-wrapper.axis-vertical .slider {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.carousel .slider {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  width: 100%;
}
.carousel .slider.animated {
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.carousel .slide {
  min-width: 100%;
  margin: 0;
  position: relative;
  text-align: center;
}
.carousel .slide img {
  width: 100%;
  vertical-align: top;
  border: 0;
}
.carousel .slide iframe {
  display: inline-block;
  width: calc(100% - 80px);
  margin: 0 40px 40px;
  border: 0;
}
.carousel .slide .legend {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -45%;
  width: 90%;
  border-radius: 10px;
  background: #000;
  color: #fff;
  padding: 10px;
  font-size: 12px;
  text-align: center;
  opacity: 0.25;
  -webkit-transition: opacity 0.35s ease-in-out;
  -moz-transition: opacity 0.35s ease-in-out;
  -ms-transition: opacity 0.35s ease-in-out;
  -o-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
}
.carousel .control-dots {
  position: absolute;
  bottom: 0;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media (min-width: 960px) {
  .carousel .control-dots {
    bottom: 0;
  }
}
.carousel .control-dots .dot {
  -webkit-transition: opacity 0.25s ease-in;
  -moz-transition: opacity 0.25s ease-in;
  -ms-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
  opacity: 0.3;
  filter: alpha(opacity=30);
  box-shadow: 1px 1px 2px #000000e6;
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  cursor: pointer;
  display: inline-block;
  margin: 0 8px;
}
.carousel .control-dots .dot.selected,
.carousel .control-dots .dot:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.carousel .carousel-status {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  font-size: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
  color: #fff;
}
.carousel:hover .slide .legend {
  opacity: 1;
}
.montre-detail {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  min-height: 100vh;
  padding: 2rem;
  color: #fff;
}
.montre-detail-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}
.montre-detail-header h1 {
  padding-top: 80px;
  color: gold;
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.montre-brand {
  color: #f2eded;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}
.montre-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.montre-images-section h2,
.montre-info-section h2 {
  color: gold;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid gold;
  padding-bottom: 0.5rem;
}
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.image-preview-container {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}
.image-preview-container:hover {
  transform: scale(1.05);
}
.preview-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #555;
  transition: all 0.3s ease;
  cursor: pointer;
}
.preview-image:hover {
  border-color: gold;
  box-shadow: 0 4px 15px #ffd7004d;
}
.image-button {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.no-image {
  text-align: center;
  color: #999;
  font-style: italic;
  padding: 2rem;
  background: #444;
  border-radius: 8px;
}
.montre-info-card {
  background: #0d0202;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px #0000004d;
  border: 1px solid #555;
}
.info-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  font-size: 26px;
  color: gold;
}
.info-label {
  font-weight: 200;
  color: #f5f4ee;
}
.info-value {
  color: gold;
  font-weight: 100;
}
.info-value.price {
  color: gold;
  font-size: 1.2rem;
  font-weight: 700;
}
.description-section {
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  line-height: 2.2;
}
.description-section h3 {
  color: gold;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.description-section p {
  white-space: pre-wrap;
  font-size: 20px;
  font-weight: 100;
  color: #fafbf7;
  background: #ffffff0d;
  padding: 1rem;
  border-radius: 6px;
  border-left: 3px solid #666;
}
.btn-buy {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #28a74566;
  background: linear-gradient(135deg, #218838, #1e9e8a);
}
.btn-buy:active {
  transform: translateY(0);
}
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000e6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
}
.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}
.zoomed-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 30px #0009;
}
.close-modal {
  position: absolute;
  top: -20px;
  right: -20px;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px #0000004d;
  color: transparent;
  transition: all 0.3s ease;
}
.close-modal:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}
@media (max-width: 968px) {
  .montre-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .montre-detail {
    padding: 1rem;
  }
  .montre-detail-header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .montre-detail-header {
    margin-bottom: 2rem;
  }
  .montre-info-card {
    padding: 1.5rem;
  }
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .image-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
  }
  .preview-image {
    height: 100px;
  }
  .btn-buy {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .montre-detail-header h1 {
    font-size: 1.75rem;
  }
  .montre-info-card {
    padding: 1rem;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid {
    gap: 0.75rem;
  }
}
.montre-images-section,
.montre-info-section {
  animation: fadeInUp 0.6s ease-out;
}
.montre-info-section {
  animation-delay: 0.1s;
}
:root {
  --primary-dark: #04040a;
  --secondary-gold: #fbaf08;
  --gold-light: #f8c450;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --text-light: #ffffff;
  --text-dark: #333333;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 30px rgba(251, 175, 8, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--gray-light);
}
.validation-container {
  min-height: 100vh;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 1200px;
}
.validation-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 2rem;
}
.validation-header h1 {
  font-family:
    Playfair Display,
    serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--secondary-gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.header-subtitle {
  font-size: 1.2rem;
  color: var(--gray-medium);
  font-weight: 300;
}
.important-notice {
  background: #fbaf081a;
  border: 1px solid var(--secondary-gold);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 3rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.important-notice h2 {
  color: var(--secondary-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.important-notice p {
  color: var(--text-light);
  line-height: 1.6;
}
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
a.btn .outline {
  color: var(--text-light);
  border-color: var(--gray-medium);
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
}
@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .full-width {
    grid-column: 1 / -1;
  }
}
.option-card {
  background: #ffffff0d;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  color: var(--text-light);
}
.option-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-gold);
}
.featured {
  border: 2px solid var(--secondary-gold);
  background: #fbaf080d;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.card-header h2 {
  color: var(--secondary-gold);
  font-size: 1.5rem;
  font-weight: 600;
}
.badge {
  background: var(--secondary-gold);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}
.benefits-list li {
  color: var(--text-light);
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.benefits-list li:before {
  content: "✓";
  color: var(--secondary-gold);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.method-item {
  text-align: center;
  padding: 1.5rem;
  background: #ffffff0d;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.method-item:hover {
  background: #ffffff1a;
}
.method-item h3 {
  color: var(--secondary-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.method-item p {
  color: var(--gray-medium);
  font-size: 0.9rem;
}
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid transparent;
  gap: 0.5rem;
}
.primary {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: var(--white);
}
.primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.secondary {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: #fff;
  border: 2px solid var(--secondary-gold);
}
.secondary:hover {
  background: var(--secondary-gold);
  color: var(--primary-dark);
}
.outline {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  color: var(--text-light);
  border: 2px solid black;
}
.outline:hover {
  border-color: var(--secondary-gold);
  color: var(--secondary-gold);
}
.contact-section {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-section p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  color: var(--secondary-gold);
  font-size: 1.2rem;
}
.no-link {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}
@media (max-width: 767px) {
  .validation-container {
    padding: 1rem 0.5rem;
  }
  .option-card {
    padding: 1.5rem;
  }
  .button-group {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .payment-methods {
    grid-template-columns: 1fr;
  }
  .card-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.contact-container {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  min-height: 100vh;
  padding: 2rem;
  color: #fff;
  font-family:
    Segoe UI,
    Tahoma,
    Geneva,
    Verdana,
    sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #444;
}
.contact-header h1 {
  padding-top: 100px;
  color: gold;
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}
.contact-subtitle {
  color: #ccc;
  font-size: 1.2rem;
  margin: 0;
  font-style: italic;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
  margin: 0 auto;
}
.img {
  width: 80%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px #cdc1c14d;
}
.contact-form-section h2,
.contact-info-section h2 {
  color: gold;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid gold;
  padding-bottom: 0.5rem;
}
.contact-form-card {
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px #0000004d;
  border: 1px solid #555;
}
.alert {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.alert-success {
  background: #28a74533;
  color: #28a745;
  border: 1px solid #28a745;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ccc;
}
.form-input,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #555;
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 0 2px #ffd70033;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.btn-submit {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #07070e 60%, #fbaf08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #667eea66;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.contact-info-card {
  background: #444;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px #0000004d;
  border: 1px solid #555;
  height: fit-content;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #555;
}
.contact-method:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-icon {
  font-size: 1.5rem;
  background: #ffd7001a;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid gold;
}
.contact-details h3 {
  color: gold;
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.contact-details p {
  margin: 0.25rem 0;
  color: #ddd;
}
.contact-note {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}
.contact-faq {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #555;
}
.contact-faq h3 {
  color: gold;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-list li {
  color: #ddd;
  border-left: 2px solid #666;
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-container {
    padding: 1rem;
  }
  .contact-header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-header {
    margin-bottom: 2rem;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 1.75rem;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1rem;
  }
  .contact-method {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form-section,
.contact-info-section {
  animation: fadeInUp 0.6s ease-out;
}
.contact-info-section {
  animation-delay: 0.1s;
}
.form-input:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #e74c3c;
}
.form-input:valid:not(:focus):not(:placeholder-shown) {
  border-color: #27ae60;
}
