:root {
    --primary-color-loaders: #FF294A;
}

.bg-white {
    background-color: #fff !important;
}

.global-message {
    color: #fff;
    margin: 10px 0 !important;
}

.text-center {
    text-align: center;
}

.success-message {
    color: #008000;
}

.error-message {
    color: #ee3443;
}

.w-100 {
    width: 92%;
    text-align: center;
}

.text-center {
    text-align: center;
}

.disabled {
    pointer-events: none;
    cursor: not-allowed;
}

.dots-loader {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.dots-loader span {
    width: 6px;
    height: 6px;
    background: #ee3443;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 0.8s infinite;
}

.dots-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

.button-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #adadad55;
    border-top-color: #ff0000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

.td-center {
    text-align: center;
    width: 100%;
}

.customer-message {
    text-align: center;
}

.capitalize {
    text-transform: capitalize;
  }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

[x-cloak] {
    display: none !important;
}

.nav-current-content-active {
    height: 240%;
}

.prd-img-bag {
    background: none;
}

.nav-current > span {
    color: var(--pink);
}

.modal-subscribe-newsletter {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.modal-subscribe-newsletter > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 27.5%;
    min-width: 320px;
    border-radius: 30px;
    border: 2px solid #383737;
    background: #FFFDF0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.coupon-container {
    margin-top: 20px;
    padding: 15px 40px;
    border: 2px dashed #FF3B69;
    border-radius: 15px;
    background-color: rgba(255, 59, 105, 0.05);
    text-align: center;
    transition: transform 0.2s;
}

.coupon-container:hover {
    transform: scale(1.02);
    background-color: rgba(255, 59, 105, 0.08);
}

.coupon-code {
    font-size: 24px;
    color: #FF3B69;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
}

.coupon-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    display: block;
}

@media (max-width: 1024px) {
    .modal-subscribe-newsletter > div {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .modal-subscribe-newsletter > div {
        width: 90%;
    }
}

.tanning-collection {
    margin-bottom: 50px;
}