/* === Farbvariablen === */
:root {
  --color-background: #000000;   /* Schwarz */
  --color-text: #e6d9ad;         /* Silber */
  --color-heading: #f9bd7c;      /* Rosé-Gold */
  --color-link-hover: #d4af37;   /* Gold-Akzent */

  /* Synonyme, falls du sie getrennt nutzen willst */
  --color-rose-gold: #f9bd7c;
  --color-silver: #e6d9ad;
  --color-black: #000000;
  --color-gold-accent: #d4af37;
}
  
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/OpenSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}


/* === Grundlayout === */
body {
  background-color: var(--color-background);
  color: var(--color-text);
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size:1.5rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
}

a, a:visited {
  color: var(--color-text);
  text-decoration: none;
}
a:hover {
  color: var(--color-link-hover);
}

/* Hero */
.hero-video {
  position: relative;
  top: -60px !important; /* kein negatives top */
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
  border: 0px solid red; /* Debug, ggf. entfernen */
}
.hero-video video {
  position: relative;
  display: block;
  width: 100%;
  top:0 !important;
  margin-top:0;
  padding-top:0;
  left: 50% !important;
  transform: translate(-50%);
  object-fit: contain;
  max-width:1080px;
}

.hero-overlay {
  position: relative;
  margin-top: -120px;
  text-align: center;
  color: var(--color-heading);
  background: rgba(0,0,0,0.3);
  padding: 20px;
}
.hero-overlay h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-overlay p  { font-size: 1.5rem; color: var(--color-text); }

@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay p  { font-size: 1rem; }
  .hero-overlay { padding: 12px; margin-top: -120px; }
  .hero-video { top: 0px !important; }
}

/* ========================== Sticky Topbar ======================= */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: transparent !important;
  z-index: 9999;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
}
.logo img { max-height: 40px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a:hover { color: var(--color-heading); }

@media (max-width: 768px) {
  #topbar, #mainmenu.desktop-menu { display: none; }
  .mobile-topbar { margin-top: 48px; margin-bottom: 16px; }
}

/* === Desktop Menü === */
#mainmenu.desktop-menu .navbar-nav > li > a:hover,
#mainmenu.desktop-menu .navbar-nav > li > a:focus,
#mainmenu.desktop-menu .navbar-nav > li.active > a {
  background: transparent !important;
  color: var(--color-heading) !important; /* Rosé-Gold */
}

#mainmenu.desktop-menu {
  width: 100%;
  margin-top: 60px;
  text-align: right;
  position: relative;
  z-index: 1000;
  background: rgba(0,0,0,0.05); /* halbtransparent Schwarz */
}

#mainmenu.desktop-menu ul.navbar-nav {
  float: none !important;
  display: flex !important;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#mainmenu.desktop-menu ul.navbar-nav > li {
  display: inline-block;
}

#mainmenu.desktop-menu ul.navbar-nav > li > a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text); /* Silber */
  text-decoration: none;
  position: relative;
  padding: 12px 0;
  transition: color 0.3s ease;
}

/* Linie dichter an der Schrift */
#mainmenu.desktop-menu ul.navbar-nav > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px; /* dichter an der Schrift */
  width: 0%;
  height: 2px;
  background-color: var(--color-heading); /* Rosé-Gold */
  transition: width 0.3s ease;
}

/* Hover */
#mainmenu.desktop-menu ul.navbar-nav > li > a:hover {
  color: var(--color-heading);
}
#mainmenu.desktop-menu ul.navbar-nav > li > a:hover::after {
  width: 100%;
}

/* Aktiver Link */
#mainmenu.desktop-menu ul.navbar-nav > li.active > a {
  color: var(--color-heading);
}
#mainmenu.desktop-menu ul.navbar-nav > li.active > a::after {
  width: 100%;
}

/* === Mobile Menü === */
.mobile-menu { display: none; }

#menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
#menu-overlay.active { display: block; }

@media (max-width: 768px) {
  #topbar, #mainmenu.desktop-menu { display: none; }

  .mobile-menu {
    display: block;
    position: fixed;
    top: 0; right: 0;
    z-index: 10000;
  }

  #hamburger {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--color-text);
    padding: 10px 20px;
    cursor: pointer;
  }

  #mobile-menu-panel {
    position: fixed;
    top: 0; right: -280px;
    width: 280px; height: 100%;
    background: rgba(0,0,0,0.9); /* Schwarz */
    padding: 20px;
    overflow-y: auto;
    z-index: 99999;
    transition: right 0.3s ease;
  }
  #mobile-menu-panel.open { right: 0; }

  #close-menu {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2.5rem;
    position: absolute;
    top: 10px; right: 10px;
    cursor: pointer;
  }
  #close-menu:hover { color: var(--color-heading); }

  #mobile-menu-panel a {
    display: block;
    margin: 12px 0;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  /* Hover + Linie auch mobil */
  #mobile-menu-panel a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0%;
    height: 2px;
    background-color: var(--color-heading);
    transition: width 0.3s ease;
  }
  #mobile-menu-panel a:hover {
    color: var(--color-heading);
  }
  #mobile-menu-panel a:hover::after {
    width: 100%;
  }

  .mobile-mainmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .mobile-mainmenu ul li { margin: 8px 0; }

  /* Aktiver Link auch mobil */
  .mobile-mainmenu ul li.active > a {
    color: var(--color-heading);
  }
  .mobile-mainmenu ul li.active > a::after {
    width: 100%;
  }
}


/* Produktkarten */
.product-thumb {
  position: relative;
  display: block;
}

.product-thumb img {
  max-width: 80%;   /* nur 80% der Kartenbreite */
  height: auto;
  margin: 0 auto;
  display: block;
}


.product-thumb .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-thumb:hover .img-hover {
  opacity: 1;
}

.product-thumb:hover .img-main {
  opacity: 0;
}


.swatch-circle {
  display:inline-block;
  width:24px; height:24px;
  border-radius:50%;
  border:1px solid #000;
  background:red; /* Testfarbe */
}
 .color-swatch {
  position: relative;
  display: inline-block;
}

.color-swatch[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 12px;
  z-index: 10;
}


/* Container f�r Optionen */
.product-options {
  margin: 1rem 0;
  font-family: 'Open Sans', sans-serif;
}

/* Farbswatches */
/* Radio-Button unsichtbar machen */
.color-swatch input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Label als Container */
.color-swatch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0.3rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

/* Bild f�llt den Kreis */
.color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Hover-Effekt */
.color-swatch:hover {
  border-color: #999;
  transform: scale(1.05);
}

/* Aktive Auswahl: Rahmen einf�rben */
.color-swatch input[type="radio"]:checked + img {
  outline: 2px solid #007bff;
  outline-offset: -2px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007bff;
}


/* Gr��en-Buttons */
.size-option {
  display: inline-block;
  margin: 0.3rem;
}

.size-option input[type="radio"] {
  display: none; /* Radio verstecken */
}

.size-option span {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* Hover */
.size-option span:hover {
  border-color: #999;
}

/* Aktiv */
.size-option input[type="radio"]:checked + span {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  font-weight: 600;
}

/* Hauptbild etwas kleiner darstellen */
#main-product-image.main-image-small {
  max-width: 400px;   /* Breite begrenzen */
  height: auto;       /* Höhe automatisch */
  display: block;
  margin: 0 auto;     /* zentrieren */
}
/* Thumbnail-Hintergrund transparent machen */
.thumbnail {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.product-thumb .image {
  position: relative;
}
.product-thumb .image .back-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.product-thumb .image:hover .back-img {
  opacity: 1;
}
.product-thumb .image:hover .front-img {
  opacity: 0;
}



/* Wrapper für Label + Breadcrumbs */
.breadcrumb-wrapper {
  display: flex;
  position: relative;
  align-items: top;   /* alles auf einer Höhe */
  gap: 8px;              /* Abstand zwischen Label und Liste */
  margin-bottom: 0;   /* etwas Luft nach unten */
  margin-left: 220px;
  font-size: 14px;
  font-weight: 500;
  width: 1170px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Label "Sie sind hier:" */
.breadcrumb-label {
  color: silver;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 20px;
  height:100%;
}

/* Breadcrumb-Liste */
.breadcrumb {
  display: flex;         /* horizontale Anordnung */
  align-items: top;
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
  border: 0;
  line-height: 20px;
}

/* Breadcrumb-Elemente */
.breadcrumb li {
  color: silver;
  font-size: 1.5rem;
  padding: 0;            /* kein unnötiges Padding */
  text-shadow: none;
}

/* Links */
.breadcrumb li a {
  color: silver;
  text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* Trenner zwischen Elementen */
.breadcrumb li + li::before {
  content: "›";          /* dezenter Trenner */
  font-size: 1.5rem;       /* kleiner, wirkt eleganter */
  color: silver;
  margin: 0 6px;         /* Abstand links/rechts */
  border:0;
}
.breadcrumb li::after {
  position: static; /* kein absolutes Positionieren */ 
  border: none; 
  margin: 0; 
  color: silver; 
  font-size: 1.5rem; 
}

/* Aktuelle Position (letztes Element) */
.breadcrumb li:last-child,
.breadcrumb li:last-child a {
  color: var(--color-heading);
  pointer-events: none;  /* nicht klickbar */
}

/* Kein Trenner nach dem letzten Element */
.breadcrumb li:last-child::after {
  content: none;
}

/* Produktseite ohne linke Spalte: Content einrücken */
.product-product .container {
  display: flex;
  justify-content: center;   /* Inhalt mittig */
}

.product-product #content {
  max-width: 1200px;         /* gleiche Breite wie Kategorie-Content */
  padding: 0 30px;           /* links/rechts Rand */
  flex: 1;
}


/* Linken Rand wie Sidebar simulieren */
.product-product #content {
  margin-left: 220px;   /* gleiche Breite wie Sidebar */
  padding: 0 20px;
}

/* Container der Kategorien */
.list-group {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  margin: 0;
}

/* Einzelne Kategorie-Links */
.list-group a {
  display: block;
  background: none !important;
  border: none !important;
  color: silver !important;
  padding: 6px 0;
  text-decoration: none;
  text-shadow: none !important;   /* entfernt den "verschwommenen" Effekt */
}

/* Hover-Effekt */
.list-group a:hover {
  color: var(--color-heading) !important;      /* Rose-Gold beim Hover */
  text-decoration: underline;
}

/* Aktive Kategorie */
.list-group a.active {
  color: var(--color-heading) !important;
  font-weight: 600;
  background: none !important;
  border: none !important;
  text-shadow: none !important;
}



/* Produktkarten-Container */
/* Grid-Container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
  gap: 40px; /* Abstand zwischen Karten */
  margin: 20px 0;
}

/* Jede Karte */
.product-card {
  display: flex;
  justify-content: center; /* Karte mittig im Grid */
}

/* Rahmen um die Karte */
.product-thumb {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;  
}

/* Bildbereich */
.product-thumb .image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top:20px;
  width: 100%;
  padding-top: 120%;
  overflow: hidden;
}

.product-thumb .image img {
  position: absolute;
  inset: 0;              /* top:0; left:0; right:0; bottom:0 */
  margin: auto;          /* Bild mittig im Container */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover-Image */
.product-thumb .image img.back-img {
  opacity: 0;
}
.product-thumb:hover .image img.back-img {
  opacity: 1;
}
.product-thumb:hover .image img.front-img {
  opacity: 0;
}

/* Caption */
.product-thumb .caption {
  position: relative;
  padding: 10px;
  margin-top:20px;
  text-align: center;
  min-height: 80px;
  max-height: 80px;
}
@media (max-width: 1200px) {
  .product-grid .product-thumb .caption {
    min-height: 80px !important;
    padding: 0 10px;
  }
}






.product-thumb {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.35); /* schwächeres, halbtransparentes Altgold */
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* ganz leichter Schimmer */
  box-shadow:
    0 0 4px rgba(212, 175, 55, 0.2),   /* sanfter Goldschimmer außen */
    inset 0 0 3px rgba(255, 255, 255, 0.06); /* minimaler Glanz innen */
}

.product-thumb:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 0 6px rgba(212, 175, 55, 0.3),
    inset 0 0 4px rgba(255, 255, 255, 0.08);
}





.product-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 1px; /* Rahmenstärke */
  background: linear-gradient(
    135deg,
    #fff8dc 0%,   /* heller Goldton */
    #ffd700 25%,  /* sattes Gold */
    #daa520 50%,  /* dunkler Goldton */
    #ffd700 75%,  /* zurück zu Gold */
    #fff8dc 100%  /* Glanzlicht */
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.product-thumb:hover::before {
  background: linear-gradient(
    135deg,
    #fff 0%,
    #ffd700 20%,
    #daa520 50%,
    #ffd700 80%,
    #fff 100%
  );
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}
.product-thumb::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.product-thumb:hover::after {
  opacity: 1;
  animation: shine 1.2s forwards;
}

@keyframes shine {
  from { transform: rotate(25deg) translateX(-100%); }
  to   { transform: rotate(25deg) translateX(100%); }
}



.product-thumb .price {
  font-family: 'Cinzel', serif;
  font-size: 1.4em;
  font-weight: 700;

  /* Gold-Verlauf statt fester Farbe */
  background: linear-gradient(
    135deg,
    #fff8dc 0%,   /* sehr helles Champagner-Gold */
    #f5d76e 25%,  /* helles Gold */
    #d4af37 50%,  /* sattes Gold */
    #b8860b 75%,  /* Altgold für Tiefe */
    #fff8dc 100%  /* Glanzlicht */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* Glow für den Kristall-Effekt */
  text-shadow:
    0 0 4px rgba(255, 215, 0, 0.5),
    0 0 8px rgba(255, 255, 255, 0.3);

  letter-spacing: 0.5px;
}



/* Nur für den Vorschlags-Block */
.product-grid.suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* kleinere Karten */
  gap: 25px;
  margin: 20px 0;
}

.product-grid.suggestions .product-card {
  font-size: 0.9rem;   /* Schrift leicht kleiner */
  max-width: 120px;    /* Kartenbreite begrenzen */
}

.product-grid.suggestions .product-card img {
  max-height: 100px;   /* Höhe begrenzen */
  width: 100%;         /* volle Breite nutzen */
  object-fit: contain; /* Bild vollständig anzeigen, nicht beschneiden */
}


/* Auf Touch-Geräten: keine Rückansicht */
@media (hover: none) and (pointer: coarse) {
  .product-card .back {
    display: none !important;
  }
}
#form-currency .btn,
#form-language .btn {
  font-size: 28px;
}

/* Sprache-Flaggen im Header/Dropdown vergrößern */
#form-language img {
  width: 32px;   /* Breite der Flagge */
  height: auto;  /* Höhe proportional */
  display: inline-block;
  vertical-align: middle;
}

/* Optional: Abstand optimieren */
#form-language .btn img {
  margin-right: 0; /* falls du keinen Text mehr hast */
}

/* Account-Icon im Header */
.account i.fa {
  font-size: 28px !important;   /* gewünschte Größe */
  line-height: 1;
}

/* Warenkorb-Icon im Header */
.cart i.fa {
  font-size: 28px !important;
  line-height: 1;
}

#search input.form-control {
  background: transparent;
  border: 1px solid var(--color-gold-accent); /* Goldener Rahmen */
  color: var(--color-silver);                 /* Silberne Schrift */
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 16px;
}

#search input.form-control::placeholder {
  color: var(--color-silver);
  opacity: 0.8;
}

#search .btn {
  background: transparent;
  border: 0px solid var(--color-gold-accent);
  border-radius: 8px;
  padding: 0 12px;
}

#search .btn i.fa-search {
  color: var(--color-gold-accent);            /* Goldene Lupe */
  font-size: 18px;
}


.lookbook-wrapper {
  background: #123;
  background-image: url('/image/hg_nylon.png'); /* Pfad anpassen */
  background-size: auto; /* Bild skaliert, um den Wrapper vollständig zu füllen */
  background-position: center; /* Bild zentriert */
  background-repeat: no-repeat; /* verhindert Wiederholung */
  padding: 40px 0;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}
/* Nur bei Viewport-Breite über 1200px wird das Bild skaliert */
@media screen and (min-width: 1200px) {
  .lookbook-wrapper {
    background-size: cover; /* Skaliert das Bild, sodass es den Wrapper ausfüllt */
  }
}




.lookbook-pages {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 425px;
  perspective: 2000px;
  overflow: hidden;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.page.active {
  opacity: 1;
  pointer-events: auto;
}

.card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(255, 215, 0, 0.2);
}

.card-front img,
.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  transform: rotateY(180deg);
}

.lookbook-nav {
  margin-top: 24px;
}

.lookbook-nav button {
  background: #222;
  color: #ffd700;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  margin: 0 12px;
}

.lookbook-nav button:hover {
  background: #333;
}

@media (max-width: 768px) {
  .page {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .lookbook-pages{
    height: 340px !important;
  }
   .card {
    height: auto;
    max-height: 320px; /* oder 280px je nach Design */
    max-width: 240px;
    border: 0px solid #ff0;
  }
  .card-front img,
  .card-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .card-inner {
    height: 100%;
  }
}

.intention-section {
  padding: 60px 0;
  background: radial-gradient(circle at top left, #111, #000);
  color: var(--color-text);
  font-size: 1.5rem;
}

.intention-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.intention-image {
  flex: 1;
  max-width: 250px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.intention-image::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  /*background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);*/
  /*transform: rotate(25deg);*/
  pointer-events: none;
}

.intention-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intention-text {
  flex: 1;
  max-width: 500px;
  line-height: 1.6;
  text-align:justify;
}

.cta-button {
  position: relative;
  display: inline-block;
  padding: 14px 28px;
  width:100%;
  text-align:center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(6px);
  box-shadow:
    inset 0 0 12px rgba(255, 215, 0, 0.2),
    0 0 18px rgba(255, 215, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: skewX(-20deg);
  transition: none;
}

.cta-button:hover::before {
  animation: shine 1.2s ease forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow:
    inset 0 0 16px rgba(255, 215, 0, 0.3),
    0 0 24px rgba(255, 215, 0, 0.5);
}




@media (max-width: 768px) {
  .intention-content {
    flex-direction: column;
    gap: 24px;
    padding: 20px 20px;
  }

  .intention-image,
  .intention-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .intention-text {
    text-align: justify;
  }

  .cta-button {
    margin: 24px auto 0;
    display: inline-block;
  }
}
