:root {
  --dark-bg: #0b0c15;
  --blue: #2e3cff;
  --white: #fff;
}

body {
  margin: 0;
  background: var(--dark-bg);
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--white);
}
label { color:#000}
/* WhatsApp floating button */
.whatsapp-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 60;
}
.whatsapp-btn img {
  width: 50px;
  height: 50px;
}
.fixedscroll { background:#e8efea !important; color:#000;   border-bottom:1px solid #d0d0d0 !important; padding: 10px 40px 10px 40px !important;  }
.fixedscroll .navbar__links a { color:#000}
.fixedscroll .navbar__logo { color:#000}
.fixedscroll .cart-btn {
  filter: brightness(1) invert(0); 
}
/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  border-bottom:1px solid transparent;
  align-items: center;
  transition:all 0.5s ease-in;
  justify-content: space-between;
  background: transparent;
  padding: 20px 40px 0 40px;
  /* height: 80px; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  box-sizing: border-box;
}
.navbar__logo {
  position:relative;
  display: flex;
  align-items: baseline;
  left:0;
  text-decoration:none;
  color:#fff;
  font-size: 2.7rem; transition: all 0.8s ease-in;
}
.vsf {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  letter-spacing: -2px;
}
.factory {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.navbar__links {
   position:relative;
  opacity:1;
  display: flex;
  gap: 26px;
  align-items: center; transition: all 0.8s ease-in;
}
.navbar__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 600;
  position: relative;
  transition: color 0.2s;
  padding: 10px 0;
}
.navbar__links a:hover, .navbar__links a:focus {
  color: #00830f;
}
.cart-btn {
  transition: all 0.8s ease-in;
  position:relative;
  background: url(./icon/bag.png) no-repeat center/contain;
  filter: brightness(0) invert(1);
  color: var(--white);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1.08rem;
  margin-left: 30px;
  text-decoration: none;
  right:0;
  /* transition: background 0.2s; */
}
.cart-btn:hover {
   
}

/* Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .chevron {
  font-size: 0.7em;
  margin-left: 2px;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: #77917e;
  min-width: 150px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border-radius: 8px;
  z-index: 10;
}
.dropdown-content a {
  display: block;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  border-radius: 6px;
}
.dropdown-content a:hover {
  background: #000000;
  color: #fff;
}

/* Hamburger menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  outline: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 60; right:0;
  margin-left: 20px;
}
.hamburger span {
  width: 28px;
  height: 4px;
  background: var(--white);
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 530px;
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  background: #212223;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.72) blur(0.2px);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #11131b 56%, rgba(0,0,0,0) 100%);
  z-index: 2;
}
.hero__content {
  width: 100vw;
  display: flex;
  /* align-items: center; */
  justify-content: flex-start;
  position: absolute;
  z-index: 3;
  min-height: 430px;
  bottom: 0;
  box-sizing: border-box;
  align-content: flex-end;
}
.hero__text-box {
  background: #0b0c15;
  border-radius: 0px  54px 0 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
  padding: 56px 62px 50px 52px;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.subtitle {
  font-size: 1.08rem;
  color: #d3d6ef;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0 0 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero-desc {
  font-size: 1.15rem;
  color: #e4e5f6;
  margin-bottom: 32px;
  font-weight: 400;
}
.shop-btn {
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(46,60,255,0.18);
}
.shop-btn:hover {
  background: #2020e2;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero__content {
    padding-left: 32px;
  }
  .hero__text-box {
    padding: 42px 28px 34px 28px;
  }
}
@media (max-width: 900px) {
  .fixedscroll {padding: 20px 18px 20px 18px !important;}
   .fixedscroll .hamburger span {background: #000 !important;}
  .navbar {
    padding: 20px 18px;
    display: flex;
    justify-content: space-between;
  }
  .hero__content {
    padding-left: 8px;
  }
  .hero__text-box {
    padding: 34px 12px 28px 18px;
    border-radius: 42px 0 42px 0;
  }
  .navbar__links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100vw;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 0 18px 16px;
    z-index: 45;
    display: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  }
  .navbar__links.show {
    display: flex;
  }
  .cart-btn {
    /* margin-left: 0; */
    position: absolute;
    right: 80px;
  }
  .dropdown-content {
    position: relative;
    top: 0;
    box-shadow: none;
    background: none;
    min-width: 120px;
    border-radius: 0;
    padding-left: 0;
  }
  .dropdown-content a {
    padding: 10px 14px;
    font-size: 1em;
    border-radius: 0;
  }
  .dropdown .chevron {
    margin-left: 6px;
  }
  .hamburger {
    display: flex;
  }
  .navbar__links, .cart-btn {
    /* transition: all 0.3s; */
  }
}
@media (max-width: 650px) {
  .hero__text-box {
    padding: 22px 4vw 18px 4vw;
    max-width: 99vw;
    border-radius: 28px 0 28px 0;
  }
  .hero-title {
    font-size: 2.0rem;
  }
  .hero__content {
    min-height: 260px;
  }
}
@media (max-width: 500px) {
  .navbar__logo {
    font-size: 1.5rem;
  }
  .factory {
    font-size: 0.92rem;
    margin-bottom: 2px;
  }
  .hero__text-box {
    padding: 12px 2vw 12px 2vw;
    border-radius: 16px 0 16px 0;
  }
  .shop-btn {
    padding: 12px 18px;
    font-size: 1rem;
  }
}
/* Sezioni generali */
.section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0px auto;
  padding: 0 2vw;
  box-sizing: border-box;
  background: #fff;
  position: relative;
  display: inline-block;
}
.section-title, .exceptional-title, .whyvsf-title, .testimonial-title, .about-title, .legacy-title {
  text-align: center;
  font-size: 3rem;
  /* font-weight: 800; */
  font-family: 'Montserrat', Arial, sans-serif;
  margin: auto;
  /* margin-top: 42px; */
  color: #000000;
}
.title-underline {
  display: block;
  width: 48px;
  height: 4px;
  background: #303030;
  border-radius: 3px;
  margin: 12px auto 0 auto;
}

/* Watches Grid */
.watches-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin: 40px 0;
}
.watch-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(38,52,102,0.07);
  max-width: 340px;
  width: 90vw;
  text-align: left;
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
}
.watch-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 14px;
  margin-top: 10px;
  border-radius: 8px;
}
.watch-name {
  color: #1d2177;
  font-size: 1.04rem;
  margin-bottom: 6px;
  margin-top: 6px;
  font-weight: 600;
  text-decoration: underline;
  text-align: center;
  display: block;
  transition: color .2s;
}
.watch-name:hover { color: #2e3cff; }
.watch-price {
  color: #181818;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.add-cart-btn {
  background: #2e3cff;
  color: #fff;
  font-weight: 700;
  font-size: 1.10rem;
  border-radius: 12px;
  border: none;
  padding: 16px 0;
  width: 100%;
  margin-top: auto;
  cursor: pointer;
  transition: background .2s;
}
.add-cart-btn:hover { background: #2323c9; }

@media (max-width: 900px) {
  .watches-grid { flex-direction: column; align-items: center; }
}

/* Legacy Section */
.legacy-section {
  background: #ffffff;
  margin-bottom: 0;
}
.exceptionals-section {margin:0 !important;padding: 0 !important;background:url(./images/watches-new-watches-2025-hub-land-dweller-push-posterframe.avif) no-repeat center/cover;height: 600px;}
.exceptionals-section::before {
  content: "";
  position: absolute;
  inset: 0; /* copre tutto il parent */
  background: #00000010; /* nero con trasparenza */
  z-index: 0; /* oppure quello che ti serve */
}
.legacy-content  {
  display: flex;
  gap: 80px;
  padding: 80px 0 60px 0;
  align-content: flex-start;
  align-items: flex-start;
  /* flex-wrap: wrap; */
}
.footage-card {position:relative;width: 33%;display: flex;flex-direction: column;gap: 20px;}
.footage-card h3 {color:#fff;font-size:60px;margin: 0;}
.footage-card p {color: #77917e;font-size:38px;font-weight:bold;margin: 0;}
.footage-watch {
  display: flex;
  width:80%;
  align-content: flex-start;
  align-items: center;
  height: 100%;
  margin: auto;
  justify-content: flex-end;
}
.legacy-images {
  display: inline-block;
  gap: 18px;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  flex: 1 1 100%;
}
.legacy-images img {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
}
.legacy-text {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: center;
  justify-content: flex-start;
}
.legacy-pretitle {
  color: #171a2a;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.legacy-title {
  color: #000000;
  margin: 10px 0;
  font-size: 2.2rem;
  text-align: left;
}
.legacy-desc {
  color: #474747;
  margin-bottom: 28px;
  font-size: 1.18rem;
}
.legacy-btn {
  display: inline-block;
  background: #000000;
  color: #fff;
  font-weight: 700;
  padding: 13px 34px;
  /* border-radius: 10px; */
  text-decoration: none;
  font-size: 1.1rem;
  transition: background .2s;
}
.legacy-btn:hover {background: #77917e;}

@media (max-width: 1100px) {
  .legacy-content { flex-direction: column; gap: 38px; }
  .legacy-images { justify-content: center; }
}

/* Exceptional Services */
.exceptional-section {
  background: #fff;
  /* border-radius: 36px; */
  height: auto;
  padding: 42px 0 62px 0;
}
.exceptional-pretitle {
  text-align: center;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: #666666;
}
.exceptional-title {
  color: #000000;
  margin-bottom: 28px;
  text-align: center;
}
.repairs { background:url(./images/pexels-photo-1338587.webp) no-repeat center/cover; }
 .customization { background:url(./images/rolex-watch-time-luxury-364822.webp) no-repeat center/cover; }
 .sourcing { background:url(./images/pexels-photo-3809175.webp) no-repeat center/cover; }
 
.exceptional-cards {
  display: flex;
  gap: 1%;
  
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
  width: 100%;
}
.exceptional-card {
 height: 600px;
 text-align: center;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 flex: 0 1 32%;
}
.exceptional-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
 
  
}
.content-exceptional {position:absolute;bottom: 80px; margin-left:20px}
.content-exceptional h3 { text-align:left}
@media (max-width: 1050px) {
  .exceptional-cards { flex-direction: column; align-items: center; gap: 22px; }
  .exceptional-card { width: 90vw; }
}

/* Luxury Section (blue background) */
.luxury-section {
  position: relative;
  background: #174016;
  color: #fff;
  min-height: 520px;
  padding-top: 64px;
  padding-bottom: 180px;
  /* overflow: hidden; */
}
.luxury-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  z-index: 1;
}
.luxury-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #233526 60%, rgba(22, 23, 40, 0.12) 100%);
  z-index: 2;
}
.luxury-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: row; align-items: flex-start;
  justify-content: flex-start;
  gap: 90px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 0 70px;
}
.luxury-pretitle {
  color: #bfffc5;
  font-size: 1rem;
  margin-bottom: 10px;
}
.luxury-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.luxury-desc {
  font-size: 1.13rem;
  color: #e5e9ff;
  margin-bottom: 18px;
}
.luxury-steps {
  background: #0b0c15;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(15,18,40,0.11);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 1.07rem;
  min-width: 330px;
  max-width: 420px;
  margin-left: 28px;
}
.luxury-steps b {
  display: block; font-size: 1.18rem; margin-bottom: 4px;
}
.luxury-cta {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  background: #0b0c15;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(15,18,40,0.11);
  padding: 22px 42px;
  display: flex;
  align-items: center;
  gap: 36px;
  z-index: 5;
  font-size: 1.2rem;
}
.luxury-shop-btn {
  background: #217828;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 10px;
  border: none;
  padding: 13px 34px;
  text-decoration: none;
  margin-left: 14px;
  cursor: pointer;
  transition: background .2s;
}
.luxury-shop-btn:hover {background: #16581c;}

@media (max-width: 1050px) {
  .luxury-content { flex-direction: column; gap: 40px; padding: 30px 4vw 0 4vw; }
  .luxury-cta { position: static; transform: none; margin: 36px auto 0 auto; }
}

/* Why VSF */
.whyvsf-section {
  background: #77917e;
  padding-top: 56px;
  padding-bottom: 48px;
  /* border-radius: 30px; */
  margin-bottom: 0;
}
.whyvsf-pretitle {
  text-align: center;
  color: #ffffff;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.whyvsf-title {color: #ffffff;margin-bottom: 32px;}
.whyvsf-cards {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.whyvsf-card {
  background: #fff;
  /* border-radius: 18px; */
  box-shadow: 0 2px 18px rgba(21,24,60,0.10);
  padding: 32px 28px;
  width: 330px;
  min-height: 170px;
}
.whyvsf-card h4 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 1.23rem;
  /* font-weight: 800; */
}
.whyvsf-card p {
  color: #232357;
  font-size: 1.07rem;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .whyvsf-cards { flex-direction: column; align-items: center; gap: 22px; }
  .whyvsf-card {width: 80vw;padding: 5vw;}
}

/* Testimonial */
.testimonial-section {
  background: #fff;
  text-align: center;
  padding: 72px 0 48px 0;
}
.testimonial-pretitle {
  color: #282869;
  font-size: 1.09rem;
  margin-bottom: 4px;
}
.testimonial-title {
  color: #17174b;
  margin-bottom: 30px;
}
.testimonial-card {
  background: #f3f4ff;
  border-radius: 18px;
  max-width: 540px;
  margin: 32px auto 0 auto;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 2px 16px rgba(23,23,60,0.08);
}
.testimonial-stars {
  font-size: 1.6rem;
  color: #ffc700;
  margin-bottom: 12px;
}
.testimonial-text {
  color: #14143a;
  font-size: 1.15rem;
  margin-bottom: 22px;
}
.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-weight: 600;
}
.testimonial-profile img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #2e3cff;
}

/* About Section */
.about-section {
  position: relative;
  background: url(./images/footer.webp);
  margin-top: 0;
  padding-top: 72px;
  min-height: 300px;
}
.about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.16;
  z-index: 1;
}
.about-overlay {
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.about-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 54px 0 36px 0;
  max-width: 600px;
  margin: 0 auto;
}
.about-pretitle {color: #ffffff;font-size: 1.08rem;margin-bottom: 8px;}
.about-title {color: #ffffff;font-size: 2.1rem;font-weight: 900;margin-bottom: 10px;}
.about-desc {color: #f1f1f1;font-size: 1.12rem;margin-bottom: 22px;}
.about-btn {
  background: #77917e;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  /* border-radius: 10px; */
  border: none;
  padding: 13px 34px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
}
.about-btn:hover {background: #478558;}
.about-texts {
  max-width: 850px;
  margin: 56px auto 0 auto;
  color: #13153e;
  font-size: 1.07rem;
  line-height: 1.7;
}
.about-texts h3 {
  font-size: 1.32rem;
  margin-top: 32px;
  color: #171747;
  font-weight: 800;
}
.about-footer {
  text-align: center;
  color: #ffffff;
  padding: 38px 0 22px 0;
  font-size: 1.07rem;
  margin-top: 36px;
  z-index: 2;
  position: relative;
}

/* Responsive fix */
@media (max-width: 900px) {
  .about-bg, .about-overlay { height: 180px; }
  .about-content { padding-top: 24px; }
  .about-section { padding-top: 36px; }
}

@media (max-width: 600px) {
  .about-section { padding: 0 0 60px 0; }
  .about-content { padding: 18px 0 10px 0; }
  .about-title { font-size: 1.4rem; }
  .about-btn { padding: 11px 12px; font-size: 1rem; }
  .about-texts { font-size: .98rem; }
}
.cart-table, .cart-totals table, .order-summary, .order-details, table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 28px;
  margin-top: 18px;
}
.cart-table th, .cart-table td, table th, table td {
  border: 1px solid #ecebfd;
  padding: 14px 8px;
  font-size: 1rem;
  text-align: left;
}
.cart-totals, .order-summary {
  background: #f9f9fc;
  border: 1px solid #ecebfd;
  border-radius: 8px;
  max-width: 420px;
  padding: 22px 28px;
  margin-top: 24px;
  font-size: 1.08rem;
  color: #000;
}
.proceed-btn, .apply-btn, .update-btn {
  background: #204cff;
  color: #fff;
  border-radius: 9px;
  border: none;
  font-weight: 700;
  padding: 15px 32px;
  margin-top: 22px;
  cursor: pointer;
  font-size: 1.07rem;
  text-decoration: none;
  display: inline-block;
}
.remove-btn {
  background: none; color: #a00; border: none; font-size: 1.7rem; cursor: pointer;
}
input[type="text"], input[type="number"], input[type="email"] {
  border: 1px solid #ecebfd;
  border-radius: 6px;
  padding: 8px 8px;
  font-size: 1rem;
  margin-bottom: 10px;
  width: 220px;
  margin-right: 14px;
}
.product-slider-hero {background: #77917e;min-height: 680px;display:flex;align-items: center;justify-content: center;position:relative;height: 80%;padding: 100px 0;}
@media (max-width: 900px) {
.product-slider-hero { width:100% !important}
  .slider-container {
    width: 100vw;
    min-height: 640px;
    padding: 0;
    box-sizing: border-box;
  }
  .slider-track {
    min-height: 520px;
  }
  .slide-item {
    min-width: 90% !important;
    padding: 0;
    margin: 0 5%;
  }
  .slide-title {
    font-size: 1.4rem !important;
    text-align: left;
    margin-bottom: 18px;
    margin-top: 6px;
  }
  .slide-bigword {
    font-size: 22vw !important;
    left: 50% !important;
    top: 35% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    width: 100vw;
  }
  .slide-limited {
    font-size: 0.98rem;
    margin-bottom: 0;
    padding-top: 18px;
    text-align: left;
  }
  .slide-content {
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    padding: 0;
  }
  .slide-left {
    /* width: 100%; */
    max-width: 95vw;
    /* margin-bottom: 12px; */
    padding: 0 !important;
    text-align: left;
    order: 2;
  }
  .slide-desc {
    font-size: 1.01rem !important;
    margin: 18px 0 18px 0;
    max-width: 100%;
    text-align: justify;
  }
  .slide-btns {
    gap: 11px;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: flex-start;
  }
  .slide-center {
    order: 1;
    margin: auto;
    /* margin-bottom: 8px; */
  }
  .slide-center .slide-img {
    width: 200px !important;
    max-width: 75vw !important;
    margin: 0 auto;
    filter: drop-shadow(0 6px 22px #3337);
  }
  .slide-right {
    order: 3;
    width: 100%;
    /* padding: 0 14px; */
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
  }
  .slide-price {
    margin: 0;
    padding: 0;
    border-top: 1px solid #fff6;
    width: 100%;
    margin-top: 16px;
    padding-top: 10px;
    text-align: right;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
    top: unset;
    bottom: 110px;
    transform: none;
  }
  .footage-card {flex-direction: column;width: 100%;display:flex;justify-content: flex-start;align-items: flex-start;height: 100%;top: 20px;}
  .footage-card h3 {
    color: #fff;
    font-size: 30px;
    
}
  .footage-card p {
    color: #478558;
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}
  .exceptional-cards {flex-direction:column;height: 100%;display: inline-grid;}
  .whyvsf-title,.exceptional-title,.section-title { font-size:30px}
  .legacy-title { font-size:26px}
  .exceptional-card { height:450px}
  .content-exceptional {position:relative;bottom: 0;}
  .slider-arrow.prev { left: -5px !important;   top: 40%;
    
    transform: translateY(-50%) translateX(0%); }
  .slider-arrow.next { right: -5px !important;   top: 40%;
    
    transform: translateY(-50%) translateX(0%); }
  .slider-dots {
    bottom: -40px !important;
    gap: 8px;
  }
}

.slider-container {position:relative;/* max-width:1200px; */width:90vw;margin: 0 auto;/* overflow:hidden; */}
.slider-track {display:flex;transition: transform .7s cubic-bezier(.7,.2,.35,1);}
.slide-item {min-width:100%;box-sizing:border-box;opacity:0;pointer-events:none;transition:opacity .5s;position:relative;display: flex;flex-direction: column;}
.slide-item.active { opacity:1; pointer-events:all; }
.slide-content {display:flex;align-items: flex-end;/* min-height:560px; */align-content: flex-start;position: relative;/* top: -200px; */}
.slide-left {flex: 1 1 50%;opacity:1;left:0;z-index:2;padding-right:20px;position:relative;position:relative;transition: all 0.8s ease-in;}
.slide-center {flex: 1.1 1 0%;text-align:center;z-index: 4;position: relative;/* top: -200px; */}
.slide-right {flex: 1 1 50%;opacity:1;right:0;position:relative;z-index:2;padding-left:26px;min-width:260px;transition: all 0.8s ease-in;}
.slide-limited {text-transform:uppercase;opacity:1;left:0;position:relative;color: #eeeeee;opacity:.64;font-weight:700;letter-spacing:0.11em;font-size:1.05rem;transition: all 0.8s ease-in;}
.slide-title {font-size: 2.0rem;opacity:1;position:relative;left:0;color:#fff;font-weight: 400;letter-spacing:0.02em;margin:12px 0 8px 0;text-transform: uppercase;transition: all 0.8s ease-in;}
.slide-bigword {
    position: absolute;
    top: 150px;
    left: 50%;
    opacity:1;
    transform: translateX(-50%);
    font-size: 9vw;
    color: #fff;
    transition: all 0.8s ease-in;
    font-weight: 700;
    letter-spacing: 0.04em;
    user-select: none;
    pointer-events: none;
    z-index: 1;
    white-space: nowrap;
    margin: 0; /* meglio evitare margin:auto su absolute */
    display: table; /* opzionale: puoi toglierlo, non serve per il centramento */
    /* Rimuovi align-content, align-items ecc, non servono qui */
}
.slide-desc {margin:36px 0 26px 0;color: #d9d9d9;font-size:1.13rem;font-weight:400;line-height:1.56;/* max-width:400px; *//* opacity:0.92; */}
.slide-btns { display: flex; gap:22px; align-items:center; }
.btn-learn {
  background: none;
  border:2px solid #fff;
  color:#fff;
  font-weight:700;
  /* border-radius:7px; */
  padding:13px 34px;
  font-size:1.07rem;
  text-decoration:none;
  transition:.23s;
}
.btn-learn:hover {background:#fff;color: #77917e;}
.btn-add {
  background: #3a483e;
  color:#fff;
  font-weight:700;
  border:none;
  /* border-radius:7px; */
  font-size:1.07rem;
  padding:13px 29px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  transition:.18s;
}
.btn-add span { font-size:1.25rem; margin-right:10px;}
.btn-add:hover {background: #fff;color: #77917e;}
.slide-center .slide-img {width: 520px;max-width: 50vw;opacity:1;transition: opacity 1.2s ease-in, transform 0.8s ease-in;filter: drop-shadow(0 8px 28px #000000aa);position: relative;top:12px;z-index: 2;}
.slide-specs { margin-bottom:48px;}
.spec-label { color:#fff; font-size:.97rem; opacity:.79; letter-spacing:.03em; font-weight:600;}
.spec-value { color:#fff; font-size:1.1rem; font-weight:700; margin-bottom:16px;}
.slide-price {padding: 20px 0;border-top: 2px solid #eee;border-bottom: 2px solid #eee;}
.price-val { color:#fff; font-size:2rem; font-weight:900; letter-spacing:0.07em; margin-top:3px;}
.animation-zoom { transform:scale(2.8); opacity:0.0 !important; }
.animation-zoom-l {transform:scale(2.8);left:-50%; opacity:0.0 !important;}
.animation-left {left:-20%; opacity:0 !important;}
.animation-right {right:-20%; opacity:0  !important;}
.animation-opacity {  opacity:0  !important;}
.slider-arrow {
  position: absolute;
  top: 65%;
  /* left:50%; */
  transform: translateY(-50%)  translateX(50%);
  background: #fff0;
  color: #fff;
  border:none;
  border-radius:50%;
  border:1px solid transparent;
  width:48px;
  height:48px;
  font-size:2rem;
  z-index:12;
  cursor:pointer;
  transition:all 0.5s ease;
}
.slider-arrow.prev {left: 38%;}
.slider-arrow.next {right: 39%;}
.slider-arrow:hover { border:1px solid #fff}
.slider-dots {position:absolute;bottom: -120px;left:0;width:100%;display:flex;justify-content:center;gap:12px;z-index:22;}
.slider-dots button {
  width:12px; height:12px; border-radius:50%; border:none; background:#fff5; cursor:pointer; transition:.2s;
}
.slider-dots button.active { background:#fff;}
@media (max-width:1100px){
  .slide-content{flex-direction:column;}
  .slide-bigword{ font-size:11vw; left:3vw; top:10vh;}
  .slide-center .slide-img{max-width:60vw; width:180px;}
}
@media (max-width:700px){
  .slider-container{width:100vw;}
  .slide-content{min-height:0; padding:26px 0;}
  .slide-bigword{ font-size:13vw; left:2vw;}
}
 

 

 

 
.watch-section .series {
    font-size: 0.98em;
    letter-spacing: 1px;
    color: #444;
    opacity: 0.85;
}

.stars {
    margin: 10px 0;
    font-size: 1.3em;
    color: #e82932;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars span {
    color: #444;
    font-size: 0.9em;
    margin-left: 10px;
}

.watch-right h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #161616;
    margin: 14px 0 12px 0;
}

.watch-right p {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 24px;
}

.btn-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

 
.btn-outline {
    background: #fff;
    color: #161616;
    border: 2px solid #c5c5c5;
}

 
 
 

.nav-row {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: #161616;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.nav-btn.active,
.nav-btn:hover {
    background: #e82932;
    color: #fff;
}

.cogs {
    position: absolute;
    right: 4vw;
    bottom: 2vw;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 1;
}

.cog {
    background: repeating-conic-gradient(#d1a552 0% 7%, #b48b31 7% 12%, #d1a552 12% 20%);
    border-radius: 50%;
    border: 5px solid #c59a3b;
    box-shadow: 0 2px 18px rgba(139,115,38,0.16);
    position: relative;
}

.cog1 {
    width: 110px;
    height: 110px;
    animation: rotate-cog 7s linear infinite;
}

.cog2 {
    width: 60px;
    height: 60px;
    margin-top: 28px;
    margin-left: -30px;
    animation: rotate-cog-reverse 9s linear infinite;
}

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

@keyframes rotate-cog-reverse {
    0% { transform: rotate(360deg);}
    100% { transform: rotate(0deg);}
}

/* ANIMAZIONE FADE-IN */
.animate-fade-in {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1.1s ease 0.2s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(32px);}
    80% { opacity: 1; transform: translateY(-4px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 1050px) {
    .watch-section {
        flex-direction: column;
        background: linear-gradient(180deg, #e82932 39%, #fff 39%);
        padding: 24px 0;
    }
    .cogs {
        right: 10vw;
        bottom: 8vw;
    }
}

@media (max-width: 700px) {
    .watch-section {
        padding: 12px 0;
    }
    .watch-left, .watch-right {
        max-width: 95vw;
        min-width: unset;
        margin: 10px;
    }
    .watch-img {
        max-width: 220px;
    }
    .cogs {
        right: 0vw;
        bottom: 0vw;
        flex-direction: column;
        gap: 0;
    }
    .cog1 {
        width: 66px; height: 66px;
    }
    .cog2 {
        width: 36px; height: 36px;
        margin-top: 8px;
        margin-left: -12px;
    }
    .tiktok-logo {
        position: static;
        margin: 0 auto;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
}
.imagecopert {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    /* padding: 40px 0; */
    min-height: 500px;
    height:60%;
    }
.imgproductcopert {
    width: 100%;
    height: 100%; /* <-- questa è la chiave! */
   position: fixed;
    top: 0;
    left: 0;
}
.imgproductcopert::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.4; /* Cambia la trasparenza qui! */
    z-index: 2;
    pointer-events: none; /* così i click passano all'immagine sotto */
}
.text-copert {width:auto;max-width:50vw;height:auto;display:flex;position: relative;bottom: 20px;left:80px;}
.text-copert h2 { font-size:40px; }
.watch-section {
  width:80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 10%;
    min-height: 100vh;
    background: linear-gradient(110deg, #77917e 45%, #fff 45%);
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    flex-direction: row;
}

.watch-left, .watch-right {
    flex: 1 1 25%;
    min-width: 320px;
    /* max-width: 480px; */
    z-index: 2;
    margin: 16px;
}

.watch-left .watch-img {
    width: 100%;
    max-width: 500px;
  height:300px;
    display: block;
    margin: 0 auto 16px auto;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.20));
    transition: transform 0.3s;
}

.watch-img:hover {
    transform: scale(1.04) rotate(-2deg);
}

.tiktok-logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    background: rgba(0,0,0,0.15);
    border-radius: 16px;
    padding: 8px 18px;
    width: max-content;
    position: absolute;
    left: 32px;
    bottom: 32px;
    gap: 8px;
}

.watch-section .series {
    font-size: 0.98em;
    letter-spacing: 1px;
    color: #444;
    opacity: 0.85;
}

.stars {
    margin: 10px 0;
    font-size: 1.3em;
    color: #e82932;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars span {
    color: #444;
    font-size: 0.9em;
    margin-left: 10px;
}

.watch-right h1 {
    font-size: 2.2em;
    font-weight: 700;
    color: #161616;
    margin: 14px 0 12px 0;
}

.watch-right p {
    color: #444;
    font-size: 1.1em;
    margin-bottom: 24px;
}

.btn-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.btn-outline, .btn-solid {
    font-size: 1em;
    padding: 12px 30px;
    /* border-radius: 6px; */
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-outline {
    background: #fff;
    color: #161616;
    border: 2px solid #c5c5c5;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #77917e;
    color: #77917e;
}

.btn-solid {
    background: #77917e;
    color: #fff;
    border: 2px solid #77917e;
}

.btn-solid:hover {
    background: #fff;
    color: #77917e;
    border-color: #77917e;
}

.nav-row {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: none;
    background: #161616;
    color: #fff;
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.nav-btn.active,
.nav-btn:hover {
    background: #e82932;
    color: #fff;
}

.cogs {
    position: absolute;
    right: 4vw;
    bottom: 2vw;
    display: flex;
    flex-direction: row;
    gap: 12px;
    z-index: 1;
}

.cog {
    background: repeating-conic-gradient(#d1a552 0% 7%, #b48b31 7% 12%, #d1a552 12% 20%);
    border-radius: 50%;
    border: 5px solid #c59a3b;
    box-shadow: 0 2px 18px rgba(139,115,38,0.16);
    position: relative;
}

.cog1 {
    width: 110px;
    height: 110px;
    animation: rotate-cog 7s linear infinite;
}

.cog2 {
    width: 60px;
    height: 60px;
    margin-top: 28px;
    margin-left: -30px;
    animation: rotate-cog-reverse 9s linear infinite;
}

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

@keyframes rotate-cog-reverse {
    0% { transform: rotate(360deg);}
    100% { transform: rotate(0deg);}
}

/* ANIMAZIONE FADE-IN */
.animate-fade-in {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1.1s ease 0.2s forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(32px);}
    80% { opacity: 1; transform: translateY(-4px);}
    100% { opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .watch-section {
        flex-direction: column;
        width:100%;
        background: linear-gradient(180deg, #77917e 39%, #fff 39%);
        padding: 24px 0;
    }
  .watch-left .watch-img {
    width: 100%;
    max-width: 500px;
  height:200px;
  }
  .text-copert h2 { font-size:20px; }

    .cogs {
        right: 10vw;
        bottom: 8vw;
    }
}

@media (max-width: 700px) {
    .watch-section {
        padding: 12px 0;
    }
    .watch-left, .watch-right {
        max-width: 95vw;
        min-width: unset;
        margin: 10px;
    }
    .watch-img {
        max-width: 220px;
    }
    .cogs {
        right: 0vw;
        bottom: 0vw;
        flex-direction: column;
        gap: 0;
    }
    .cog1 {
        width: 66px; height: 66px;
    }
    .cog2 {
        width: 36px; height: 36px;
        margin-top: 8px;
        margin-left: -12px;
    }
     
}
