/** Shopify CDN: Minification failed

Line 160:14 Expected identifier but found whitespace
Line 160:15 Unexpected "70"
Line 166:0 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/

/* ===============================
   FONDO INDUSTRIAL GLOBAL (ZILVERK)
   =============================== */

body{
  background: #000 !important;
}

/* Imagen fija de fondo */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background-image: url("/cdn/shop/files/ChatGPT_Image_18_dic_2025_07_12_13_p.m..png?v=1766107410");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  filter: brightness(0.45) contrast(1.12);
}

/* Overlay oscuro para que se lea todo */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: radial-gradient(
    circle at top,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.62) 55%,
    rgba(0,0,0,0.88) 100%
  );
}

/* Quitar el gris/gradiente del theme que tapa el fondo */
#MainContent,
.content-for-layout,
main,
.gradient,
.shopify-section,
.section,
.color-background-1,
.color-background-2,
.color-background-3{
  background: transparent !important;
}


/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}
/* ===============================
   HOME PAGE BACKGROUND ONLY
   =============================== */

.template-index body{
  background-image: url('/cdn/shop/files/ChatGPT_Image_17_dic_2025_03_57_41_p.m._12cc4f00-37fe-4301-9577-224e8e824241.png?v=1766080967');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===== APPSTLE MEMBERSHIP – DARK MODE FIX ===== */

/* Contenedor general */
.appstle-subscription-widget,
.appstle_subscription_widget,
.appstle-widget {
  background: transparent !important;
  color: #fff !important;
}

/* Caja blanca grande */
.appstle-subscription-widget > div,
.appstle_subscription_widget > div,
.appstle-widget > div {
  background: #121212 !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 14px !important;
  padding: 14px !important;
}

/* Cada opción (la barra blanca que no se ve) */
.appstle-selling-plan-option,
.appstle_selling_plan_option,
.appstle-selling-plan-wrapper,
.appstle-selling-plan {
  background: #1a1a1a !important;
  border: 1px solid #333 !important;
  border-radius: 12px !important;
  color: #fff !important;
}

/* Texto dentro */
.appstle-selling-plan-option *,
.appstle_selling_plan_option * {
  color: #fff !important;
}

/* Hover */
.appstle-selling-plan-option:hover,
.appstle_selling_plan_option:hover {
  border-color: #f5c26b !important;
}

/* Seleccionado */
.appstle-selling-plan-option.active,
.appstle_selling_plan_option.active,
.appstle-selling-plan-option input:checked + label {
  border-color: #f5c26b !important;
  box-shadow: 0 0 0 2px rgba(245, 194, 107, 0.3) !important;
}

/* Radio / check */
.appstle-selling-plan-option input,
.appstle_selling_plan_option input {
  accent-color: #f5c26b !important;
}

/* Título "Membership Options" */
.appstle-subscription-widget h3,
.appstle_subscription_widget h3 {
  color: #fff !important;
  font-weight: 70

  /* TEST: si esto NO cambia, tu custom.css no está cargando */
body { outline: 5px solid red !important; }


