.mostrar-clave-login {
    display: flex;
    border: none;
    background: transparent;
    justify-content: end;
    align-items: center;
    gap: 0.2rem;
    outline: none;
    width: 100%;
    padding-top: 0.4rem;
}

.mostrar-clave-login p {
    color: #fff;
    transition: all 0.3s ease;
    margin: 0;
    width: fit-content;
    cursor: pointer;
}

/* Fix navbar text decoration on hover */
.scaem-navigation ul li a {
    text-decoration: none !important;
}

.scaem-navigation ul li a:hover {
    text-decoration: none !important;
}

.mostrar-clave-login p:hover {
    color: #ffffff9c;
}


.mostrar-clave-login:focus {
    outline: none;
    border: none;
}

.mostrar-clave-login:focus {
    outline: none;
    border: none;
}

.login-text--active {
    color: #fff;
    transition: all 0.3s ease;
    margin: 0;
    width: fit-content;
    cursor: pointer;
}

.login-text--active:hover {
    color: #ffffff9c;
}

.website-url {
    color: var(--themecolor);
    text-decoration: none;
}

.justify-self-center {
    justify-self: center;
}


.text--red {
    color: var(--secthemecolor);
    text-shadow: 0 0 0.5px rgba(0, 0, 0, 0.2);
}


.text--themecolor {
    color: var(--terthemecolor);
}

.text--white,
strong.stext--white {
    color: #fff !important;
}

.text--fade-1 {
    color: var(--dark-fade-2);
}

.text--transparent {
    color: transparent !important;
}

.no-select {
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Standard syntax */
}

/* AccessBar Component - BEM Classes */
.access-bar {
    padding: 1rem;
    position: relative;
}

.access-bar__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.access-bar__spacer {
    flex: 1;
    min-width: 0;
}

.access-bar__icon {
    color: #fff;
    font-size: 1.25rem;
}

.access-bar__title {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    line-height: 1.2;
}

.access-bar__form {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-template-areas:
        "header email"
        "spacer password"
        "actions actions";
    gap: 1rem;
    align-items: start;
}

.access-bar__header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.access-bar__header .form-group {
    flex: 0 0 auto;
}

.access-bar__header .form-group:first-child {
    flex: 1;
}

.access-bar__header .form-group:last-child {
    flex: 0 0 auto;
    margin-left: auto;
    text-align: right;
    width: auto;
}

.access-bar__header .form-group:last-child input[type="submit"] {
    margin-left: auto;
    display: block;
}

/* QR Scanner - Fix button positioning on desktop only */
@media (min-width: 768px) {
    .input-escanear {
        text-align: start;
    }

    /* Title row - keep as block */
    .input-escanear > span:first-child {
        display: block;
    }

    /* Input and button row - make inline */
    .input-escanear .form-control {
        width: 3rem !important;
        height: 3rem !important;
        text-align: center;
        margin: 0 0.1rem !important;
        display: inline-block !important;
        vertical-align: middle;
        float: none !important;
        clear: none !important;
    }

    .input-escanear .scaem-btn {
        margin-left: 0.2rem;
        display: inline-block;
        vertical-align: middle;
        float: none !important;
        clear: none !important;
    }

    /* Hide the br tag that forces button to new line */
    .input-escanear br {
        display: none;
    }

    /* Final text row - keep as block */
    .input-escanear > span:last-child {
        display: block;
    }
}

/* Contact Form - Restore input borders */
.scaem-form .form-control {
    border: 1px solid #ddd !important;
    border-radius: 4px;
}

.scaem-form .form-control:focus {
    border-color: var(--themecolor) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.scaem-form textarea {
    border: 1px solid #ddd !important;
    border-radius: 4px;
}

.scaem-form textarea:focus {
    border-color: var(--themecolor) !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Contact Form - Align reCAPTCHA and submit button */
.scaem-form .form-group:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.scaem-form .g-recaptcha {
    flex: 0 0 auto;
}

.scaem-form .form-group:last-child button {
    flex: 0 0 auto;
    float: none !important;
}

/* Contact Form - Responsive reCAPTCHA and button layout */
@media (max-width: 768px) {
    .scaem-form .form-group:last-child {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .scaem-form .g-recaptcha {
        align-self: center;
        transform: scale(0.8);
        transform-origin: center;
    }

    .scaem-form .form-group:last-child button {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .scaem-form .g-recaptcha {
        transform: scale(0.7);
    }
}

.scaem-innerbanner-holder .form-group.w-100 {
    width: 100% !important;
}

.margin-top-negative-1 {
    margin-top: -2rem !important;
}


.access-bar__header-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.access-bar__arrow {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: none;
}

.access-bar__arrow:hover {
    transform: translateY(3px);
}

.access-bar__arrow i {
    transition: transform 0.3s ease;
}

.access-bar__arrow:hover i {
    transform: rotate(90deg);
}



.access-bar__field-group--hidden {
    display: none;
}

.access-bar__field-group--email {
    grid-area: email;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.access-bar__field-group--password {
    grid-area: password;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.access-bar__row--actions {
    grid-area: actions;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.access-bar__input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.3s ease;
}

.access-bar__input:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.access-bar__input::placeholder {
    color: #a0aec0;
}

.access-bar__password-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.access-bar__password-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    align-self: flex-end;
    margin-top: 0.25rem;
    width: fit-content;
}

.access-bar__password-toggle:hover {
    color: #ffffff9c;
}

.access-bar__password-toggle:focus {
    outline: none;
}

.access-bar__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.access-bar__forgot-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.access-bar__forgot-link:hover {
    color: #ffffff9c;
}

.access-bar__submit-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.access-bar__submit-btn:hover {
    background: #2c5aa0;
}

.access-bar__submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
}

.access-bar__footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #fff;
    font-size: 0.875rem;
    line-height: 1.4;
}


/* Icon utilities */
.icon--shopbag {
    width: 40px;
    height: 40px;
    margin-top: -10px;
    max-width: none;
}

.height--10rem {
    height: 10rem;
}

.height--15rem {
    height: 15rem;
}

.height--20rem {
    height: 20rem;
}

.height--25rem {
    height: 25rem;
}

.height--30rem {
    height: 30rem;
}

.height--35rem {
    height: 35rem;
}

.height--40rem {
    height: 40rem;
}

.height--45rem {
    height: 45rem;
}

.height--50rem {
    height: 50rem;
}

.header-producto--height {
    height: 20rem;
    margin-bottom: 3.5rem;
}

.physcal-products--title-position {
    position: absolute;
    bottom: -1.8rem;
    width: auto;
    height: auto;
}

.physcal-products--title-background {
    background: var(--themecolor);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

/* Common Utility Classes - 100% IDENTICAL across all files */
.oculto {
    display: none;
}

.titulo-pasos span {
    color: var(--secthemecolor);
}

.scaem-docsingle-holder {
    margin-bottom: 40px;
}

.scaem-docsingle-content {
    padding-left: 30px;
}

.valid {
    color: #28a745;
}

.error {
    color: #dc3545;
}

/* Button styles moved to shared-styles.css to avoid conflicts */

.text-decoration-none {
    text-decoration: none;
}

#descripcion-producto {
    margin-bottom: 20px;
}

#verResumen {
    background: var(--themecolor);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .scaem-docsingle-content {
        padding: 10px;
    }
}

/* Responsive Design */
@media (max-width: 639px) {
    .physcal-products--title-position {
        bottom: -9rem;
        width: auto;
        height: auto;
    }

    .header-producto--height {
        height: 24rem;
        margin-bottom: 7rem;
    }
}


@media (min-width: 640px) and (max-width: 780px) {
    .header-producto--height {
        height: 23rem;
    }
}

@media (min-width: 781px) {
    .header-producto--height {
        height: 24rem;
    }
}

@media (min-width: 996px) {
    .header-producto--height {
        height: 21rem;
    }
}

@media (max-width: 767px) {

    .access-bar {
        padding: 0.75rem;
        border-radius: 0 !important;
    }

    .scaem-innerbanner {
        border-radius: 0 !important;
    }

    .scaem-innerbanner-holder {
        border-radius: 0 !important;
    }

    .barra-zur {
        border-radius: 0 !important;
    }

    .barra-qr {
        border-radius: 0 !important;
    }

    .access-bar__form {
        grid-template-columns: 1fr;
        grid-template-areas:
            "header"
            "email"
            "password"
            "actions";
        gap: 1rem;
    }

    .access-bar__header {
        grid-area: header;
        justify-content: space-between;
    }

    .access-bar__field-group--email {
        grid-area: email;
        width: 100%;
    }

    .access-bar__field-group--password {
        grid-area: password;
        width: 100%;
    }

    .access-bar__row--actions {
        grid-area: actions;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .access-bar__submit-btn {
        width: 100%;
    }

    .access-bar__arrow {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .access-bar__arrow:hover {
        transform: translateY(3px);
    }

    .access-bar__arrow:hover i {
        transform: rotate(90deg);
    }

    .icon--shopbag {
        width: 3.5rem;
        height: auto;
    }
}

/* Desktop specific styles */
@media (min-width: 768px) {
    .access-bar__arrow {
        display: none;
    }
}