     /* =====================================================
 ---------------------------------------------------------------------------------------
        COLORES NOFICIAL
     ====================================================== */

     :root {

       --noficial-navy: #071b4b;
       --noficial-navy-2: #0b245f;

       --noficial-blue: #0067b9;
       --noficial-blue-light: #1597e5;

       --noficial-red: #e11e2e;

       --noficial-white: #ffffff;

       --noficial-bg: #f5f6f8;
       --noficial-grey: #e8eaee;
       --noficial-grey-2: #cfd4dc;

       --noficial-text: #17191d;
       --noficial-text-soft: #666b73;

       --nav-height: 82px;
       --mobile-nav-height: 68px;

     }


     /* =====================================================
        RESET
     ====================================================== */

     * {
       box-sizing: border-box;
     }


     html {
       margin: 0;
       padding: 0;

       scroll-behavior: smooth;
     }


     body {

       margin: 0;
       padding: 0;

       font-family:
         "Inter",
         Arial,
         Helvetica,
         sans-serif;

       background:
         var(--noficial-bg);

       color:
         var(--noficial-text);

       -webkit-font-smoothing:
         antialiased;

     }


     a {
       color: inherit;
     }


     ul {
       margin: 0;
       padding: 0;

       list-style: none;
     }


     img {
       display: block;

       max-width: 100%;
     }


     /* =====================================================
        CABECERA
     ====================================================== */

     .noficial-header {

       position: relative;

       width: 100%;

       height: var(--nav-height);

       background:
         rgba(255, 255, 255, 0.98);

       border-bottom:
         1px solid var(--noficial-grey);

       box-shadow:
         0 4px 22px rgba(0, 0, 0, 0.06);

       z-index: 1000;

     }


     .noficial-header-inner {

       width: min(1500px, 100%);

       height: 100%;

       margin: 0 auto;

       padding:
         0 30px;

       display: flex;

       align-items: center;

       justify-content:
         space-between;

       gap: 30px;

     }


     /* =====================================================
        LOGO NOFICIAL
        Versión CSS para no depender de una imagen externa.
     ====================================================== */

 .noficial-logo {
   display: flex;
   align-items: left;
   justify-content: flex-start;

   flex-shrink: 0;

   text-decoration: none;
 }

 .noficial-logo-img {
   display: block;

   width: auto;
   height: 60px;

   max-width: 220px;

   object-fit: contain;
 }

     .noficial-logo {

       display: flex;

       align-items: center;

       gap: 5px;

       flex-shrink: 0;

       text-decoration: none;

     }


     .noficial-logo-symbol {

       position: relative;

       width: 52px;

       height: 34px;

       display: block;

     }


     /*
        Construcción gráfica sencilla de la N
        inspirada en los colores del logo Noficial
     */

     .noficial-logo-symbol::before {

       content: "";

       position: absolute;

       left: 1px;
       top: 7px;

       width: 32px;
       height: 19px;

       border-left:
         7px solid var(--noficial-navy);

       border-top:
         7px solid var(--noficial-navy);

       border-radius:
         4px 0 0 0;

       transform:
         skewX(-25deg);

     }


     .noficial-logo-symbol::after {

       content: "";

       position: absolute;

       right: 4px;
       top: 3px;

       width: 8px;
       height: 25px;

       background:
         linear-gradient(
           to bottom,
           var(--noficial-blue) 0 50%,
           var(--noficial-red) 50% 100%
         );

       transform:
         skewX(-25deg);

       border-radius: 1px;

     }


     .noficial-logo-text {

       font-size: 27px;

       font-weight: 800;

       font-style: italic;

       letter-spacing: -1.5px;

       color:
         var(--noficial-navy);

       white-space: nowrap;

     }


     .noficial-logo-text strong {

       font-weight: 800;

       color:
         var(--noficial-navy);

     }


     /* =====================================================
        MENÚ ESCRITORIO
     ====================================================== */

     .noficial-menu {

       height: 100%;

       display: flex;

       align-items: stretch;

       justify-content: center;

       flex: 1;

     }


     .noficial-nav-item {

       position: relative;

       height: 100%;

       display: flex;

       align-items: center;

     }


     .noficial-nav-link {

       position: relative;

       height: 100%;

       padding:
         0 16px;

       display: flex;

       align-items: center;

       justify-content: center;

       gap: 7px;

       color:
         var(--noficial-navy);

       font-size: 14px;

       font-weight: 700;

       text-decoration: none;

       white-space: nowrap;

       transition:
         color .2s ease;

     }


     /* Línea inferior característica */

     .noficial-nav-link::after {

       content: "";

       position: absolute;

       left: 50%;
       bottom: 0;

       width: 0;

       height: 4px;

       background:
         linear-gradient(
           90deg,
           var(--noficial-blue),
           var(--noficial-red)
         );

       transform:
         translateX(-50%);

       transition:
         width .25s ease;

     }


     .noficial-nav-item:hover
     > .noficial-nav-link {

       color:
         var(--noficial-blue);

     }


     .noficial-nav-item:hover
     > .noficial-nav-link::after {

       width: 70%;

     }


     .noficial-nav-icon {

       display: none;

       font-size: 23px;

     }


     /* =====================================================
        OFERTA SEMANAL
     ====================================================== */

     .noficial-offer-link {

       color:
         var(--noficial-red);

     }


     .noficial-offer-link i {

       color:
         var(--noficial-red);

     }


     /* =====================================================
        DROPDOWN
     ====================================================== */

     .noficial-dropdown {

       position: absolute;

       top: calc(100% - 1px);
       left: 50%;

       width: 330px;

       padding: 9px;

       background:
         var(--noficial-white);

       border:
         1px solid var(--noficial-grey);

       border-radius:
         0 0 13px 13px;

       box-shadow:
         0 18px 40px
         rgba(0, 0, 0, 0.15);

       opacity: 0;

       visibility: hidden;

       pointer-events: none;

       transform:
         translateX(-50%)
         translateY(9px);

       transition:
         opacity .2s ease,
         transform .2s ease,
         visibility .2s;

       z-index: 2000;

     }


     .noficial-nav-item:hover
     .noficial-dropdown,

     .noficial-nav-item:focus-within
     .noficial-dropdown {

       opacity: 1;

       visibility: visible;

       pointer-events: auto;

       transform:
         translateX(-50%)
         translateY(0);

     }


     .noficial-dropdown-title {

       margin:
         5px 8px 7px;

       padding:
         8px 9px 12px;

       border-bottom:
         1px solid var(--noficial-grey);

       color:
         var(--noficial-navy);

       font-size: 12px;

       font-weight: 800;

       letter-spacing:
         .08em;

       text-transform:
         uppercase;

     }


     .noficial-dropdown a {

       min-height: 42px;

       padding:
         10px 12px;

       display: flex;

       align-items: center;

       justify-content:
         space-between;

       gap: 15px;

       border-radius:
         7px;

       color:
         #25282d;

       font-size: 13px;

       font-weight: 600;

       text-decoration: none;

       transition:
         background .15s ease,
         color .15s ease,
         padding .15s ease;

     }


     .noficial-dropdown a::after {

       content: "\EA6E";

       font-family:
         "remixicon";

       color:
         var(--noficial-blue);

       font-size: 18px;

       opacity: 0;

       transform:
         translateX(-5px);

       transition:
         .2s ease;

     }


     .noficial-dropdown a:hover {

       padding-left: 16px;

       background:
         #f3f7fb;

       color:
         var(--noficial-blue);

     }


     .noficial-dropdown a:hover::after {

       opacity: 1;

       transform:
         translateX(0);

     }


     /* =====================================================
        ZONA DERECHA
     ====================================================== */

     .noficial-actions {

       display: flex;

       align-items: center;

       gap: 9px;

       flex-shrink: 0;

     }


     .noficial-search {

       width: 43px;

       height: 43px;

       display: flex;

       align-items: center;

       justify-content: center;

       border:
         1px solid var(--noficial-grey);

       border-radius:
         50%;

       background:
         #fff;

       color:
         var(--noficial-navy);

       font-size: 20px;

       text-decoration: none;

       transition:
         .2s ease;

     }


     .noficial-search:hover {

       border-color:
         var(--noficial-blue);

       color:
         var(--noficial-blue);

       transform:
         translateY(-1px);

     }

 /* =====================================================
    SELECTOR DE IDIOMA
 ===================================================== */

 .noficial-language {
   position: relative;
   flex-shrink: 0;
 }


 /* BOTÓN PRINCIPAL */

 .noficial-language-button {

   min-width: 145px;
   height: 43px;

   padding: 0 12px;

   display: flex;
   align-items: center;
   justify-content: flex-start;

   gap: 9px;

   border:
     1px solid var(--noficial-grey);

   border-radius: 8px;

   background: #ffffff;

   color:
     var(--noficial-navy);

   font-family:
     "Inter",
     Arial,
     sans-serif;

   font-size: 13px;

   font-weight: 700;

   cursor: pointer;

   transition:
     border-color .2s ease,
     box-shadow .2s ease,
     background .2s ease;

 }


 /* HOVER */

 .noficial-language-button:hover {

   border-color:
     var(--noficial-blue);

   background:
     #f8fbfe;

 }


 /* ABIERTO */

 .noficial-language.is-open
 .noficial-language-button {

   border-color:
     var(--noficial-blue);

   box-shadow:
     0 0 0 3px
     rgba(0, 103, 185, .10);

 }


 /* BANDERA */

 .noficial-language-flag {

   display: flex;
   align-items: center;
   justify-content: center;

   width: 25px;

   font-size: 20px;
   line-height: 1;

 }

 .lang-flag {
     font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
     font-size: 20px;
     line-height: 1;
 }

 /* NOMBRE */

 .noficial-language-name {

   flex: 1;

   text-align: left;

   white-space: nowrap;

 }


 /* FLECHA */

 .noficial-language-arrow {

   margin-left: auto;

   color:
     #737983;

   font-size: 19px;

   transition:
     transform .2s ease;

 }


 .noficial-language.is-open
 .noficial-language-arrow {

   transform:
     rotate(180deg);

 }


 /* =====================================================
    DESPLEGABLE
 ===================================================== */

 .noficial-language-menu {

   position: absolute;

   top: calc(100% + 9px);
   right: 0;

   width: 190px;

   padding: 7px;

   background:
     #ffffff;

   border:
     1px solid #e1e5eb;

   border-radius:
     11px;

   box-shadow:
     0 16px 40px
     rgba(7, 27, 75, .16);

   opacity: 0;

   visibility: hidden;

   pointer-events: none;

   transform:
     translateY(-6px);

   transition:
     opacity .18s ease,
     transform .18s ease,
     visibility .18s ease;

   z-index: 5000;

 }


 /* DESPLEGABLE ABIERTO */

 .noficial-language.is-open
 .noficial-language-menu {

   opacity: 1;

   visibility: visible;

   pointer-events: auto;

   transform:
     translateY(0);

 }


 /* =====================================================
    OPCIONES
 ===================================================== */

 .noficial-language-option {

   width: 100%;

   min-height: 44px;

   padding:
     8px 10px;

   display: flex;

   align-items: center;

   gap: 10px;

   border: 0;

   border-radius:
     7px;

   background:
     transparent;

   color:
     #25282d;

   font-family:
     "Inter",
     Arial,
     sans-serif;

   font-size:
     13px;

   font-weight:
     600;

   text-align: left;

   cursor: pointer;

   transition:
     background .15s ease,
     color .15s ease;

 }


 /* HOVER */

 .noficial-language-option:hover {

   background:
     #f1f6fb;

   color:
     var(--noficial-blue);

 }


 /* BANDERA OPCIÓN */

 .noficial-language-option-flag {

   width: 27px;

   font-size: 21px;

   line-height: 1;

   display: flex;

   justify-content: center;

 }


 /* TEXTO */

 .noficial-language-option-name {

   flex: 1;

 }


 /* CHECK */

 .noficial-language-check {

   color:
     var(--noficial-blue);

   font-size: 18px;

   opacity: 0;

 }


 /* IDIOMA ACTIVO */

 .noficial-language-option.is-active {

   color:
     var(--noficial-navy);

   background:
     #f3f7fb;

   font-weight:
     700;

 }


 .noficial-language-option.is-active
 .noficial-language-check {

   opacity: 1;

 }


     /* =====================================================
        HERO / CONTENIDO DEMOSTRACIÓN
     ====================================================== */

     .noficial-main {

       min-height:
         calc(
           100vh - var(--nav-height)
         );
       background-color: #f5f6f8;

     }


     .noficial-hero {

       position: relative;

       min-height: 530px;

       overflow: hidden;

       display: flex;

       align-items: center;



     }


     /*
        Franja decorativa basada en los
        colores Noficial
     */

     .noficial-hero::before {

       content: "";

       position: absolute;

       top: 0;
       left: 0;

       width: 100%;

       height: 5px;

       background:
         linear-gradient(
           90deg,
           var(--noficial-navy) 0 64%,
           var(--noficial-blue) 64% 82%,
           var(--noficial-red) 82% 100%
         );

     }


     .noficial-hero-inner {

       position: relative;

       width:
         min(1300px, 100%);

       margin:
         0 auto;

       padding:
         80px 40px;

       z-index: 2;

     }


     .noficial-kicker {

       margin-bottom:
         13px;

       color:
         var(--noficial-blue);

       font-size:
         13px;

       font-weight:
         800;

       letter-spacing:
         .13em;

       text-transform:
         uppercase;

     }


     .noficial-title {

       max-width:
         800px;

       margin:
         0 0 23px;

       color:
         var(--noficial-navy);

       font-size:
         clamp(
           38px,
           5vw,
           68px
         );

       font-weight:
         800;

       letter-spacing:
         -.04em;

       line-height:
         1.03;

     }


     .noficial-title span {

       color:
         var(--noficial-blue);

     }


     .noficial-description {

       max-width:
         710px;

       margin:
         0 0 31px;

       color:
         var(--noficial-text-soft);

       font-size:
         18px;

       line-height:
         1.65;

     }


     .noficial-buttons {

       display: flex;

       align-items: center;

       gap: 12px;

       flex-wrap: wrap;

     }


     .noficial-primary {

       min-height: 50px;

       padding:
         0 24px;

       display: inline-flex;

       align-items: center;

       justify-content: center;

       gap: 9px;

       border-radius:
         6px;

       background:
         var(--noficial-navy);

       color:
         white;

       font-size:
         14px;

       font-weight:
         700;

       text-decoration: none;

       transition:
         .2s ease;

     }


     .noficial-primary:hover {

       background:
         var(--noficial-blue);

       transform:
         translateY(-2px);

       box-shadow:
         0 10px 22px
         rgba(0, 103, 185, .18);

     }


     .noficial-secondary {

       min-height: 50px;

       padding:
         0 23px;

       display: inline-flex;

       align-items: center;

       justify-content: center;

       gap: 8px;

       border:
         1px solid
         var(--noficial-grey-2);

       border-radius:
         6px;

       background:
         white;

       color:
         var(--noficial-navy);

       font-size:
         14px;

       font-weight:
         700;

       text-decoration: none;

       transition:
         .2s ease;

     }


     .noficial-secondary:hover {

       border-color:
         var(--noficial-blue);

       color:
         var(--noficial-blue);

     }


     /* =====================================================
        TARJETAS
     ====================================================== */

     .noficial-categories {

       width:
         min(1300px, 100%);

       margin:
         -35px auto 70px;

       padding:
         0 30px;

       position: relative;

       z-index: 3;

       display: grid;

       grid-template-columns:
         repeat(3, 1fr);

       gap: 16px;

     }


     .noficial-card {

       min-height:
         140px;

       padding:
         27px;

       background:
         white;

       border:
         1px solid var(--noficial-grey);

       border-radius:
         10px;

       box-shadow:
         0 12px 32px
         rgba(7, 27, 75, .07);

       text-decoration:
         none;

       transition:
         transform .2s ease,
         box-shadow .2s ease,
         border-color .2s ease;

     }


     .noficial-card:hover {

       transform:
         translateY(-4px);

       border-color:
         rgba(0, 103, 185, .35);

       box-shadow:
         0 18px 40px
         rgba(7, 27, 75, .12);

     }


     .noficial-card-icon {

       margin-bottom:
         14px;

       color:
         var(--noficial-blue);

       font-size:
         29px;

     }


     .noficial-card h2 {

       margin:
         0 0 7px;

       color:
         var(--noficial-navy);

       font-size:
         17px;

     }


     .noficial-card p {

       margin: 0;

       color:
         var(--noficial-text-soft);

       font-size:
         13px;

       line-height:
         1.5;

     }


     /* =====================================================
        RESPONSIVE
        TABLET + MÓVIL
     ====================================================== */

     @media
     (max-width: 1023px) {


       /*
        * Reservamos el espacio arriba porque
        * la navegación pasa a ser FIXED.
        */

       body {

         padding-top:
           var(--mobile-nav-height);

       }


       /* ===================================================
          BARRA MÓVIL ARRIBA
       ==================================================== */

       .noficial-header {

         position: fixed;

         top: 0;
         left: 0;
         right: 0;

         height:
           var(--mobile-nav-height);

         background:
           var(--noficial-navy);

         border-bottom: none;

         box-shadow:
           0 5px 18px
           rgba(0, 0, 0, .20);

         z-index:
           9999;

       }


       /*
        * Línea inferior azul + roja
        */

       .noficial-header::after {

         content: "";

         position:
           absolute;

         bottom: 0;
         left: 0;

         width: 100%;

         height: 3px;

         background:
           linear-gradient(
             90deg,
             var(--noficial-blue)
             0 78%,

             var(--noficial-red)
             78% 100%
           );

       }


       .noficial-header-inner {

         width: 100%;

         padding: 0;

         gap: 0;

       }


       /*
        * Ocultamos logo y botones para dejar
        * el máximo espacio a la navegación.
        */

       .noficial-logo,
       .noficial-actions {

         display: none;

       }


       .noficial-menu {

         width: 100%;

         height:
           var(--mobile-nav-height);

         display: flex;

         align-items: stretch;

         justify-content:
           space-around;

         overflow-x: auto;

         overflow-y: hidden;

         scrollbar-width: none;

       }


       .noficial-menu::-webkit-scrollbar {

         display: none;

       }


       .noficial-nav-item {

         height:
           var(--mobile-nav-height);

         flex:
           1 0 16.666%;

         min-width:
           54px;

       }


       .noficial-nav-link {

         width: 100%;

         height: 100%;

         padding:
           5px 3px 4px;

         display: flex;

         flex-direction: column;

         align-items: center;

         justify-content: center;

         gap: 3px;

         color:
           rgba(
             255,
             255,
             255,
             .95
           );

         font-size:
           9px;

         font-weight: 600;

       }


       .noficial-nav-link::after {

         display:
           none;

       }


       /*
        * A diferencia del código anterior:
        * mantenemos una pequeña etiqueta debajo
        * del icono.
        *
        * Ayuda mucho a saber qué hace cada botón.
        */

       .noficial-nav-title {

         display: block;

         max-width: 62px;

         overflow: hidden;

         text-overflow:
           ellipsis;

         white-space:
           nowrap;

       }


       .noficial-nav-icon {

         display: block;

         font-size:
           23px;

         line-height: 1;

       }


       .noficial-nav-link:hover {

         color:
           white;

         background:
           rgba(
             255,
             255,
             255,
             .07
           );

       }


       /*
        * Oferta semanal destacada en rojo
        */

       .noficial-offer-link {

         color:
           #ff5360;

       }


       .noficial-offer-link i {

         color:
           #ff5360;

       }


       /*
        * Quitamos dropdowns en dispositivos táctiles.
        */

       .noficial-dropdown {

         display:
           none;

       }


       /* Hero */

       .noficial-main {

         min-height:
           calc(
             100vh -
             var(--mobile-nav-height)
           );

       }


       .noficial-hero {

         min-height:
           460px;

       }


       .noficial-hero-inner {

         padding:
           70px 30px 90px;

       }


       .noficial-title {

         max-width:
           700px;

       }


       .noficial-categories {

         grid-template-columns:
           repeat(2, 1fr);

       }

     }


     /* =====================================================
        MÓVILES
     ====================================================== */

     @media
     (max-width: 600px) {


       :root {

         --mobile-nav-height:
           66px;

       }


       .noficial-nav-item {

         min-width:
           53px;

       }


       .noficial-nav-link {

         font-size:
           8px;

       }


       .noficial-nav-icon {

         font-size:
           22px;

       }


       .noficial-nav-title {

         max-width:
           53px;

       }


       .noficial-hero {

         min-height:
           430px;

       }


       .noficial-hero-inner {

         padding:
           55px 22px 85px;

       }


       .noficial-kicker {

         font-size:
           11px;

       }


       .noficial-title {

         font-size:
           clamp(
             34px,
             11vw,
             48px
           );

       }


       .noficial-description {

         font-size:
           15px;

       }


       .noficial-buttons {

         align-items:
           stretch;

       }


       .noficial-primary,
       .noficial-secondary {

         width: 100%;

       }


       .noficial-categories {

         margin-top:
           -30px;

         padding:
           0 18px;

         grid-template-columns:
           1fr;

       }

     }


     /* =====================================================
        MOVIMIENTO REDUCIDO
     ====================================================== */

     @media
     (prefers-reduced-motion: reduce) {

       * {

         scroll-behavior:
           auto !important;

         transition-duration:
           0.01ms !important;

         animation-duration:
           0.01ms !important;

       }

     }

 .ecwid-container {
     width: 100%;
     max-width: 900px;
     margin: 0 auto;
     padding: 0 px;
     box-sizing: border-box;
 }

 /* Tablet */
 @media (max-width: 1024px) {
     .ecwid-container {
         padding-left: 20px;
         padding-right: 20px;
     }
 }

 /* Móvil */
 @media (max-width: 600px) {
     .ecwid-container {
         padding-left: 12px;
         padding-right: 12px;
     }
 }

 /* =========================================================
    REDES SOCIALES
 ========================================================= */

 .noficial-social {
     padding: 42px 24px;

     background: #1a2c58;

     text-align: center;
 }

 .noficial-social-title {
     margin:
         0 0 22px;

     color:
         rgba(255,255,255,.84);

     font-size: 13px;
     font-weight: 700;

     letter-spacing: .1em;

     text-transform: uppercase;
 }

 .noficial-social-links {
     display: flex;
     align-items: center;
     justify-content: center;

     gap: 10px;

     flex-wrap: wrap;
 }

 .noficial-social-link {
     width: 46px;
     height: 46px;

     display: inline-flex;
     align-items: center;
     justify-content: center;

     border:
         1px solid
         rgba(255,255,255,.20);

     border-radius: 9px;

     background:
         rgba(255,255,255,.06);

     color: white;

     font-size: 23px;

     text-decoration: none;

     transition:
         background .2s ease,
         transform .2s ease,
         border-color .2s ease;
 }

 .noficial-social-link:hover {
     border-color:
         rgba(255,255,255,.6);

     background:
         rgba(255,255,255,.14);

     color: white;

     transform:
         translateY(-3px);
 }

 .noficial-copyright {
     margin:
         21px 0 0;

     color:
         rgba(255,255,255,.62);

     font-size: 12px;
 }

/* =========================================================
   ECWID - FICHA DE PRODUCTO
   Galería a la izquierda + información a la derecha
   + descripción debajo de las dos columnas
   ========================================================= */

/*
   Ecwid utiliza actualmente las clases:
   .ec-store__product-page
   .product-details
   .product-details__gallery
   .product-details__product-description

   El bloque anterior utilizaba selectores que no corresponden
   con la estructura actual de Ecwid.
*/

.ec-size .ec-store .ec-store__product-page {
    width: 100%;
}

.ec-size .ec-store .ec-store__product-page .product-details {
    width: 100%;
    max-width: 100%;
}

/* =========================================================
   ESCRITORIO
   ========================================================= */

@media (min-width: 768px) {

    .ec-size .ec-store .ec-store__product-page .product-details {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 50px;
        align-items: start;
    }

    /* Galería: columna izquierda */
    .ec-size .ec-store .ec-store__product-page
    .product-details .product-details__gallery {
        grid-column: 1;
        grid-row: 1;
        width: 100% !important;
        max-width: 100%;
    }

    /*
       Panel de información: columna derecha.
       :has() permite localizar el bloque que contiene
       la descripción sin depender de un nombre de clase
       interno que Ecwid pueda cambiar.
    */
    .ec-size .ec-store .ec-store__product-page
    .product-details > :has(.product-details__product-description) {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    /*
       La descripción pasa a ocupar todo el ancho y queda
       debajo de las dos columnas.
    */
    .ec-size .ec-store .ec-store__product-page
    .product-details :has(> .product-details__product-description) {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        margin-top: 45px;
        padding-top: 30px;
        border-top: 1px solid #e5e5e5;
    }

    /* Descripción completa */
    .ec-size.ec-size--s .ec-store
    .product-details-module__content--collapsed {
        max-height: none;
    }

    .ec-size.ec-size--s .ec-store
    .product-details__product-description::after {
        display: none;
    }

    .ec-size.ec-size--s .ec-store
    .product-details-module__content--collapsed
    ~ .product-details-module__btn-more {
        display: none;
    }

    .ec-size.ec-size--s .ec-store
    .product-details-module__content--collapsed::after {
        content: none;
    }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .ec-size .ec-store .ec-store__product-page
    .product-details {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .ec-size .ec-store .ec-store__product-page
    .product-details .product-details__gallery {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .ec-size .ec-store .ec-store__product-page
    .product-details .product-details__product-description {
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid #e5e5e5;
    }

    .ec-size .ec-store
    .product-details-module__content--collapsed {
        max-height: none;
    }

    .ec-size .ec-store
    .product-details__product-description::after {
        display: none;
    }

    .ec-size .ec-store
    .product-details-module__content--collapsed
    ~ .product-details-module__btn-more {
        display: none;
    }

    .ec-size .ec-store
    .product-details-module__content--collapsed::after {
        content: none;
    }
}


/* =========================================================
   GALERÍA A ANCHO COMPLETO EN MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .ec-size:not(.ec-size--s) .ec-store
    .product-details .product-details__gallery {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(
            env(safe-area-inset-left) -
            var(--global-tile-padding) * 1px
        );
    }
}




/* ECWID: galería izquierda, compra derecha, descripción inferior */

@media (min-width: 768px) {
  .ec-size .ec-store .product-details {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 0 45px;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }

  .ec-size .ec-store .product-details > .product-details__gallery {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    max-width: 100%;
  }

  .ec-size .ec-store .product-details > .product-details__sidebar {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  /* El script traslada este bloque fuera de la columna lateral */
  .ec-size .ec-store .product-details > .product-details__general-info {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
  }
}

.ec-size .ec-store .product-details-module__content--collapsed {
  max-height: none;
}

.ec-size .ec-store .product-details__product-description::after,
.ec-size .ec-store .product-details-module__content--collapsed::after,
.ec-size .ec-store .product-details-module__content--collapsed
  ~ .product-details-module__btn-more {
  display: none;
}

@media (max-width: 767px) {
  .ec-size .ec-store .product-details {
    display: block;
  }

  .ec-size .ec-store .product-details > .product-details__general-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e5e5;
  }
}