/** Shopify CDN: Minification failed

Line 8:0 Unexpected "<"
Line 555:0 Unexpected "<"
Line 555:8 Expected "}" to go with "{"

**/
<style>
  /* ============================================================
     Global Resets & Utilidades
  ============================================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos para botones (se usa en modales y formularios) */
  button,
  [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  .mp-full-width {
    width: 100%;
  }
  
  .mp-err {
    color: red;
  }
  
  /* Utilidades de espaciado */
  .mp-mrgn-btm-12 {
    margin-bottom: 0px;
  }
  
  .mp-mrgn-btm-5 {
    margin-bottom: 5px;
  }
  
  .show {
    display: block !important;
  }
  
  /* Establece un z-index base para elementos de rating */
  #rate_div, #total_rate, .rateit {
    z-index: 0;
  }
  
  /* ============================================================
     Container & Banner
  ============================================================ */
  .container {
    width: calc(100% - 100px);
    max-width: 1400px;
    margin: 0 auto 16px;
    display: flex;
    flex-direction: column;
    background-color: #0F1218;
    border: 1px solid #212338;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .banner {
    width: 100%;
    height: 100%;
    max-height: 400px;
    background: #0F1218;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
  }

  /* ============================================================
     Seller Section
  ============================================================ */
  .seller-section {
    display: flex;
    width: 100%;
    gap: 24px;
    padding: 32px;
    background: transparent;
  }
  
  .mb-seller-logo {
    width: 160px;
    height: 160px;
    min-width: 160px;
    min-height: 160px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(33, 35, 56);
  }
  
  .mb-seller-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 160px;
  }
  
  .seller-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    font-weight: 200;
    text-align: left;
    background: none;
  }
  
  .mb-seller-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
  }
  
  .mp-store-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    min-width: max-content;
  }
  
  .seller-details {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  
  .seller-details span {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: white;
    font-weight: bold;
  }
  
  .seller-details img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  
  .seller-details span span {
    margin-left: 5px;
    font-weight: 300;
    color: #CACCE7;
  }
  
  .store-info {
    display: none;
    white-space: nowrap;
  }

  .wk_rate_it {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    margin: -6px 0;
  }
  
  /* Botón de acción (por ejemplo, Contact) */
  .mp-subscribe-btn {
    padding: 12px 24px;
    background-color: #A42AE2;
    font-size: 1.0625rem;
    color: white;
    border-radius: 100px;
    cursor: pointer;
    display: flex;
    justify-content:center;
  }
  
  .mp-subscribe-btn:hover {
    background-color: #8D22C3;
  }
  
  /* ============================================================
     Navigation & Tabs
  ============================================================ */
  .mb-navigation {
    position: relative:
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wk-nav {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 20px;
    list-style: none;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .wk-nav > * {
    flex-shrink: 0;
  }

  .wk-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
  }

  .wk-nav-tabs {
    border-bottom: 0;
  }
  
  /* Botones de pestañas: */
  .wk-nav-tabs .wk-nav-link {
    position: relative;
    display: inline-block;
    padding: 16px 29px 32px;
    margin-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #cacce7;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }
  
  /* Pseudo-elemento para animar el borde inferior (con transform, se conserva) */
  .wk-nav-tabs .wk-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #212338;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }
  
  .wk-nav-tabs .wk-nav-link:hover {
    color: #fff;
  }
  
  .wk-nav-tabs .wk-nav-link:hover::after {
    transform: scaleX(1);
    background-color: #3B3E58;
  }
  
  /* Estado activo en pestañas */
  .nav-tabs .nav-item.show .nav-link,
  .nav-tabs .nav-link.active,
  .wk-nav-tabs .wk-nav-item.show .wk-nav-link,
  .wk-nav-tabs .wk-nav-link.active {
    color: #C960FF;
    background: transparent;
  }
  
  .wk-nav-tabs .wk-nav-link.active::after {
    transform: scaleX(1);
    background-color: #C960FF;
  }
  
  /* Enlaces genéricos (para otros contextos) */
  .wk-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #212338;
    text-decoration: none;
  }
  
  .wk-nav-link:focus,
  .wk-nav-link:hover {
    color: #fff;
  }
  
  /* ============================================================
     Tab Content
  ============================================================ */
  .wk-tab-content > .active {
    display: block;
  }
  
  .wk-tab-content > .wk-tab-pane {
    display: none;
    padding: 32px;
    border-top: 1px solid #212338;
  }
  
  .mp-bdr-gray {
    border-bottom: 1px solid #212338;
  }
  
  /* ============================================================
     Modal Styles
  ============================================================ */
  .wk-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .wk-modal-content {
    position: relative;
    background-color: #0F1218;
    color: #FFF;
    margin: 200px auto;
    padding: 0;
    border: 1px solid #212338;
    border-radius: 16px;
    width: calc(100% - 15px);
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2),
                0 6px 20px rgba(0, 0, 0, 0.19);
    animation: slideUpFade 0.4s ease-out;
    overflow: hidden;
  }
  
  @keyframes slideUpFade {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .wk-modal-header {
    padding: 20px;
    background-color: #3B0C52;
    color: white;
  }
  
  .wk-close {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='white'><path d='M18 6L6 18M6 6l12 12' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    text-indent: -9999px;
    overflow: hidden;
  }
  
  .wk-close:hover {
    opacity: 0.4;
  }
  
  .wk-modal-body {
    padding: 16px 24px;
  }
  
  .mp-success {
    color: green;
    border: 1px solid green;
    line-height: 32px;
    text-align: center;
    display: none;
  }
  
  .wk-modal-content label {
    color: #fff;
    font-size: 16px;
  }
  
  .wk-rateyo-svg {
    filter: saturate(100%) hue-rotate(-70deg);
  }
  
  /* ============================================================
     Otros Estilos y Utilidades
  ============================================================ */
  
  #feedback_0 {
    margin-bottom: 20px;
  }

  .mb-label {
    color: #fff;
    font-size: 1rem;
    letter-spacing: .02em;
  }
  
  .rate-note {
    font-size: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    opacity: 0.6;
  }

  .rate-note-icon {
    margin-right: 6px;
  }
  
  .reset-text-styles .mp-store-short-desc span,
  .wk-tab-pane span {
    color: inherit !important;
    font-family: inherit !important;
    background: transparent !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .mb-rating {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  /* Clase para imagen "Verified" */
  .verified-img {
    width: 20px;
    height: 20px;
  }







  @media (max-width: 767px) {

  .container {
    width: calc(100% - 30px);
  }
    
  .banner {
    max-height: 140px;
  }

  .banner img {
    width: 100%;
    height: 100%;
    max-height: 140px;
    object-fit: cover;
  }

  .seller-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }    

  .mb-seller-logo {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    margin: 0 auto;
  }

  .mb-seller-logo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .mb-seller-name {
    margin: 0 auto;
    margin-bottom: -4px;

  }
  
  .mp-store-name {
    font-size: 28px;
  }

  .verified-img {
    width: 24px;
    height: 24px;
  }

  .mp-store-short-desc{
    display: none;
  }

  .wk_rate_it {
    margin: -6px auto;
  }

  .mp-subscribe-btn {
    width:100%;
  }  

  .wk-nav {
    margin: 0;
  }

  .wk-tab-content > .wk-tab-pane {
    padding: 15px;
  }
    
.wk-modal-content {
    margin: 90px auto;
  }
    
    .seller-info,
    .store-info {
      width: 100%;
    }
  }

@media (max-width: 1100px) {

  .seller-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

</style>