body {
    font-family: 'Nunito', sans-serif;
    background-color: #222;
    color: #333;
    margin: 0;
    padding: 0;
	max-width: 100vw;
    overflow-x: hidden;
    background-image: url('/images/nahu3.svg');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;
	background-size: 80px 80px;
	opacity: 0;
    transition: opacity 0.3s ease;
}
body.loaded {
  opacity: 1;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
h1 {
    font-size: 22px;
    margin-top: 6px;
    margin-bottom: 6px;
}
h2 {
    font-size: 24px;
    margin-top: 0px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}
h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: red;
    border-radius: 4px;
    position: absolute;
    bottom: -4px;
    left: 0;
}
h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 8px;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.woff2') format('woff2'),
         url('/fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.woff2') format('woff2'),
         url('/fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
nav {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    margin: 0 15px;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #d4af37;
}
.beci2 {
    background-color: white;
    padding: 2px 2px;
    margin: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}
.rapoqe6 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    background: white;
    padding: 20px;
    border-radius: 0px;
    max-width: 100%;
    margin: 0 auto;
}
.custom-select {
    position: relative;
    width: 200px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    text-align: center;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.custom-select:hover {
    border-color: #d4af37;
    background: #f9f9f9;
}
.options-container {
    position: absolute;
    top: 100%;
    left: -2px;
    width: 101%;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}
.option {
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.option:last-child {
    border-bottom: none;
}
.option:hover {
    background: #ffdddd;
    color: #d40000;
    font-weight: bold;
}
@media (max-width: 768px) {
    .rapoqe6 {
        flex-direction: column;
        max-width: 100%;
        padding: 18px 6px 18px 6px;
    }
    .custom-select {
        width: 100%;
        font-size: 16px;
        padding: 10px;
    }
    .option {
        font-size: 14px;
    }
}
.model-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 0px 6px 6px 6px;
}
.model-card {
    position: relative;
    flex: 1 1 calc(25% - 10px);
    max-width: 280px;
    aspect-ratio: 3 / 4;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.model-card .vixirewo8 {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 12px;
    text-align: left;
    color: white;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-shadow: 1px 1px 1px rgba(71, 71, 71, 0.7);
}
.model-card .nofo4 {
    font-weight: bold;
    font-size: 19px;
    margin: 0;
}
.model-card .ruto4 {
    font-size: 16px;
    margin: 0px 0 0;
    opacity: 0.8;
}
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
    .model-card {
        flex: 1 1 calc(50% - 10px);
    }
}
@media (min-width: 769px) and (max-width: 1200px) {
    .model-card {
        flex: 1 1 calc(33.33% - 10px);
    }
}
@media (min-width: 1201px) {
    .model-card {
        flex: 1 1 calc(25% - 10px);
    }
}
.mijilo5 {
    max-width: 90%;
    margin: 40px auto;
    text-align: left;
    background: white;
    padding: 20px 24px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    line-height: 1.3;
}

.mijilo5 h2, .mijilo5 h3 {
    margin-top: 0em;
    margin-bottom: 0.1em;
    font-size: 1.5rem;
    color: #111;
}

.mijilo5 p, .mijilo5 ul {
    margin-bottom: 1em;
    font-size: 1rem;
    color: #222;
}

.mijilo5 ul {
    padding-left: 1.3em;
}

.mijilo5 li {
    margin-bottom: 0em;
}

li {
  margin-bottom: 8px;
  line-height: 1.5;
}

ol {
  margin-left: 10px;
  padding-left: 12px;
  list-style-type: decimal;
}

.quqo2 {
    text-align: center;
    margin: 0 auto;
    max-width: 430px;
    padding: 0px 0px 18px 0px;
    background: rgba(0, 0, 0, 0);
    border-radius: 10px;
}
.quqo2 img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    margin-bottom: -2px;
}
.quqo2 p {
    font-size: 18px;
    color: #555;
}
.sicuka9 {
    display: inline-block;
    text-decoration: none;
    background: #4CAF50;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 16px;
    transition: background 0.3s ease;
}
.sicuka9:hover {
    background: #b5902f;
}
@media (max-width: 1024px) {
    .model-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .model-card {
        width: 100%;
        max-width: none;
    }
}
.qixuvu2 {
    max-width: 400px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.qixuvu2 label {
    font-weight: bold;
    font-size: 16px;
}
.qixuvu2 input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.qixuvu2 button {
    padding: 10px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.qixuvu2 button:hover {
    background: #b5902f;
}
.mobokori1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.mobokori1 label {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}
.mobokori1 label:hover {
    background: #f0f0f0;
}
.profile-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.profile-photo {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.sicuka9 {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
}
.sicuka9:hover {
    background: #b5902f;
}
@media (max-width: 768px) {
    .model-card {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .model-card:nth-child(-n+8) {
        opacity: 8;
        transform: translateY(0);
    }
    .model-card.visible {
        opacity: 8;
        transform: translateY(0);
    }
}
.xeji6 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #28a745;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #dc3545;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.xeji6.hide,
.error-message.hide {
    opacity: 0;
}
.catu4 {
    position: relative;
    width: 100%;
    max-width: 430px;
    margin: 0px auto;
    overflow: hidden;
    border-radius: 0px;
}
.tesijafe6 {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 1;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    width: max-content;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, 200);
    text-shadow: 1px 1px 0 rgba(100, 100, 100, 0.5);
}
.buxeqe5 {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 250px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    background: transparent;
    border: 1px solid white;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 15;
    opacity: 1;
}
.buxeqe5:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}
.fidi8 {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    cursor: grab;
}
.zifotesa2 {
    min-width: 100%;
}
.zifotesa2 img {
    width: 100%;
    height: auto;
    display: block;
}
.rozi3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 7px 10px;
    height: 41px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10%;
    transition: background 0.3s ease;
	z-index: 9999;
	opacity: 1;
    touch-action: manipulation;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.huci4 {
    left: 10px;
}
.yokibaja8 {
    right: 10px;
}
@media (min-width: 768px) {
    .rozi3 {
        display: block;
    }
}
.varo9 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
	border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.varo9 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.fixi9 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.gepi9 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #ffe6e6;
    color: red;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.gepi9:hover {
    background: #ffcccc;
}
.sosidija4 {
    width: 100%;
    max-width: 500px;
    margin: 0px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    border-radius: 0px 0px 0px 0px;
    box-shadow: 0 6px 14px rgba(0 0 0 / 20%);
    border: 1px solid #ddd;
    padding: 12px 15px;
    box-sizing: border-box;
}
.dezeyico9 {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    text-align: left;
    padding-left: 5px;
}
.gelasaja4 {
    width: 1px;
    height: 40px;
    background: #ddd;
}
.feno1 {
    width: 25px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
}
.mavuyeri5 {
    background-image: url('/icons/dufo7.png');
}
.givabi1 {
    background-image: url('/icons/zuximuli1.png');
}
.dezeyico9:last-child {
    margin-left: 15px;
}
.dovofica6 {
    display: flex;
    flex-direction: column;
}
.tile7 {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}
.wehi2 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}
@media (max-width: 600px) {
    .sosidija4 {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }
    .gelasaja4 {
        height: 30px;
        width: 1px;
    }
    .dezeyico9 {
        justify-content: flex-start;
        padding-left: 5px;
    }
}
.baqu8 {
    background: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
.nelu5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.goduzuni4 a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}
.goduzuni4 a:hover {
    color: #ffcc00;
}
.fofiyino7 {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
}
@media (max-width: 768px) {
    .nelu5 {
        flex-direction: column;
        text-align: center;
    }
    .goduzuni4 {
        margin-bottom: 15px;
    }
}
.yiduni6 {
    background: #222;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.kapulazo2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bezu2 img {
    width: 28px;
    height: 24px;
    transition: 0.3s;
}
.bezu2 img:hover {
    transform: scale(1.1);
}
.pahidasi7 img {
    width: 190px;
}
.sika1 img {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
    display: block;
}
.sika1 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buko8 {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.sika1 img:hover {
    transform: scale(1.1);
}
.piqohoxa7 {
    position: fixed;
    top: 0;
    right: 100%;
    width: 210px;
    height: 100%;
    background: #222;
    color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease-in-out;
    padding-top: 60px;
    overflow-y: auto;
}
.piqohoxa7.open {
    right: 0;
}
.piqohoxa7 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.piqohoxa7 ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.piqohoxa7 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
    transition: 0.3s;
}
.piqohoxa7 ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}
.buko8 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.buko8:hover {
    color: #ffcc00;
}
.piqohoxa7.active {
    right: 0;
}
@media (max-width: 768px) {
    .kapulazo2 {
        padding: 0 15px;
    }
    .pahidasi7 img {
        width: 190px;
    }
}





/* 1) Сброс подчеркивания и цвета у ссылки */
.site-title-link {
  display: inline-block;
  text-decoration: none !important;
  color: inherit !important;
}

/* 2) Базовые стили — работают всегда, на всех экранах */
.pahidasi7 .site-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.3;
  padding: 0.5em 0;         /* отступы сверху/снизу */
  text-decoration: none;    /* страховка */
  color: inherit;

  /* Минимальный и максимальный размер по умолчанию */
  font-size: clamp(1.5rem, 6vw, 3rem);
}

/* 3) Цвета для отдельных слов */
.pahidasi7 .site-title .first-word {
  color: #dbdb00;
}
.pahidasi7 .site-title .second-word {
  color: #fcfcf8;
}

/* 4) Центрирование контейнера */
.kapulazo2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pahidasi7 {
  flex: 1;
  text-align: center;
}

/* 5) Мобильная версия (до 480px) — чуть меньше */
@media (max-width: 480px) {
  .pahidasi7 .site-title {
    font-size: clamp(1.25rem, 5.3vw, 2.5rem);
  }
}

/* 6) Десктоп (от 1024px) — увеличиваем до 5rem */
@media (min-width: 1024px) {
  .pahidasi7 .site-title {
    font-size: clamp(1rem, 1.7vw, 5rem);
  }
}






.wocuzoyo8 {
    max-width: 92%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 20px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.wocuzoyo8 h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}
.wocuzoyo8 p {
    font-size: 16px;
    color: #555;
}
.comerala6 {
    max-width: 92%;
    margin: 20px auto;
	text-align: left;
    background: white;
    padding: 20px;
    border-radius: 6px;
	border: 1px solid #ddd;
	box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.bio-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.bio-label {
    font-weight: bold;
    color: #555;
}
.bio-value {
    text-align: right;
    color: #222;
}
.gito9 {
    color: #2f5da7;
    font-weight: bold;
}
.gito9:hover {
    text-decoration: underline;
    color: #e60000;
}
.vubevihe7 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 5px;
}
.rebihiro2 {
    display: inline-block;
    padding: 8px 40px;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.rebihiro2:hover {
    background: linear-gradient(45deg, #cc0000, #990000);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.witumesu5 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}
.tovubugo2 {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 460px;
    min-height: 200px;
    background: rgba(0, 0, 0, 0.85);
    padding: 30px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    overflow: hidden;
    color: #fff;
}
.yoqoxuce1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/nezuga1.jpg') center/cover no-repeat;
    filter: blur(3px) brightness(50%);
    z-index: -1;
}
.sere9 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}
.cebepepo3 {
    font-size: 15px;
    margin-bottom: 10px;
}
.nagekidi8 {
    font-size: 14px;
    margin-top: 25px;
}
.vuguzu2 {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}
.vuguzu2:hover {
    color: #ccc;
}
@media (max-width: 480px) {
    .tovubugo2 {
        width: 100%;
        max-width: 95%;
        min-height: 200px;
        padding: 42px 12px;
    }
}
.rorano2 {
	max-width: 92%;
    margin: 20px auto;
    background: #fff;
    padding: 20px 20px 10px 20px;
    margin-top: 20px;
    border-radius: 6px;
    text-align: left;
	border: 1px solid #ddd;
    box-shadow: 0px 4px 10px rgba(0 0 0 / 20%);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
}
.rika2 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.rika2 .rofi7,
.rika2 #jilasa9 {
    margin-top: 6px;
}
.hebe4 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
	transform: translateY(2px);
}
.zakitaxu5 {
    background-image: url('/icons/phone.png');
}
.heho8 {
    background-image: url('/icons/vige6.png');
}
.rofi7 {
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}
.contact-phone {
    color: #e91e63;
    font-weight: bold;
    text-decoration: none;
}
.contact-phone:hover {
    text-decoration: underline;
}
.cenivipo1 {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}
.cenivipo1:hover {
    background: #388E3C;
}
#jilasa9 {
    color: #e54898;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    padding: 5px 0;
}
#jilasa9:hover {
    color: #e67db3;
}
.poka7 {
	max-width: 92%;
	margin: 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    margin-top: 20px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.bizuba4 {
    padding: 12px;
}
.bizuba4 .vixirewo8 .nofo4,
.bizuba4 .vixirewo8 .ruto4 {
    color: #fff !important;
}
.poka7 h2 {
    margin-bottom: 24px;
    font-size: 24px;
}
.cutigi6 {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 10px;
}
.voja9 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    background: #e6f7ff;
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.voja9:hover {
    background: #cceeff;
}
.zofe6 {
    max-width: 800px;
    margin: 34px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.vapoza2 {
    font-size: 18px;
    margin-bottom: 20px;
}
.vapoza2 p {
    margin: 10px 0;
}
.vapoza2 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.vapoza2 a:hover {
    text-decoration: underline;
}
.gakekoci9 {
    font-size: 14px;
    margin-bottom: 20px;
}
.gakekoci9 p {
    margin: 4px 0;
}
.gakekoci9 a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}
.gakekoci9 a:hover {
    text-decoration: underline;
}
.boma3 {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.boma3 iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: 0;
}
.vupi9 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.duyowoye3 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.duyowoye3 input,
.duyowoye3 textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
}
.duyowoye3 textarea {
    height: 120px;
    resize: none;
}
.duyowoye3 button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.duyowoye3 button:hover {
    background: #d81b60;
}
.xeji6 {
    color: green;
    font-weight: bold;
}
#juzanino7 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    display: none;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
}
#juzanino7 .weju4 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#juzanino7 p {
    flex: 1;
    margin: 0;
    padding-right: 15px;
    text-align: left;
}
#juzanino7 a {
    color: #d4af37;
    text-decoration: underline;
}
#juzanino7 button {
    background: #d4af37;
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 12px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
#juzanino7 button:hover {
    background: #b9972e;
}
#juzanino7 #vahaju7 {
    background: #666;
    color: #fff;
}
#juzanino7 #vahaju7:hover {
    background: #555;
}
@media (min-width: 769px) {
    #juzanino7 #vahaju7 {
        margin-left: 10px;
    }
}
@media (max-width: 768px) {
    #juzanino7 .weju4 {
        display: block;
        text-align: center; 
    }
    #juzanino7 p {
        padding-right: 0;
        padding-bottom: 10px;
        text-align: center; 
    }
    #juzanino7 button {
        width: 100%; 
        margin-top: 10px;
    }
}
.ribbon {
    position: absolute;
    top: 77px;
    left: -32px;
    width: 158px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.ribbon-diamond {
    background: #1e2734;
    color: #9bcaf2;
}
.ribbon-gold {
    background: #1e2734;
    color: #cbae11;
}
.ribbon-silver {
    background: #1e2734;
    color: #a3d5ff;
}
.model-card {
    position: relative;
    overflow: hidden;
}
.tariff-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    color: white;
    text-align: center;
    min-width: 80px;
}
.tariff-icon {
    width: 16px !important;
    height: 16px !important;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 3px;
	transform: translateY(-3px);
}
.tariff-diamond {
    background: #4f46e1;
}
.tariff-silver {
    background: #3f85f7;
}
.tariff-gold {
    background: #121212;
    color: #cbae11;
}
.new-ribbon {
    position: absolute;
    top: 44px;
    left: -48px;
    width: 130px;
    background: #ba2870;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    padding: 20px 4px 4px 4px;
    transform: rotate(-45deg);
    transform-origin: left top;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.model-card .bugenaji9 {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 45%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(100, 100, 100, 60%);
}
.model-card .bugenaji9::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #00cc00;
    border-radius: 50%;
    display: inline-block;
}
.quqo2 .bugenaji9 {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 45%);
    border: 1px solid rgba(100, 100, 100, 60%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    z-index: 10;
	gap: 3px;
}
.quqo2 .bugenaji9 .qaxomo6 {
    width: 10px;
    height: 10px;
    background-color: #00cc00;
    border-radius: 50%;
    margin-right: 3px;
}
.cacipite7 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.cacipite7 input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 10px;
}
.cacipite7 button {
    background-color: #4f46e1;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
.cacipite7 button:hover {
    background-color: #3b37c1;
}
.load-more-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(45deg, #e54898, #e67db3);
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.load-more-btn:hover {
    background: linear-gradient(45deg, #e54898, #e67db3);
    box-shadow: 0 6px 14px rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
}
.soli3 {
    max-width: 60%;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0 0 0 / 20%);
    text-align: left;
    margin: 8px auto;
	border: 1px solid #ddd;
    line-height: 1.6;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    }
.soli3 h1, .soli3 h2 {
    margin-top: 20px;
    }
.soli3 ul {
    margin-left: 20px;
    }
    @media (max-width: 768px) {
.soli3 {
    padding: 14px;
    }
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
.vuguzu2 {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #aaa;
}
.vuguzu2:hover {
        color: #333;
}
@media (min-width: 1024px) {
  .quqo2 .bizuba4 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 16px 20px;
  }
}