/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/


/* MYDRID_FONT_START */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

html,
body,
#app,
.flex-wrapper,
.hero,
.footer,
.socials,
.btn,
.form-control,
.navbar,
.modal,
section,
h1, h2, h3, h4, h5, h6,
p, span, a, label, input, button, select, textarea {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif !important;
}
/* MYDRID_FONT_END */



/* MYDRID_STARFIELD_START */
html, body {
  background: #0b1220 !important;
}

body {
  position: relative;
}

.bg-image,
.mydrid-bg,
.mydrid-starfield,
.mydrid-starfield-glow {
  display: none !important;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 8% 12%, rgba(255,255,255,0.98), transparent),
    radial-gradient(2.5px 2.5px at 18% 38%, rgba(210,235,255,0.92), transparent),
    radial-gradient(2px 2px at 28% 72%, rgba(255,255,255,0.88), transparent),
    radial-gradient(3px 3px at 38% 22%, rgba(160,210,255,0.95), transparent),
    radial-gradient(2px 2px at 48% 58%, rgba(255,255,255,0.9), transparent),
    radial-gradient(2.5px 2.5px at 58% 88%, rgba(200,230,255,0.92), transparent),
    radial-gradient(2px 2px at 68% 14%, rgba(255,255,255,0.92), transparent),
    radial-gradient(3px 3px at 78% 46%, rgba(140,200,255,0.96), transparent),
    radial-gradient(2px 2px at 88% 78%, rgba(255,255,255,0.85), transparent),
    radial-gradient(2.5px 2.5px at 94% 32%, rgba(180,220,255,0.92), transparent),
    radial-gradient(2px 2px at 12% 52%, rgba(255,255,255,0.85), transparent),
    radial-gradient(2px 2px at 22% 92%, rgba(210,235,255,0.9), transparent),
    radial-gradient(2.5px 2.5px at 42% 8%, rgba(255,255,255,0.88), transparent),
    radial-gradient(2px 2px at 52% 34%, rgba(200,230,255,0.9), transparent),
    radial-gradient(3px 3px at 62% 66%, rgba(160,210,255,0.96), transparent),
    radial-gradient(2px 2px at 72% 94%, rgba(255,255,255,0.85), transparent),
    radial-gradient(2.5px 2.5px at 82% 62%, rgba(180,220,255,0.92), transparent),
    radial-gradient(2px 2px at 6% 84%, rgba(255,255,255,0.82), transparent),
    radial-gradient(2px 2px at 32% 48%, rgba(210,235,255,0.88), transparent),
    radial-gradient(2.5px 2.5px at 92% 8%, rgba(255,255,255,0.9), transparent);
  background-size: 720px 720px;
  background-repeat: repeat;
  animation: mydridStarsDrift 120s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(55, 105, 195, 0.5) 0%, transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(55, 105, 195, 0.54) 0%, rgba(35, 70, 130, 0.24) 40%, transparent 72%),
    radial-gradient(ellipse at 50% 82%, rgba(55, 105, 195, 0.44) 0%, transparent 58%),
    radial-gradient(circle at 12% 30%, rgba(77, 163, 255, 0.32) 0%, transparent 44%),
    radial-gradient(circle at 88% 70%, rgba(43, 111, 212, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 22% 38%, rgba(77, 163, 255, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 78% 46%, rgba(43, 111, 212, 0.18) 0%, transparent 38%),
    linear-gradient(180deg, rgba(8, 12, 24, 0) 0%, rgba(8, 12, 24, 0.24) 100%);
}

@keyframes mydridStarsDrift {
  from { background-position: 0 0; }
  to { background-position: -720px -720px; }
}

.flex-wrapper,
#app,
.flex-wrapper > div,
.components,
section.component:not(.hero):not(.mydrid-hero) {
  position: relative;
  z-index: 1;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.hero,
.hero.mydrid-hero,
section.hero {
  position: relative;
  z-index: 1;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

.hero .bg-overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 28, 0.18) 0%, rgba(8, 12, 24, 0.42) 100%) !important;
}

.component:not(.hero):not(.mydrid-hero),
.footer,
.socials,
.product-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}
/* MYDRID_STARFIELD_END */


/* MYDRID_ISLAND_NAV_START */
@keyframes mydrid-nav-enter {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mydrid-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.55);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.95);
    transform: scale(1.2);
  }
}

@keyframes mydrid-island-border {
  0%,
  100% {
    border-color: rgba(77, 163, 255, 0.18);
    box-shadow:
      0 10px 36px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 0 rgba(77, 163, 255, 0);
  }
  50% {
    border-color: rgba(77, 163, 255, 0.36);
    box-shadow:
      0 10px 36px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 24px rgba(77, 163, 255, 0.12);
  }
}

header.sticky-top,
header.mydrid-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block !important;
  padding: 1rem 1rem 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

.announcement {
  display: none !important;
}

.mydrid-header-bar {
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: calc(100vw - 1.5rem);
  margin: 0 auto;
}

.mydrid-island-nav {
  pointer-events: auto;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem 0.5rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 14, 28, 0.78);
  border: 1px solid rgba(77, 163, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation:
    mydrid-nav-enter 0.6s cubic-bezier(0.22, 1, 0.36, 1) both,
    mydrid-island-border 5s ease-in-out infinite 0.6s;
}

.mydrid-island-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.mydrid-island-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  margin: 0 0.05rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-island-brand:hover {
  transform: scale(1.03);
}

.mydrid-nav-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.85rem;
  height: 3rem;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  background: transparent;
}

.mydrid-nav-logo-wrap img {
  display: block;
  width: 320%;
  height: 320%;
  max-width: none;
  object-fit: contain;
  object-position: center center;
  transform: translate(4%, -2%);
  filter: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-island-brand:hover .mydrid-nav-logo-wrap img {
  transform: translate(4%, -2%) scale(1.04);
}

.mydrid-island-divider {
  display: block;
  width: 1px;
  height: 1.85rem;
  flex-shrink: 0;
  margin: 0 0.15rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 1px;
}

.mydrid-island-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 2.75rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.16);
  border: 1px solid rgba(77, 163, 255, 0.32);
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

.mydrid-island-catalog svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-island-catalog:hover {
  background: rgba(77, 163, 255, 0.28);
  border-color: rgba(77, 163, 255, 0.5);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(77, 163, 255, 0.22);
}

.mydrid-island-catalog:hover svg {
  transform: rotate(-8deg) scale(1.08);
}

.mydrid-island-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  margin-left: 0.15rem;
}

.mydrid-online-dot {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 0.45rem;
  height: 0.45rem;
  background: #34d399;
  border-radius: 50%;
  border: 2px solid rgba(10, 14, 28, 0.95);
  animation: mydrid-dot-pulse 2.2s ease-in-out infinite;
}

.mydrid-island-support-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1rem 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 238, 255, 0.92);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.mydrid-login-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.42rem;
  flex-shrink: 0;
  height: 2.58rem;
  min-height: auto;
  padding: 0 0.88rem 0 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 163, 255, 0.2);
  background: rgba(10, 14, 28, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(230, 238, 255, 0.92);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  box-shadow: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.mydrid-island-support-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-login-cta svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.mydrid-island-support-btn:hover {
  background: rgba(77, 163, 255, 0.14);
  border-color: rgba(77, 163, 255, 0.38);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(77, 163, 255, 0.16);
}

.mydrid-login-cta:hover {
  background: rgba(77, 163, 255, 0.14);
  border-color: rgba(77, 163, 255, 0.38);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(77, 163, 255, 0.16);
}

.mydrid-island-support-btn:hover svg {
  transform: scale(1.12);
}

.mydrid-island-support-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(210, 220, 240, 0.72);
}

.mydrid-island-support-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(230, 238, 255, 0.92);
  box-shadow: none;
}

.mydrid-lang-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.75rem;
  padding: 0 0.8rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(210, 220, 240, 0.75);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-lang-pill .mydrid-flag {
  display: block;
  width: 1.15rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  object-fit: cover;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mydrid-lang-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.mydrid-lang-pill:hover .mydrid-flag {
  transform: scale(1.08);
}

.mydrid-lang-pill.is-active {
  color: #fff;
  background: rgba(77, 163, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.35);
}

@media (max-width: 520px) {
  header.mydrid-header-wrap,
  header.sticky-top {
    padding: 0.75rem 0.75rem 0;
  }

  .mydrid-header-bar {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.45rem;
  }

  .mydrid-island-nav {
    max-width: 100%;
    padding: 0.35rem 0.5rem 0.35rem 0.45rem;
  }

  .mydrid-login-cta {
    padding: 0.35rem 0.85rem 0.35rem 0.7rem;
    font-size: 0.78rem;
  }

  .mydrid-nav-logo-wrap {
    width: 3.35rem;
    height: 2.1rem;
  }

  .mydrid-nav-logo-wrap img {
    width: 280%;
    height: 280%;
    transform: translate(3%, -1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mydrid-island-nav,
  .mydrid-online-dot {
    animation: none !important;
  }

  .mydrid-island-brand,
  .mydrid-island-catalog,
  .mydrid-island-support-btn,
  .mydrid-login-cta,
  .mydrid-lang-pill {
    transition-duration: 0.01ms !important;
  }
}
/* MYDRID_ISLAND_NAV_END */


.mydrid-lang-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.75rem;
  padding: 0 0.8rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(210, 220, 240, 0.75);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.mydrid-lang-pill .mydrid-flag {
  display: block;
  width: 1.15rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

.mydrid-lang-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.mydrid-lang-pill.is-active {
  color: #fff;
  background: rgba(77, 163, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.35);
}



/* MYDRID_CUSTOM_START */
.mydrid-hero .container {
  padding: 6rem 1.5rem 4rem;
}

.mydrid-hero-logo-wrap {
  width: clamp(18rem, 44vw, 28rem);
  height: clamp(12rem, 28vw, 18rem);
  margin: 0 auto -0.35rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.mydrid-hero-logo {
  display: block;
  width: 165%;
  height: 165%;
  max-width: none;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(77, 163, 255, 0.55));
}

.mydrid-hero .content h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem !important;
  background: linear-gradient(135deg, #ffffff 0%, #b8d9ff 55%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mydrid-hero .content p {
  font-size: 1.125rem !important;
  color: rgba(200, 220, 255, 0.75) !important;
  max-width: 480px;
  margin: 0 auto 2rem !important;
  line-height: 1.6;
}

.mydrid-hero .content .btn-primary {
  border-radius: 999px !important;
  padding: 0.875rem 2rem !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  background: linear-gradient(135deg, #4da3ff 0%, #2b6fd4 100%) !important;
  border: none !important;
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.45), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.mydrid-hero .content .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 0 40px rgba(77, 163, 255, 0.6), 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.mydrid-hero .stats-wrapper {
  margin-top: 0.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mydrid-hero .mydrid-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.75rem !important;
  max-width: 520px !important;
  width: 100% !important;
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
}

.mydrid-hero .mydrid-stats > div {
  padding: 1.1rem 0.75rem !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(77, 163, 255, 0.22) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(12px) !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.mydrid-hero .mydrid-stats > div:hover {
  border-color: rgba(77, 163, 255, 0.45) !important;
  background: rgba(77, 163, 255, 0.06) !important;
}

.mydrid-hero .mydrid-stats .value {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  font-variant-numeric: tabular-nums;
  display: block !important;
  text-align: center !important;
}

.mydrid-hero .mydrid-stats .label {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(160, 190, 230, 0.65) !important;
  margin-top: 0.35rem !important;
}

@media (max-width: 480px) {
  .mydrid-hero .mydrid-stats {
    grid-template-columns: 1fr !important;
    max-width: 220px !important;
  }
}

.socials {
  padding-top: 2rem !important;
  padding-bottom: 3rem !important;
}

.socials .section-title h2 {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(160, 190, 230, 0.6) !important;
}

.socials .list {
  gap: 1rem !important;
  max-width: 420px !important;
  margin: 0 auto !important;
}

.socials .list .social {
  border-radius: 14px !important;
  border: 1px solid rgba(77, 163, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  padding: 1rem 1.25rem !important;
  transition: all 0.2s !important;
}

.socials .list .social:hover {
  border-color: rgba(77, 163, 255, 0.5) !important;
  background: rgba(77, 163, 255, 0.08) !important;
  transform: translateY(-2px) !important;
}

.footer {
  border-top: 1px solid rgba(77, 163, 255, 0.12) !important;
}

.footer > .container {
  max-width: 1120px;
}

.footer .row.py-5 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}
/* MYDRID_CUSTOM_END */



/* MYDRID_PRODUCTS_START */
.component[data-component-id="products"] {
  padding-top: 1.5rem !important;
  padding-bottom: 5rem !important;
  position: relative;
  z-index: 2;
}

.component[data-component-id="products"] .section-title,
.component[data-component-id="products"] .section-subtitle {
  justify-content: center !important;
  text-align: center;
}

.component[data-component-id="products"] .section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #b8d9ff 55%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.component[data-component-id="products"] .section-subtitle p {
  color: rgba(180, 200, 230, 0.75) !important;
  font-size: 0.95rem;
  margin: 0 auto;
}

.component[data-component-id="products"] .products {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
  justify-content: center;
}

.component[data-component-id="products"] .card {
  background: rgba(10, 14, 28, 0.72) !important;
  border: 1px solid rgba(77, 163, 255, 0.18) !important;
  border-radius: 1.1rem !important;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.component[data-component-id="products"] .card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 163, 255, 0.38) !important;
  box-shadow: 0 16px 40px rgba(77, 163, 255, 0.14);
}

.component[data-component-id="products"] .card-body {
  color: #e8eef8;
}

.component[data-component-id="products"] .card-title {
  color: #fff !important;
  font-weight: 700;
}

.component[data-component-id="products"] .card-text,
.component[data-component-id="products"] .text-muted {
  color: rgba(180, 200, 230, 0.72) !important;
}

.component[data-component-id="products"] .aspect-product-card-image {
  background: rgba(77, 163, 255, 0.06);
}
/* MYDRID_PRODUCTS_END */

/* MYDRID_WHY_CHOOSE_START */
.component[data-component-id="features"],
.mydrid-why-choose {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 5rem !important;
}

.mydrid-why-choose .container {
  max-width: 920px;
}

.mydrid-why-choose__title {
  margin: 0 0 3.25rem;
  text-align: center;
  font-family: Rajdhani, Inter, sans-serif !important;
  font-size: clamp(2rem, 5vw, 2.75rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #d4e8ff 45%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mydrid-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.mydrid-why-choose__item {
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 1rem;
  border: 1px solid rgba(77, 163, 255, 0.16);
  background: rgba(10, 14, 28, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 18px rgba(77, 163, 255, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.16);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.mydrid-why-choose__item:hover {
  border-color: rgba(77, 163, 255, 0.3);
  background: rgba(10, 14, 28, 0.42);
  box-shadow:
    0 0 24px rgba(77, 163, 255, 0.1),
    0 16px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.mydrid-why-choose__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.mydrid-why-choose__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0a0e1c;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 18px rgba(77, 163, 255, 0.18);
}

.mydrid-why-choose__item-title {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff !important;
  line-height: 1.2;
}

.mydrid-why-choose__desc {
  margin: 0;
  padding-left: 3rem;
  color: rgba(180, 200, 230, 0.72) !important;
  font-size: 0.92rem;
  line-height: 1.65;
}

.mydrid-why-choose__cta {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}

.mydrid-why-choose__cta-text {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(77, 163, 255, 0.16);
  background: rgba(10, 14, 28, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(180, 200, 230, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.06);
}

.mydrid-why-choose__cta-text a {
  color: #4da3ff !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mydrid-why-choose__cta-text a:hover {
  color: #7cbcff !important;
  text-shadow: 0 0 12px rgba(77, 163, 255, 0.35);
}

@media (max-width: 767px) {
  .mydrid-why-choose {
    padding: 3.5rem 0 4rem !important;
  }

  .mydrid-why-choose__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mydrid-why-choose__item {
    padding: 1.15rem 1.2rem 1.25rem;
  }

  .mydrid-why-choose__desc {
    padding-left: 3rem;
  }

  .mydrid-why-choose__cta-text {
    padding: 0.85rem 1.15rem;
    text-align: center;
  }
}

.mydrid-support-banner {
  position: relative;
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(77, 163, 255, 0.12);
  overflow: visible;
  scroll-margin-top: 7rem;
}

.mydrid-support-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 60vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(77, 163, 255, 0.45) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.mydrid-support-banner__glow {
  display: none;
}

.mydrid-support-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 1.25rem 1.1rem 1.4rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(77, 163, 255, 0.28);
  background:
    linear-gradient(105deg, rgba(77, 163, 255, 0.1) 0%, rgba(77, 163, 255, 0.03) 42%, rgba(99, 102, 241, 0.04) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.mydrid-support-banner__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4da3ff 0%, #6366f1 100%);
  box-shadow: 0 0 16px rgba(77, 163, 255, 0.45);
}

.mydrid-support-banner__content {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 0.85rem;
}

.mydrid-support-banner__eyebrow {
  margin: 0 0 0.3rem;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4da3ff;
}

.mydrid-support-banner__title {
  margin: 0 0 0.3rem;
  font-family: Rajdhani, Inter, sans-serif !important;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  line-height: 1.1;
}

.mydrid-support-banner__desc {
  margin: 0;
  max-width: 34rem;
  color: rgba(196, 214, 238, 0.78) !important;
  font-size: 0.82rem;
  line-height: 1.45;
}

.mydrid-support-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-shrink: 0;
}

.mydrid-support-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.mydrid-support-banner__btn svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.mydrid-support-banner__btn--primary {
  position: relative;
  min-height: 2.95rem;
  padding: 0.25rem 1.35rem 0.25rem 0.32rem;
  background: linear-gradient(135deg, #5aadff 0%, #3b82f6 45%, #6366f1 100%);
  border: 1px solid rgba(190, 228, 255, 0.35);
  color: #ffffff !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 10px 28px rgba(77, 163, 255, 0.32),
    0 0 24px rgba(77, 163, 255, 0.18);
  overflow: hidden;
}

.mydrid-support-banner__btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.16) 48%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.mydrid-support-banner__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 14px 34px rgba(77, 163, 255, 0.42),
    0 0 32px rgba(99, 102, 241, 0.22);
  color: #ffffff !important;
}

.mydrid-support-banner__btn--primary:hover::after {
  transform: translateX(120%);
}

.mydrid-support-banner__btn--primary svg {
  width: 2rem;
  height: 2rem;
  padding: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mydrid-support-banner__btn--secondary {
  position: relative;
  min-height: 2.95rem;
  padding: 0.25rem 1.35rem 0.25rem 0.32rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(235, 242, 255, 0.92) !important;
}

.mydrid-support-banner__btn--secondary svg {
  width: 2rem;
  height: 2rem;
  padding: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.mydrid-support-banner__btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.08);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(77, 163, 255, 0.12);
}

@media (max-width: 767px) {
  .mydrid-support-banner {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
  }

  .mydrid-support-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
  }

  .mydrid-support-banner__inner::before {
    top: 0.75rem;
    bottom: auto;
    width: 2.5rem;
    height: 3px;
    left: 1rem;
    right: auto;
  }

  .mydrid-support-banner__content {
    padding-left: 0;
    padding-top: 0.55rem;
  }

  .mydrid-support-banner__actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .mydrid-support-banner__btn {
    width: 100%;
  }
}
/* MYDRID_WHY_CHOOSE_END */

.btn-primary:not(.variant) {
  background: linear-gradient(180deg, #4da3ff 0%, #2b6fd4 100%) !important;
  border-color: #4da3ff !important;
}

/* MYDRID_PRODUCT_PAGE_START вЂ” live target: assets/custom.css on theme 235148 */

/* Hide quantity вЂ” Alpine keeps quantity at 1 */
.product-wrapper .mb-3.col-12:has(> label[for="quantity"]) {
  display: none !important;
}

.product-wrapper .buy-buttons .mydrid-buy-now-btn {
  width: 100%;
}

.product-wrapper {
  position: relative;
}

.product-wrapper .py-5-nav {
  padding-top: 2rem !important;
  padding-bottom: 3rem !important;
}

.product-wrapper .col-lg-6:last-child > div[x-data="productForm"] {
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(77, 163, 255, 0.18);
  background: linear-gradient(
    155deg,
    rgba(18, 24, 38, 0.88) 0%,
    rgba(10, 14, 24, 0.72) 100%
  );
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(77, 163, 255, 0.04);
}

.product-wrapper h1.display-6 {
  font-family: Rajdhani, Inter, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.45rem !important;
  background: linear-gradient(135deg, #ffffff 0%, #b8dcff 45%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.sc-pdp h1.display-6 {
  font-size: 1.85rem !important;
}

.product-wrapper .fs-5,
.product-wrapper .fs-5 span {
  font-family: "JetBrains Mono", ui-monospace, monospace !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #4da3ff !important;
  text-shadow: 0 0 20px rgba(77, 163, 255, 0.35);
}

.mydrid-product-price-block {
  margin-top: 0.35rem;
}

.mydrid-product-price-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160, 174, 198, 0.72);
  margin-bottom: 0.375rem;
}

.mydrid-product-price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mydrid-product-price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #4da3ff 0%, #67e8f9 55%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(77, 163, 255, 0.28));
}

.product-wrapper .variants .stock,
.product-wrapper .stock-indicator {
  display: none !important;
}

.product-wrapper .stock-indicator.btn-outline-danger {
  border-radius: 999px !important;
  border: 1px solid rgba(248, 113, 113, 0.45) !important;
  background: rgba(248, 113, 113, 0.12) !important;
  color: #fecaca !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem !important;
}

.product-wrapper .stock-indicator.btn-outline-primary {
  border-radius: 999px !important;
  border: 1px solid rgba(52, 211, 153, 0.35) !important;
  background: rgba(52, 211, 153, 0.1) !important;
  color: #a7f3d0 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-wrapper .mydrid-product-gallery {
  overflow: visible !important;
}

.product-wrapper .mydrid-product-gallery .carousel-inner {
  border-radius: 16px !important;
  border: 1px solid rgba(77, 163, 255, 0.38) !important;
  box-shadow:
    0 0 28px rgba(77, 163, 255, 0.32),
    0 0 48px rgba(77, 163, 255, 0.14),
    0 8px 24px rgba(77, 163, 255, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.45) !important;
  transition: box-shadow 0.2s ease, border-color 0.2s ease !important;
  cursor: zoom-in;
}

.product-wrapper .mydrid-product-gallery:hover .carousel-inner {
  border-color: rgba(77, 163, 255, 0.55) !important;
  box-shadow:
    0 0 36px rgba(77, 163, 255, 0.42),
    0 0 64px rgba(77, 163, 255, 0.18),
    0 10px 28px rgba(77, 163, 255, 0.22),
    0 20px 48px rgba(0, 0, 0, 0.5) !important;
}

.product-wrapper .carousel img,
.product-wrapper .card-img-top {
  border-radius: 16px !important;
  border: 1px solid rgba(77, 163, 255, 0.22) !important;
  box-shadow:
    0 0 14px rgba(77, 163, 255, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.45) !important;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease !important;
  cursor: zoom-in;
}

.product-wrapper .mydrid-product-gallery .carousel img {
  border: none !important;
  box-shadow: none !important;
}

.product-wrapper .mydrid-product-gallery:hover .carousel-item.active img {
  transform: scale(1.005);
}

.product-wrapper .card-img-top.mydrid-gallery-open,
.product-wrapper .card-img-top {
  box-shadow:
    0 0 22px rgba(77, 163, 255, 0.24),
    0 8px 24px rgba(77, 163, 255, 0.14),
    0 16px 40px rgba(0, 0, 0, 0.45) !important;
}

.product-wrapper .card-img-top:hover {
  border-color: rgba(77, 163, 255, 0.45) !important;
  box-shadow:
    0 0 28px rgba(77, 163, 255, 0.32),
    0 10px 28px rgba(77, 163, 255, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.5) !important;
}

.product-wrapper .carousel:hover img {
  transform: scale(1.005);
  box-shadow:
    0 0 18px rgba(77, 163, 255, 0.16),
    0 20px 48px rgba(0, 0, 0, 0.5) !important;
}

.mydrid-lightbox-open {
  overflow: hidden;
}

.mydrid-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.mydrid-image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.92);
  backdrop-filter: blur(8px);
}

.mydrid-image-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mydrid-image-lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1200px);
  max-height: calc(100vh - 3rem);
  border-radius: 16px;
  border: 1px solid rgba(77, 163, 255, 0.35);
  box-shadow:
    0 0 32px rgba(77, 163, 255, 0.28),
    0 24px 64px rgba(0, 0, 0, 0.65);
  object-fit: contain;
}

.product-wrapper .thumbnails {
  gap: 0.65rem !important;
}

.product-wrapper .thumbnails button {
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 0 14px rgba(77, 163, 255, 0.1) !important;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.product-wrapper .thumbnails button img {
  display: block;
}

.product-wrapper .thumbnails button.active,
.product-wrapper .thumbnails button:hover {
  opacity: 1 !important;
  border-color: rgba(77, 163, 255, 0.55) !important;
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(77, 163, 255, 0.24),
    0 8px 20px rgba(77, 163, 255, 0.18) !important;
}

.mydrid-product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mydrid-info-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.mydrid-info-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(77, 163, 255, 0.16);
  background: rgba(8, 12, 22, 0.88);
  color: #8b9bb4;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mydrid-info-tab-label {
  text-align: center;
}

.mydrid-tab-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.15rem;
  color: #7ec4ff;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mydrid-tab-chevron svg {
  width: 0.95rem;
  height: 0.95rem;
}

.mydrid-tab-chevron.open {
  transform: rotate(180deg);
}

.mydrid-info-tab:hover {
  border-color: rgba(77, 163, 255, 0.32);
  color: #d7e6ff;
}

.mydrid-info-tab.active {
  border-color: rgba(77, 163, 255, 0.42);
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.18) 0%, rgba(43, 111, 212, 0.12) 100%);
  color: #f3f7ff;
  box-shadow: 0 8px 24px rgba(77, 163, 255, 0.12);
}

.mydrid-info-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: #7ec4ff;
  flex-shrink: 0;
}

.mydrid-info-tab-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mydrid-info-toggle {
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.mydrid-info-toggle .mydrid-info-title {
  flex: 1;
}

.mydrid-info-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  color: #7ec4ff;
  transition: transform 0.2s ease;
}

.mydrid-info-chevron svg {
  width: 1rem;
  height: 1rem;
}

.mydrid-info-chevron.open {
  transform: rotate(180deg);
}

.mydrid-info-toggle-compact {
  justify-content: center;
  min-height: 1.75rem;
  margin-bottom: 0.35rem;
}

.mydrid-info-toggle-compact .mydrid-info-chevron {
  margin-left: 0;
}

.mydrid-info-collapse {
  padding-top: 0.15rem;
}

.mydrid-features-body {
  padding-top: 0.15rem;
}

.mydrid-product-features {
  min-height: 12rem;
}

.mydrid-feat-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.15rem;
}

@media (min-width: 992px) {
  .mydrid-feat-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }
}

.mydrid-feat-group {
  position: relative;
  padding: 1rem 1rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(24, 32, 52, 0.92) 0%,
    rgba(12, 16, 28, 0.88) 100%
  );
  border: 1px solid rgba(77, 163, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mydrid-feat-group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mydrid-feat-accent, #4da3ff);
}

.mydrid-feat-group--combat {
  --mydrid-feat-accent: linear-gradient(90deg, #4da3ff 0%, #6366f1 100%);
}

.mydrid-feat-group--combat::before {
  background: linear-gradient(90deg, #4da3ff 0%, #6366f1 100%);
}

.mydrid-feat-group--visual {
  --mydrid-feat-accent: linear-gradient(90deg, #7c6bff 0%, #a855f7 100%);
}

.mydrid-feat-group--visual::before {
  background: linear-gradient(90deg, #7c6bff 0%, #a855f7 100%);
}

.mydrid-feat-group--world {
  --mydrid-feat-accent: linear-gradient(90deg, #38bdf8 0%, #22d3ee 100%);
}

.mydrid-feat-group--world::before {
  background: linear-gradient(90deg, #38bdf8 0%, #22d3ee 100%);
}

.mydrid-feat-group-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(235, 244, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-feat-group--combat .mydrid-feat-group-label {
  color: #b8d9ff;
  border-color: rgba(77, 163, 255, 0.22);
  background: rgba(77, 163, 255, 0.1);
}

.mydrid-feat-group--visual .mydrid-feat-group-label {
  color: #d4c9ff;
  border-color: rgba(124, 107, 255, 0.24);
  background: rgba(124, 107, 255, 0.1);
}

.mydrid-feat-group--world .mydrid-feat-group-label {
  color: #b8ecff;
  border-color: rgba(56, 189, 248, 0.24);
  background: rgba(56, 189, 248, 0.1);
}

.mydrid-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 22rem;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(77, 163, 255, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
}

.mydrid-feat-list li {
  position: relative;
  padding: 0.42rem 0 0.42rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(220, 230, 248, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mydrid-feat-list li:last-child {
  border-bottom: none;
}

.mydrid-feat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(126, 196, 255, 0.75);
  box-shadow: 0 0 6px rgba(77, 163, 255, 0.45);
}

.mydrid-feat-group--visual .mydrid-feat-list li::before {
  background: rgba(180, 160, 255, 0.85);
  box-shadow: 0 0 6px rgba(124, 107, 255, 0.4);
}

.mydrid-feat-group--world .mydrid-feat-list li::before {
  background: rgba(110, 220, 255, 0.85);
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.4);
}

.mydrid-feat-list li span {
  display: inline;
}

.mydrid-product-features .editor > p,
.mydrid-product-features .editor .e-paragraph {
  display: none;
}

.mydrid-info-panel {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(77, 163, 255, 0.18);
  background: linear-gradient(
    155deg,
    rgba(18, 24, 38, 0.88) 0%,
    rgba(10, 14, 24, 0.72) 100%
  );
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mydrid-spec-panel {
  padding: 1.35rem 1.4rem 1.1rem;
  background: linear-gradient(
    180deg,
    rgba(22, 32, 52, 0.95) 0%,
    rgba(10, 14, 24, 0.92) 100%
  );
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mydrid-info-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mydrid-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.22) 0%, rgba(43, 111, 212, 0.14) 100%);
  border: 1px solid rgba(77, 163, 255, 0.28);
  color: #7ec4ff;
  flex-shrink: 0;
}

.mydrid-info-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.mydrid-spec-panel .mydrid-info-title {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #f3f7ff;
  margin: 0;
}

.mydrid-info-title {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b9bb4;
  margin: 0 0 0.85rem;
}

.mydrid-spec-list {
  display: flex;
  flex-direction: column;
}

.mydrid-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(77, 163, 255, 0.1);
}

.mydrid-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0.15rem;
}

.mydrid-spec-label {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #7f93b0;
}

.mydrid-spec-value {
  font-family: Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f5f8ff;
  text-align: right;
}

.mydrid-spec-panel .mydrid-info-body p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(77, 163, 255, 0.1);
  color: inherit;
  font-size: inherit;
  line-height: 1.4;
}

.mydrid-spec-panel .mydrid-info-body p:last-child {
  border-bottom: none;
  padding-bottom: 0.15rem;
}

.mydrid-spec-panel .mydrid-info-body p::before {
  content: attr(data-label);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #7f93b0;
}

.mydrid-spec-panel .mydrid-info-body .mydrid-spec-list p::before {
  content: none;
}

.mydrid-info-body {
  color: #c8d4e8;
  font-size: 0.92rem;
  line-height: 1.65;
}

.mydrid-info-body p {
  margin-bottom: 0.65rem;
}

.mydrid-info-body p:last-child {
  margin-bottom: 0;
}

.mydrid-info-body a {
  color: #4da3ff;
  text-decoration: none;
}

.mydrid-info-body a:hover {
  text-decoration: underline;
}

.product-wrapper .form-label {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b9bb4 !important;
}

.product-wrapper .variants {
  gap: 0.65rem !important;
}

.product-wrapper .variants .variant.btn-primary {
  --bs-btn-bg: rgba(8, 12, 22, 0.85);
  --bs-btn-border-color: rgba(148, 163, 184, 0.18);
  --bs-btn-hover-bg: rgba(12, 18, 30, 0.95);
  --bs-btn-hover-border-color: rgba(77, 163, 255, 0.35);
  --bs-btn-active-bg: rgba(12, 18, 30, 0.95);
  --bs-btn-active-border-color: rgba(77, 163, 255, 0.65);
  --bs-btn-disabled-bg: rgba(8, 12, 22, 0.55);
  --bs-btn-disabled-border-color: rgba(148, 163, 184, 0.12);
  color: #e8eef7 !important;
  border-radius: 14px !important;
  background: rgba(8, 12, 22, 0.85) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  padding: 0.85rem 1rem !important;
  box-shadow: 0 0 14px rgba(77, 163, 255, 0.1) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
}

.product-wrapper .variants .variant.btn-primary:not(.active):hover:not(:disabled) {
  border-color: rgba(77, 163, 255, 0.35) !important;
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(77, 163, 255, 0.16),
    0 10px 24px rgba(77, 163, 255, 0.1) !important;
}

.product-wrapper .variants .variant.btn-primary.active {
  border-color: rgba(77, 163, 255, 0.65) !important;
  background: linear-gradient(
    135deg,
    rgba(77, 163, 255, 0.18) 0%,
    rgba(43, 111, 212, 0.12) 55%,
    rgba(139, 92, 246, 0.1) 100%
  ) !important;
  box-shadow:
    0 0 0 1px rgba(77, 163, 255, 0.15),
    0 0 22px rgba(77, 163, 255, 0.24),
    0 12px 32px rgba(77, 163, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.product-wrapper .variants .variant .name {
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700 !important;
  color: #e8eef7 !important;
}

.product-wrapper .variants .variant .price {
  background: rgba(77, 163, 255, 0.1) !important;
  border: 1px solid rgba(77, 163, 255, 0.2) !important;
  color: #cfe8ff !important;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  border-radius: 10px !important;
}

.product-wrapper .input-group .form-control {
  background: rgba(8, 12, 22, 0.9) !important;
  border: 1px solid rgba(77, 163, 255, 0.25) !important;
  color: #e8eef7 !important;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600;
  text-align: center;
}

.product-wrapper .input-group .input-group-btn {
  background: rgba(18, 24, 38, 0.9) !important;
  border: 1px solid rgba(77, 163, 255, 0.25) !important;
  color: #4da3ff !important;
}

.product-wrapper .buy-buttons {
  position: relative;
  z-index: 5;
}

.product-wrapper .buy-buttons button {
  pointer-events: auto !important;
  position: relative;
  z-index: 6;
}

.product-wrapper .buy-buttons .btn-primary,
.product-wrapper .buy-buttons .btn-outline-primary {
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: linear-gradient(135deg, #4da3ff 0%, #2b6fd4 52%, #6366f1 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.25rem !important;
  box-shadow: 0 12px 32px rgba(77, 163, 255, 0.32) !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
}

.product-wrapper .buy-buttons .btn-primary:hover:not(:disabled),
.product-wrapper .buy-buttons .btn-outline-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(77, 163, 255, 0.42) !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #5aadff 0%, #3578e0 52%, #7577f5 100%) !important;
}

.product-wrapper .buy-buttons .btn-primary:disabled,
.product-wrapper .buy-buttons .btn-outline-primary:disabled {
  opacity: 0.72 !important;
  filter: saturate(0.55) brightness(0.85);
  box-shadow: 0 6px 18px rgba(77, 163, 255, 0.15) !important;
  cursor: not-allowed;
}

.product-wrapper .buy-buttons .col:only-child {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .product-wrapper .col-lg-6:last-child > div[x-data="productForm"] {
    margin-top: 1.5rem;
    padding: 1.25rem;
  }
}

/* Login modal — Mydrid branded */
.mydrid-login-modal {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  margin: 0 !important;
  z-index: 10055;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mydrid-login-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mydrid-login-modal.is-open .mydrid-login-modal__dialog {
  animation: mydridPayModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.mydrid-login-modal-open,
html.mydrid-login-modal-open {
  overflow: hidden;
}

.mydrid-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.1) 0%, transparent 45%),
    rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(8px);
}

.mydrid-login-modal__dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 1.75rem 1.5rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.14) 0%, rgba(10, 10, 15, 0) 42%),
    rgba(12, 16, 28, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  color: #e8eef8;
  overflow: hidden;
  z-index: 1;
}

.mydrid-login-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mydrid-login-modal__close svg {
  width: 1rem;
  height: 1rem;
}

.mydrid-login-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 163, 255, 0.35);
  color: #fff;
}

.mydrid-login-modal__head {
  padding-right: 2rem;
  margin-bottom: 1.35rem;
}

.mydrid-login-modal__label {
  display: block;
  margin-bottom: 0.45rem;
  color: #4da3ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mydrid-login-modal__title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.mydrid-login-modal__desc {
  margin: 0;
  color: rgba(196, 214, 238, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

.mydrid-login-modal__body {
  padding: 0;
}

.mydrid-login-modal__field-label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(232, 238, 248, 0.92);
  font-size: 0.88rem;
  font-weight: 600;
}

.mydrid-login-modal__hint {
  margin: 0 0 0.75rem;
  color: rgba(196, 214, 238, 0.68);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mydrid-login-modal__input,
.mydrid-login-modal__otp-input {
  margin-bottom: 0.85rem;
}
  width: 100%;
  min-height: 2.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: none;
}

.mydrid-login-modal__input::placeholder {
  color: rgba(196, 214, 238, 0.42);
}

.mydrid-login-modal__input:focus,
.mydrid-login-modal__otp-input:focus {
  border-color: rgba(77, 163, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.12);
  color: #fff;
}

.mydrid-login-modal__otp {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.mydrid-login-modal__otp-single {
  margin-top: 0.35rem;
  min-height: 3.2rem;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
}

.mydrid-altcha-hidden {
  position: fixed;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.mydrid-login-modal__altcha {
  margin-top: 0.85rem;
}

.mydrid-login-modal__error {
  margin: 0.65rem 0 0;
  color: #ff7b7b;
  font-size: 0.82rem;
}

.mydrid-login-modal__hint--warn {
  margin-top: 0.55rem;
  color: #ffb347;
}

.mydrid-login-modal__hint--ok {
  margin-top: 0.45rem;
  color: #7dffb2;
}

.mydrid-login-modal__submit {
  width: 100%;
  margin-top: 1.1rem;
  padding: 0.92rem 1rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #4da3ff 0%, #2b6fd4 48%, #6366f1 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(77, 163, 255, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}

.mydrid-login-modal__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.mydrid-account-panel {
  scroll-margin-top: 7rem;
  padding: 0 0 2.5rem;
}

.mydrid-ticket-modal {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  margin: 0 !important;
  z-index: 10056;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mydrid-ticket-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mydrid-ticket-modal.is-open .mydrid-ticket-modal__dialog {
  animation: mydridPayModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mydrid-ticket-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.1) 0%, transparent 45%),
    rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(8px);
}

.mydrid-ticket-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(92dvh, 760px);
  overflow: auto;
  padding: 1.75rem 1.5rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.14) 0%, rgba(10, 10, 15, 0) 42%),
    rgba(12, 16, 28, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  color: #e8eef8;
  pointer-events: auto;
}

.mydrid-ticket-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mydrid-ticket-modal__close:hover {
  color: #fff;
  border-color: rgba(77, 163, 255, 0.45);
  background: rgba(77, 163, 255, 0.12);
}

.mydrid-ticket-modal__head {
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.mydrid-ticket-modal__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #4da3ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mydrid-ticket-modal__title {
  margin: 0;
  color: #f4f8ff;
  font-size: 1.35rem;
  font-weight: 700;
}

.mydrid-ticket-modal__body {
  display: grid;
  gap: 0.85rem;
}

.mydrid-ticket-modal__field {
  display: grid;
  gap: 0.35rem;
}

.mydrid-ticket-modal__field-label {
  color: rgba(210, 220, 240, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.mydrid-ticket-modal__input,
.mydrid-ticket-modal__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  font-size: 0.92rem;
  padding: 0.72rem 0.85rem;
  pointer-events: auto;
}

.mydrid-ticket-modal__textarea {
  resize: vertical;
  min-height: 140px;
}

.mydrid-ticket-modal__input:focus,
.mydrid-ticket-modal__textarea:focus {
  outline: none;
  border-color: rgba(77, 163, 255, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(77, 163, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.mydrid-ticket-modal__input:disabled {
  opacity: 0.72;
}

.mydrid-ticket-modal__hint {
  margin: 0.35rem 0 0;
  color: rgba(210, 220, 240, 0.55);
  font-size: 0.76rem;
  line-height: 1.45;
}

.mydrid-ticket-modal__hint a {
  color: rgba(120, 190, 255, 0.95);
  text-decoration: none;
  font-weight: 600;
}

.mydrid-ticket-modal__hint a:hover {
  text-decoration: underline;
}

.mydrid-ticket-modal__error {
  margin: 0;
  color: #ff8a8a;
  font-size: 0.82rem;
}

.mydrid-ticket-modal__submit {
  width: 100%;
  margin-top: 0.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.85), rgba(77, 163, 255, 0.55));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.82rem 1rem;
  cursor: pointer;
}

.mydrid-ticket-modal__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

html.wc-cursor-on .mydrid-ticket-modal.is-open,
html.wc-cursor-on .mydrid-ticket-modal.is-open * {
  cursor: auto !important;
}

.mydrid-admin-tickets__gate {
  display: flex;
  justify-content: center;
  padding: 2rem 0 4rem;
}

.mydrid-admin-tickets__gate-card,
.mydrid-admin-tickets__shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.12) 0%, rgba(10, 10, 15, 0) 55%),
    rgba(12, 16, 28, 0.92);
}

.mydrid-admin-tickets__gate-card {
  width: min(100%, 420px);
  padding: 1.5rem;
}

.mydrid-admin-tickets__shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: 72vh;
  overflow: hidden;
}

.mydrid-admin-tickets__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: #4da3ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mydrid-admin-tickets__title {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
}

.mydrid-admin-tickets__subtitle {
  margin: 0.5rem 0 1rem;
  color: rgba(210, 220, 240, 0.68);
  font-size: 0.88rem;
}

.mydrid-admin-tickets__sidebar,
.mydrid-admin-tickets__main {
  min-height: 0;
}

.mydrid-admin-tickets__sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.mydrid-admin-tickets__sidebar-head,
.mydrid-admin-tickets__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-admin-tickets__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-admin-tickets__filter {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.mydrid-admin-tickets__filter.is-active {
  border-color: rgba(77, 163, 255, 0.45);
  background: rgba(77, 163, 255, 0.16);
  color: #fff;
}

.mydrid-admin-tickets__list {
  flex: 1;
  overflow: auto;
  padding: 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.mydrid-admin-tickets__item {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: #eef4ff;
  padding: 0.8rem;
  cursor: pointer;
}

.mydrid-admin-tickets__item.is-active,
.mydrid-admin-tickets__item:hover {
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.08);
}

.mydrid-admin-tickets__item-top,
.mydrid-admin-tickets__item-meta,
.mydrid-admin-tickets__panel-meta,
.mydrid-admin-tickets__panel-actions,
.mydrid-admin-tickets__message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.mydrid-admin-tickets__item-top strong,
.mydrid-admin-tickets__panel-title {
  color: #f4f8ff;
  font-size: 0.95rem;
}

.mydrid-admin-tickets__item-meta,
.mydrid-admin-tickets__panel-meta {
  margin-top: 0.35rem;
  color: rgba(210, 220, 240, 0.58);
  font-size: 0.74rem;
}

.mydrid-admin-tickets__item-preview {
  margin: 0.45rem 0 0;
  color: rgba(210, 220, 240, 0.72);
  font-size: 0.78rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mydrid-admin-tickets__main {
  display: flex;
  flex-direction: column;
}

.mydrid-admin-tickets__panel,
.mydrid-admin-tickets__placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mydrid-admin-tickets__placeholder {
  align-items: center;
  justify-content: center;
  color: rgba(210, 220, 240, 0.62);
}

.mydrid-admin-tickets__messages {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.mydrid-admin-tickets__message {
  max-width: 85%;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-admin-tickets__message.is-customer {
  justify-self: start;
  background: rgba(255, 255, 255, 0.04);
}

.mydrid-admin-tickets__message.is-staff {
  justify-self: end;
  background: rgba(77, 163, 255, 0.12);
  border-color: rgba(77, 163, 255, 0.22);
}

.mydrid-admin-tickets__message-head {
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  color: rgba(210, 220, 240, 0.62);
}

.mydrid-admin-tickets__message-body {
  color: #eef4ff;
  font-size: 0.88rem;
  white-space: pre-wrap;
}

.mydrid-admin-tickets__reply,
.mydrid-admin-tickets__closed {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.mydrid-admin-tickets__field {
  display: grid;
  gap: 0.35rem;
}

.mydrid-admin-tickets__field span {
  color: rgba(210, 220, 240, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.mydrid-admin-tickets__input,
.mydrid-admin-tickets__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #eef4ff;
  font-size: 0.92rem;
  padding: 0.72rem 0.85rem;
}

.mydrid-admin-tickets__textarea {
  resize: vertical;
  min-height: 120px;
}

.mydrid-admin-tickets__btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.mydrid-admin-tickets__btn--primary {
  border-color: rgba(77, 163, 255, 0.35);
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.28), rgba(77, 163, 255, 0.12));
  color: #fff;
}

.mydrid-admin-tickets__btn--ghost {
  color: rgba(255, 160, 160, 0.92);
}

.mydrid-admin-tickets__badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mydrid-admin-tickets__badge.is-open {
  background: rgba(77, 163, 255, 0.18);
  color: #9ccfff;
}

.mydrid-admin-tickets__badge.is-pending {
  background: rgba(255, 193, 77, 0.18);
  color: #ffd27a;
}

.mydrid-admin-tickets__badge.is-closed {
  background: rgba(88, 214, 141, 0.18);
  color: #8ef0b3;
}

.mydrid-admin-tickets__notice,
.mydrid-admin-tickets__error,
.mydrid-admin-tickets__empty {
  color: rgba(210, 220, 240, 0.72);
  font-size: 0.84rem;
}

.mydrid-admin-tickets__notice--error,
.mydrid-admin-tickets__error {
  color: #ff9a9a;
}

html.wc-cursor-on .mydrid-admin-tickets,
html.wc-cursor-on .mydrid-admin-tickets * {
  cursor: auto !important;
}

@media (max-width: 991px) {
  .mydrid-admin-tickets__shell {
    grid-template-columns: 1fr;
  }

  .mydrid-admin-tickets__sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 42vh;
  }
}

.mydrid-lk-page {
  padding-top: 0.5rem;
}

.mydrid-lk-page .mydrid-lk {
  padding-bottom: 0;
}

.mydrid-lk {
  scroll-margin-top: 7rem;
  padding: 0 0 3rem;
}

.mydrid-lk__shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.mydrid-lk__sidebar {
  position: sticky;
  top: 6.5rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.1) 0%, rgba(10, 10, 15, 0) 55%),
    rgba(12, 16, 28, 0.92);
}

.mydrid-lk__user {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mydrid-lk__avatar {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #4da3ff;
  background: rgba(77, 163, 255, 0.12);
  border: 1px solid rgba(77, 163, 255, 0.25);
}

.mydrid-lk__user-label {
  margin: 0;
  color: rgba(210, 220, 240, 0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mydrid-lk__user-email {
  margin: 0.15rem 0 0;
  color: #f4f8ff;
  font-size: 0.86rem;
  word-break: break-word;
}

.mydrid-lk__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mydrid-lk__nav-btn,
.mydrid-lk__nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(220, 230, 245, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mydrid-lk__nav-btn:hover,
.mydrid-lk__nav-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.mydrid-lk__nav-btn.is-active {
  background: rgba(77, 163, 255, 0.14);
  border-color: rgba(77, 163, 255, 0.28);
  color: #9ccfff;
}

.mydrid-lk__nav-btn--logout {
  margin-top: 0.35rem;
  color: #ff9a9a;
}

.mydrid-lk__main {
  min-width: 0;
}

.mydrid-lk__mobile-tabs {
  display: none;
  gap: 0.45rem;
  overflow-x: auto;
  margin-bottom: 0.85rem;
  padding-bottom: 0.15rem;
}

.mydrid-lk__mobile-tab {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(220, 230, 245, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.mydrid-lk__mobile-tab.is-active {
  background: rgba(77, 163, 255, 0.16);
  border-color: rgba(77, 163, 255, 0.35);
  color: #9ccfff;
}

.mydrid-lk__panel {
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.08) 0%, rgba(10, 10, 15, 0) 55%),
    rgba(12, 16, 28, 0.92);
}

.mydrid-lk__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mydrid-lk__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  color: #4da3ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mydrid-lk__title {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
}

.mydrid-lk__subtitle {
  margin: 0.35rem 0 0;
  color: rgba(210, 220, 240, 0.68);
  font-size: 0.88rem;
}

.mydrid-lk__refresh {
  flex-shrink: 0;
  border: 1px solid rgba(77, 163, 255, 0.28);
  border-radius: 12px;
  background: rgba(77, 163, 255, 0.1);
  color: #9ccfff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.mydrid-lk__refresh:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.mydrid-lk__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mydrid-lk__stat {
  padding: 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.mydrid-lk__stat-label {
  display: block;
  margin-bottom: 0.3rem;
  color: rgba(210, 220, 240, 0.65);
  font-size: 0.76rem;
}

.mydrid-lk__stat-value {
  color: #f4f8ff;
  font-size: 1.05rem;
}

.mydrid-lk__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mydrid-lk__quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 242, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  cursor: pointer;
}

.mydrid-lk__quick-btn--primary {
  border-color: rgba(77, 163, 255, 0.35);
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.28), rgba(77, 163, 255, 0.12));
  color: #fff;
}

.mydrid-lk__table-wrap {
  overflow-x: auto;
}

.mydrid-lk__table-wrap--spaced {
  margin-top: 1.15rem;
}

.mydrid-lk__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.mydrid-lk__table th,
.mydrid-lk__table td {
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.mydrid-lk__table th {
  color: rgba(210, 220, 240, 0.65);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mydrid-lk__table td {
  color: rgba(235, 242, 255, 0.92);
}

.mydrid-lk__key {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #b9dcff;
  font-size: 0.78rem;
}

.mydrid-lk__copy,
.mydrid-lk__link,
.mydrid-lk__link-btn {
  border: 0;
  background: transparent;
  color: #4da3ff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0;
  margin-right: 0.55rem;
  cursor: pointer;
  text-decoration: none;
}

.mydrid-lk__status {
  display: block;
  text-transform: capitalize;
}

.mydrid-lk__muted {
  display: block;
  margin-top: 0.15rem;
  color: rgba(210, 220, 240, 0.55);
  font-size: 0.74rem;
}

.mydrid-lk__notice {
  margin-bottom: 0.75rem;
  color: rgba(210, 220, 240, 0.75);
  font-size: 0.86rem;
}

.mydrid-lk__notice--error {
  color: #ff9a9a;
}

.mydrid-lk__notice--ok {
  color: #8dffb0;
}

.mydrid-lk__empty {
  padding: 1.5rem 0.5rem;
  text-align: center;
  color: rgba(210, 220, 240, 0.72);
}

.mydrid-lk__settings {
  display: grid;
  gap: 0.85rem;
  max-width: 420px;
}

.mydrid-lk__field {
  display: grid;
  gap: 0.35rem;
}

.mydrid-lk__field span {
  color: rgba(210, 220, 240, 0.72);
  font-size: 0.8rem;
}

.mydrid-lk__field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: #f4f8ff;
  font-size: 0.88rem;
  padding: 0.65rem 0.75rem;
}

.mydrid-lk__password-block {
  display: grid;
  gap: 0.75rem;
}

@media (max-width: 991px) {
  .mydrid-lk__shell {
    grid-template-columns: 1fr;
  }

  .mydrid-lk__sidebar {
    display: none;
  }

  .mydrid-lk__mobile-tabs {
    display: flex;
  }
}

@media (max-width: 640px) {
  .mydrid-lk__head {
    flex-direction: column;
  }

  .mydrid-lk__key {
    max-width: 120px;
  }
}

.mydrid-account-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mydrid-account-panel__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #4da3ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mydrid-account-panel__title {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
}

.mydrid-account-panel__email {
  margin: 0.35rem 0 0;
  color: rgba(210, 220, 240, 0.72);
  font-size: 0.92rem;
}

.mydrid-account-panel__logout {
  flex-shrink: 0;
  border: 1px solid rgba(255, 123, 123, 0.35);
  border-radius: 12px;
  background: rgba(255, 123, 123, 0.08);
  color: #ff9a9a;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.mydrid-account-panel__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.mydrid-account-panel__stat {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.12) 0%, rgba(10, 10, 15, 0) 55%),
    rgba(12, 16, 28, 0.88);
}

.mydrid-account-panel__stat-label {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(210, 220, 240, 0.65);
  font-size: 0.78rem;
}

.mydrid-account-panel__stat-value {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.mydrid-account-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mydrid-account-panel__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(230, 238, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.mydrid-account-panel__action:hover {
  transform: translateY(-1px);
  border-color: rgba(77, 163, 255, 0.35);
  color: #fff;
}

.mydrid-account-panel__action--primary {
  border-color: rgba(77, 163, 255, 0.45);
  background: linear-gradient(135deg, rgba(77, 163, 255, 0.22) 0%, rgba(99, 102, 241, 0.18) 100%);
  color: #fff;
}

@media (max-width: 640px) {
  .mydrid-account-panel__head {
    flex-direction: column;
  }

  .mydrid-account-panel__logout {
    width: 100%;
  }
}

.mydrid-login-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.mydrid-login-modal__back {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(196, 214, 238, 0.72);
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.mydrid-login-modal__back:hover {
  color: #4da3ff;
}

.mydrid-login-modal__footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.mydrid-login-modal__footer p {
  margin: 0;
  color: rgba(196, 214, 238, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.mydrid-login-modal__footer-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(77, 163, 255, 0.45);
  border-radius: 999px;
  background: rgba(77, 163, 255, 0.12);
  color: #4da3ff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mydrid-login-modal__footer-btn:hover {
  color: #fff;
  background: rgba(77, 163, 255, 0.28);
  border-color: rgba(77, 163, 255, 0.65);
  transform: translateY(-1px);
}

.mydrid-login-modal__footer span {
  color: #4da3ff;
}

/* Payment region modal вЂ” Mydrid branded */
.mydrid-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mydrid-pay-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.mydrid-pay-modal.is-open .mydrid-pay-modal__dialog {
  animation: mydridPayModalIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes mydridPayModalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mydrid-pay-modal-open {
  overflow: hidden;
}

.mydrid-pay-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.1) 0%, transparent 45%),
    rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(8px);
}

.mydrid-pay-modal__dialog {
  position: relative;
  width: min(100%, 440px);
  padding: 1.35rem 1.25rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 163, 255, 0.14) 0%, rgba(10, 10, 15, 0) 42%),
    rgba(18, 24, 38, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 8px 32px rgba(0, 0, 0, 0.35);
  color: #e8eef8;
  overflow: hidden;
}

.mydrid-pay-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mydrid-pay-modal__close:hover {
  background: rgba(255, 92, 92, 0.12);
  border-color: rgba(255, 92, 92, 0.35);
  color: #ffb4b4;
}

.mydrid-pay-modal__head {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
  padding-right: 2rem;
}

.mydrid-pay-modal__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.mydrid-pay-modal__brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #4da3ff 0%, #2b6fd4 100%);
  box-shadow: 0 0 16px rgba(77, 163, 255, 0.45);
}

.mydrid-pay-modal__brand-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: none;
  color: rgba(77, 163, 255, 0.85);
  font-weight: 600;
}

.mydrid-pay-modal__title {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #b8dcff 55%, #4da3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mydrid-pay-modal__section {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
}

.mydrid-pay-modal__choose {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 238, 248, 0.42);
  font-weight: 600;
}

.mydrid-pay-modal__choose-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow: 0 0 8px rgba(77, 163, 255, 0.8);
  vertical-align: middle;
  animation: mydridPayPulse 1.8s ease-in-out infinite;
}

@keyframes mydridPayPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}

.mydrid-pay-modal__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.mydrid-pay-modal__method {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  width: 100%;
  min-height: 96px;
  padding: 0.7rem 0.65rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mydrid-pay-modal__method:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(77, 163, 255, 0.35);
  background: rgba(77, 163, 255, 0.06);
}

.mydrid-pay-modal__method.is-active {
  border-color: rgba(77, 163, 255, 0.6);
  background: rgba(77, 163, 255, 0.1);
  box-shadow: 0 0 24px rgba(77, 163, 255, 0.14), inset 0 0 0 1px rgba(77, 163, 255, 0.15);
}

.mydrid-pay-modal__method[data-region="ru"].is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(215, 38, 56, 0.08) 100%);
  box-shadow: 0 0 20px rgba(215, 38, 56, 0.12);
}

.mydrid-pay-modal__method[data-region="eu"].is-active {
  border-color: rgba(77, 163, 255, 0.65);
  background: linear-gradient(145deg, rgba(77, 163, 255, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.mydrid-pay-modal__method.is-disabled,
.mydrid-pay-modal__method:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mydrid-pay-modal__method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 0.45rem;
  border-radius: 6px;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mydrid-pay-modal__method-badge--ru {
  color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #4da3ff 45%, #d72638 100%);
}

.mydrid-pay-modal__method-badge--eu {
  color: #fff;
  background: linear-gradient(135deg, #4da3ff 0%, #6366f1 100%);
  box-shadow: 0 0 12px rgba(77, 163, 255, 0.35);
}

.mydrid-pay-modal__method.mydrid-pay-modal__ltc {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: 60px;
  height: auto;
  padding: 0.68rem 0.82rem;
  gap: 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(191, 187, 79, 0.28);
  background: linear-gradient(145deg, rgba(191, 187, 79, 0.08) 0%, rgba(10, 14, 28, 0.55) 100%);
  text-align: left;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mydrid-pay-modal__ltc {
  position: relative;
  display: flex;
  width: 100%;
  color: inherit;
  cursor: pointer;
}

.mydrid-pay-modal__ltc:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(191, 187, 79, 0.48);
  background: linear-gradient(145deg, rgba(191, 187, 79, 0.14) 0%, rgba(10, 14, 28, 0.62) 100%);
  box-shadow: 0 0 22px rgba(191, 187, 79, 0.12);
}

.mydrid-pay-modal__ltc.is-active {
  border-color: rgba(191, 187, 79, 0.62);
  background: linear-gradient(145deg, rgba(191, 187, 79, 0.16) 0%, rgba(10, 14, 28, 0.68) 100%);
  box-shadow: 0 0 24px rgba(191, 187, 79, 0.18);
}

.mydrid-pay-modal__ltc.is-active .mydrid-pay-modal__method-check {
  background: #bfbb4f;
  color: #fff;
  box-shadow: 0 0 10px rgba(191, 187, 79, 0.55);
}

.mydrid-pay-modal__ltc:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.mydrid-pay-modal__ltc-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 14px rgba(52, 93, 157, 0.25);
}

.mydrid-pay-modal__ltc-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mydrid-pay-modal__ltc .mydrid-pay-modal__method-text {
  flex: 1;
  gap: 0.1rem;
}

.mydrid-pay-modal__ltc .mydrid-pay-modal__ltc-title {
  font-size: 0.96rem !important;
  line-height: 1.18;
}

.mydrid-pay-modal__ltc .mydrid-pay-modal__ltc-sub {
  font-size: 0.72rem;
  line-height: 1.28;
}

.mydrid-pay-modal__method-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding-right: 1rem;
}

.mydrid-pay-modal__method-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mydrid-pay-modal__method-sub {
  font-size: 0.66rem;
  color: rgba(232, 238, 248, 0.48);
  line-height: 1.35;
}

.mydrid-pay-modal__method-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 163, 255, 0.15);
  color: transparent;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.mydrid-pay-modal__method.is-active .mydrid-pay-modal__method-check {
  background: #4da3ff;
  color: #fff;
  box-shadow: 0 0 10px rgba(77, 163, 255, 0.55);
}

.mydrid-pay-modal__email {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
}

.mydrid-pay-modal__email-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(232, 238, 248, 0.65);
}

.mydrid-pay-modal__email-label svg {
  color: rgba(77, 163, 255, 0.75);
}

.mydrid-pay-modal__email-input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 8, 16, 0.75);
  color: #e8eef8;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mydrid-pay-modal__email-input::placeholder {
  color: rgba(232, 238, 248, 0.28);
}

.mydrid-pay-modal__email-input:focus {
  border-color: rgba(77, 163, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.14);
}

.mydrid-pay-modal__email.is-error .mydrid-pay-modal__email-input {
  border-color: rgba(255, 92, 92, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 92, 92, 0.12);
}

.mydrid-pay-modal__email-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: #ff7b7b;
}

.mydrid-pay-modal__pay-error {
  display: block;
  margin-top: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  color: #ff7b7b;
  font-size: 0.7rem;
  line-height: 1.35;
}

.mydrid-pay-modal__submit {
  position: relative;
  z-index: 1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.92rem 1rem;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #4da3ff 0%, #2b6fd4 48%, #6366f1 100%);
  color: #fff;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(77, 163, 255, 0.35);
  transition: transform 0.15s ease, filter 0.15s ease, opacity 0.15s ease;
}

.mydrid-pay-modal__submit-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: mydridPayShine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mydridPayShine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

.mydrid-pay-modal__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.mydrid-pay-modal__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.mydrid-pay-modal__submit-price {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.88rem;
  opacity: 0.95;
}

.mydrid-pay-modal__submit-arrow {
  opacity: 0.9;
}

.mydrid-pay-modal__secure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.75rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(232, 238, 248, 0.32);
}

.mydrid-pay-modal__secure svg {
  color: rgba(77, 163, 255, 0.45);
}

@media (max-width: 420px) {
  .mydrid-pay-modal__methods {
    grid-template-columns: 1fr;
  }

  .mydrid-pay-modal__method.mydrid-pay-modal__ltc {
    flex-direction: row;
    align-items: center;
    min-height: 60px;
  }

  .mydrid-pay-modal__method {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .mydrid-pay-modal__method-text {
    padding-right: 1.5rem;
  }
}

/* Delivery confirmation modal (post-payment) */
.mydrid-delivery-modal[hidden] {
  display: none !important;
}

.mydrid-delivery-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mydrid-delivery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 14, 0.82);
  backdrop-filter: blur(6px);
}

.mydrid-delivery-modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  background: #121820;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.mydrid-delivery-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: #94a3b8;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mydrid-delivery-modal__close:hover {
  color: #e8eef5;
}

.mydrid-delivery-modal__body h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #e8eef5;
}

.mydrid-delivery-modal__body p {
  margin: 0 0 16px;
  color: #94a3b8;
  line-height: 1.5;
}

.mydrid-delivery-modal__spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #5eead4;
  border-radius: 50%;
  animation: mydrid-spin 1s linear infinite;
  margin-bottom: 16px;
}

.mydrid-delivery-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94, 234, 212, 0.12);
  color: #5eead4;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mydrid-delivery-modal__product {
  font-weight: 600;
  color: #cbd5e1 !important;
}

.mydrid-delivery-modal__section {
  margin-bottom: 18px;
}

.mydrid-delivery-modal__section h3 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.mydrid-delivery-modal__key-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: stretch;
}

.mydrid-delivery-modal__key-row code {
  flex: 1;
  min-width: 180px;
  background: #0b0f14;
  border: 1px solid rgba(94, 234, 212, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: #5eead4;
  word-break: break-all;
  font-size: 14px;
}

.mydrid-delivery-modal__copy {
  border: none;
  border-radius: 10px;
  background: #5eead4;
  color: #0b0f14;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}

.mydrid-delivery-modal__instructions {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 15px;
}

.mydrid-delivery-modal__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.12);
  color: #5eead4;
  text-decoration: none;
  font-weight: 600;
}

.mydrid-delivery-modal__note {
  font-size: 14px;
  color: #94a3b8 !important;
}

.mydrid-delivery-modal__note a {
  color: #5eead4;
}

/* MYDRID_PRODUCT_PAGE_END */

/* MYDRID_SHOP_CARD_START */
.component[data-component-id="products"] a.card.mydrid-shop-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.component[data-component-id="products"] a.card.mydrid-shop-card:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(77, 163, 255, 0.35),
    0 0 96px rgba(77, 163, 255, 0.18),
    0 0 140px rgba(43, 111, 212, 0.1) !important;
}

.component[data-component-id="products"] .mydrid-shop-card .aspect-product-card-image {
  background: transparent !important;
}

.component[data-component-id="products"] .products {
  --bs-gutter-x: 1.35rem;
  --bs-gutter-y: 1.35rem;
  justify-content: center;
}

.component[data-component-id="products"] .products > [class*="col-"] {
  display: flex;
}

.component[data-component-id="products"] .mydrid-shop-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(16, 22, 38, 0.92) 0%, rgba(8, 10, 18, 0.94) 100%) !important;
  border: 1px solid rgba(77, 163, 255, 0.14) !important;
  border-radius: 1.35rem !important;
  overflow: hidden;
  outline: none !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.component[data-component-id="products"] .mydrid-shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 163, 255, 0.55) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(77, 163, 255, 0.35),
    0 0 96px rgba(77, 163, 255, 0.18),
    0 0 140px rgba(43, 111, 212, 0.1);
}

.component[data-component-id="products"] .mydrid-shop-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10 !important;
  background: #080a12;
  line-height: 0;
  font-size: 0;
  border: none !important;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.component[data-component-id="products"] .mydrid-shop-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center top;
  border: none !important;
  border-radius: 0 !important;
  margin: 0;
  padding: 0;
  transform: scale(1.03);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.component[data-component-id="products"] .mydrid-shop-card:hover .mydrid-shop-card__photo {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.05);
}

.component[data-component-id="products"] .mydrid-shop-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 20, 0.02) 0%, rgba(6, 10, 20, 0.08) 50%, rgba(8, 10, 18, 0.55) 88%, rgba(8, 10, 18, 0.98) 100%),
    radial-gradient(circle at 18% 12%, rgba(77, 163, 255, 0.12), transparent 42%);
  pointer-events: none;
}

.component[data-component-id="products"] .mydrid-shop-card__badges {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.component[data-component-id="products"] .mydrid-shop-card__status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b8dcff;
  background: rgba(8, 18, 36, 0.58);
  border: 1px solid rgba(77, 163, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(77, 163, 255, 0.16);
}

.component[data-component-id="products"] .mydrid-shop-card__badges .mydrid-shop-card__status {
  position: static;
  color: #fff;
  background: color-mix(in srgb, var(--badge-color, #4da3ff) 72%, transparent);
  border-color: color-mix(in srgb, var(--badge-color, #4da3ff) 55%, transparent);
}

.component[data-component-id="products"] .mydrid-shop-card__status.is-undetect {
  color: #b8f5c8;
  background: rgba(8, 24, 16, 0.62);
  border: 1px solid rgba(52, 211, 153, 0.38);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.2);
}

.component[data-component-id="products"] .mydrid-shop-card__status.is-undetect .mydrid-shop-card__status-dot {
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.95);
  animation: mydrid-card-pulse-green 2s ease-in-out infinite;
}

@keyframes mydrid-card-pulse-green {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.95);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.88);
    box-shadow: 0 0 6px rgba(52, 211, 153, 0.55);
  }
}

.component[data-component-id="products"] .mydrid-shop-card__status.is-offline {
  color: #ffb4b4;
  border-color: rgba(255, 107, 107, 0.35);
  box-shadow: none;
}

.component[data-component-id="products"] .mydrid-shop-card__status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #4da3ff;
  box-shadow: 0 0 10px rgba(77, 163, 255, 0.85);
  animation: mydrid-card-pulse 2s ease-in-out infinite;
}

.component[data-component-id="products"] .mydrid-shop-card__status.is-offline .mydrid-shop-card__status-dot {
  background: #ff6b6b;
  box-shadow: none;
  animation: none;
}

@keyframes mydrid-card-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}

.component[data-component-id="products"] .mydrid-shop-card__body {
  position: relative;
  z-index: 2;
  padding: 1rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: none !important;
  border-top: none !important;
  margin: 0 !important;
  background: linear-gradient(165deg, rgba(16, 22, 38, 0.92) 0%, rgba(8, 10, 18, 0.94) 100%);
  box-shadow: 0 -12px 24px rgba(8, 10, 18, 0.65);
}

.component[data-component-id="products"] .mydrid-shop-card__head {
  display: block;
}

.component[data-component-id="products"] .mydrid-shop-card__avatar,
.component[data-component-id="products"] .mydrid-shop-card__avatar img {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.component[data-component-id="products"] .mydrid-shop-card__name {
  margin: 0;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  line-height: 1.15;
}

.component[data-component-id="products"] .mydrid-shop-card__game {
  margin: 0.18rem 0 0;
  font-size: 0.82rem;
  color: rgba(168, 188, 220, 0.72) !important;
}

.component[data-component-id="products"] .mydrid-shop-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.component[data-component-id="products"] .mydrid-shop-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28rem;
  min-width: 0;
}

.component[data-component-id="products"] .mydrid-shop-card__price strong {
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.component[data-component-id="products"] .mydrid-shop-card__period {
  font-size: 0.86rem;
  color: rgba(168, 188, 220, 0.62);
  text-transform: lowercase;
}

.component[data-component-id="products"] .mydrid-shop-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.95rem;
  border-radius: 0.72rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #eef5ff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.component[data-component-id="products"] .mydrid-shop-card:hover .mydrid-shop-card__cta {
  background: linear-gradient(180deg, rgba(77, 163, 255, 0.22) 0%, rgba(43, 111, 212, 0.18) 100%);
  border-color: rgba(77, 163, 255, 0.34);
  transform: translateX(2px);
}

.component[data-component-id="products"] .card .overlay {
  display: none !important;
}

.component[data-component-id="products"] .card .card-body,
.component[data-component-id="products"] .card .info,
.component[data-component-id="products"] .card .card-title {
  display: none !important;
}

.component[data-component-id="products"] .mydrid-shop-card.card::before,
.component[data-component-id="products"] .mydrid-shop-card.card::after {
  display: none !important;
  content: none !important;
}

.component[data-component-id="products"] .mydrid-shop-card:focus-visible {
  outline: none !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(77, 163, 255, 0.35);
}
/* MYDRID_SHOP_CARD_END */
/* MYDRID_LENIS_SCROLL_START */
html.lenis,
html.lenis body {
  height: auto;
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}
/* MYDRID_LENIS_SCROLL_END */