

.ecd-grid--2, .ecd-grid--3, .ecd-grid--4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
   .ecd-grid--2 { grid-template-columns: repeat(2, 1fr); }
   .ecd-grid--3 { grid-template-columns: repeat(3, 1fr); }
   .ecd-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.ecd-grid--mobile-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) {
  .ecd-grid--mobile-2 > *:nth-child(odd):last-child {
    grid-column: span 2;
  }
}


 .ecd-form__group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

 .ecd-form__label {
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}


.ecd-form__input,
.ecd-form__textarea,
.ecd-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  background-color: #fff;
  color: var(--color-text-main);
  box-shadow: var(--shadow-input);
  transition: border-color 0.2s, box-shadow 0.2s;
}


.ecd-form__input:focus,
.ecd-form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30, 159, 242, 0.08);
}

 .ecd-form__status {
  padding: 1rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-medium);
  display: none;
}

 .ecd-form__status.is-success {
  display: block;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

 .ecd-form__status.is-error {
  display: block;
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

 .ecd-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

 .ecd-section__title {
  margin-bottom: 1rem;
}

 .ecd-section__subtitle {
  max-width: 600px;
  margin: 0 auto;
}

 .ed-footer, .ecd-footer {
  background-color: #ffffff;
  color: #1e293b;
  font-size: 0.9rem;
  overflow-x: hidden;
  width: 100%;
  border-top: none;
  border-bottom: none;
}

 .ed-footer a, .ecd-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

 .ed-footer a:hover, .ecd-footer a:hover {
  color: var(--color-primary, #1E9FF2);
}

.ed-footer__usps, .ecd-footer__usps {
  background: #f0f7fe;
  padding: 2rem 0;
  border-top: none;
  border-bottom: none;
}

.ed-footer__usps-container, .ecd-footer__usps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .ed-footer__usps-container, .ecd-footer__usps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ed-footer__usps-container, .ecd-footer__usps-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.ed-footer__usp-item, .ecd-footer__usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ed-footer__usp-item:hover, .ecd-footer__usp-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.ed-footer__usp-icon-wrap, .ecd-footer__usp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0f2fe;
  border: 1px solid rgba(30, 159, 242, 0.2);
  color: #0284c7;
  flex-shrink: 0;
}

.ed-footer__usp-icon, .ecd-footer__usp-icon {
  fill: currentColor;
}

.ed-footer__usp-content, .ecd-footer__usp-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.ed-footer__usp-title, .ecd-footer__usp-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.ed-footer__usp-desc, .ecd-footer__usp-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.35;
}

.ed-footer__main, .ecd-footer__main {
  background: #ffffff;
  padding: 3.5rem 0 3rem;
}

.ed-footer__grid, .ecd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .ed-footer__grid, .ecd-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .ed-footer__grid, .ecd-footer__grid {
    grid-template-columns: 1.35fr 0.9fr 1.05fr 1.4fr;
    gap: 2.75rem;
  }
}

.ed-footer__col, .ecd-footer__col {
  display: flex;
  flex-direction: column;
}

.ed-footer__col--brand, .ecd-footer__col--brand {
  grid-column: auto;
}

.ed-footer__logo, .ecd-footer__logo {
  margin-bottom: 1.25rem;
}

.ed-footer__logo-link, .ecd-footer__logo-link {
  display: inline-block;
}

.ed-footer__logo img, .ecd-footer__logo img {
  height: auto;
  max-width: 180px;
  object-fit: contain;
}

.ed-footer__desc, .ecd-footer__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 1.25rem;
  max-width: 380px;
}

.ed-footer__reg-meta, .ecd-footer__reg-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: #64748b;
  margin: -0.5rem 0 1.1rem;
}

.ed-footer__reg-item strong, .ecd-footer__reg-item strong {
  color: #334155;
}

.ed-footer__reg-divider {
  color: #94a3b8;
}

.ed-footer__contact, .ecd-footer__contact {
  font-style: normal;
}

.ed-footer__contact-list, .ecd-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ed-footer__contact-item, .ecd-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.825rem;
  line-height: 1.45;
  color: #475569;
}

.ed-footer__contact-icon, .ecd-footer__contact-icon {
  color: var(--color-primary, #1E9FF2);
  flex-shrink: 0;
  margin-top: 0.15rem;
  fill: currentColor;
}

.ed-footer__contact-text strong, .ecd-footer__contact-text strong {
  color: #0f172a;
  display: inline-block;
  margin-right: 0.35rem;
  font-weight: 600;
}

.ed-footer__contact-text a, .ecd-footer__contact-text a {
  color: var(--color-primary, #1E9FF2);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.ed-footer__contact-text a:hover, .ecd-footer__contact-text a:hover {
  color: #0284c7;
  text-decoration: underline;
}

.ed-footer__col-title, .ecd-footer__col-title {
  font-size: 0.9rem;
  font-weight: 750;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.ed-footer__col-title::after, .ecd-footer__col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(135deg, #1E9FF2 0%, #00C3FF 100%);
  border-radius: 10px;
}

.ed-footer__col-title--small {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
}

.ed-footer__col-title--small::after {
  width: 20px;
}

.ed-footer__menu, .ecd-footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ed-footer__menu-item, .ecd-footer__menu-item {
  font-size: 0.85rem;
  line-height: 1.4;
}

.ed-footer__menu-link, .ecd-footer__menu-link {
  color: #475569;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ed-footer__menu-link:hover, .ecd-footer__menu-link:hover {
  color: var(--color-primary, #1E9FF2);
  transform: translateX(3px);
}

.ed-footer__menu-item--highlight .ed-footer__menu-link,
.ecd-footer__menu-item--highlight .ecd-footer__menu-link {
  color: #0284c7;
  font-weight: 700;
}

.ed-footer__menu-item--highlight .ed-footer__menu-link:hover,
.ecd-footer__menu-item--highlight .ecd-footer__menu-link:hover {
  color: var(--color-primary, #1E9FF2);
}

.ed-footer__col--action-hub {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ed-footer__hub-section {
  display: flex;
  flex-direction: column;
}

.ed-footer__social, .ecd-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ed-footer__social-link, .ecd-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  transition: all 0.2s ease;
}

.ed-footer__social-link:hover, .ecd-footer__social-link:hover {
  background: var(--color-primary, #1E9FF2);
  color: #ffffff;
  border-color: var(--color-primary, #1E9FF2);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(30, 159, 242, 0.3);
}

.ed-footer__social-link--wa:hover, .ecd-footer__social-link--wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.ed-footer__social-svg, .ecd-footer__social-svg {
  fill: currentColor;
}

.ed-footer__service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.ed-footer__service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ed-footer__service-pill:hover {
  background: #e0f2fe;
  border-color: var(--color-primary, #1E9FF2);
  color: #0284c7;
  transform: translateY(-1px);
}

.ed-footer__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  flex-shrink: 0;
}

.ed-footer__newsletter-label {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0 0 0.65rem;
  line-height: 1.4;
}

.ed-footer__newsletter-form {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 320px;
  width: 100%;
}

.ed-footer__newsletter-input {
  width: 100%;
  height: 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 42px 0 12px;
  color: #0f172a;
  font-size: 0.825rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ed-footer__newsletter-input:focus {
  border-color: var(--color-primary, #1E9FF2);
  background: #ffffff;
}

.ed-footer__newsletter-input::placeholder {
  color: #94a3b8;
}

.ed-footer__newsletter-btn {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ed-footer__newsletter-btn:hover {
  color: var(--color-primary, #1E9FF2);
  transform: translateX(2px);
}

.ed-footer__trust-bar, .ecd-footer__trust-bar {
  background: #f8fafc;
  padding: 2.25rem 0;
  border-top: none;
  border-bottom: none;
}

.ed-footer__trust-container, .ecd-footer__trust-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .ed-footer__trust-container, .ecd-footer__trust-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .ed-footer__trust-container, .ecd-footer__trust-container {
    grid-template-columns: 1.25fr 1.15fr 1.35fr;
    gap: 2.25rem;
    align-items: start;
  }
}

.ed-footer__trust-col, .ecd-footer__trust-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ed-footer__trust-heading, .ecd-footer__trust-heading {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
}

.ed-footer__trust-badges, .ecd-footer__trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ed-footer__trust-badges-grid, .ecd-footer__trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 320px;
}

.ed-trust-badge-card, .ecd-trust-badge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 4px 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  overflow: hidden;
  text-decoration: none;
}

.ed-trust-badge-card:hover, .ecd-trust-badge-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.ed-trust-badge-card img, .ecd-trust-badge-card img {
  max-width: 100%;
  max-height: 26px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.ed-footer__dmca-row, .ecd-footer__dmca-row {
  display: flex;
  align-items: center;
  margin-top: 0.35rem;
}

.ed-footer__dmca-row a, .ecd-footer__dmca-row a {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.ed-footer__dmca-row a:hover, .ecd-footer__dmca-row a:hover {
  opacity: 0.85;
}

.ed-footer__dmca-row img, .ecd-footer__dmca-row img {
  display: block;
  height: 20px;
  width: auto;
}

.ed-trust-badge, .ecd-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #1e293b;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: all 0.2s ease;
}

.ed-trust-badge:hover, .ecd-trust-badge:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.ed-trust-badge__icon,
.ecd-trust-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}

.ed-trust-badge__svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ed-cert-badge--dmca, .ecd-cert-badge--dmca {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  border: 1px solid #cbd5e1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s ease;
}

.ed-cert-badge--dmca:hover, .ecd-cert-badge--dmca:hover {
  opacity: 0.9;
}

.ed-cert-badge__shield, .ecd-cert-badge__shield {
  background: #0284c7;
  color: #ffffff;
  padding: 0.35rem 0.5rem;
}

.ed-cert-badge__label, .ecd-cert-badge__label {
  background: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0.5rem;
}

.ed-footer__payment-badges, .ecd-footer__payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ed-footer__payment-badges-grid, .ecd-footer__payment-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 46px);
  gap: 0.45rem;
  align-items: center;
  max-width: 260px;
}

.ed-payment-badge, .ecd-payment-badge {
  display: block;
  width: 46px;
  height: 29px;
  aspect-ratio: 160 / 100;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 2px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  vertical-align: middle;
}

.ed-payment-badge:hover, .ecd-payment-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.1);
}

.ed-footer__wa-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ed-footer__wa-qr {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ed-footer__wa-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ed-footer__wa-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ed-footer__wa-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.ed-footer__wa-hint {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.ed-footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #ffffff;
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}

.ed-footer__wa-btn:hover {
  background: #20ba59;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.ed-footer__bottom, .ecd-footer__bottom {
  background: #f1f5f9;
  padding: 2rem 0;
  border-top: none;
  border-bottom: none;
}

.ed-footer__bottom-row, .ecd-footer__bottom-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .ed-footer__bottom-row, .ecd-footer__bottom-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ed-footer__copyright, .ecd-footer__copyright {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.ed-footer__bottom-links, .ecd-footer__bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.775rem;
  color: #64748b;
}

.ed-footer__bottom-links a, .ecd-footer__bottom-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}

.ed-footer__bottom-links a:hover, .ecd-footer__bottom-links a:hover {
  color: var(--color-primary, #1E9FF2);
}

.ed-footer__bottom-sep, .ecd-footer__bottom-sep {
  color: #cbd5e1;
}

.ed-footer__disclaimer, .ecd-footer__disclaimer {
  text-align: left;
  padding-top: 0.5rem;
}

.ed-footer__disclaimer a {
  color: #475569;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.ed-footer__disclaimer a:hover {
  color: var(--color-primary, #1E9FF2);
}

.ed-footer__disclaimer-policy {
  font-size: 0.775rem;
  color: #64748b;
  margin: 0 0 0.45rem;
  text-align: left;
}

.ed-footer__disclaimer-text, .ecd-footer__disclaimer-text {
  font-size: 0.775rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 1000px;
  margin: 0;
  text-align: left;
}

.ed-footer__disclaimer-text strong {
  color: #0f172a;
}


[data-reveal], [data-ecd-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible, [data-ecd-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ecd-pdp-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  max-width: calc(100vw - 32px);
}

.ecd-pdp-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ecd-pdp-toast a {
  color: #00c3ff;
  text-decoration: underline;
  margin-left: 8px;
  font-weight: 700;
}

body.ecd-cart-drawer-open,
body.rg-cart-drawer-open {
  overflow: hidden;
}

.ecd-cart-drawer-overlay,
.rg-cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 6, 0.45);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.ecd-cart-drawer-overlay.is-open,
.rg-cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ecd-cart-drawer,
.rg-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  height: 100%;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  box-sizing: border-box;
}

.ecd-cart-drawer.is-open,
.rg-cart-drawer.is-open {
  transform: translateX(0);
}

.ecd-cart-drawer.is-updating .ecd-cart-drawer-body,
.rg-cart-drawer.is-updating .rg-cart-drawer-body {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.ecd-cart-drawer-header,
.rg-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.ecd-cart-drawer-title-wrap,
.rg-cart-drawer-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ecd-cart-drawer-title,
.rg-cart-drawer-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.ecd-cart-drawer-count-badge,
.rg-cart-drawer-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

.ecd-cart-drawer-close,
.rg-cart-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  padding: 0;
}

.ecd-cart-drawer-close:hover,
.rg-cart-drawer-close:hover {
  background: #f1f5f9;
  color: #0f172a;
  transform: scale(1.05);
}

.ecd-cart-drawer-body,
.rg-cart-drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
  background: #ffffff;
}

.ecd-cart-drawer-scrollable,
.rg-cart-drawer-scrollable {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecd-cart-drawer-items,
.rg-cart-drawer-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecd-cart-item-row,
.rg-cart-item-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ecd-cart-item-thumb,
.rg-cart-item-thumb {
  width: 74px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecd-cart-item-thumb img,
.rg-cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.ecd-cart-item-content,
.rg-cart-item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ecd-cart-item-top,
.rg-cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.ecd-cart-item-title,
.rg-cart-item-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ecd-cart-item-title a,
.rg-cart-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.ecd-cart-item-title a:hover,
.rg-cart-item-title a:hover {
  color: #1E9FF2;
}

.ecd-cart-item-line-price,
.rg-cart-item-line-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.ecd-cart-item-meta,
.rg-cart-item-meta {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

.ecd-cart-item-meta dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.ecd-cart-item-meta dt {
  font-weight: 600;
  color: #64748b;
  margin: 0;
}

.ecd-cart-item-meta dd {
  margin: 0;
  color: #334155;
}

.ecd-cart-item-meta p {
  margin: 0;
}

.ecd-cart-item-unit-price,
.rg-cart-item-unit-price {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.ecd-cart-item-unit-price del {
  opacity: 0.65;
  margin-left: 4px;
}

.ecd-cart-item-actions,
.rg-cart-item-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.ecd-cart-qty-stepper,
.rg-cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  height: 32px;
}

.ecd-qty-btn,
.rg-qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  padding: 0;
}

.ecd-qty-btn:hover,
.rg-qty-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.ecd-qty-input,
.rg-qty-input {
  width: 36px;
  height: 32px;
  text-align: center;
  border: none;
  background: transparent;
  color: #0f172a;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0;
  -moz-appearance: textfield;
}

.ecd-qty-input::-webkit-outer-spin-button,
.ecd-qty-input::-webkit-inner-spin-button,
.rg-qty-input::-webkit-outer-spin-button,
.rg-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ecd-cart-item-remove,
.rg-cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  padding: 0;
}

.ecd-cart-item-remove:hover,
.rg-cart-item-remove:hover {
  color: #ef4444;
  background: #fef2f2;
}

.ecd-cart-drawer-accordions,
.rg-cart-drawer-accordions {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
  gap: 12px;
}

.ecd-cart-drawer-accordion,
.rg-cart-drawer-accordion {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

.ecd-accordion-summary,
.rg-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  user-select: none;
  padding: 4px 0;
}

.ecd-accordion-summary::-webkit-details-marker,
.rg-accordion-summary::-webkit-details-marker {
  display: none;
}

.ecd-accordion-icon,
.rg-accordion-icon {
  font-size: 1.125rem;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.2s ease;
}

.ecd-cart-drawer-accordion[open] .ecd-accordion-icon,
.rg-cart-drawer-accordion[open] .rg-accordion-icon {
  transform: rotate(45deg);
}

.ecd-accordion-body,
.rg-accordion-body {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ecd-cart-note-input,
.rg-cart-note-input {
  width: 100%;
  min-height: 64px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 0.8125rem;
  color: #0f172a;
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}

.ecd-cart-note-input:focus,
.rg-cart-note-input:focus {
  border-color: #1E9FF2;
}

.ecd-cart-note-save-btn,
.rg-cart-note-save-btn {
  align-self: flex-start;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px 14px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ecd-cart-note-save-btn:hover,
.rg-cart-note-save-btn:hover {
  background: #e2e8f0;
}

.ecd-cart-note-status,
.rg-cart-note-status {
  font-size: 0.75rem;
  color: #10b981;
}

.ecd-cart-coupon-wrap,
.rg-cart-coupon-wrap {
  display: flex;
  gap: 8px;
}

.ecd-cart-coupon-input,
.rg-cart-coupon-input {
  flex: 1;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 12px;
  font-family: inherit;
  font-size: 0.875rem;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
}

.ecd-cart-coupon-input:focus,
.rg-cart-coupon-input:focus {
  border-color: #1E9FF2;
}

.ecd-cart-coupon-btn,
.rg-cart-coupon-btn {
  height: 38px;
  padding: 0 16px;
  background: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.ecd-cart-coupon-btn:hover,
.rg-cart-coupon-btn:hover {
  background: #1e293b;
}

.ecd-cart-coupon-msg,
.rg-cart-coupon-msg {
  font-size: 0.75rem;
  line-height: 1.3;
}

.ecd-cart-coupon-msg.is-success,
.rg-cart-coupon-msg.is-success {
  color: #10b981;
}

.ecd-cart-coupon-msg.is-error,
.rg-cart-coupon-msg.is-error {
  color: #ef4444;
}

.ecd-cart-applied-coupons,
.rg-cart-applied-coupons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.ecd-applied-coupon-tag,
.rg-applied-coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.ecd-remove-coupon-btn,
.rg-remove-coupon-btn {
  background: none;
  border: none;
  color: #047857;
  cursor: pointer;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1;
}

.ecd-cart-drawer-footer,
.rg-cart-drawer-footer {
  flex-shrink: 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
}

.ecd-cart-drawer-subtotal-row,
.rg-cart-drawer-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ecd-cart-drawer-subtotal-label,
.rg-cart-drawer-subtotal-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.ecd-cart-drawer-subtotal-val,
.rg-cart-drawer-subtotal-val {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.ecd-cart-drawer-shipping-note,
.rg-cart-drawer-shipping-note {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.ecd-cart-drawer-checkout-btn,
.rg-cart-drawer-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #1E9FF2 0%, #00C3FF 100%);
  color: #ffffff !important;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(30, 159, 242, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.ecd-cart-drawer-checkout-btn:hover,
.rg-cart-drawer-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 159, 242, 0.45);
  color: #ffffff !important;
}

.ecd-cart-drawer-view-cart-link,
.rg-cart-drawer-view-cart-link {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E9FF2 !important;
  text-decoration: none !important;
  margin-top: 12px;
  transition: text-decoration 0.15s ease;
}

.ecd-cart-drawer-view-cart-link:hover,
.rg-cart-drawer-view-cart-link:hover {
  text-decoration: underline !important;
}

.ecd-cart-drawer-empty,
.rg-cart-drawer-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

.ecd-cart-drawer-empty-icon,
.rg-cart-drawer-empty-icon {
  color: #cbd5e1;
  margin-bottom: 16px;
}

.ecd-cart-drawer-empty-title,
.rg-cart-drawer-empty-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.ecd-cart-drawer-empty-desc,
.rg-cart-drawer-empty-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 24px;
  max-width: 260px;
}

.ecd-cart-drawer-shop-btn,
.rg-cart-drawer-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, #1E9FF2 0%, #00C3FF 100%);
  color: #ffffff !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(30, 159, 242, 0.3);
  transition: transform 0.15s ease;
}

.ecd-cart-drawer-shop-btn:hover,
.rg-cart-drawer-shop-btn:hover {
  transform: translateY(-1px);
}

.ecd-btn-contact-price {
  background: #00C3FF;
  color: #ffffff !important;
  border: 1.5px solid #00C3FF;
  border-radius: 10px;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 195, 255, 0.35);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
}

.ecd-btn-contact-price:hover {
  background: #00b0e6;
  border-color: #00b0e6;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 195, 255, 0.45);
  color: #ffffff !important;
}

.ecd-btn-contact-price svg {
  flex-shrink: 0;
}

.ecd-pdp-contact-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ecd-pdp-contact-action-wrap .ecd-btn-contact-price {
  width: 100%;
  height: 48px;
  font-size: 1.05rem;
}

.ecd-pdp-contact-discount-notice,
.ecd-card-contact-discount-notice {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: 6px;
  width: 100%;
  text-align: left;
  grid-column: 1 / -1;
}

.ecd-pdp-contact-discount-notice:hover,
.ecd-card-contact-discount-notice:hover {
  transform: translateY(-1px);
  border-color: #93c5fd;
  box-shadow: 0 3px 12px rgba(0, 195, 255, 0.15);
}

.ecd-contact-notice-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ecd-contact-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: #00C3FF;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 10px;
}

.ecd-contact-notice-badge svg {
  color: #00C3FF;
  flex-shrink: 0;
}

.ecd-contact-notice-text {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #475569;
  font-weight: 500;
}

.ecd-pdp-bar-btn-contact {
  background: #00C3FF;
  color: #ffffff !important;
  border: 1.5px solid #00C3FF;
  box-shadow: 0 4px 14px rgba(0, 195, 255, 0.35);
  text-decoration: none !important;
}

.ecd-pdp-bar-btn-contact:hover {
  background: #00b0e6;
  border-color: #00b0e6;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 195, 255, 0.45);
  color: #ffffff !important;
}

.ecd-badge--contact,
.ed-ribbon--contact,
.ecd-card-ribbon--contact {
  background: #00C3FF !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  font-weight: 700;
}

.ecd-pdp-upgrade-section {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.ecd-pdp-upgrade-deal-banner {
  background: #f8fbff;
  border: 1px dashed #7dd3fc;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-deal-banner:hover {
  background: #f0f9ff;
  border-color: #00C3FF;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 195, 255, 0.15);
}

.ecd-upgrade-deal-header {
  display: flex;
  align-items: center;
}

.ecd-upgrade-deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #e0f2fe;
  color: #0284c7;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 6px;
}

.ecd-upgrade-deal-badge svg {
  color: #0284c7;
  flex-shrink: 0;
}

.ecd-upgrade-deal-text {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #334155;
}

.ecd-upgrade-deal-text strong {
  color: #0f172a;
  font-weight: 700;
}

.ecd-pdp-upgrade-card {
  background: #ffffff;
  border: 1.5px solid #93c5fd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(147, 197, 253, 0.16);
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-card-header {
  background: #f0f8ff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e0f2fe;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-thumb-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.ecd-pdp-upgrade-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.ecd-pdp-upgrade-badge {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ecd-pdp-upgrade-title {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 1.12rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.25;
  margin: 0;
  display: block;
}

.ecd-pdp-upgrade-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
}

.ecd-pdp-upgrade-price {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.ecd-pdp-upgrade-unit {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.ecd-pdp-upgrade-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-body-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #475569;
}

.ecd-pdp-upgrade-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
}

.ecd-pdp-upgrade-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.81rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.32;
}

.ecd-pdp-upgrade-bullet-item span {
  display: inline-block;
}

.ecd-upgrade-check-icon {
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 1px;
}

.ecd-pdp-upgrade-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  background: #0071dc;
  color: #ffffff !important;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 113, 220, 0.25);
  transition: all 0.2s ease;
  box-sizing: border-box;
  margin-top: 2px;
}

.ecd-pdp-upgrade-btn:hover {
  background: #005bb5;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 113, 220, 0.35);
}

.ecd-pdp-upgrade-card-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9px 4px;
  border-right: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.ecd-pdp-upgrade-footer-col:last-child {
  border-right: none;
}

.ecd-pdp-upgrade-footer-col strong {
  font-size: 0.76rem;
  font-weight: 750;
  color: #0f172a;
  line-height: 1.25;
  display: block;
}

.ecd-pdp-upgrade-footer-col span {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.25;
  margin-top: 1px;
  display: block;
}

@media (max-width: 640px) {
  .ecd-pdp-upgrade-section {
    margin-top: 12px;
    gap: 10px;
  }
  .ecd-pdp-upgrade-card-header {
    padding: 12px 14px;
    gap: 12px;
  }
  .ecd-pdp-upgrade-thumb-wrap {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }
  .ecd-pdp-upgrade-title {
    font-size: 1.05rem;
  }
  .ecd-pdp-upgrade-price {
    font-size: 1.15rem;
  }
  .ecd-pdp-upgrade-card-body {
    padding: 14px;
    gap: 10px;
  }
  .ecd-pdp-upgrade-bullets {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .ecd-pdp-upgrade-bullet-item {
    font-size: 0.82rem;
  }
  .ecd-pdp-upgrade-btn {
    height: 44px;
    font-size: 0.9rem;
  }
  .ecd-pdp-upgrade-footer-col {
    padding: 8px 3px;
  }
  .ecd-pdp-upgrade-footer-col strong {
    font-size: 0.72rem;
  }
  .ecd-pdp-upgrade-footer-col span {
    font-size: 0.64rem;
  }
}