body {
    padding-top: 60px;
}

#start-chat-btn { background: linear-gradient(135deg, #CC0000 0%, #8B0000 25%, #660000 50%, #8B0000 75%, #CC0000 100%) !important; background-color: transparent !important; transition: all 0.3s ease; position: relative; overflow: hidden; }
#start-chat-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: none; pointer-events: none; }
#start-chat-btn:hover::before { animation: btnShine 0.6s ease; }
#start-chat-btn:hover { background: linear-gradient(135deg, #990000 0%, #660000 25%, #4D0000 50%, #660000 75%, #990000 100%) !important; background-size: 200% 200%; animation: gradientFlow1 2.5s ease infinite; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif; 
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 4px; 
}

.model-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    color: #FFFFFF; 
}

.model-photo-col {
    flex: 0 0 450px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
}

.model-info-col {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    order: 2;
    padding: 25px;
    border-radius: 5px;
    box-shadow: none !important;
}

.main-image-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
    border: 2px solid #0d0d0d;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid #0d0d0d;
    transition: border 0.2s;
}

.thumbnail-item.active, .thumbnail-item:hover {
    border: 2px solid #CC0000;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.data-and-prices {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.data-and-prices h3 {
    font-size: 1.5rem;
    color: #FFFFFF; 
    font-weight: 700;
    margin-top: 0;
    padding-bottom: 5px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    position: relative;
}

.data-and-prices h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}

.model-data-col {
    flex: 1;
    padding-right: 15px;
    border-right: 1px solid transparent;
    position: relative;
}

.model-data-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 50%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 100% 200%;
    animation: borderGradientFlowV 6s linear infinite;
}

.data-row, .price-data-row {
    border-bottom: 2px solid transparent;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.data-row::after, .price-data-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}

@keyframes borderGradientFlowV {
    0% { background-position: 50% 0%; }
    100% { background-position: 50% 200%; }
}

.data-label, .price-time {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.data-value, .price-cost {
    font-size: 1.05rem;
    color: #FFFFFF;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.price-cost {
    color: #CC0000;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.model-about {
    margin-top: 25px;
    padding: 0;
    border: none;
    box-shadow: none !important;
}

.model-about h5 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
    padding-bottom: 5px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.model-about p {
    font-size: 1rem;
    color: #FFFFFF;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.continue-btn {
    display: block; 
    width: 100%;
    padding: 12px 30px; 
    margin-top: 20px;
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%); 
    color: #ffffff; 
    font-size: 1.2rem; 
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px; 
    text-align: center;
    cursor: pointer;
    text-decoration: none; 
    border: none; 
    transition: all 0.3s ease;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}
.continue-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.continue-btn:hover::before {
    animation: btnShine 0.6s ease;
}
.continue-btn:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%); 
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4) !important;
}
.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 30px; 
    border-radius: 6px;
    font-size: 1.2rem; 
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%);
    color: #ffffff;
    border: none; 
    transition: all 0.3s ease;
    margin-top: 15px; 
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    box-shadow: none !important;
    position: relative;
    overflow: hidden;
}
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.hero-btn:hover::before {
    animation: btnShine 0.6s ease;
}
.hero-btn[data-is-favorite="true"] {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%);
    color: #ffffff;
}
.hero-btn:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4) !important;
}
.hero-btn[data-is-favorite="true"]:hover {
    background: linear-gradient(135deg, #660000 0%, #4D0000 50%, #330000 100%);
}
.hero-btn i {
    margin-right: 8px;
    color: inherit !important; 
}
@media (max-width: 768px) {
    .model-section {
        gap: 15px;
        padding: 0;
    }
    .model-info-col {
        border-radius: 0;
        padding: 20px 15px;
    }
    .model-photo-col {
        flex: 0 0 100%; 
        padding: 0 15px; 
    }
    .main-image-container {
        height: 500px; 
        border-radius: 0;
    }
    .data-and-prices-inner {
        flex-direction: column; 
        gap: 10px;
    }
    .model-data-col {
        border-right: none; 
        padding-right: 0;
        border-bottom: 1px solid #0d0d0d; 
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .model-data-col, .model-prices-col {
        flex: none;
        width: 100%;
    }
    .thumbnails {
        justify-content: center;
        padding: 0;
    }
}
.recommended-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 15px;
    text-align: center;
}

.recommended-title {
    font-family: 'Cinzel', serif; 
    font-size: 2.8rem; 
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 5px; 
    position: relative;
    display: inline-block;
}
.recommended-title::after {
    content: none;
}
@media (max-width: 600px) {
    .recommended-title {
        font-size: 1.5rem; 
        letter-spacing: 2px; 
        margin-bottom: 20px; 
        text-align: center;
        width: 100%; 
    }
}

.recommended-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recommended-item {
    width: 200px; 
    background: #0a0a0a; 
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #0d0d0d; 
    box-shadow: none !important; 
    text-decoration: none;
    color: #ffffff;
    display: block;
    transition: transform 0.3s, border-color 0.3s;
}
.recommended-item:hover {
    transform: translateY(-3px); 
    box-shadow: none !important; 
    border-color: #CC0000; 
}
.recommended-item-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.recommended-item-info {
    padding: 15px 10px;
}
.recommended-item-info p {
    font-family: 'Cinzel', serif; 
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem; 
    color: #CC0000; 
    letter-spacing: 1px;
    text-transform: uppercase;
}
.recommended-item-info span {
    font-size: 0.95rem;
    color: #FFFFFF; 
    font-family: 'Inter', sans-serif;
}

.modal-content {
    background-color: #0a0a0a; 
    color: #FFFFFF; 
    box-shadow: none !important; 
}
.modal-header {
    border-bottom: 2px solid transparent;
    position: relative;
}
.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}
.modal-title { 
    color: #FFFFFF; 
    font-family: 'Cinzel', serif; 
    font-weight: 700; 
    letter-spacing: 2px; 
}
.btn-close { 
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CC0000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    filter: none !important;
    opacity: 0.85; 
    padding: 0.5rem;
    transition: opacity 0.3s;
}
.btn-close:hover { 
    opacity: 1; 
}
.form-label { 
    color: #FFFFFF; 
    font-family: 'Inter', sans-serif; 
}
.form-control, .form-select { 
    background-color: #000000; 
    color: #ffffff; 
    border-color: #3A3A3A !important; 
    font-family: 'Inter', sans-serif; 
}
.form-control:focus, .form-select:focus { 
    background-color: #000000; 
    color: #ffffff;
    box-shadow: none !important;
    border-color: #CC0000; 
    outline: none;
}
.service-checkbox { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 10px; 
}
.switch { 
    position: relative; 
    display: inline-block; 
    width: 40px; 
    height: 24px; 
}
.switch input { 
    opacity: 0; 
    width: 0; 
    height: 0; 
}
.slider { 
    position: absolute; 
    cursor: pointer; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: #3A3A3A; 
    transition: 0.4s;
}
.slider:before { 
    position: absolute; 
    content: ""; 
    height: 18px; 
    width: 18px; 
    left: 3px; 
    bottom: 3px; 
    background-color: white; 
    transition: 0.4s;
}
input:checked + .slider { 
    background-color: #CC0000; 
}
input:focus + .slider { 
    box-shadow: none !important; 
}
input:checked + .slider:before { 
    transform: translateX(16px); 
}
.slider.round { 
    border-radius: 24px; 
}
.slider.round:before { 
    border-radius: 50%; 
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem; 
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    letter-spacing: 5px; 
    text-transform: uppercase;
}

.custom-modal-content {
    background-color: #0a0a0a;
    color: #FFFFFF;
}
.custom-modal-title {
    font-family: 'Cinzel', serif;
    color: #FFFFFF;
}
.custom-btn-close {
    color: #FFFFFF;
}
.custom-btn-danger {
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.custom-btn-danger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.custom-btn-danger:hover::before {
    animation: btnShine 0.6s ease;
}
.custom-btn-secondary {
    background-color: #000000;
    color: #FFFFFF;
}
.custom-btn-danger:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
.modal-footer-styled {
    border-top: 2px solid transparent;
    position: relative;
}
.modal-footer-styled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}
.btn-modal-cancel {
    background-color: #1a1a1a;
    color: #FFFFFF;
    border: 1px solid #333;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s;
}
.btn-modal-cancel:hover {
    background-color: #333;
    color: #FFFFFF;
    border-color: #555;
}
.btn-modal-submit {
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%);
    color: #FFFFFF;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.btn-modal-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.btn-modal-submit:hover::before {
    animation: btnShine 0.6s ease;
}
.btn-modal-submit:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
.premium-red {
    color: #CC0000;
    font-weight: 600;
}

@media (max-width: 992px) {
    .model-section {
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
    }
    .model-photo-col {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .model-info-col {
        max-width: 100%;
    }
    .product-name, .model-city {
        text-align: center;
    }
    .contact-icons {
        justify-content: center;
    }
    .model-photo-col .model-about {
        display: block !important;
    }
}

@media (min-width: 993px) {
    .model-photo-col .model-about {
        display: block !important; 
    }
    .model-info-col .model-about {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .navbar-brand { font-size: 24px; }
    .main-image-container { height: 450px; }
    .product-name { font-size: 2.5rem; letter-spacing: 3px; }
    .model-city { font-size: 1rem; margin-bottom: 20px; }
    .thumbnail-item { width: 80px; height: 80px; }
    .info-row, .price-row { gap: 10px; }
    .info-block { flex: 1 1 48%; }
    .price-block { flex: 1 1 48%; }
    .price-block.night-block { flex: none; width: 100%; }
    .info-block .label { font-size: 0.8rem; }
    .info-block .value { font-size: 1.2rem; }
}

@media (max-width: 500px) {
    .info-row, .price-row { flex-wrap: wrap; }
    .info-block { flex: 1 1 48%; }
    .price-block { flex: 1 1 48%; }
    .price-block.night-block { flex: none; width: 100%; }
    .info-block .label { font-size: 0.8rem; }
    .info-block .value { font-size: 1.2rem; }
}
