.t-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;

  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  padding: 14px 32px !important;
  min-width: 200px;
  text-align: center;
  

  color: #1a1a1a !important;

  background: linear-gradient(
    135deg,
    #f8e7a8 0%,
    #c6a85a 35%,
    #a8893e 55%,
    #f8e7a8 100%
  ) !important;

  border: none !important;
  border-radius: 6px !important;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.4);

  transition: all 0.3s ease;
}

.t-btn,
.t-btn span {
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.t-btn {
  width: auto !important;
  min-width: max-content !important;
  padding: 14px 28px !important;
}
/* мягкий постоянный перелив */
.t-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;

  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.0) 60%
  );

  opacity: 0.35;
  animation: goldFlow 6s linear infinite;
}

/* яркий блик при наведении */
.t-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );

  transform: skewX(-20deg);
}

.t-btn:hover::after {
  animation: goldShine 1s ease;
}

/* лёгкий hover эффект */
.t-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* анимации */
@keyframes goldFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

@keyframes goldShine {
  100% {
    left: 130%;
  }
}

.button-gold {
  position: relative;
  overflow: hidden;

  font-family: 'Playfair Display', serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;

  padding: 14px 32px;

  color: #1a1a1a !important;

  background: linear-gradient(
    135deg,
    #f8e7a8 0%,
    #c6a85a 35%,
    #a8893e 55%,
    #f8e7a8 100%
  ) !important;

  border-radius: 6px !important;
  border: none !important;

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.5),
    inset 0 -2px 4px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.4);

  transition: all 0.3s ease;
}

.button-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;

  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.0) 30%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.0) 60%
  );

  opacity: 0.35;
  animation: goldFlow 6s linear infinite;
}

.button-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );

  transform: skewX(-20deg);
}

.button-gold:hover::after {
  animation: goldShine 1s ease;
}

.button-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

@keyframes goldFlow {
  100% {
    transform: translateX(50%);
  }
}

@keyframes goldShine {
  100% {
    left: 130%;
  }
}

.t-cover::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.8)
  );

  z-index: 1;
}

.lux-btn {
    font-size: 16px;
}

/* мобильная версия */
@media (max-width: 640px) {
  .t-btn {
    width: 100% !important;
    min-width: auto !important;  
    white-space: nowrap !important;

    padding: 12px 20px !important;


    font-size: 13px;
    letter-spacing: 1px;
  }
}