/* card_xxlarge.css */

/* ============================================================
   egXXL CAROUSEL THEME ROOTS (surfaces only)
   Define once here; override per context (.article-widget .egXXL-card, .hero-widget .egXXL-card)
============================================================ */
:root {
  --egxxl-surface-0: var(--section-light-background-color);
  --egxxl-surface-1: var(--section-medium-background-color);
  --egxxl-surface-2: var(--section-dark-background-color);
  --egxxl-surface-3: var(--section-darkest-background-color);
  --egxxl-surface-4: var(--section-darkestdark-background-color);
  --egxxl-surface-5: var(--section-dusk-background-color);
  --egxxl-surface-6: var(--section-dusker-background-color);
}




.visually-hidden {
  display: none;
}

.xxl-popup {
  position: absolute;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  width: auto;
  height: auto;
  max-width: 1150px;
  width: 1150px;
  max-height: calc(100vh - 3rem);
  z-index: 96500;
  overflow-y: scroll;
  overflow-x: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;

  scrollbar-color: var(--egxxl-surface-1) var(--egxxl-surface-5);
  background-color: var(--egxxl-surface-4);
  border: 1px solid var(--dark-color-1);
  top: 50%;
  transform: translateY(-50%);
}

.xxl-popup-header {
  position: sticky;
  top: 0 !important;
  cursor: move;
  background-color: var(--egxxl-surface-1);
  padding: .5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.header-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: var(--font-weight5);
  line-height: var(--font-size-24px);
  font-size: var(--font-size-18px);
  text-transform: capitalize;
  padding: 0;
  margin: 0;
}

.xxl-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.xxl-nav-arrows-container {
  display: flex;
  align-items: center;
}

.xxl-nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  cursor: pointer;
  border: 1px solid var(--egxxl-surface-0);
  background-color: var(--egxxl-surface-2);
  transition: background-color 0.3s ease;
  margin-right: 0.75rem;
}

.xxl-nav-arrow:hover {
  background-color: var(--card-color);
}

.xxl-nav-arrow.inactive {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Keep the SVG size similar to the recommended/similar arrows */
.xxl-nav-arrow svg {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--white-color-1);
}

.xxl-close-popup-btn {
  background-color: transparent;
  justify-content: flex-end;
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: var(--font-weight5);
  font-size: var(--font-size-30px);
  line-height: var(--font-size-30px);
  height: 100%;
  border: 1px solid var(--egxxl-surface-0);
  width: var(--font-size-50px);
  cursor: pointer;
  border: none;
  text-align: right;
}

.xxl-close-popup-btn:hover {
  color: var(--accent-color-3);
}


.xxl-popup-content {
  padding: 0;
  margin: 0;
  height: auto;
  width: auto;
  min-width: 360px;
  padding: clamp(17px, 13.2667px + 0.9333vw, 24px);
}

.xxl-title-spinner {
  width: 1.5rem;
  height: 1.5rem;
}

.popup-caution {
  width: 2.5rem !important;
  height: 2.5rem !important;
}

.xxl-error {
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  line-height: var(--font-size-24px);
  font-size: var(--font-size-15px);
}













/* ───  Minimize / Restore  ───────────────────────────────────*/
.xxl-minimize-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  min-height: 2rem;
  min-width: 2rem;
  margin-right: 0.75rem;
  border: 1px solid var(--egxxl-surface-0);
  background-color: var(--egxxl-surface-2);
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.xxl-minimize-btn:hover {
  background-color: var(--card-color);
  color: var(--dark-color-1);
}

.xxl-popup.minimized .xxl-popup-header {
  background-color: unset !important;
  box-shadow: unset;
}

/* ───  Minimize / Restore (UPDATED – now pulses) ───────────────────────*/
.xxl-popup.minimized {
  width: 4.25rem !important;
  height: 3.25rem !important;
  aspect-ratio: 1 !important;
  overflow: hidden !important;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);
  background-color: var(--egxxl-surface-0) !important;
  top: calc(((var(--font-size-4-5px) * var(--navroot)) - 3.25rem) / 2) !important;
  /* ✨ pulse effect every ~2.4 s (starts 1 s after shrink) */
  animation: xxlPulse 2.4s ease-out infinite 1s;
}

@keyframes xxlPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.00);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.00);
  }
}

.xxl-popup.minimized .xxl-resize-handle {
  display: none;
}

.xxl-popup.minimized .xxl-popup-content,
.xxl-popup.minimized .xxl-nav-arrows-container,
.xxl-popup.minimized .xxl-close-popup-btn,
.xxl-popup.minimized .header-title {
  display: none !important;
}

.xxl-popup.minimized .xxl-resize-handle {
  display: none;
}

.xxl-popup.minimized .xxl-popup-content,
.xxl-popup.minimized .xxl-nav-arrows-container,
.xxl-popup.minimized .xxl-close-popup-btn,
.xxl-popup.minimized .header-title {
  display: none !important;
}


@media (max-width: 1150px) {
  .xxl-popup {
    height: 100dvh;
    max-height: calc(100vh - 0rem);
    width: 100vw;
    border: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }

  .xxl-popup.mobile-active {
    transform: translateY(0%);
  }
}






/****************************************************************
  Fix: keep the resize handle visually glued to the shell’s edge
       even when the popup scrolls or its height is changed.
       • `position: sticky` locks the bar to the bottom of the
         scrollable `.xxl‑popup` container.
       • Z‑index unchanged, so it still sits on top of content.
****************************************************************/
.xxl-resize-handle {
  position: sticky;
  /* ⬅ was absolute */
  bottom: 0;
  /* stick to bottom of viewport *inside* popup */
  left: 0;
  width: 100%;
  height: 8px;
  cursor: ns-resize;
  background: transparent;
  z-index: 1000;
}

.xxl-resize-handle::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 2px auto;
  border-radius: 2px;
  background: var(--egxxl-surface-0);
  opacity: .8;
}


@media (max-width: 1150px) {
  .xxl-resize-handle {
    display: none;
  }
}




.xxl-popup .egXXL-carousel-container .compare-toggle {
  display: none;
}





/* ─── XXL vs Card Mode  ───────────────────────────────────*/




.egXXL-summary {
  border-radius: 0.5rem;
  /* 1150 to 400 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  justify-content: flex-start;
  gap: 0;
}












.egXXL-summary-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}

.egXXL-summary-row.popup-pricing,
.egXXL-summary-row.pros-cons-row,
.egXXL-summary-row.metrics-row,
.egXXL-summary-row.specs-row,
.egXXL-summary-row.rating-row {
  margin-bottom: 2.5rem;
  padding: 0 .75rem;
  box-sizing: border-box;
}



.egXXL-summary-row.popup-pricing,
.egXXL-summary-row.pros-cons-row,
.egXXL-summary-row.metrics-row,
.egXXL-summary-row.specs-row,
.egXXL-summary-row.rating-row {
  margin-top: 2rem;
}

.egXXL-summary-row.video-spotlight {
  margin-bottom: 3.5rem;
}

.egXXL-summary-row-col {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-width: 0;
}



.section-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--identity-font);
  font-size: var(--ft-26-24);
  line-height: 1;
  letter-spacing: -1px;
  padding: 0;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .section-toggle {
    font-size: var(--fm-24-22);
  }
}


.section-toggle {
  color: var(--white-color-1);
  font-weight: var(--font-weight7);
}

.brands .section-toggle {
  font-weight: 600;
  font-size: var(--ft-24-21);
}

.section-toggle .toggle-icon {
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.2s ease;
  margin-right: .5rem;
}

.section-toggle-content {
  width: 100%;
}

.verdict-label,
.toggle-label-popup {
  margin-right: 2rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-transform: capitalize;
}



/*───────────────────────────────────────────────────────────────────────────────
  Section-Toggle  —  CLS-safe base styles
  • No width or height animation on first paint
  • Animations happen only after the user clicks a toggle
───────────────────────────────────────────────────────────────────────────────*/
.section-toggle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  /* closed */
  height: 0.75px;
  background-color: var(--card-color);
  transition: none;
  transition: width 0.2s ease-in-out;
  /* ← new */
}

.section-toggle.open::after {
  width: 100%;
  /* underline appears instantly */
}

.section-toggle-content {
  max-height: 0;
  /* collapsed by default */
  overflow: hidden;
  transition: max-height .35s ease;
}

.section-toggle-content.open {
  max-height: 10000px;
  /* plenty of room */
  overflow: visible;
}

.section-toggle-content {
  max-height: 0;
  transition: max-height 0.5s ease;
}

.brands .egXXL-section-wrappers {
  background-color: var(--egxxl-surface-5) !important
}

.egXXL-section-wrappers {
  margin-top: 2.25rem;
  border-radius: 10px;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background-color: var(--egxxl-surface-2);
  transition: background-color 0.3s ease;
}

.egXXL-section-wrappers:has(> .section-toggle-content.open) {
  padding-bottom: 0;
}

.egXXL-section-divider {
  width: 85%;
  height: 1px;
  background-color: var(--egxxl-surface-0);
  margin: 2.25rem auto 0rem auto
}

@media (max-width: 825px) {

  .egXXL-summary-row.popup-pricing,
  .egXXL-summary-row.pros-cons-row,
  .egXXL-summary-row.metrics-row,
  .egXXL-summary-row.specs-row,
  .egXXL-summary-row.rating-row {
    padding: 0 .75rem;
  }


  .egXXL-summary-row {
    flex-direction: column;
    width: 100%;
    gap: 2.5rem
  }

  .egXXL-summary-row-col {
    width: 100%
  }

  .section-toggle .toggle-icon {
    margin-right: 0rem;
  }

}


@media (max-width: 600px) {



  .egXXL-summary-row.video-spotlight {
    padding: 0;

  }

}



.video-wrapper,
.specs-wrapper,
.metrics-wrapper,
.pros-wrapper,
.verdict-wrapper,
.deals-wrapper,
.photos-wrapper,
.recommended-wrapper,
.similar-wrapper,
.egXXL-section-wrappers {
  padding: clamp(17px, 10.4545px + 1.0909vw, 23px) clamp(18px, 4.9091px + 2.1818vw, 30px);
}


.egXXL-section-wrappers:has(> .section-toggle-content.open) {
  padding-bottom: 0;
}


























/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

/*----------------------------------------------------------------*/


/************************************
  Container / Overall Layout
************************************/
.egXXL-header-section {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 0 0;
  box-sizing: border-box;
}

/************************************
  Thick Brand-Colored Bar
************************************/
.egXXL-brand-bar {
  width: 400px;
  height: 9px;
  /* Thickness of the bar */
  background-color: var(--card-color);
  margin-bottom: 2rem;
}

/************************************
  Top Bar (if you add navigation)
************************************/
.egXXL-top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.egXXL-nav a {
  text-decoration: none;
  margin-right: 1rem;
  font-family: var(--identity-font);
  font-size: var(--font-size-14px);
  color: var(--white-color-1);
  transition: color 0.2s ease;
}

.egXXL-nav a:hover {
  color: var(--grey-color-1);
}

/************************************
  Title / Brand / Model / Dates
************************************/
.egXXL-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 3rem;
}

.egXXL-title-left {
  display: flex;
  flex-direction: column;
  flex: 1 1 50%;
  margin-bottom: 1rem;
}

.egXXL-title-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 0 0 auto;
  margin: auto 0;
  max-width: 100%;
  min-width: 16rem;
}


.egXXL-title-right-buttons {
  margin-top: .75rem;
}

/************************************
    Buttons on the Left
************************************/
.egXXL-brand {
  color: var(--white-color-1);
  font-family: var(--identity-font);
  font-weight: 500;
  font-size: clamp(var(--font-size-20px), 17.8182px + 0.3636vw, var(--font-size-22px));
  line-height: 1;
  letter-spacing: -1px;
}

.egXXL-model-snapshot {
  display: flex;
  color: var(--white-color-1);
  font-size: clamp(var(--font-size-36px), 29.6px + 1.6vw, var(--font-size-48px));
  /* 1150 - 400 */
  font-family: var(--identity-font);
  line-height: 1.2;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: .5rem;
}

.egXXL-model-text {
  font-weight: 700;
  letter-spacing: -1px;
  margin-right: .5rem;
  overflow: hidden;
  display: inline-block;
}

.egXXL-model-snapshot span {
  font-size: 75%;
  letter-spacing: -1px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--grey-color-1);
}

/* Dates */
.egXXL-updated-published {
  font-size: var(--font-size-13px);
  color: var(--grey-color-1);
  font-family: var(--identity-font);
}

/************************************
  Buttons on the Right
************************************/

.title-right-width {
  width: min(100%, 33.5rem);
}

.egXXL-title-right-buttons.single-row {
  width: min(100%, 33.5rem);
}

.egXXL-title-right-buttons,
.egXXL-title-right-preview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.75rem;
}

/* ▼ Snapshot page: only the “Hub” button */
.egXXL-title-right-preview.single-btn {
  grid-template-columns: 1fr;
  width: 100%;
}


.egXXL-add-vault-btn,
.egXXL-full-review-btn {
  flex: 1 1 calc(50% - 1rem);
  width: min(100%, 16rem);
}

.prevnext-wrapper {
  flex: 1 1 calc(50% - 1rem);
  min-width: 16rem
}

.hub-only {
  min-width: min(100%, 16rem) !important;
}

/************************************
  Divider
************************************/
.egXXL-divider {
  margin-top: 1.5rem;
  border: 0;
  border-top: 1px solid var(--grey-color-2);
}

/************************************
  Responsive for Smaller Screens
************************************/
@media (max-width: 825px) {

  .egXXL-title-row {
    flex-direction: column;
  }

  .egXXL-title-right {
    align-items: flex-start;
  }



}

@media (max-width: 600px) {
  .egXXL-brand-bar {
    width: 75%
  }
}




.xxl-preview-btn,
.egXXL-add-vault-btn,
.egXXL-full-review-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000;
  color: var(--white-color-1);
  border: 2px solid var(--card-color);
  border-radius: 1px;
  font-weight: 600;
  font-family: var(--identity-font);
  font-size: var(--ft-16-15);
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease;

  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 600px) {

  .xxl-preview-btn,
  .egXXL-add-vault-btn,
  .egXXL-full-review-btn {
    font-size: var(--fm-15-14);
  }
}



.xxl-popup .egXXL-title-right-buttons .egXXL-add-vault-btn.full-width {
  justify-content: center;
}

.egXXL-add-vault-btn:hover,
.egXXL-full-review-btn:hover {
  background-color: var(--card-color);
  color: var(--dark-color-1);
}

.egXXL-card .category-vault-toggle {
  display: inline-flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.egXXL-card-checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.egXXL-card .category-vault-toggle .checkmark {
  display: none;
  border-radius: 2px;
  flex: 0 0 auto;
  border: 1px solid var(--egxxl-surface-5);
  background-color: var(--white-color-1);
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.egXXL-card .category-vault-toggle.hydrated .checkmark {
  display: inline-block;
}

.egXXL-card-checkbox-input:checked+.checkmark {
  background-color: var(--card-color);
}

.egXXL-card-checkbox-input:checked+.checkmark::after {
  display: block;
  content: '';
  color: var(--dark-color-1);
}


.btn-text {
  display: inline-block;
}



.xxl-preview-btn:hover {
  background-color: var(--card-color);
  color: var(--dark-color-1);
}

.xxl-preview-btn:hover .arrow-indicator {
  color: var(--dark-color-1);
}


/* tiny preview thumbnail inside button */
.xxl-preview-btn img {
  width: auto;
  height: 2em;
  object-fit: contain;
}

/* model text, ellipsis if too long */
.xxl-preview-btn .btn-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xxl-preview-btn .hub-btn {
  display: inline-flex;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* disabled state when no previous / next exists */
.xxl-preview-btn.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.35;
  border-style: dashed;
}

.xxl-preview-btn.disabled .btn-text,
.xxl-preview-btn.disabled img {
  display: none;
  /* hide missing preview info */
}

.xxl-preview-btn.disabled::before {
  align-items: center;
  justify-content: center;
  font-size: 2em;
  line-height: 1;
  content: "🚫";
}


.nav-label {
  display: none;
  font-family: var(--identity-font);
  font-size: var(--font-size-10px);
  color: var(--grey-color-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}



.xxl-preview-btn.prev,
.xxl-preview-btn.next {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .575rem;
}

.xxl-preview-btn.prev .btn-text {
  display: none;
}

.xxl-preview-btn.next .btn-text {
  display: none;
}


/* space on the right */
.xxl-preview-btn .arrow-indicator {
  position: absolute;
  top: 50%;
  font-weight: 400;
  /* vertical centre */
  font-size: clamp(12px, 10.9333px + 0.2667vw, 14px);
  ;
  /* 1150 - 400 */
  line-height: 1;
  transform: translateY(-50%);
  /* exact centring */
  pointer-events: none;
  color: var(--white-color-1);
  user-select: none;
}

.xxl-preview-btn.prev .arrow-indicator {
  left: 5px;
}

.xxl-preview-btn.next .arrow-indicator {
  right: 5px
}

.egXXL-title-right-preview .hub-only,
.egXXL-title-right-preview .full-btn {
  width: 100% !important;
}

.egXXL-title-right-preview .hub-btn {
  width: 100% !important;
}

/*----------------------------------------------------------------*/

/****************************************************
 * The collapsible "Our Thoughts" heading
 ****************************************************/
.egXXL-summary-row-col.verdict {
  gap: 0rem;
}




/****************************************************
 * Paragraph style
 ****************************************************/


.egXXL-summary p {
  font-size: var(--font-size-16px);
  line-height: var(--font-size-27px);
  color: var(--grey-color-1);
  text-align: left;
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  letter-spacing: 0px;
  margin-bottom: 2rem;
  margin-top: .5rem;
  padding-right: 1rem;
}

.popInternallink {
  color: var(--card-color);
  cursor: pointer;
}

.external-link {
  color: var(--card-color);
  cursor: pointer;
}

.popInternallink:hover {
  text-decoration: underline;
}

.external-link:hover {
  text-decoration: underline;
}




/****************************************************
 * "Read Full Review" button
 ****************************************************/
.egXXL-card-full-review {
  display: flex;
  align-items: center;
}

.egXXL-full-review-button {
  display: block;
  width: auto;
  text-align: center;
  padding: 0.75rem 2rem;
  background-color: var(--card-color);
  color: var(--white-color-1);
  text-decoration: none;
  font-size: var(--font-size-18px);
  font-family: var(--identity-font);
  font-weight: 700;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid var(--dark-color-1);
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.egXXL-full-review-button:hover {
  background-color: var(--egxxl-surface-3);
  color: var(--card-color);
  border: 1px solid var(--card-color);
  box-shadow: 0 4px 8px var(--card-shadow-light);
}

@media (max-width: 825px) {
  .egXXL-full-review-button {
    display: block;
    width: 17rem;
    text-align: left;
    padding: 0;
    font-weight: 700;
    background-color: transparent;
    color: var(--card-color);
    text-decoration: none;
    font-size: var(--font-size-18px);
    font-family: var(--identity-font);
    border-radius: none;
    cursor: pointer;
    border: none;
    margin-bottom: 1rem;
    position: relative;
  }

  .egXXL-full-review-button::after {
    content: "❯";
    font-size: var(--font-size-20px);
    color: var(--card-color);
    display: inline-block;
    margin-left: 0.35rem;
  }

  .egXXL-full-review-button:hover {
    background-color: transparent;
    text-decoration: underline;
    box-shadow: 0 2px 5px var(--card-shadow-extra-light);
  }
}

/*----------------------------------------------------------------*/


.egXXL-card-affiliate-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, clamp(20rem, 14.545rem + 10vw, 25rem)), 1fr));
  column-gap: 2rem;
  row-gap: 2.25rem;
  width: 100%;
  padding: .5rem .5rem 0 .5rem;
}



.egXXL-card-affiliate-link-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  width: auto;
}

.egXXL-card-deals-button {
  padding: 0.95rem 1.35rem;
  font-size: var(--font-size-16px);
  color: var(--card-color);
  background-color: transparent;
  border: 1px solid var(--card-color);
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--identity-font);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.4rem;
  font-weight: var(--font-weight6);
  transition: all 0.3s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.egXXL-card-affiliate-retailer-name {
  font-size: var(--font-size-18px);
  color: var(--white-color-1);
  font-family: var(--identity-font);
  letter-spacing: var(--letter-spacing-tight);
  line-height: 1.4rem;
  font-weight: var(--font-weight3);
  width: auto;
}

.egXXL-section-wrappers .affiliate-disclaimer a {
  color: var(--card-color);
}

.egXXL-section-wrappers .affiliate-disclaimer a:hover {
  text-decoration: underline
}

.egXXL-card-deals-button:hover {
  background-color: var(--primary-color-hover, var(--card-color));
  color: var(--white-color-1);
  transform: scale(1.15) translateY(-3px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(var(--card-rgb), 0.5),
    0 0 15px rgba(var(--card-rgb), 0.8);
  border-color: transparent;
}

.egXXL-card-deals-button:hover::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 6px;
  background: radial-gradient(circle, rgba(var(--card-rgb), 0.4) 0%, transparent 70%);
  animation: pulse-flare 1.2s infinite ease-in-out;
  z-index: -1;
}


.egXXL-card-deals-button:hover::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(var(--card-rgb), 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.8s infinite ease-out;
  z-index: 0;

}


.egXXL-card-deals-button:hover {
  text-shadow: 0 0 10px rgba(var(--card-rgb), 0.9),
    0 0 20px rgba(var(--card-rgb), 0.6);
}

@keyframes pulse-flare {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}


@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }

  100% {
    width: 150px;
    height: 150px;
    opacity: 0;
  }
}


@media (max-width: 825px) {
  .egXXL-card-deals-button {
    padding: 1rem 1.75rem;
  }

  .egXXL-card-affiliate-link-item {
    gap: 1.25rem;
  }
}

/*----------------------------------------------------------------*/


.egXXL-top {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  max-height: 300px;
}

.egXXL-img-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.egXXL-top {
  display: flex;
  gap: 1rem;
}

.egXXL-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1.2;
}



.egXXL-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.egXXL-button {
  text-decoration: none;
  background-color: var(--egxxl-surface-2);
  color: var(--white-color-1);
  padding: 0.5rem 1rem;
  border: 1px solid var(--card-color);
  border-radius: .5rem;
  font-size: var(--font-size-15px);
  font-family: var(--identity-font);
  display: flex;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  min-height: 2.25rem;
}


.egXXL-button:hover {
  background-color: var(--egxxl-surface-1);
  border-color: var(--card-accent);
}


.egXXL-button::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-0.5rem);
  background-color: var(--egxxl-surface-3);
  color: var(--white-color-1);
  padding: 0.5rem 1rem;
  font-weight: 400;
  font-family: var(--identity-font);
  font-size: var(--font-size-13px);
  border: 1px solid var(--card-color);
  border-radius: .35rem;
  white-space: pre-wrap;
  pointer-events: none;
  text-align: left;
  width: 15rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

.egXXL-button:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-1.5rem);
}


.egXXL-button-price {
  background-color: var(--card-color);
  border-color: var(--card-color);
  color: var(--white-color-1);
}


.egXXL-button-price:hover {
  background-color: var(--egxxl-surface-2);
  border-color: var(--card-color);
  color: var(--white-color-1);
}







.coming-soon-text-specs,
.coming-soon-text {
  display: block;
  color: var(--white-color-2);
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  font-size: var(--font-size-20px);
  line-height: 1.3;
  letter-spacing: -.25px;
  padding: 0 0 0 1rem;
}

.coming-soon-text {
  margin: 1.75rem 0 2.5rem 0;
}

.coming-soon-text-specs {
  margin: 0;
}

.coming-soon-sub-text {
  color: var(--zero-score-start);
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  font-size: var(--font-size-17px);
  line-height: 1.3;
  letter-spacing: -.25px;
  margin: 0
}







.pros-cons-row {
  align-items: flex-start;
}

.pros-cons-col {
  position: relative;
  padding-right: 1rem;
}

.pros-cons-col.pros {
  padding-right: 2.25rem;
}


.pros-cons-col.cons {
  padding-left: 2.25rem;
}

@media (max-width: 825px) {
  .pros-cons-col.cons {
    padding-left: 0rem;
    padding-right: 1rem;
  }

  .pros-cons-col.pros {
    border-right: 0px solid var(--egxxl-surface-1);
    padding-right: 1rem;
  }
}

.pros-cons-col h4 {
  color: var(--white-color-2);
  font-family: var(--identity-font);
  font-weight: var(--font-weight7);
  font-size: var(--ft-20-19);
  line-height: 1.3;
  letter-spacing: -0.25px;
  margin: 0;
}

.pros-cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pros-cons-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: var(--grey-color-2);
  font-family: var(--identity-font);
  font-weight: var(--font-weight4);
  font-size: var(--font-size-16px);
  line-height: var(--font-size-24px);
  letter-spacing: -0.25px;
  position: relative;
}


.svg-icon {
  display: inline-block;
  font-size: var(--font-size-14px);
  left: 0;
  top: 0.2rem;
  overflow: visible;
  margin-top: .25rem;
  margin-right: 1rem;
}

.svg-icon svg {
  overflow: visible;
  width: 1em !important;
  height: 1em !important;
}


.svg-icon.plus-icon .icon-bg {
  fill: var(--card-color)
}

.svg-icon.plus-icon .icon-symbol {
  fill: var(--plus-symbol, #fff);
}

/* Minus icon fill controls */
.svg-icon.minus-icon .icon-bg {
  fill: var(--accent-color-3)
}

.svg-icon.minus-icon .icon-symbol {
  fill: var(--white-color-1);
}























.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 .75rem;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}




@media (max-width: 825px) {
  .video-container {
    padding: 0rem;
    padding-bottom: 56.25%;
  }
}
















.egXXL-tagged-cards-scroller-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
}


.egXXL-tagged-cards-scroller-recommended,
.egXXL-tagged-cards-scroller-similar {
  display: flex;
  width: calc(100% - 1.5rem);
  gap: clamp(12px, 9.8667px + 0.5333vw, 16px);
  /* 1150 - 400 */
  margin: 0 auto;
  overflow-x: auto;
  align-items: stretch;
  scroll-snap-type: x mandatory;
  padding: 2rem 0 1rem 0;
}




.similar-left-arrow,
.recommended-left-arrow {
  left: clamp(-22px, -9.4545px + -1.0909vw, -16px)
}


.similar-right-arrow,
.recommended-right-arrow {
  right: clamp(-22px, -9.4545px + -1.0909vw, -16px)
}



@media (max-width: 825px) {
  .egXXL-tagged-cards-scroller {
    width: calc(100% - 0rem);
  }
}


















.egXXL-summary-row-col .pupup-ad-left {
  margin-top: 2rem;
}

.egXXL-ad {
  height: 15rem;
  width: 100%;
  margin-top: 2.5rem;
}


.egXXL-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




/* ===================================================================
   vault-toggle feedback elements (add to your main stylesheet)
===================================================================*/

.egXXL-header-section .toggle-wrapper {
  align-self: center !important;
  justify-self: center !important;
  height: 100%;
}

.egXXL-header-section .toggle-spinner {
  width: 1.15rem;
  height: 1.15rem;
  border: 0.11rem solid var(--white-color-1);
  margin-right: .5rem;

}

.egXXL-header-section .toggle-caution svg {
  margin-top: .25rem;
  width: 2.15rem;
  height: 2.15rem;
  margin-right: .35rem;
}


/* ===================================================================
   ARTICLE WIDGET 
===================================================================*/


/* mobile: buttons already wrap nicely – no extra rules needed */
.article-widget .egXXL-summary {
  border-radius: 8px;
  padding: 0 clamp(15px, -7.9091px + 3.8182vw, 36px) clamp(12px, 3.2727px + 1.4545vw, 20px) clamp(15px, -7.9091px + 3.8182vw, 36px);
  /*1150 - 600 */
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: clamp(18px, -1.6364px + 3.2727vw, 36px);
}

.article-widget .egXXL-summary {
  background-color: var(--egxxl-surface-2);
  border: 1px solid var(--egxxl-surface-1);
}


.article-widget .egXXL-section-wrappers,
.article-widget .egXXL-summary {
  transition: margin-top 0.3s ease;
  /* animate the vertical shift */
}

.article-widget .egXXL-section-wrappers {
  padding: 0;
  background-color: transparent;
}


.article-widget .egXXL-section-wrappers:has(> .section-toggle-content.open) {
  margin-top: 3rem;
}

.article-widget .egXXL-section-wrappers:first-of-type:not(:has(> .section-toggle-content.open)) {
  margin-top: clamp(12px, 3.2727px + 1.4545vw, 20px)
}

.article-widget .egXXL-section-wrappers:not(:has(> .section-toggle-content.open)) {
  margin-top: 1rem
}


.article-widget .egXXL-section-wrappers {
  margin-bottom: 0
}


.article-widget .egXXL-section-divider {
  display: none;
}

.article-widget .similar-left-arrow,
.article-widget .recommended-left-arrow {
  left: -2.15rem
}

.article-widget .similar-right-arrow,
.article-widget .recommended-right-arrow {
  right: -2.15rem
}

.article-widget .section-toggle:not(.open):hover .toggle-icon {
  color: var(--card-color);
}

.article-widget .egXXL-summary .sendbox {
  padding: clamp(17px, 10.4545px + 1.0909vw, 23px) 0;
}


/* ===================================================================
   NO BG 
===================================================================*/

.xxl-no-bg .xxl-card-header2 {
  padding: 0;
}


.xxl-no-bg .section-toggle:not(.open):hover .toggle-icon {
  color: var(--card-color);
}

.xxl-no-bg .sendbox {
  padding: clamp(17px, 10.4545px + 1.0909vw, 23px) 0;
}



.xxl-no-bg .similar-left-arrow,
.xxl-no-bg .recommended-left-arrow {
  left: -1.25rem
}


.xxl-no-bg .similar-right-arrow,
.xxl-no-bg .recommended-right-arrow {
  right: -1.25rem
}


.xxl-no-bg .egXXL-summary {
  border-radius: 8px;
  padding: 0 clamp(15px, -7.9091px + 3.8182vw, 36px) clamp(12px, 3.2727px + 1.4545vw, 20px) clamp(15px, -7.9091px + 3.8182vw, 36px);
  /*1150 - 600 */
  display: flex;
  background: transparent;
  border: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: clamp(18px, -1.6364px + 3.2727vw, 36px);
}


.xxl-no-bg .egXXL-section-divider {
  display: none;
}

.xxl-no-bg .egXXL-summary {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.xxl-no-bg .egXXL-section-wrappers,
.xxl-no-bg .egXXL-summary {
  transition: margin-top 0.3s ease;
}

.xxl-no-bg .egXXL-section-wrappers {
  padding: 0;
  background-color: transparent;
}


.xxl-no-bg .egXXL-section-wrappers {
  background-color: transparent !important;
  /* beats inline JS */
}


.xxl-no-bg .section-toggle:not(.open):hover .toggle-icon {
  color: inherit;
}

.xxl-no-bg .section-toggle::after {
  width: 100% !important;
}

.xxl-no-bg.show-divider .egXXL-section-divider {
  display: block !important;
}


.xxl-no-bg .xxl-card-header2 {
  margin-top: 1rem;
}

.xxl-no-bg .egXXL-section-wrappers:has(> .section-toggle-content.open) {
  margin-top: 0rem !important
}

.xxl-no-bg .egXXL-section-wrappers:not(:has(> .section-toggle-content.open)) {
  margin-top: 0rem !important
}

.xxl-no-bg .egXXL-section-wrappers:last-of-type:has(> .section-toggle-content.open) {}

.xxl-no-bg .egXXL-section-wrappers:last-of-type:not(:has(> .section-toggle-content.open)) {}



.xxl-no-bg .egXXL-section-wrappers {
  margin-top: 0;
  margin-bottom: 3rem
}

.xxl-no-bg .section-toggle::after {
  bottom: -10px;
}

.xxl-no-bg .md-formated,
.xxl-no-bg .egXXL-summary-row.popup-pricing,
.xxl-no-bg .egXXL-summary-row.pros-cons-row,
.xxl-no-bg .egXXL-summary-row.metrics-row,
.xxl-no-bg .egXXL-summary-row.specs-row,
.xxl-no-bg .egXXL-summary-row.rating-row {
  margin-top: 2.75rem;
}



.xxl-no-bg .egXXL-carousel-container {
  margin-top: 3rem;
  margin-bottom: 1rem
}

.xxl-no-bg .egXXL-summary-row.popup-pricing,
.xxl-no-bg .egXXL-summary-row.pros-cons-row,
.xxl-no-bg .egXXL-summary-row.metrics-row,
.xxl-no-bg .egXXL-summary-row.specs-row,
.xxl-no-bg .egXXL-summary-row.rating-row {
  margin-bottom: 1rem;
}

.xxl-no-bg .egXXL-tagged-cards-scroller-recommended,
.xxl-no-bg .egXXL-tagged-cards-scroller-similar {
  padding: 3rem 0 1rem 0;
}

.xxl-no-bg .egXXL-summary-row.video-spotlight {
  margin-top: 3.25rem;
  margin-bottom: 1.5rem
}


.xxl-no-bg .egXXL-tagged-cards-scroller-recommended,
.xxl-no-bg .egXXL-tagged-cards-scroller-similar {
  width: 100%
}


/* ===================================================================
  combined sections
===================================================================*/



.xxl-combined-sections .egXXL-section-wrappers {
  background-color: transparent !important;
  /* beats inline JS */
}


.xxl-combined-sections .section-toggle:not(.open):hover .toggle-icon {
  color: inherit;
}

.xxl-combined-sections .section-toggle::after {
  width: 100% !important;
}

.xxl-combined-sections.show-divider .egXXL-section-divider {
  display: block !important;
}


.xxl-combined-sections .xxl-card-header2 {
  margin-top: 1rem;
}

.xxl-combined-sections .egXXL-section-wrappers:first-of-type:has(> .section-toggle-content.open) {}

.xxl-combined-sections .egXXL-section-wrappers:first-of-type:not(:has(> .section-toggle-content.open)) {}


.xxl-combined-sections .egXXL-section-wrappers:last-of-type:has(> .section-toggle-content.open) {
  margin-bottom: 1rem
}

.xxl-combined-sections .egXXL-section-wrappers:last-of-type:not(:has(> .section-toggle-content.open)) {
  margin-bottom: clamp(36px, 22.9091px + 2.1818vw, 48px)
}


.xxl-combined-sections .egXXL-section-wrappers {
  margin-top: 0rem;
  margin-bottom: 3rem
}

.xxl-combined-sections .section-toggle::after {
  bottom: -10px;
}

.xxl-combined-sections .md-formated,
.xxl-combined-sections .egXXL-summary-row.popup-pricing,
.xxl-combined-sections .egXXL-summary-row.pros-cons-row,
.xxl-combined-sections .egXXL-summary-row.metrics-row,
.xxl-combined-sections .egXXL-summary-row.specs-row {
  margin-top: 2.75rem;
}

.xxl-combined-sections .egXXL-summary-row.rating-row {
  margin-top: 0rem;
}



.xxl-combined-sections .egXXL-carousel-container {
  margin-top: 3rem;
  margin-bottom: 1rem
}

.xxl-combined-sections .egXXL-summary-row.popup-pricing,
.xxl-combined-sections .egXXL-summary-row.pros-cons-row,
.xxl-combined-sections .egXXL-summary-row.metrics-row,
.xxl-combined-sections .egXXL-summary-row.specs-row,
.xxl-combined-sections .egXXL-summary-row.rating-row {
  margin-bottom: 1rem;
}



.xxl-combined-sections .egXXL-tagged-cards-scroller-recommended,
.xxl-combined-sections .egXXL-tagged-cards-scroller-similar {
  padding: 3rem 0 1rem 0;
}

.xxl-combined-sections .egXXL-summary-row.video-spotlight {
  margin-top: 3.25rem;
  margin-bottom: 1.5rem
}















/* ===================================================================
 xxl-guide
===================================================================*/


.xxl-guide .section-toggle::after {
  background-color: var(--egxxl-surface-0);
  height: 1px;
  bottom: -12px;
}

.xxl-guide .egXXL-summary {
  padding: 0 1rem;
}

.xxl-guide .rating-wrapper {
  margin-top: 4rem;
}

.xxl-guide .egXXL-summary-row.popup-pricing,
.xxl-guide .egXXL-summary-row.pros-cons-row,
.xxl-guide .egXXL-summary-row.metrics-row,
.xxl-guide .egXXL-summary-row.specs-row,
.xxl-guide .egXXL-summary-row.rating-row {
  padding: 0
}

.xxl-guide .egXXL-summary-row.rating-row {
  margin-bottom: clamp(0px, -34.9091px + 5.8182vw, 32px);
}











/* /public/css/card_xxlarge.css — APPEND this entire block */
.egXXL-tagged-cards-grid-wrapper {
  width: 100%;
  padding: 0.25rem 0;
  overflow: visible;
}

.egXXL-tagged-cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 3), minmax(0, 1fr));
  gap: clamp(14px, 10px + 1vw, 22px);
  align-items: stretch;
}

/* Class shorthands (optional): add grid-2 / grid-3 / grid-4 */
.egXXL-tagged-cards-grid.grid-2 {
  --grid-cols: 2;
}

.egXXL-tagged-cards-grid.grid-3 {
  --grid-cols: 3;
}

.egXXL-tagged-cards-grid.grid-4 {
  --grid-cols: 4;
}

/* Responsive fallbacks: collapse columns on small viewports */
@media (max-width: 825px) {
  .egXXL-tagged-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .egXXL-tagged-cards-grid {
    grid-template-columns: 1fr;
  }
}







/* ===================================================================
toggles
===================================================================*/

.article-toggle .egXXL-section-wrappers {
  margin-top: 0;
  margin-bottom: 30px;
}