﻿body {
    padding: 0;
    margin: 0;
    background: radial-gradient(63.64% 161.09% at 41.86% 50%, #250303 0%, #000000 100%);
}

@font-face {
    font-family: "ChronicType";
    src: url("../fonts/ChronicType-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.jewelry {
    font-family: "ChronicType", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f4d9b6;
    padding: 0 20px;
}

.logo-img {
    width: 150px;
    margin-top: 30px;
}

.jewelry-img {
    width: 120px;
}

.container-title {
    font-size: 20px;
    margin-bottom: 20px;
}

    .container-title span {
        color: #ff8000;
    }

.jewelry-cost {
    margin-bottom: 0;
    font-size: 20px;
}

.jewelry-info {
    margin-bottom: 30px;
    font-weight: 150;
}



.jewelry-slider {
    max-width: 80%;
    width: 100%;
    margin: 10px auto 25px;
}

    .jewelry-slider .slick-slide {
        outline: none;
    }

    .jewelry-slider img {
        display: block;
        margin: 0 auto;
        width: 260px;
    }

    /* Optional: tweak dots color */
    .jewelry-slider .slick-dots li button:before {
        color: #f4d9b6;
        opacity: .4;
    }

    .jewelry-slider .slick-dots li.slick-active button:before {
        color: #ff9c11;
        opacity: 1;
    }

.container-title-order {
    font-size: 17px;
    margin-bottom: 20px;
}

.jewelry-sale {
    color: #ff9c11;
    margin: 0;
    margin-bottom: 30px;
    font-size: 20px;
}

.jewelry-parther-name {
    font-weight: 200;
}

.container-btn {
    font-family: "ChronicType", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    padding: 12px 22px;
    background: linear-gradient(90deg, #ff9e2f 0%, #d44000 100%);
    box-shadow: 0px 0px 20px #d53900, 0px 0px 5px #ff8000;
    color: #f4d9b6;
    border: 1px solid #f4d9b6;
    margin-bottom: 35px;
    text-decoration: none;
}

.container-parther {
    width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.parther-img {
    margin-bottom: 50px;
}

.order-input {
    width: 90%;
    padding: 10px 10px;
    margin-bottom: 15px;
    border: 1px solid #f4d9b6;
    color: #fff;
    outline: red;
    background: rgba(47, 35, 35, 0.5);
}

    .order-input::-moz-placeholder {
        text-transform: uppercase;
        color: #857663;
    }

    .order-input::placeholder {
        text-transform: uppercase;
        color: #857663;
    }

    .order-input:last-child {
        margin-bottom: 20px;
    }

.order-pharmacy {
    margin-bottom: 30px;
}
/*# sourceMappingURL=styles.css.map */


/* ... existing styles ... */

/* Modal (moved from inline Razor to avoid Razor '@' parsing issues) */
.np-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    backdrop-filter: blur(2px);
    animation: npFadeIn .25s ease;
}

.np-modal-window {
    width: 90%;
    max-width: 420px;
    background: radial-gradient(63.64% 161.09% at 41.86% 50%, #250303 0%, #000 100%);
    border: 1px solid #f4d9b6;
    box-shadow: 0 0 25px #d53900, 0 0 8px #ff8000;
    padding: 22px 26px 26px;
    color: #f4d9b6;
    font-family: "ChronicType","Segoe UI",sans-serif;
    position: relative;
    animation: npSlide .28s ease;
}

.np-modal-title {
    margin: 0 0 12px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff9c11;
    text-align: center;
}

.np-modal-errors {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 18px;
    max-height: 180px;
    overflow: auto;
    scrollbar-width: thin;
}

    .np-modal-errors li {
        margin-bottom: 6px;
        font-size: 14px;
    }

.np-modal-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: transparent;
    border: none;
    color: #f4d9b6;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
}

    .np-modal-close:hover {
        color: #ff9c11;
    }

@keyframes npFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes npSlide {
    from {
        transform: translateY(18px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}