@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-dark: hsl(240, 10%, 4%);
  --bg-surface-glass: rgba(15, 15, 22, 0.65);
  --bg-popup-glass: rgba(22, 22, 30, 0.88);
  --accent-1: #dfb776; /* Warm Gold/Champagne */
  --accent-2: #a67c52; /* Elegant Amber/Bronze */
  --accent-1-rgb: 223, 183, 118;
  --accent-2-rgb: 166, 124, 82;
  --gradient-accent: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
  --text-primary: hsl(210, 20%, 98%);
  --text-secondary: hsl(210, 8%, 78%);
  --text-muted: hsl(210, 5%, 52%);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.7);
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  background-color: var(--bg-dark);
  position: relative;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-primary);
  font-weight: 600;
}

h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

#tm-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/raum_1.jpg?v=2.0);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  transition: var(--transition-smooth);
}

#tm-bg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#tm-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

p {
  line-height: 1.8;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
}

.tm-main-content {
  display: flex;
  align-items: center;
  padding: 60px 15px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
}

@media (min-width: 768px) {
  .tm-site-header-container {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .tm-site-header-container .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 72vh !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .tm-site-header-col-left,
  .tm-site-header-col-right {
    width: 100% !important;
    padding: 0 !important;
  }

  .tm-site-header-col-left {
    transform: translateX(-150px) !important;
    max-width: 420px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-top: 20px !important;
    position: relative !important;
  }

  .tm-site-header-col-right {
    transform: none !important;
    max-width: 1000px !important;
    margin-top: 40px !important;
  }

  .grid {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }

  .grid__item {
    width: 200px !important;
  }
}

.tm-site-header-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.tm-site-header {
  margin: 15px;
  text-align: left;
  width: auto;
  background: rgba(15, 15, 22, 0.88);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .tm-site-header {
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }
}

.tm-site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-accent);
}

.tm-site-header h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 40%, var(--text-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #fff;
  -webkit-text-fill-color: transparent;
  white-space: normal;
}

.is-firefox .tm-site-header h1 {
  background: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.tm-site-header img {
  opacity: 0.8;
  height: 3px;
  width: 80px;
  display: block;
}

.tm-site-header p {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

.content {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.grid__item {
  margin: 0;
  width: 100%;
}

.product {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.tm-nav-link {
  color: var(--text-secondary);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 25px;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  cursor: pointer;
  transform: translateZ(0);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.tm-nav-icon {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 1.8em;
  color: var(--text-primary);
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.tm-nav-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

/* Hover effects on nav tiles */
.product:hover .tm-nav-link {
  background: rgba(28, 25, 22, 0.75);
  border-color: rgba(var(--accent-1-rgb), 0.4);
  box-shadow: 0 8px 20px rgba(var(--accent-1-rgb), 0.15);
  transform: translateX(5px);
  color: #fff;
}

.product:hover .tm-nav-icon {
  transform: scale(1.12);
  color: var(--accent-2);
  opacity: 1;
}

.product:hover .tm-nav-text {
  color: #fff;
}

.product__bg {
  width: 100%;
  height: 100%;
  top: 0px;
  opacity: 0;
  position: absolute;
  z-index: -1;
  background: var(--gradient-accent);
  transition: var(--transition-smooth);
}

.product:hover .product__bg {
  opacity: 1;
}

.product__description {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  position: absolute;
}

/* POPUP PAGE OVERLAY */
.details {
  font-size: 1rem;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  padding: 20px;
  display: none;
}

.details > * {
  position: relative;
  opacity: 0;
}

.details--open {
  pointer-events: auto;
}

.details__bg {
  width: 100%;
  max-width: 950px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 28px;
}

.details__bg--down {
  background: rgba(22, 22, 30, 0.95);
  border: 1px solid var(--border-glass-hover);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(var(--accent-1-rgb), 0.15);
}

.details__bg {
  padding: 45px;
  transform-origin: 0 0;
}

.details__description {
  max-height: 75vh;
  overflow-y: auto;
  padding-right: 15px;
}

/* Scrollbar inside popup */
.details__description::-webkit-scrollbar {
  width: 6px;
}
.details__description::-webkit-scrollbar-track {
  background: transparent;
}
.details__description::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}
.details__description::-webkit-scrollbar-thumb:hover {
  background: var(--accent-2);
}

.details__close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  z-index: 1002;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.details__close:hover {
  background: rgba(var(--accent-2-rgb), 0.2);
  border-color: var(--accent-2);
  color: white;
  transform: rotate(90deg);
}

.tm-page-title {
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--accent-1);
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.is-firefox .tm-page-title {
  background: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  color: var(--accent-1) !important;
  -webkit-text-fill-color: var(--accent-1) !important;
}

/* Portfolio Slider */
.tm-img-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
}

.tm-slider-img-link {
  padding: 0 10px;
  outline: none;
}

.tm-slider-img {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.tm-slider-img:hover {
  transform: scale(1.03);
  border-color: var(--accent-1);
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff;
  opacity: 0.35;
}

.slick-dots li.slick-active button:before {
  opacity: 0.9;
  color: var(--accent-2);
}

/* Timeline Custom Styling */
.timeline {
  border-left: 2px solid rgba(255,255,255,0.08);
  padding-left: 20px;
  margin-left: 10px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #2c2a35;
}

.timeline-item.dot-accent-1::before {
  background: var(--accent-1);
}

.timeline-item.dot-accent-2::before {
  background: var(--accent-2);
}

.timeline-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 5px;
  color: white;
}

.timeline-date {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-text {
  font-size: 0.9rem;
  color: #a9a9a9;
  margin: 0;
}

/* Form Styling */
.form-control {
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  background-color: rgba(0, 0, 0, 0.25);
  color: white !important;
  padding: 14px 16px;
  transition: var(--transition-smooth);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  background-color: rgba(0, 0, 0, 0.4);
  border-color: var(--accent-1);
  box-shadow: 0 0 15px rgba(var(--accent-1-rgb), 0.2);
  outline: none;
}


.btn {
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-primary:hover {
  transform: translateY(-2px) !important;
  background: var(--gradient-accent) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(var(--accent-1-rgb), 0.4) !important;
}

.btn-primary:focus, .btn-primary:active {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: var(--accent-1) !important;
  color: var(--text-primary) !important;
  box-shadow: 0 0 15px rgba(var(--accent-1-rgb), 0.3) !important;
  outline: none !important;
}

/* Footer Styling */
footer {
  position: absolute;
  bottom: 25px;
  text-align: center;
  left: 0;
  right: 0;
  z-index: 10;
}

.tm-copyright-text {
  background-color: var(--bg-surface-glass);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-glass);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.tm-text-highlight {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.tm-text-highlight:hover {
  color: var(--accent-2);
  text-decoration: none;
}

.tm-main-content.tm-footer-relative {
  flex-direction: column;
}

.tm-main-content.tm-footer-relative footer {
  position: relative;
  bottom: 0;
  margin-top: 50px;
}

a, button {
  transition: var(--transition-smooth);
}

a:hover, a:focus {
  text-decoration: none;
  outline: none;
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (min-width: 900px) {
  .container {
    max-width: 950px;
  }
}

@media (min-width: 767px) and (max-width: 991px), (max-width: 440px) {
  .tm-nav-link {
    width: 100%;
    height: 65px;
  }
}

@media (max-width: 1024px) {
  .tm-main-content {
    align-items: flex-start;
    overflow-y: auto;
  }
  
  .tm-site-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 25px;
  }
  
  .tm-site-header::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .tm-site-header h1 {
    font-size: 2.3rem;
  }
  
  .tm-site-header img {
    margin: 0 auto 15px auto;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 480px;
  }
  .tm-site-header {
    margin: 0 auto 25px auto !important;
    max-width: 400px;
    width: 100%;
  }
  .content {
    margin: 0 auto !important;
    max-width: 400px;
    width: 100%;
  }
  .tm-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .grid {
    justify-content: center;
  }
  .tm-reverse-sm {
    flex-direction: column-reverse;
  }
  
  .details__bg {
    padding: 40px 25px;
  }
}

@media (max-width: 544px) {
  .tm-main-content {
    flex-direction: column;
    padding: 30px 10px;
  }
  
  footer {
    position: relative;
    bottom: 0;
    margin-top: 30px;
  }
  
  .tm-copyright-text {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 419px) {
  .tm-nav-link {
    width: 100%;
    height: 60px;
    padding: 0 20px;
  }
  .tm-nav-icon {
    font-size: 1.5em;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .tm-nav-text {
    font-size: 1.05rem;
  }
}

/* Color utility classes for HTML */
.text-accent-1 { color: var(--accent-1) !important; }
.text-accent-2 { color: var(--accent-2) !important; }
.bg-gradient-accent { background: var(--gradient-accent) !important; }

/* Custom utility classes to replace inline HTML styles */
.text-accent-title {
  font-weight: 400;
  color: var(--accent-1);
}

.text-accent-subtitle {
  font-weight: 400;
  color: var(--accent-2);
}

.personal-info-list {
  line-height: 2.0;
  font-size: 1.05rem;
}

.profile-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.profile-image {
  max-width: 121px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: var(--transition-smooth);
}

.profile-image:hover {
  border-color: var(--accent-1);
  box-shadow: 0 0 15px rgba(var(--accent-1-rgb), 0.3);
  transform: translateY(-2px);
}

.skills-list {
  font-size: 0.95rem;
  line-height: 1.7;
}

.info-text-list {
  font-size: 0.95rem;
  line-height: 1.7;
}

.skills-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.skills-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-weight: bold;
}

.cv-download-btn {
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.81rem !important;
}

.portfolio-intro {
  font-size: 1.05rem;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-details {
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-details li.contact-flex {
  display: flex;
  align-items: flex-start;
}

.contact-details i {
  width: 20px;
  margin-right: 8px;
}

.contact-details li.contact-flex i {
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-details i.fa-envelope,
.contact-details i.fa-map-marker-alt {
  color: var(--accent-1);
}

.contact-details i.fa-phone {
  color: var(--accent-2);
}

.contact-details a {
  color: white;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--accent-1);
}

.contact-text {
  word-break: break-word;
  overflow-wrap: break-word;
}


@media (min-width: 900px) {
  .details {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
  }

  .details__bg {
    position: absolute !important;
    top: calc(14vh - 80px) !important;
    left: calc(50vw - 90px) !important;
    right: 210px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 750px !important;
    width: auto !important;
  }
}

/* "Projekt Traum" Custom Brush Text & Brush-Slip Effect */
.projekt-traum {
  font-family: 'Water Brush', cursive;
  font-size: 2.6rem;
  color: var(--accent-1);
  text-align: center;
  margin-top: 15px;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  letter-spacing: 2px;
  white-space: nowrap;
}

.brush-slip {
  display: inline-block;
  position: relative;
}

.brush-slip::after {
  display: none !important;
}

@media (min-width: 768px) {
  .projekt-traum {
    position: absolute !important;
    top: 70px !important;
    left: calc(100% + 80px) !important;
    transform: none !important;
    margin: 0 !important;
    font-size: 4.8rem;
    z-index: 10;
    text-align: left !important;
    width: auto !important;
  }
}

/* Responsive sorting of Lebenslauf sections on mobile */
@media (max-width: 767px) {
  .cv-row {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cv-col-left,
  .cv-col-right {
    display: contents !important;
  }

  .cv-section-a { order: 1 !important; }
  .cv-section-b { order: 2 !important; }
  .cv-section-c { order: 3 !important; }
  .cv-section-d { order: 4 !important; }
  .cv-section-e { order: 5 !important; }

  /* Spacing between elements when stacked on mobile */
  .cv-section {
    width: 100% !important;
    margin-bottom: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .cv-section-e {
    margin-bottom: 0 !important;
  }

  .cv-download-btn {
    padding: 8px 14px !important;
    font-size: 0.72rem !important;
    white-space: normal !important;
    text-align: center;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -400px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 90%;
  max-width: 600px;
  background: var(--bg-popup-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-glass-hover);
  border-radius: 16px;
  padding: 22px 26px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  opacity: 0;
}

.cookie-banner.show {
  bottom: 24px;
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-1);
  margin: 0 0 6px 0;
}

.cookie-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Settings panel inside banner */
.cookie-settings-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  margin-top: 5px;
}

.cookie-option {
  display: flex;
  align-items: center;
}

/* Custom Checkbox Styling */
.cookie-checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  user-select: none;
}

.cookie-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass-hover);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.cookie-checkbox-container:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-1);
}

.cookie-checkbox-container input:checked ~ .checkmark {
  background-color: var(--accent-1);
  border-color: var(--accent-1);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.cookie-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.cookie-checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cookie-checkbox-container input:disabled ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--border-glass);
  cursor: not-allowed;
  opacity: 0.6;
}

.option-label {
  line-height: 1.4;
}

/* Buttons group */
.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 576px) {
  .cookie-btn-group {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.cookie-btn {
  padding: 9px 20px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: var(--transition-smooth) !important;
  cursor: pointer;
}

.cookie-btn-primary {
  background: var(--gradient-accent) !important;
  border: none !important;
  color: #000 !important;
  box-shadow: var(--shadow-sm);
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--accent-1-rgb), 0.4);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-glass-hover) !important;
  color: var(--text-primary) !important;
}

.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: var(--accent-1) !important;
  transform: translateY(-2px);
}

.cookie-btn-link {
  background: transparent !important;
  border: none !important;
  color: var(--text-muted) !important;
  text-decoration: underline;
  padding: 9px 10px !important;
}

.cookie-btn-link:hover {
  color: var(--accent-1) !important;
}

.cookie-btn:active {
  transform: translateY(0);
}





