/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/TermsAcceptanceModal.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.terms-modal {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
    animation: slideIn 0.3s ease-out;
    font-family: 'DM Sans', sans-serif;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.terms-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #E5E7EB;
    background: #2D3748;
    color: white;
    border-radius: 12px 12px 0 0;
}

.terms-modal-header h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.01em;
}

.terms-modal-version {
    margin: 0;
    opacity: 0.85;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-progress {
    padding: 20px 32px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.progress-bar {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: #5A8B9F;
    transition: width 0.3s ease;
}

.progress-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    background: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #2D3748;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #5A8B9F;
    letter-spacing: -0.01em;
}

.section-content {
    color: #2D3748;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.section-content p {
    margin-bottom: 1em;
    color: #2D3748;
}

.section-content ul,
.section-content ol {
    margin-bottom: 1em;
    padding-left: 24px;
    color: #2D3748;
}

.section-content li {
    margin-bottom: 0.5em;
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #2D3748;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.section-content strong {
    font-weight: 600;
    color: #2D3748;
}

.terms-modal-error {
    margin: 0 32px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    background: #F9FAFB;
}

.terms-modal-footer button {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    flex: 1;
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover:not(:disabled) {
    filter: brightness(0.98);
    border-color: #6B7280;
}

.btn-secondary:active:not(:disabled) {
    filter: brightness(0.95);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: #5A8B9F;
    color: white;
    border: 1px solid #4e7a8b;
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-primary:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-accept {
    background: #9DB5A5;
    color: white;
    font-size: 1rem;
    border: 1px solid #8ca599;
}

.btn-accept:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-accept:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-accept:focus-visible {
    outline: 3px solid rgba(157, 181, 165, 0.5);
    outline-offset: 2px;
}

.terms-modal-footer button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terms-modal-notice {
    padding: 16px 32px 20px;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    text-align: center;
    background: #F9FAFB;
    border-radius: 0 0 12px 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .terms-modal {
        max-height: 95vh;
        margin: 10px;
    }

    .terms-modal-header,
    .terms-modal-progress,
    .terms-modal-content,
    .terms-modal-footer,
    .terms-modal-notice {
        padding-left: 20px;
        padding-right: 20px;
    }

    .terms-modal-footer {
        flex-direction: column;
    }

    .terms-modal-footer button {
        width: 100%;
    }
}
/*!******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/Store.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************/
/* Martben Logo Styles */
.mbn-logo {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.mbn-logo .mart {
  color: #2D3748;
}

.mbn-logo .ben {
  color: #5A8B9F;
}

/* Tamaños del logo */
.mbn-logo.logo--sm {
  font-size: 1.25rem;
}

.mbn-logo.logo--md {
  font-size: 1.5rem;
}

.mbn-logo.logo--lg {
  font-size: 2rem;
}

.mbn-logo.logo--xl {
  font-size: 2.75rem;
  letter-spacing: -0.04em;
}

/* Coming Soon Toast Animations */
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Product page layout */
.product-page {
  padding: 90px 16px 16px 16px;
}

.floating-brand {
  position: fixed;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
  color: #111827;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.product-topbar {
  max-width: 1200px;
  margin: 0 auto 8px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.product-topbar .back-link {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.product-media {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

.product-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Media carousel (imagenes + video) */
/* Reemplazado por carrusel vertical de miniaturas */
.media-left-thumbs {
  width: 104px;
  flex: 0 0 104px;
  border-right: 1px solid #e5e7eb;
  height: 100%;
}

.thumbs-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  max-height: 100%;
  overflow: auto;
}

.thumb {
  width: 88px;
  height: 88px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumb.video {
  background: #000;
  color: #fff;
}

.thumb.video .thumb-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.thumb.video .thumb-video span {
  font-size: 22px;
}

.thumb.active {
  outline: 2px solid var(--mbn-steel-500);
  border-color: var(--mbn-steel-500);
}

.media-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.media-main img,
.media-main video {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Reestructura contenedor: miniaturas a la izquierda y media principal a la derecha */
.product-media {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: stretch;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  align-self: start;
  background: #fff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
}

.back-link {
  background: transparent;
  border: none;
  color: var(--mbn-steel-500);
  cursor: pointer;
}

.product-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.product-short {
  display: none;
}

/* Reseller Product Badge (ProductPage) */
.reseller-product-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  margin: 12px 0;
}

.reseller-product-badge .reseller-icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.reseller-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reseller-product-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.reseller-product-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.rating-row .stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.plan-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.plan-chooser,
.billing-chooser {
  display: flex;
  gap: 6px;
}

.chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
}

.chip.active {
  border-color: var(--mbn-steel-500);
  color: var(--mbn-steel-500);
  background: color-mix(in srgb, var(--mbn-steel-500), #ffffff 85%);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-strike {
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 600;
}

.price {
  font-size: 22px;
  font-weight: 800;
}

.period {
  color: #6b7280;
}

.discount-badge {
  background: var(--pastel-green);
  color: var(--mbn-sage-400);
  border: 1px solid color-mix(in srgb, var(--mbn-sage-400), #ffffff 40%);
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
}

.impl-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-top: 1px dashed #e5e7eb;
  color: #374151;
}

.plan-dropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.plan-dropdown label {
  font-weight: 600;
  color: #374151;
}

.plan-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 10px;
  background: #f9fafb;
  cursor: pointer;
}

.plan-menu {
  position: absolute;
  z-index: 5;
  margin-top: 6px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.plan-item {
  padding: 8px 10px;
  cursor: pointer;
}

.plan-item:hover {
  background: #f3f4f6;
}

.plan-item.active {
  background: color-mix(in srgb, var(--mbn-steel-500), #ffffff 85%);
  color: var(--mbn-steel-500);
  font-weight: 600;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.refund-btn {
  margin-top: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.product-related {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 4px;
}

.product-related h2 {
  font-size: 20px;
}

.related-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.related-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.related-card .rel-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.related-card .rel-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.related-card .rel-name {
  font-size: 0.9rem;
  padding: 8px;
}

.product-description,
.product-reviews {
  max-width: 100%;
  margin: 32px 0 0 0;
  padding: 0 20px;
}

.product-description h2,
.product-reviews h2 {
  text-align: center;
  font-size: 24px;
  margin: 0 0 12px 0;
}

.product-description .desc-left h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #111827;
}

.product-description .desc-left p {
  color: #374151;
  line-height: 1.6;
}

.reviews-placeholder {
  color: #6b7280;
  font-style: italic;
  padding: 8px 0;
}

.product-desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

.desc-left .desc-block {
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}

.desc-left h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #111827;
}

.desc-left p {
  color: #374151;
  line-height: 1.6;
}

.desc-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.desc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Enhanced table for plan comparison */
.plan-compare {
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin: 20px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pc-head,
.pc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.pc-head {
  background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
  border-bottom: 2px solid #E5E7EB;
  font-weight: 700;
  color: #111827;
  padding: 4px 0;
}

.pc-col {
  padding: 14px 12px;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

.pc-col-name {
  justify-content: flex-start;
  color: #374151;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding-left: 16px;
}

/* Column headers with distinctive colors */
.pc-head .pc-col-plan.estandar {
  background: #468FAF;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.pc-head .pc-col-plan.pro {
  background: #014F86;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.pc-head .pc-col-plan.gold {
  background: #B8860B;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.pc-row {
  border-bottom: 1px solid #F3F4F6;
  transition: background-color 0.2s ease;
}

.pc-row:hover {
  background: linear-gradient(90deg, rgba(90, 139, 159, 0.04) 0%, rgba(157, 181, 165, 0.04) 100%);
}

.pc-row:hover .pc-col-name {
  color: #2D3748;
  font-weight: 600;
  transform: translateX(4px);
}

.pc-row:last-child {
  border-bottom: none;
}

.pc-col:last-child {
  border-right: none;
}

/* Distinctive check marks for each plan */
.pc-col-plan.estandar .pc-check {
  color: #468FAF;
  font-size: 1.25rem;
  font-weight: 800;
  filter: drop-shadow(0 2px 4px rgba(70, 143, 175, 0.3));
  transition: all 0.3s ease;
}

.pc-col-plan.pro .pc-check {
  color: #014F86;
  font-size: 1.25rem;
  font-weight: 800;
  filter: drop-shadow(0 2px 4px rgba(1, 79, 134, 0.3));
  transition: all 0.3s ease;
}

.pc-col-plan.gold .pc-check {
  color: #B8860B;
  font-size: 1.25rem;
  font-weight: 800;
  filter: drop-shadow(0 2px 4px rgba(184, 134, 11, 0.3));
  transition: all 0.3s ease;
}

.pc-row:hover .pc-check {
  transform: scale(1.15) rotate(5deg);
}

.pc-empty {
  color: #D1D5DB;
  font-size: 1.1rem;
}

@media (max-width: 720px) {

  .pc-head,
  .pc-row {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
  }
  
  .pc-col {
    padding: 12px 8px;
  }
  
  .pc-col-name {
    padding-left: 12px;
    font-size: 0.85rem;
  }
}

.desc-right {
  display: none;
}

@media (max-width: 960px) {
  .product-desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}

  .desc-right {
    border-left: none;
    padding-left: 0;
  }
}

/* Responsive tweaks for tablets and phones */
@media (max-width: 1024px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .floating-brand {
    font-size: 0.95rem;
    top: 6px;
  }

  .product-topbar {
    justify-content: center;
    gap: 6px;
  }

  .product-topbar .back-link {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .product-media {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
  }

  .media-left-thumbs {
    width: 100%;
    border-right: none;
    border-top: 1px solid #e5e7eb;
  }

  .thumbs-rail {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 8px;
  }

  .thumb {
    width: 72px;
    height: 72px;
  }

  .media-main {
    width: 100%;
  }

  .media-main img,
  .media-main video {
    width: 100%;
    height: auto;
  }

  .product-description,
  .product-reviews {
    margin: 24px auto 0;
    padding: 0 8px;
  }

  .plan-compare .pc-head,
  .plan-compare .pc-row {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

/* Store Container */
.store-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f7 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Store Header */
.store-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #1d1d1f;
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.store-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 1.5rem;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* User pill in store header */
.store-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.store-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mbn-steel-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.store-user-name {
  color: #1d1d1f;
  font-weight: 600;
  font-size: 0.85rem;
}

.store-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.store-title .mbn-logo {
  margin: 0;
}

.store-title .mbn-logo .mart {
  color: #2D3748;
}

.store-title .mbn-logo .ben {
  color: #5A8B9F;
}

.store-title p {
  margin: 0;
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.back-home-btn {
  background: var(--mbn-steel-500);
  border: none;
  border-radius: 980px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: fit-content;
}

.back-home-btn:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--mbn-steel-500), transparent 70%);
}

/* Store Login Button (Apple style) */
.store-login-btn {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
  color: var(--mbn-steel-500);
  border: 1px solid color-mix(in srgb, var(--mbn-steel-500), transparent 75%);
  border-radius: 980px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: fit-content;
}

.store-login-btn:hover {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 80%);
  border-color: color-mix(in srgb, var(--mbn-steel-500), transparent 65%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--mbn-steel-500), transparent 80%);
}

/* Search Container */
.search-container {
  position: relative;
  max-width: 400px;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--mbn-steel-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
  transform: translateY(-1px);
}

.search-button {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--mbn-steel-500);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-button:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 2px 15px color-mix(in srgb, var(--mbn-steel-500), transparent 60%);
}

/* Cart Button */
.cart-button {
  position: relative;
  background: var(--mbn-steel-500);
  border: none;
  border-radius: 980px;
  padding: 0.75rem 1.25rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 15px color-mix(in srgb, var(--mbn-steel-500), transparent 70%);
}

.cart-button:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 3px 20px color-mix(in srgb, var(--mbn-steel-500), transparent 60%);
}

.cart-count {
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
}

/* Apple Categories Bar */
.apple-categories-bar {
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
  overflow: hidden;
}

.apple-categories-scroll {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.apple-categories-scroll::-webkit-scrollbar {
  display: none;
}

.apple-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
  position: relative;
}

.apple-category-item:hover .apple-category-icon {
  transform: translateY(-4px) scale(1.1);
}

.apple-category-item.active .apple-category-icon {
  transform: scale(1.15);
}

.apple-category-item.active .apple-category-name {
  color: #2563eb;
  font-weight: 600;
}

.apple-category-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
  overflow: visible;
}

.apple-category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.apple-category-icon svg {
  color: #6b7280;
}

.apple-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Store Filters */
.store-filters {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.filters-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.category-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-filter {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-filter:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--mbn-steel-500);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
}

.category-filter.active {
  background: var(--mbn-steel-500);
  color: white;
  border-color: var(--mbn-steel-500);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--mbn-steel-500), transparent 70%);
}

.sort-select {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #1d1d1f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--mbn-steel-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
}

/* Store Main Content */
.store-main {
  padding: 2rem 0;
}

.store-content {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Products Grid */
/* Apple-style Product Grid */
.store-category-section {
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
}

/* Store Category Divider Phrase - Estilo Apple */
.store-category-divider {
  text-align: left;
  padding: 2.5rem 0 1.5rem;
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
}

.store-category-divider::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5A8B9F 0%, #9DB5A5 100%);
  border-radius: 2px;
}

.store-category-divider p {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #5A8B9F;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(90, 139, 159, 0.1);
}

@media (max-width: 768px) {
  .store-category-divider {
    padding: 2rem 0 1rem;
  }

  .store-category-divider p {
    font-size: 1.35rem;
  }

  .store-category-divider::before {
    width: 45px;
    height: 2px;
  }
}

/* Apple-style Product Card */
.apple-product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.apple-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.apple-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 2rem;
}

.apple-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apple-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

.apple-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2D3748;
  margin: 0;
  line-height: 1.3;
}

.apple-card-price {
  font-size: 0.875rem;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

.apple-card-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: #9DB5A5;
  color: #1a1a1a;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Category Divider Phrase */
.category-divider-phrase {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  padding: 3rem 1rem 2rem;
  margin: 1rem 0;
}

.category-divider-phrase p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2D3748;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
}

.category-divider-phrase p::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5A8B9F 0%, #9DB5A5 100%);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .category-divider-phrase {
    padding: 2rem 1rem 1.5rem;
  }

  .category-divider-phrase p {
    font-size: 1.25rem;
  }

  .category-divider-phrase p::after {
    width: 40px;
    height: 2px;
  }
}

/* Sort select in header */
.sort-select-header {
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  color: #2D3748;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232D3748' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  transition: all 0.2s ease;
}

.sort-select-header:hover {
  border-color: #5A8B9F;
}

.sort-select-header:focus {
  outline: none;
  border-color: #5A8B9F;
  box-shadow: 0 0 0 3px rgba(90, 139, 159, 0.1);
}

/* Responsive Apple Cards */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
  }

  .apple-card-image {
    padding: 1.5rem;
  }

  .apple-card-content {
    padding: 1rem 1.25rem 1.25rem;
  }

  .apple-card-title {
    font-size: 1rem;
  }

  .apple-card-price {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sort-select-header {
    font-size: 0.8125rem;
    padding: 0.4rem 1.75rem 0.4rem 0.6rem;
  }
}

/* Paginación de productos */
.store-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pagination-btn {
  padding: 10px 20px;
  background: var(--mbn-steel-500);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pagination-btn:hover:not(:disabled) {
  background: color-mix(in srgb, var(--mbn-steel-500), #000000 10%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pagination-btn:disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.pagination-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #374151;
}

.pagination-count {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

@media (max-width: 768px) {
  .store-pagination {
    flex-direction: column;
    gap: 12px;
  }

  .pagination-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Enhanced Product Cards */
.product-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  cursor: pointer;
}

.product-card.compact {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* Reseller Alliance Badge - debajo del nombre del producto */
.reseller-alliance-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  margin: 8px 16px 12px 16px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.25);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.reseller-alliance-icon {
  font-size: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.reseller-alliance-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.reseller-alliance-text strong {
  color: #ffffff;
  font-weight: 700;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Plan Selection Header */
.plan-selection-header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.plan-selector {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.plan-option {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.plan-option.active {
  border-color: var(--mbn-steel-500);
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 90%);
  color: var(--mbn-steel-500);
}

.plan-option.estandar.active {
  border-color: var(--mbn-sage-400);
  background: color-mix(in srgb, var(--mbn-sage-400), transparent 90%);
  color: var(--mbn-sage-400);
}

.plan-option.pro.active {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.plan-option.gold.active {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.plan-option:hover:not(.active) {
  border-color: var(--mbn-steel-500);
  background: rgba(255, 255, 255, 0.9);
}

/* Billing Cycle Selector */
.billing-cycle-selector {
  display: flex;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.billing-option {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.billing-option.active {
  background: var(--mbn-steel-500);
  color: white;
}

.billing-option:hover:not(.active) {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 90%);
}

/* Product Info Section */
.product-info {
  padding: 1.5rem;
}

.product-category {
  display: inline-block;
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 90%);
  color: var(--mbn-steel-500);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--mbn-steel-500), transparent 80%);
}

/* Hover effect for category */
.product-card:hover .product-category {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
  border-color: color-mix(in srgb, var(--mbn-steel-500), transparent 70%);
  color: var(--mbn-steel-500);
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.product-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1.25rem 0;
}

/* Pricing Section */
.pricing-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.main-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
}

.price-period {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.annual-savings {
  background: color-mix(in srgb, var(--mbn-sage-400), transparent 90%);
  color: var(--mbn-sage-400);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--mbn-sage-400), transparent 80%);
}

.annual-savings::before {
  content: '💰';
  font-size: 1rem;
}

/* Additional Costs */
.additional-costs {
  margin-top: 0.75rem;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
}

.cost-item:last-child {
  border-bottom: none;
}

.cost-label {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cost-value {
  font-weight: 600;
  color: #1f2937;
}

.cost-free {
  color: var(--mbn-sage-400);
  font-weight: 600;
}

.cost-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* Features Section */
.features-section {
  margin-bottom: 1.25rem;
}

.features-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-title::before {
  content: '✨';
  font-size: 1rem;
}

.features-grid {
  display: grid;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #4b5563;
  padding: 0.25rem 0;
}

.feature-item::before {
  content: '✓';
  color: var(--mbn-sage-400);
  font-weight: bold;
  font-size: 0.9rem;
}

.no-features {
  background: #fef3c7;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #92400e;
  border: 1px solid #fbbf24;
  text-align: center;
  font-style: italic;
}

.plan-comparison-hint {
  margin-top: 0.75rem;
  padding: 0.5rem;
  background: color-mix(in srgb, var(--mbn-steel-500), #ffffff 90%);
  border-radius: 6px;
  border-left: 3px solid color-mix(in srgb, var(--mbn-steel-500), #ffffff 40%);
}

.plan-comparison-hint small {
  color: color-mix(in srgb, var(--mbn-steel-500), #000000 20%);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Hover styles for new elements */
.product-card:hover .no-features {
  background: rgba(254, 243, 199, 0.1);
  color: #fbbf24;
  border-color: rgba(251, 191, 36, 0.3);
}

.product-card:hover .plan-comparison-hint {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 90%);
  border-left-color: color-mix(in srgb, var(--mbn-steel-500), transparent 50%);
}

.product-card:hover .plan-comparison-hint small {
  color: color-mix(in srgb, var(--mbn-steel-500), #ffffff 30%);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.add-to-cart-btn,
.buy-now-btn {
  flex: 1;
  padding: 0.875rem 1rem;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #1d1d1f;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--mbn-steel-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
}

.buy-now-btn {
  background: var(--mbn-steel-500);
  color: white;
}

.buy-now-btn:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--mbn-steel-500), transparent 60%);
}

/* Learn More Link - Apple Style */
.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mbn-steel-500);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 980px;
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--mbn-steel-500), transparent 80%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.learn-more-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.learn-more-link:hover {
  background: color-mix(in srgb, var(--mbn-steel-500), transparent 85%);
  border-color: color-mix(in srgb, var(--mbn-steel-500), transparent 70%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--mbn-steel-500), transparent 80%);
}

.learn-more-link:hover::before {
  left: 100%;
}

/* Info Tooltip */
.info-tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
  margin-left: 0.5rem;
}

.info-tooltip::before {
  content: 'ℹ️';
  font-size: 0.8rem;
  opacity: 0.7;
}

.tooltip-content {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: white;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  white-space: nowrap;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1f2937;
}

.info-tooltip:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.cart-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #1d1d1f;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.close-cart {
  background: none;
  border: none;
  color: #1d1d1f;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.close-cart:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* Empty Cart */
.empty-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #6b7280;
}

.empty-cart svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-cart p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.empty-cart span {
  font-size: 0.9rem;
}

/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  position: relative;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.cart-item-price {
  font-weight: 700;
  color: var(--mbn-steel-500);
  margin: 0 0 0.75rem 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: #f3f4f6;
  border: none;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

.quantity-btn:hover {
  background: #e5e7eb;
}

.quantity {
  font-weight: 600;
  color: #374151;
  min-width: 20px;
  text-align: center;
}

.remove-item {
  background: none;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.remove-item:hover {
  background: #fef2f2;
}

/* Cart Summary */
.cart-summary {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.total-amount {
  font-size: 1.3rem;
  color: var(--mbn-steel-500);
}

.checkout-btn {
  width: 100%;
  background: var(--mbn-steel-500);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  background: var(--apple-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--mbn-steel-500), transparent 60%);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .products-grid {
    margin-right: 0;
  }

  .cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .store-header-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .back-home-btn {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .store-title h1 {
    font-size: 1.6rem;
  }

  .filters-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .category-filters {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    justify-items: center;
  }

  .cart-sidebar {
    width: 100%;
  }

  .store-content {
    padding: 0 1rem;
  }

  .product-card {
    border-radius: 16px;
  }

  .product-image {
    height: auto;
  }

  .plan-selector {
    flex-direction: column;
    gap: 0.25rem;
  }

  .plan-option {
    font-size: 0.75rem;
    padding: 0.4rem;
  }

  .billing-cycle-selector {
    flex-direction: column;
    gap: 0.25rem;
  }

  .billing-option {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }

  .current-price {
    font-size: 1.6rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .add-to-cart-btn,
  .buy-now-btn {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .store-header {
    padding: 0.75rem 0;
  }

  .store-header-content {
    padding: 0 1rem;
  }

  .store-title h1 {
    font-size: 1.4rem;
  }

  .search-input {
    padding: 0.875rem 2.5rem 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .cart-button {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .product-card {
    margin: 0 0.5rem;
  }

  .product-info {
    padding: 1rem;
  }

  .pricing-section {
    padding: 1rem;
  }

  .plan-selection-header {
    padding: 0.75rem;
  }

  .current-price {
    font-size: 1.4rem;
  }
}

/* Mobile portrait: full responsive layout preserving all content */
@media (max-width: 900px) and (orientation: portrait) {
  .store-container {
    overflow-x: hidden;
  }

  .store-header {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .store-header-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 0 12px;
  }

  .store-title,
  .store-search,
  .store-actions,
  .store-cart {
    width: 100%;
  }

  .search-container {
    max-width: 100%;
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .store-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .store-user-pill {
    max-width: 100%;
  }

  .store-user-name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .filters-content {
    padding: 0 12px;
  }

  .category-filters {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .category-filter {
    display: inline-block;
  }

  /* Carrusel horizontal de productos con scroll-snap (flex para tamaños uniformes) */
  .products-grid {
    display: flex;
    gap: 12px;
    margin: 0;
    overflow-x: auto;
    padding: 0 12px 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
  }

  .product-card.compact {
    flex: 0 0 calc(100% - 24px);
    width: auto;
    max-width: none;
    scroll-snap-align: center;
  }

  .cart-sidebar {
    width: 100%;
    max-width: 100%;
  }
}

/* Ensure centered snapping paddings */
@media (max-width: 900px) and (orientation: portrait) {
  .products-grid {
    scroll-padding-left: 12px;
    scroll-padding-right: 12px;
  }
}

/* Mobile landscape: two-column grid and condensed paddings */
@media (orientation: landscape) and (max-height: 520px) {

  /* Product slug view tweaks for better navigation in landscape */
  .product-detail {
    gap: 16px;
  }

  .product-media {
    max-height: 70vh;
    height: auto;
  }

  .media-left-thumbs {
    width: 104px;
  }

  .media-main img,
  .media-main video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .store-header {
    position: sticky;
    top: 0;
    z-index: 120;
  }

  .store-content {
    padding: 0 12px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-right: 0;
  }

  .product-card.compact {
    max-width: 100%;
  }

  .cart-sidebar {
    width: 70%;
    max-width: 70%;
  }
}

/* Landscape mobile: mimic desktop layout with reduced scale */
@media (orientation: landscape) and (max-width: 900px) {

  /* Keep two-column layout like desktop */
  .product-detail {
    grid-template-columns: 1.15fr 1fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Keep carousel left + main media right inside media area */
  .product-media {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: stretch;
    max-height: 78vh;
  }

  .media-left-thumbs {
    width: 96px;
  }

  .thumb {
    width: 64px;
    height: 64px;
  }

  .thumbs-rail {
    gap: 6px;
    padding: 6px;
  }

  .media-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .media-main img,
  .media-main video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Slightly reduce paddings/typography on info panel */
  .product-info-panel {
    padding: 12px;
  }

  .product-title {
    font-size: 20px;
  }

  .price {
    font-size: 20px;
  }
}

/* Blocking loader overlay */
.blocking-loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 252, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.blocking-loader-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.blocking-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #e5e7eb;
  border-top-color: #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.blocking-text {
  color: #1f2937;
  font-weight: 600;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Compact product card and product page styles */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  justify-items: center;
}

.product-card.compact {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card.compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.product-card.compact .product-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card.compact .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card.compact:hover .product-image img {
  transform: scale(1.05);
}

/* Badge de precio arriba a la izquierda */
.product-card.compact .price-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.product-card.compact .price-badge .current-price {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
  animation: pulse-green 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse-green {

  0%,
  100% {
    color: #059669;
  }

  50% {
    color: #10b981;
  }
}

.product-card.compact .price-badge .price-period {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  margin-left: 2px;
}

/* Combo badge (nombre del producto) */
.product-card.compact .combo-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), transparent);
  padding: 60px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.product-card.compact .combo-badge .combo-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
}

.product-card.compact .combo-badge .combo-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Reseller Alliance Badge - dentro del combo-badge */
.product-card.compact .combo-badge .reseller-alliance-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 6px 10px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(245, 158, 11, 0.95) 100%);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
}

.product-card.compact .combo-badge .reseller-alliance-icon {
  font-size: 16px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.product-card.compact .combo-badge .reseller-alliance-text {
  font-size: 12px;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-card.compact .combo-badge .reseller-alliance-text strong {
  font-weight: 700;
  color: #ffffff;
}

.product-card.compact .implementation-row {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #374151;
}

.product-card.compact .implementation-row .label {
  color: #6b7280;
}

.product-card.compact .action-buttons {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  z-index: 1;
}

/* Implementación justo encima de los botones */
.product-card.compact .implementation-overlay {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  z-index: 1;
}

.product-card.compact .implementation-overlay .label,
.product-card.compact .implementation-overlay .value {
  color: #111827;
}

.product-card.compact .implementation-overlay .label {
  font-size: 0.8rem;
}

.product-card.compact .implementation-overlay .value {
  font-weight: 700;
  font-size: 0.85rem;
}

.product-card.compact .add-to-cart-btn,
.product-card.compact .buy-now-btn {
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f9fafb;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 0.8rem;
  line-height: 1.1;
}

.product-card.compact .add-to-cart-btn:hover,
.product-card.compact .buy-now-btn:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.product-card.compact .buy-now-btn {
  background: var(--mbn-steel-500);
  color: #fff;
  border-color: var(--mbn-steel-500);
}

.product-card.compact .buy-now-btn:hover {
  background: var(--apple-blue-hover);
}

.plans-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.plans-modal {
  width: min(1100px, 92vw);
  max-height: 88vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plans-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.plans-modal-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 12px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.06));
}

.plans-modal-header h2 {
  font-size: 1.2rem;
  margin: 0;
}

.plans-modal-close {
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px;
  overflow: auto;
}

.plan-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.plan-card.selected {
  border-color: var(--mbn-steel-500);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mbn-steel-500), transparent 88%);
}

.plan-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.plan-name {
  font-weight: 700;
}

.plan-price .amount {
  font-weight: 800;
}

.plan-price .period {
  color: #6b7280;
  font-size: 0.9rem;
  margin-left: 4px;
}

.plan-annual {
  color: #374151;
  font-size: 0.9rem;
  margin-top: 4px;
}

.plan-features {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.plan-feature {
  color: #111827;
  font-size: 0.95rem;
}

.plan-feature.empty {
  color: #6b7280;
  font-style: italic;
}

.choose-plan-btn {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--mbn-steel-500);
  background: var(--mbn-steel-500);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }
}

/* Tabla comparativa de planes */
.plans-compare {
  padding: 8px 10px 16px 10px;
  overflow: auto;
  flex: 1 1 auto;
}

.plans-compare-table {
  display: grid;
  gap: 6px;
  width: 100%;
  align-items: stretch;
}

.plans-compare-table.header-row {
  margin-bottom: 6px;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.plans-compare-table.header-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 12px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.06));
}

.plans-compare .cell {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plans-compare .feature-title {
  font-weight: 700;
  background: #fff;
  border-color: transparent;
  justify-content: flex-start;
}

.plans-compare .feature-name {
  justify-content: flex-start;
  font-weight: 600;
  background: #fff;
}

.plans-compare .plan-col-header {
  flex-direction: column;
  gap: 4px;
}

.plans-compare .plan-col-header.selected {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mbn-steel-500), transparent 88%);
  border-color: var(--mbn-steel-500);
}

.plans-compare .plan-title {
  font-weight: 800;
}

.plans-compare .plan-price .amount {
  font-weight: 800;
}

.plans-compare .plan-price .period {
  color: #6b7280;
  font-size: 0.9rem;
  margin-left: 4px;
}

.plans-compare .plan-annual {
  color: #374151;
  font-size: 0.9rem;
}

.plans-compare .plan-cell .check {
  color: var(--mbn-sage-400);
  font-weight: 800;
}

.plans-compare .plan-cell .dash {
  color: #9ca3af;
  font-weight: 800;
}

/* Scrollbar estilizado para el modal (opcional) */
.plans-compare::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.plans-compare::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 8px;
}

.plans-compare::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Barra lateral de suscripciones activas */
.store-main {
  display: flex;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

.subscriptions-sidebar {
  position: sticky;
  top: 16px;
  height: fit-content;
  max-height: calc(100vh - 32px);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.subscriptions-sidebar.open {
  width: 320px;
  min-width: 320px;
}

.subscriptions-sidebar.collapsed {
  width: 56px;
  min-width: 56px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}

.sidebar-title svg {
  color: var(--mbn-steel-500);
  flex-shrink: 0;
}

.sidebar-title h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.subscriptions-sidebar.collapsed .sidebar-title h3 {
  display: none;
}

.sidebar-toggle {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  color: #6b7280;
}

.sidebar-toggle:hover {
  background: #e5e7eb;
  color: #111827;
}

.sidebar-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.sidebar-loading {
  text-align: center;
  color: #6b7280;
  padding: 20px;
  font-size: 14px;
}

.sidebar-subscriptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-subscription-card {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  transition: all 0.2s ease;
}

.sidebar-subscription-card:hover {
  border-color: var(--mbn-steel-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.sidebar-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.sidebar-sub-name {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-sub-badge {
  background: var(--pastel-green);
  color: var(--mbn-sage-400);
  border: 1px solid color-mix(in srgb, var(--mbn-sage-400), #ffffff 40%);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
}

.sidebar-sub-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.active {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.status-dot.inactive {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.sidebar-cta-button {
  width: 100%;
  padding: 12px 16px;
  background: var(--mbn-steel-500);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.sidebar-cta-button:hover {
  background: color-mix(in srgb, var(--mbn-steel-500), #000000 10%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-cta-button svg {
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
  .subscriptions-sidebar.open {
    width: 280px;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .store-main {
    flex-direction: column;
  }

  .subscriptions-sidebar {
    position: relative;
    width: 100% !important;
    min-width: 100% !important;
    max-height: none;
  }

  .subscriptions-sidebar.collapsed {
    height: 56px;
  }

  .subscriptions-sidebar.collapsed .sidebar-content {
    display: none;
  }
}

.plans-compare::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 8px;
}
/* ===== Product Feature Cards Styles ===== */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

@media (max-width: 720px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #5A8B9F 0%, #9DB5A5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #5A8B9F;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D3748;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.feature-card-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6B7280;
}

/* Specific styles for 'Acerca de' block only */
.desc-block-about .about-text-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.desc-block-about h3 {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 24px;
}

.desc-block-about p {
  line-height: 1.8;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  text-align: justify;
}

.desc-block-about:hover {
  border-color: #5A8B9F;
  box-shadow: 0 8px 20px rgba(90, 139, 159, 0.12);
  transform: translateY(-2px);
}

/* Main Features Title Style */
.features-main-title {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* ===== Unique Features Premium Design ===== */
.unique-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
  padding: 0 20px;
}

@media (max-width: 720px) {
  .unique-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.unique-feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.unique-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(90, 139, 159, 0.5);
}

.unique-feature-card:hover .unique-feature-glow {
  opacity: 0.15;
}

.unique-feature-card:hover .unique-feature-icon-circle {
  transform: scale(1.1) rotate(5deg);
}

.unique-feature-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.unique-feature-icon-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.unique-feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3748;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.unique-feature-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.unique-feature-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  filter: blur(60px);
  z-index: -1;
}

/* Styling for numeric values in comparison table */
.pc-number {
  font-weight: 700;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
}

/* Números en colores de cada plan */
.pc-col-plan.estandar .pc-number {
  color: #468FAF;
}

.pc-col-plan.pro .pc-number {
  color: #014F86;
}

.pc-col-plan.gold .pc-number {
  color: #B8860B;
}

/* Layout de dos columnas para "Acerca de" con imagen */
.desc-block-with-image {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  padding: 32px !important;
}

.about-image-container {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.desc-block-with-image .about-text-container {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.desc-block-with-image h3 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 24px;
  font-size: 1.75rem;
}

.desc-block-with-image p {
  text-align: left;
}

.desc-block-with-image:hover .about-image {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive: en mobile, cambiar a columna vertical */
@media (max-width: 768px) {
  .desc-block-with-image {
    flex-direction: column;
  }
  
  .about-image-container,
  .desc-block-with-image .about-text-container {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .desc-block-with-image h3 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 24px;
  font-size: 1.75rem;
}
  
  .desc-block-with-image p {
    text-align: justify;
  }
}

/* Override para centrar el título verticalmente en layout de dos columnas */
.desc-block-with-image h3 {
  text-align: center !important;
  margin-top: 80px !important;
  margin-bottom: 24px !important;
}

/* ============================================
   PROCESSOR-STYLE FEATURE LAYOUT
   ============================================ */

/* Contenedor principal */
.processor-feature-container {
  position: relative;
  width: 100%;
  min-height: 800px;
  padding: 60px 20px;
}

/* Grid de cards features alrededor del procesador */
.processor-feature-container .feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Contenedor del procesador central */
.processor-core-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.processor-core {
  position: relative;
  width: 80px;
  height: 80px;
  pointer-events: all;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Imagen del procesador */
.processor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(90, 139, 159, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 4px solid rgba(90, 139, 159, 0.5);
  background: white;
  padding: 8px;
}

.processor-core:hover .processor-image {
  box-shadow: 
    0 0 60px rgba(90, 139, 159, 0.8),
    0 0 120px rgba(157, 181, 165, 0.6),
    0 16px 64px rgba(0, 0, 0, 0.3);
  border-color: rgba(90, 139, 159, 1);
  filter: brightness(1.15);
}

/* SVG de conexiones */
.processor-connections {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

/* Líneas de conexión */
.connection-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 0.8s ease-out;
  opacity: 0;
}

.connection-line.active .connection-path {
  stroke-dashoffset: 0;
  opacity: 1;
}

/* Animación escalonada para cada línea */
.connection-line.active.connection-0 .connection-path { transition-delay: 0s; }
.connection-line.active.connection-1 .connection-path { transition-delay: 0.1s; }
.connection-line.active.connection-2 .connection-path { transition-delay: 0.2s; }
.connection-line.active.connection-3 .connection-path { transition-delay: 0.3s; }
.connection-line.active.connection-4 .connection-path { transition-delay: 0.4s; }
.connection-line.active.connection-5 .connection-path { transition-delay: 0.5s; }
.connection-line.active.connection-6 .connection-path { transition-delay: 0.6s; }
.connection-line.active.connection-7 .connection-path { transition-delay: 0.7s; }
.connection-line.active.connection-8 .connection-path { transition-delay: 0.8s; }
.connection-line.active.connection-9 .connection-path { transition-delay: 0.9s; }
.connection-line.active.connection-10 .connection-path { transition-delay: 1s; }
.connection-line.active.connection-11 .connection-path { transition-delay: 1.1s; }

/* Efecto de iluminación en cards cuando están conectados */
.processor-feature-container .card-illuminated {
  animation: cardIlluminate 0.8s ease-out forwards;
  animation-delay: calc(var(--card-index, 0) * 0.1s + 0.6s);
}

@keyframes cardIlluminate {
  0% {
    border-color: #E5E7EB;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  50% {
    border-color: #5A8B9F;
    box-shadow: 
      0 0 20px rgba(90, 139, 159, 0.6),
      0 0 40px rgba(157, 181, 165, 0.3),
      0 4px 16px rgba(0, 0, 0, 0.1);
  }
  100% {
    border-color: #5A8B9F;
    box-shadow: 
      0 0 15px rgba(90, 139, 159, 0.4),
      0 0 30px rgba(157, 181, 165, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

/* Asignar índices a las cards para animación escalonada */
.processor-feature-container .feature-card[data-card-index="0"] { --card-index: 0; }
.processor-feature-container .feature-card[data-card-index="1"] { --card-index: 1; }
.processor-feature-container .feature-card[data-card-index="2"] { --card-index: 2; }
.processor-feature-container .feature-card[data-card-index="3"] { --card-index: 3; }
.processor-feature-container .feature-card[data-card-index="4"] { --card-index: 4; }
.processor-feature-container .feature-card[data-card-index="5"] { --card-index: 5; }
.processor-feature-container .feature-card[data-card-index="6"] { --card-index: 6; }
.processor-feature-container .feature-card[data-card-index="7"] { --card-index: 7; }
.processor-feature-container .feature-card[data-card-index="8"] { --card-index: 8; }
.processor-feature-container .feature-card[data-card-index="9"] { --card-index: 9; }
.processor-feature-container .feature-card[data-card-index="10"] { --card-index: 10; }
.processor-feature-container .feature-card[data-card-index="11"] { --card-index: 11; }

/* Responsive: En mobile, ocultar procesador y líneas */
@media (max-width: 768px) {
  .processor-core-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
  
  .processor-feature-container {
    min-height: auto;
    padding: 40px 20px;
  }
  
  .processor-feature-container .feature-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Hover effect para agrandar el procesador mucho más */
.processor-core:hover {
  transform: scale(3.5);
  z-index: 100;
}
/* Elevar z-index de los cards para que las líneas pasen detrás */
.processor-feature-container .feature-card {
  position: relative;
  z-index: 2;
  background: white;
}

/* ============================================
   FEATURE IMAGE CARD - Grid Layout Simple
   ============================================ */

/* Imagen ocupando 2x2 en el grid */
.feature-image-card {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
  background: white;
  padding: 16px;
}

.feature-image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(90, 139, 159, 0.2);
  border-color: #5A8B9F;
}

.feature-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive: En mobile, imagen ocupa 1 columna normal */
@media (max-width: 768px) {
  .feature-image-card {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   UNIQUE FEATURE HEADER IMAGE - Grid Layout
   ============================================ */

/* Imagen header ocupando 2 columnas en el grid de unique features */
.unique-feature-header-image {
  grid-column: span 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
  background: white;
  padding: 12px;
}

.unique-feature-header-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(90, 139, 159, 0.15);
  border-color: #5A8B9F;
}

.unique-header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive: En mobile, imagen ocupa 1 columna normal */
@media (max-width: 768px) {
  .unique-feature-header-image {
    grid-column: span 1;
  }
}
/* ============================================
   CENTRADO VERTICAL DE IMÁGENES - FIX PARA HORIZONTALES
   ============================================ */

/* Asegurar que las imágenes principales se centren verticalmente */
.media-main {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.media-main img {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.media-main video {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

/* ============================================
   FIX DEFINITIVO - IMÁGENES HORIZONTALES SIN ESPACIO ARRIBA
   ============================================ */

.product-media .media-main img {
  object-position: top !important;
  height: auto !important;
  max-height: 100% !important;
  width: 100% !important;
}

.product-media .media-main video {
  object-position: top !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

/* ============================================
   LIGHTBOX ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/SubscriptionPaymentModal.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************/
.subscription-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.subscription-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 15000; /* Mayor que el modal pero menor que 3DS */
  border-radius: 0;
  padding: 40px;
  text-align: center;
  pointer-events: all; /* Bloquea todos los clicks */
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-message {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
  max-width: 400px;
}

.loading-submessage {
  font-size: 14px;
  color: #6b7280;
}

.subscription-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.subscription-modal-header h2 {
  margin: 0;
  font-size: 24px;
  color: #111827;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.close-btn:hover {
  background: #f3f4f6;
  color: #111827;
}

.subscription-modal-body {
  padding: 24px;
}

.subscription-info {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.subscription-info p {
  margin: 8px 0;
  font-size: 14px;
  color: #0c4a6e;
}

.subscription-note {
  background: #fef3c7;
  border: 1px solid #fde047;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px !important;
  font-size: 13px !important;
  color: #713f12 !important;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.payment-method-btn {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.payment-method-btn:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.payment-method-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.payment-method-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.payment-method-icon.card-logos {
  gap: 8px;
}

.payment-method-icon.card-logos img {
  max-width: 30%;
  max-height: 40px;
}

.payment-method-name {
  font-weight: 600;
  font-size: 14px;
  color: #111827;
  margin-bottom: 6px;
}

.payment-method-desc {
  font-size: 12px;
  color: #6b7280;
}

.payment-form {
  margin-top: 20px;
}

.back-btn {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  margin-bottom: 20px;
  transition: all 0.2s;
}

.back-btn:hover {
  background: #e5e7eb;
}

.card-form h3,
.nequi-form h3,
.bancolombia-form h3,
.daviplata-form h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: #111827;
}

.method-info {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #0c4a6e;
  border-radius: 4px;
}

.method-note {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 14px;
  color: #14532d;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.form-actions {
  margin-top: 24px;
}

.submit-btn {
  width: 100%;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover:not(:disabled) {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.security-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 640px) {
  .subscription-modal-content {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Custom Alert Styles */
.custom-alert {
  margin: 16px 24px;
  padding: 16px;
  border-radius: 8px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-alert-info {
  background: #eff6ff;
  border: 1px solid #3b82f6;
  color: #1e40af;
}

.custom-alert-success {
  background: #f0fdf4;
  border: 1px solid #22c55e;
  color: #166534;
}

.custom-alert-error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
}

.alert-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.alert-message {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.alert-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.alert-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
}

/* Sandbox OTP Hint */
.sandbox-otp-hint {
  margin-top: 12px;
  padding: 12px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  font-size: 14px;
  color: #92400e;
}

.sandbox-otp-hint code {
  background: #fde68a;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
}

/* 3D Secure Challenge Modal */
.three-ds-challenge-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000; /* Mayor que el modal principal */
  padding: 20px;
  animation: fadeIn 0.3s ease-in-out;
}

.three-ds-challenge-modal {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.three-ds-header {
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.three-ds-header h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
}

.three-ds-header p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Logo de Mastercard Identity Check */
.mastercard-logo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1); /* Hacer el logo blanco para que contraste con el fondo morado */
}

.three-ds-content {
  padding: 20px;
  flex: 1;
  overflow: auto;
}

.three-ds-footer {
  padding: 16px 20px;
  background: #f9fafb;
  text-align: center;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top: 1px solid #e5e7eb;
}

.three-ds-footer p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/UseCouponModal.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
.use-coupon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease-out;
}

.use-coupon-modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
}

.use-coupon-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.use-coupon-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
}

.close-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.use-coupon-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.product-info-box {
  background: #f9fafb;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid #e5e7eb;
}

.info-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
  margin-top: 4px;
}

.coupon-input-section {
  margin-bottom: 20px;
}

.coupon-input-section label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.input-group {
  display: flex;
  gap: 8px;
}

.input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: border-color 0.2s;
}

.input-group input:focus {
  outline: none;
  border-color: #667eea;
}

.input-group input:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}

.validate-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.validate-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.validate-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.coupon-preview-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 20px;
  color: white;
  animation: slideDown 0.3s ease-out;
}

.coupon-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.coupon-icon {
  font-size: 32px;
}

.coupon-code-display {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.coupon-preview-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-label {
  font-size: 14px;
  opacity: 0.9;
}

.preview-value {
  font-size: 14px;
  font-weight: 600;
}

.preview-value.highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 15px;
}

.coupon-motivational {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  font-style: italic;
  opacity: 0.95;
}

.use-coupon-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: #f9fafb;
}

.cancel-btn, .activate-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cancel-btn {
  background: white;
  color: #6b7280;
  border: 1px solid #e5e7eb;
}

.cancel-btn:hover:not(:disabled) {
  background: #f3f4f6;
}

.activate-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.activate-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.activate-btn:disabled, .cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Toast Notifications */
.coupon-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  animation: slideInRight 0.3s ease-out;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
}

.coupon-toast-success {
  border-left: 4px solid #10b981;
}

.coupon-toast-error {
  border-left: 4px solid #ef4444;
}

.coupon-toast-warning {
  border-left: 4px solid #f59e0b;
}

.coupon-toast-info {
  border-left: 4px solid #3b82f6;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.toast-icon {
  font-size: 20px;
  font-weight: bold;
}

.coupon-toast-success .toast-icon {
  color: #10b981;
}

.coupon-toast-error .toast-icon {
  color: #ef4444;
}

.coupon-toast-warning .toast-icon {
  color: #f59e0b;
}

.coupon-toast-info .toast-icon {
  color: #3b82f6;
}

.toast-message {
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.toast-close {
  background: #f3f4f6;
  border: none;
  color: #6b7280;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: background 0.2s;
}

.toast-close:hover {
  background: #e5e7eb;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .use-coupon-modal {
    width: 95%;
    max-height: 95vh;
  }

  .use-coupon-header {
    padding: 20px;
  }

  .use-coupon-header h2 {
    font-size: 18px;
  }

  .use-coupon-body {
    padding: 20px;
  }

  .input-group {
    flex-direction: column;
  }

  .validate-btn {
    width: 100%;
  }

  .use-coupon-footer {
    flex-direction: column-reverse;
  }

  .cancel-btn, .activate-btn {
    width: 100%;
  }

  .coupon-toast {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/common/WarrantyPolicyDisplay.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
/* Warranty Policy Display Styles */

.warranty-policy-container {
  margin: 48px 0;
  padding: 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.warranty-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e5e7eb;
}

.warranty-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.shield-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.warranty-reseller {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

.warranty-reseller strong {
  color: #3b82f6;
  font-weight: 600;
}

.warranty-content {
  display: grid;
  gap: 24px;
}

.warranty-section {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-left: 4px solid #e5e7eb;
}

.warranty-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Color-coded sections */
.section-info {
  border-left-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.section-success {
  border-left-color: #10b981;
  background: linear-gradient(135deg, #d1fae5 0%, #ffffff 100%);
}

.section-success .warranty-section-title {
  color: #065f46;
}

.section-warning {
  border-left-color: #f59e0b;
  background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
}

.section-warning .warranty-section-title {
  color: #92400e;
}

.section-danger {
  border-left-color: #ef4444;
  background: linear-gradient(135deg, #fee2e2 0%, #ffffff 100%);
}

.section-danger .warranty-section-title {
  color: #991b1b;
}

.section-process {
  border-left-color: #8b5cf6;
  background: linear-gradient(135deg, #ede9fe 0%, #ffffff 100%);
}

.section-process .warranty-section-title {
  color: #5b21b6;
}

.warranty-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
}

.warranty-icon {
  font-size: 24px;
}

.warranty-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warranty-list:not(.numbered) .warranty-item::before {
  content: '•';
  color: #3b82f6;
  font-weight: bold;
  font-size: 20px;
  margin-right: 12px;
}

.warranty-item {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: background 0.2s ease;
  display: flex;
  align-items: flex-start;
}

.warranty-item:hover {
  background: rgba(59, 130, 246, 0.05);
}

/* Numbered list for process steps */
.warranty-list.numbered {
  counter-reset: step-counter;
}

.warranty-list.numbered .warranty-item {
  position: relative;
  padding-left: 56px;
}

.step-number {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.warranty-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #e5e7eb;
}

.warranty-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
  margin: 0;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px dashed #d1d5db;
}

/* Responsive Design */
@media (max-width: 768px) {
  .warranty-policy-container {
    padding: 24px 16px;
    margin: 32px 0;
  }

  .warranty-title {
    font-size: 22px;
    flex-direction: column;
    gap: 8px;
  }

  .shield-icon {
    font-size: 28px;
  }

  .warranty-section {
    padding: 16px;
  }

  .warranty-section-title {
    font-size: 16px;
  }

  .warranty-item {
    font-size: 14px;
    padding: 10px;
  }

  .warranty-list.numbered .warranty-item {
    padding-left: 48px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .warranty-disclaimer {
    font-size: 13px;
  }
}

/* Animation for list items */
.warranty-item {
  animation: slideInLeft 0.3s ease-out backwards;
}

.warranty-item:nth-child(1) { animation-delay: 0.05s; }
.warranty-item:nth-child(2) { animation-delay: 0.1s; }
.warranty-item:nth-child(3) { animation-delay: 0.15s; }
.warranty-item:nth-child(4) { animation-delay: 0.2s; }
.warranty-item:nth-child(5) { animation-delay: 0.25s; }
.warranty-item:nth-child(n+6) { animation-delay: 0.3s; }

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Empty state styling */
.warranty-section:empty {
  display: none;
}

/* Print styles */
@media print {
  .warranty-policy-container {
    box-shadow: none;
    page-break-inside: avoid;
  }

  .warranty-section {
    page-break-inside: avoid;
  }

  .warranty-item:hover {
    background: rgba(255, 255, 255, 0.7);
  }

  .warranty-section:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

