/* ══════════════════════════════════════
   BOXINGSHOES KGZ — style.css
   ══════════════════════════════════════ */

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #161616;
  --surface:   #1a1a1a;
  --border:    rgba(255,255,255,0.07);
  --yellow:    #FFE600;
  --yellow-d:  #d4bf00;
  --bubblegum: #FF6EB4;
  --bubblegum2:#ff9ed4;
  --text:      #f0f0f0;
  --text-muted:#888;
  --accent:    #FFE600;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui:   'Syne', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --trans:     0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}



/* ═══ VIDEO BACKGROUND ═══ */
.hero__video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* Затемнение для читаемости текста */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent; /* можно менять прозрачность */
  z-index: 1;
}
/* ─── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
}
.btn--yellow {
  background: var(--yellow);
  color: #000;
}
.btn--yellow:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,230,0,.3);
}
.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ─── SECTION TYPOGRAPHY ─────────────── */
.section-tag {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--bubblegum);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: .02em;
}
.section-title span {
  color: var(--bubblegum);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-size: 28px;
  letter-spacing: .06em;
  color: var(--bubblegum);
  line-height: 1;
  flex-shrink: 0;
}
.logo span { color: var(--bubblegum2); }
.logo--lg { font-size: 28px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--trans);
}
.nav__link:hover { color: #fff; background: var(--surface); }
.nav__cta { margin-left: 8px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: var(--trans);
}
.burger:hover { background: var(--surface); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero__title, .hero__sub {
  color: #fff;
  text-shadow:
    2px 2px 0 #7e5569,
   2px 2px 0 #7e5569,
    2px 2px 0 #7e5569,
   2px 2px 0 #7e5569;
}
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Ambient effects */
.hero__noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 0;
}
.hero__glow {
  display: none;
  /* pointer-events: none;
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,110,180,.12) 0%, transparent 65%);
  z-index: 0; */
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 560px;
}
.hero__tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--bubblegum);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: .9;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title span { color: var(--bubblegum); }
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__cta svg { transition: transform var(--trans); }
.hero__cta:hover svg { transform: translateX(4px); }

/* Visual */
.hero__visual {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero__shoe-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}
.hero__shoe {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(255,110,180,.25));
  animation: float 6s ease-in-out infinite;
}
.hero__ring-1, .hero__ring-2, .hero__ring-3 {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,110,180,.15);
}
.hero__ring-1 { width: 300px; height: 300px; animation: pulse 4s ease-in-out infinite; }
.hero__ring-2 { width: 460px; height: 460px; animation: pulse 4s ease-in-out infinite .8s; }
.hero__ring-3 { width: 620px; height: 620px; animation: pulse 4s ease-in-out infinite 1.6s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes pulse {
  0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .15; transform: translate(-50%,-50%) scale(1.05); }
}

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 12px 0;
  z-index: 5;
}
.hero__marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.hero__marquee-track span {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .15em;
  color: var(--text-muted);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products {
  padding: 100px 0;
  background: var(--bg2);
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--trans);
  position: relative;
}
.card:hover {
  border-color: rgba(255,110,180,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: #000;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 2;
}
.card__badge--new { background: var(--bubblegum); color: #fff; }

.card__img-wrap {
  position: relative;
  background: var(--bg3);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform var(--trans);
}
.card:hover .card__img-wrap img { transform: scale(1.06); }

.card__img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.card__img-wrap:not(.no-img) .card__img-placeholder { display: none; }
.card__img-wrap.no-img img { display: none; }
.card__img-placeholder svg { width: 100%; opacity: .6; }

.card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .03em;
  color: #fff;
  line-height: 1;
}
.card__color {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-ui);
}
.card__prices { display: flex; flex-direction: column; gap: 4px; margin: 4px 0; }
.card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--bg3);
}
.card__price-row--accent { background: rgba(255,230,0,.07); border: 1px solid rgba(255,230,0,.15); }
.card__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.card__price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: .02em;
}
.card__price-row--accent .card__price { color: var(--yellow); }
.card__price em { font-style: normal; font-size: .6em; opacity: .7; }
.card__btn { width: 100%; justify-content: center; margin-top: auto; }

/* ════════════════════════════════════════
   PRODUCT INFO / ACCORDION
════════════════════════════════════════ */
.product-info {
  padding: 100px 0;
  background: var(--bg);
}
.product-info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.product-info__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: transparent; /* убрали фон */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 20px rgba(255,110,180,0.5), 0 0 40px rgba(255,110,180,0.3), 0 0 60px rgba(255,110,180,0.2);
  border: 2px solid rgba(255,110,180,0.6); /* базовая неоновая рамка */
  transition: box-shadow 0.3s ease, border 0.3s ease;
}
.product-info__img-wrap:hover {
  box-shadow: 0 0 30px rgba(255,110,180,0.8), 0 0 60px rgba(255,110,180,0.6), 0 0 90px rgba(255,110,180,0.4);
  border: 2px solid rgba(255,110,180,1); /* подсветка при наведении */
}

.product-info__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
  z-index: 2;
  margin: 0;
}

.product-info__img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(255,110,180,.12) 0%, transparent 70%);
  z-index: 1;
}
.product-info__label {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--font-head);
  font-size: 2rem;
  color: rgb(255, 255, 255);
  letter-spacing: .1em;
  z-index: 1;
}

.product-info__desc {
  color: var(--text-muted);
  margin: 16px 0 32px;
  line-height: 1.7;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.accordion__item.open { border-color: rgba(255,110,180,.3); }
.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--surface);
  transition: var(--trans);
  text-align: left;
}
.accordion__trigger:hover { background: var(--bg3); }
.accordion__icon {
  width: 18px; height: 18px;
  color: var(--bubblegum);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.accordion__item.open .accordion__icon { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.accordion__panel p {
  padding: 16px 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  background: var(--bg3);
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg2);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__body {
  color: #fff;
  margin: 16px 0 28px;
  line-height: 1.4;
  font-size: 1.05rem;
}
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
}
.about__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bubblegum);
  flex-shrink: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--trans);
}
.stat-card:hover { border-color: rgba(255,110,180,.3); }
.stat-card--accent { background: rgba(255,230,0,.05); border-color: rgba(255,230,0,.2); }
.stat-card__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--bubblegum);
  line-height: 1;
  letter-spacing: .02em;
}
.stat-card--accent .stat-card__num { color: var(--yellow); }
.stat-card__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ════════════════════════════════════════
   DELIVERY
════════════════════════════════════════ */
.delivery {
  padding: 100px 0;
  background: var(--bg);
}
.delivery__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.delivery__body {
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}
.delivery__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.delivery__step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.delivery__step:last-child { border-bottom: none; }
.delivery__step-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: rgba(255,110,180,.25);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.delivery__step strong {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.delivery__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 60px;
}
.footer__tagline {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.footer__label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--bubblegum);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer__phone {
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
  letter-spacing: .03em;
  display: block;
  margin-bottom: 20px;
  transition: color var(--trans);
}
.footer__phone:hover { color: var(--yellow); }
.footer__social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  border: 1px solid var(--border);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn--wa { background: rgba(37,211,102,.1); color: #25D366; }
.social-btn--wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.social-btn--tg { background: rgba(0,136,204,.1); color: #0088cc; }
.social-btn--tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.social-btn--ig { background: rgba(225,48,108,.1); color: #E1306C; }
.social-btn--ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: #E1306C; }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  max-width: 1200px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].in-view {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet & small desktops */
@media (max-width: 1024px) {
  .hero__visual { 
    right: -100px; 
    width: 50%; 
    opacity: .5; 
  }

  .product-info__inner,
  .about__inner,
  .delivery__inner,
  .footer__inner { 
    grid-template-columns: 1fr; 
    gap: 48px; 
  }

  .hero__title { 
    font-size: clamp(4rem, 14vw, 8rem); 
  }
}

/* Mobile tablets & small devices */
@media (max-width: 768px) {
  /* Burger menu */
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--trans);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
  }
  .nav__cta { margin: 8px 0 0; width: 100%; justify-content: center; }

  /* Hero layout */
  .hero {
    flex-direction: column;
    padding: 120px 16px 80px;
    text-align: left; /* по умолчанию слева */
    align-items: flex-start;
    position: relative;
    overflow: hidden;
  }

  /* Hero background video */
  .hero__video-bg {
    width: 120%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5; 
    z-index: 0;
  }

  /* Затемнение для читаемости */
  .hero::before {
    background: transparent;
  }

  /* Hero visual / обувь */
  .hero__visual {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 100%;
    opacity: 0.35;
    margin-top: -40px;
    z-index: 2;
  }

  /* Hero content */
  .hero__content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 16px;
  }

  /* Основной заголовок (текст в первом блоке) */
  .hero__title {
    color: #fff;
    font-weight: 800; 
    font-size: clamp(3rem, 9vw, 5rem);
    line-height: 1.1;
  }

  /* Подзаголовок / описание */
  .hero__sub {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 12px;
    line-height: 1.5;
  }

  /* Кольца вокруг обуви */
  .hero__ring-1 { width: 200px; height: 200px; }
  .hero__ring-2 { width: 320px; height: 320px; }
  .hero__ring-3 { width: 440px; height: 440px; }

  /* Products & grids */
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .delivery__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Small mobile */
@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: 4.5rem; }
  .hero__sub { font-size: 0.95rem; }
}


@media (max-width: 768px) {
  .product-info__img-wrap {
    border: 1.5px solid rgba(255,110,180,0.5); /* чуть тоньше */
    box-shadow: 0 0 12px rgba(255,110,180,0.4), 0 0 24px rgba(255,110,180,0.25), 0 0 36px rgba(255,110,180,0.15);
  }

  .product-info__img-wrap:hover {
    box-shadow: 0 0 18px rgba(255,110,180,0.7), 0 0 36px rgba(255,110,180,0.5), 0 0 54px rgba(255,110,180,0.3);
    border: 1.5px solid rgba(255,110,180,0.9);
  }
}