[data-shipping-show="active"],
[data-user-show="active"] {
    display: none;
}

/* Container do dropdown */
.s1-dropdown {
    position: relative;
    opacity: 1;
    z-index: 100;
    border-width: 0px;
    border-style: none;
    border-color: initial;
    border-image: initial;
    background: transparent;
    padding: 0px;
}

/* Botão que abre o dropdown */
.s1-dropdown-button {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    background-color: transparent;
    border: 0 none;
    color: var(--color-base);
    transition: background 0.2s;
}

.s1-dropdown-button:hover {
    background-color: #f1f1f1;
}

/* Conteúdo do dropdown (animado) */
.s1-dropdown-content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: all 0.2s ease;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    border-top: 4px solid #EF7C40;
}

@media (min-width:768px) {
   .s1-dropdown-content {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: auto;
        right: 0;
        bottom: auto;
        width: 268px;
        min-width: 200px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        transform: translateY(-10px);
    }
}


/* Conteúdo visível */
.s1-dropdown.active {
    z-index: 100001;
}

.s1-dropdown.active .s1-dropdown-content {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.s1-dropdown .drowpdown-content-title {
    margin-bottom: 20px;
    margin-top:0;
    font-size: 24px;
    padding: 0 4px;
}

@media (min-width:768px) {
    .s1-dropdown .drowpdown-content-title{
        padding: 0;
        margin-top: 30px;
        font-size: 18px;
    }

}

.s1-dropdown .form-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.s1-dropdown .form-login-input-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0 !important;
    border: 0 !important;
     padding: 0 4px;
}

@media (min-width:768px) {
    .s1-dropdown .form-login-input-box {
        padding: 0;
    }
}

.s1-dropdown .input-user-identifier,
.s1-dropdown .form-login-user-password{
    border: 1px solid #D5D5D6;
    padding: 8px 12px;
    border-radius: 6px;
    color:#2C2F33;
    height: 38px;
    font-size: 14px;
    width: 100%;
}

@media (min-width:768px) {
    .s1-dropdown .input-user-identifier,
    .s1-dropdown .form-login-user-password {
        width: 100%;
    }
}

.s1-dropdown .input-user-identifier:focus,
.s1-dropdown .form-login-user-password:focus {
    outline:none;
    border: 1px solid #EE5E39;
}

.s1-dropdown .form-login.s1-dropdown {
    padding: 0;
}

.s1-dropdown .cta-verify {
    width: 100%;
    background-color: #EE5E39;
    border-radius: 5px;
    color: #ffffff;
    text-align: center;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.s1-dropdown .form-login-forgot {
    margin-top: 20px;
    display:flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 4px;
}

.s1-dropdown .form-login-forgot a {
    text-decoration: underline;
    font-size: 12px;
    line-height: 16px;
    color: #4F4F4F;
}

.s1-dropdown .s1-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 15px 15px 30px 15px;
}

@media (min-width: 768px) {
    .s1-dropdown .s1-dropdown-header {
        display: none;
    }
}

.s1-dropdown .drowpdown-content-grid {
    padding: 0 20px;
}

@media (min-width: 768px) {
    .s1-dropdown .drowpdown-content-grid {
        padding: 0 16px;
        padding-bottom: 30px;
    }
}

.s1-dropdown .account-page-sidebar-group-list {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #E9E9E9;
}

.s1-dropdown .account-page-sidebar-group-item {
    border-bottom: 1px solid #D5D5D6;
    padding-bottom: 15px;
}

.s1-dropdown .account-page-sidebar-group-item-link b{
    font-size: 18px;
    line-height: 130%;
    font-weight: 400;
    color: #2C2F33;
}

@media(min-width:768px) {
    .s1-dropdown .account-page-sidebar-group-item-link b{
        font-size: 16px;
    }
}

.s1-dropdown .account-page-sidebar-group-item-link:hover b{
    color: #2C2F33 !important;
}

.s1-dropdown .drowpdown-content-message {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    flex-direction: column;
    color: #2C2F33;
    font-weight: 600;
    margin-top: 0;
}
.s1-dropdown .drowpdown-content-message span {
    font-size: 24px;
    line-height: 30px;
    color: #EE5E39;
}

@media (min-width: 768px) {
    .s1-dropdown .drowpdown-content-message {
        flex-direction: row;
        gap: 4px;
        font-size: 16px;
        margin-top: 30px;
    }

    .s1-dropdown .drowpdown-content-message span {
        font-size: 16px;
    }
}

.s1-dropdown .account-page-cta-exit {
    border: 1px solid #EF7C40;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 40px;
    font-size: 14px;
    color: #EF7C40;
    margin-top:5px;
}

.s1-dropdown .account-page-sidebar-group-list li:first-child {
    margin-top: 0;
}

.hidden {
    display: none;
}

@keyframes rotateIn {
  from {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: rotate(0deg);
    opacity: 1;
  }
}

/* Animação de saída (giro reverso) */
@keyframes rotateOut {
  from {
    transform: rotate(0deg);
    opacity: 1;
  }
  to {
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotate-in {
  animation: rotateIn 0.3s ease forwards;
}

.rotate-out {
  animation: rotateOut 0.3s ease forwards;
}