* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 15% 20%,
            #3c2475 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            #1c3b80 0%,
            transparent 30%
        ),
        #0d0d22;

    color: white;

    font-family: Arial, sans-serif;

    overflow-x: hidden;
}


/* ---------------- HEADER ---------------- */

.header {
    position: relative;
    z-index: 10;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 6%;
}


.logo {
    font-size: 25px;
    font-weight: bold;

    color: white;
}

.logo span {
    color: #ffe477;
}


.navigation {
    display: flex;
    gap: 35px;
}

.navigation a {
    color: #d8d6ef;

    text-decoration: none;

    transition: 0.3s;
}

.navigation a:hover {
    color: #ffe477;
}


.theme-button {
    width: 42px;
    height: 42px;

    border: 1px solid #ffffff30;
    border-radius: 50%;

    background: #ffffff10;

    color: white;

    cursor: pointer;

    font-size: 18px;

    transition: 0.3s;
}

.theme-button:hover {
    transform: rotate(20deg) scale(1.1);
}


/* ---------------- HERO ---------------- */

.hero {
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 70px 10%;
}


.hero-text {
    max-width: 600px;

    position: relative;
    z-index: 2;
}


.small-title {
    color: #ffe477;

    font-size: 13px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}


h1 {
    margin: 0;

    font-size: clamp(70px, 10vw, 140px);

    line-height: 0.85;

    letter-spacing: -5px;
}

h1 span {
    color: #a84de8;

    text-shadow:
        0 0 20px #a84de880,
        0 0 60px #6d4de855;
}


.description {
    max-width: 500px;

    margin-top: 35px;

    color: #c8c7df;

    font-size: 18px;

    line-height: 1.7;
}


/* ---------------- BUTTONS ---------------- */

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}


.main-button,
.secondary-button {
    padding: 15px 25px;

    border-radius: 14px;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s;
}


.main-button {
    border: none;

    background: #8d45d9;

    color: white;

    box-shadow:
        0 0 25px #8d45d955;
}

.main-button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 35px #8d45d977;
}


.secondary-button {
    border: 1px solid #ffffff30;

    background: #ffffff08;

    color: white;
}

.secondary-button:hover {
    background: #ffffff15;

    transform: translateY(-4px);
}


/* ---------------- MASCOT ---------------- */

.mascot-area {
    position: relative;

    width: 420px;
    height: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.mascot-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #7d42d955;

    filter: blur(60px);

    animation: glow 4s ease-in-out infinite;
}


.mascot-placeholder {
    position: relative;
    z-index: 2;

    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff08;

    border: 1px solid #ffffff20;

    font-size: 100px;

    box-shadow:
        0 0 60px #8d45d944;
}


@keyframes glow {

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

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

}


/* ---------------- ORBITS ---------------- */

.orbit {
    position: absolute;

    border: 1px solid #ffffff20;

    border-radius: 50%;
}

.orbit-1 {
    width: 330px;
    height: 150px;

    transform: rotate(25deg);

    animation: orbit 10s linear infinite;
}

.orbit-2 {
    width: 360px;
    height: 190px;

    transform: rotate(-35deg);

    animation: orbit 14s linear infinite reverse;
}


@keyframes orbit {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* ---------------- ABOUT ---------------- */

.info-section {
    padding: 120px 10%;

    text-align: center;

    background: #ffffff05;
}

.info-section h2 {
    font-size: 50px;

    margin: 10px 0 25px;
}

.info-section > p:last-child {
    max-width: 600px;

    margin: auto;

    color: #bdbbd4;

    line-height: 1.7;
}


/* ---------------- MOBILE ---------------- */

@media (max-width: 800px) {

    .navigation {
        display: none;
    }

    .hero {
        flex-direction: column;

        text-align: center;

        padding-top: 40px;
    }

    .description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;
    }

    .mascot-area {
        width: 300px;
        height: 300px;
    }

    .mascot-placeholder {
        width: 170px;
        height: 170px;

        font-size: 70px;
    }

    .orbit-1 {
        width: 260px;
        height: 120px;
    }

    .orbit-2 {
        width: 280px;
        height: 150px;
    }

}
/* ---------------- STARS ---------------- */

.star {
    position: fixed;

    width: 3px;
    height: 3px;

    background: white;
    border-radius: 50%;

    box-shadow:
        0 0 6px white,
        0 0 12px #a9c7ff;

    animation: twinkle 3s infinite ease-in-out;

    pointer-events: none;

    z-index: 0;
}


@keyframes twinkle {

    0%, 100% {
        opacity: 0.15;
        transform: scale(0.7);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }

}

.mascot-placeholder {
    position: relative;
    z-index: 10;

    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;

    box-shadow: none;
}

.mascot-placeholder img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    position: relative;
    z-index: 20;
}

/* ---------------- REAL MASCOT ---------------- */

.mascot-image {
    position: relative;

    z-index: 10;

    width: 360px;
    height: 360px;

    object-fit: contain;

    display: block;

    animation: mascotFloat 4s ease-in-out infinite;
}


@keyframes mascotFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}

.orbit {
    z-index: 1;
}

.mascot-glow {
    z-index: 0;
}
/* ---------------- TEXT RING ---------------- */

.text-ring {
    position: absolute;

    width: 500px;
    height: 500px;

    z-index: 5;

    animation: textRingRotate 18s linear infinite;

    pointer-events: none;
}

.text-ring svg {
    width: 100%;
    height: 100%;

    overflow: visible;
}

.text-ring text {
    fill: #ffe477;

    font-size: 22px;

    font-weight: bold;

    letter-spacing: 3px;
}

@keyframes textRingRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}
/* ---------------- ABOUT SHOP ---------------- */

.about-section {
    position: relative;

    min-height: 700px;

    padding: 120px 10%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 50%,
            #5b2b8a30 0%,
            transparent 45%
        ),
        #ffffff05;
}


.about-content {
    position: relative;
    z-index: 2;

    width: min(800px, 100%);

    padding: 60px;

    text-align: center;

    border: 1px solid #ffffff18;

    border-radius: 30px;

    background: #ffffff08;

    backdrop-filter: blur(12px);

    box-shadow:
        0 0 60px #7d42d922;
}


.about-content h2 {
    margin: 10px 0 0;

    font-size: clamp(45px, 7vw, 75px);

    line-height: 1;

    color: white;

    text-shadow:
        0 0 25px #a84de855;
}


.about-motto {
    margin: 15px 0 40px;

    color: #ffe477;

    font-size: 20px;

    letter-spacing: 2px;
}


.about-text {
    max-width: 650px;

    margin: auto;

    color: #c8c7df;

    font-size: 17px;

    line-height: 1.8;

    text-align: left;
}


.about-text p {
    margin: 0 0 20px;
}


.about-text strong {
    color: #ffe477;
}


.about-final {
    margin-top: 35px !important;

    padding-top: 25px;

    border-top: 1px solid #ffffff15;

    color: white;

    text-align: center;

    font-size: 18px;
}


/* декоративная звезда */

.about-decoration {
    position: absolute;

    z-index: 1;

    top: 12%;

    right: 12%;

    color: #ffe477;

    font-size: 45px;

    opacity: 0.7;

    animation: aboutStar 3s ease-in-out infinite;
}


@keyframes aboutStar {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-15px) rotate(20deg);
        opacity: 1;
    }

}


/* мобильная версия */

@media (max-width: 800px) {

    .about-section {
        padding: 80px 6%;
    }

    .about-content {
        padding: 40px 25px;
    }

    .about-text {
        font-size: 16px;
    }

}
/* ========================================= */
/* УСЛУГИ НА ЗАКАЗ */
/* ========================================= */

.services-section {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 30%,
            #6b35a825 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 70%,
            #263f9c20 0%,
            transparent 35%
        );
}


/* ---------- HEADER ---------- */

.services-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-header h2 {
    margin: 15px 0;
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1;
    color: white;
    text-shadow:
        0 0 20px #9b55ff55,
        0 0 50px #6d35b833;
}

.services-header > p:last-child {
    max-width: 600px;
    margin: 25px auto 0;
    color: #c8c7df;
    font-size: 17px;
    line-height: 1.7;
}


/* ---------- GRID ---------- */

.services-grid {
    width: min(1200px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* ---------- CARD ---------- */

.service-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #ffffff18;
    border-radius: 28px;

    background: #ffffff08;

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 50px #00000025,
        inset 0 1px 0 #ffffff10;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #a85cff55;

    box-shadow:
        0 20px 60px #00000045,
        0 0 40px #7d42d922;
}


/* ---------- GALLERY ---------- */

.service-gallery {
    position: relative;

    width: 100%;
    height: 260px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #6736a940,
            #17132d 70%
        );
}


/* ---------- SLIDES ---------- */

.gallery-slide {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;

    transform: scale(1.04);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;

    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* ---------- PLACEHOLDER ---------- */

.placeholder-image {
    width: 80%;
    height: 75%;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px dashed #ffffff30;
    border-radius: 20px;

    color: #b9b1d9;

    font-size: 16px;
    letter-spacing: 2px;

    background:
        linear-gradient(
            135deg,
            #ffffff08,
            #ffffff03
        );

    box-shadow:
        inset 0 0 30px #00000020,
        0 0 30px #713cb522;
}


/* ---------- ARROWS ---------- */

.gallery-arrow {
    position: absolute;

    top: 50%;

    width: 38px;
    height: 38px;

    transform: translateY(-50%);

    border: 1px solid #ffffff30;
    border-radius: 50%;

    background: #17132dcc;

    color: white;

    font-size: 28px;
    line-height: 30px;

    cursor: pointer;

    z-index: 5;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.gallery-arrow:hover {
    background: #8b4ed9cc;
    border-color: #ffe47788;

    transform:
        translateY(-50%)
        scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}


/* ---------- DOTS ---------- */

.gallery-dots {
    position: absolute;

    bottom: 14px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 7px;

    z-index: 5;
}

.gallery-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #ffffff55;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.gallery-dot.active {
    width: 20px;
    border-radius: 10px;
    background: #ffe477;
}


/* ---------- CARD CONTENT ---------- */

.service-content {
    position: relative;

    padding: 28px 30px 32px;
}

.service-number {
    position: absolute;

    top: 24px;
    right: 28px;

    color: #ffffff25;

    font-size: 14px;
    letter-spacing: 2px;
}

.service-content h3 {
    margin: 0 0 22px;

    color: white;

    font-size: 27px;

    text-shadow:
        0 0 15px #a84de833;
}


/* ---------- PRICE LIST ---------- */

.price-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    border-bottom: 1px solid #ffffff0d;

    color: #c8c7df;

    font-size: 15px;
}

.price-list div:last-child {
    border-bottom: none;
}

.price-list b {
    flex-shrink: 0;

    color: #ffe477;

    font-weight: 600;
}


/* ---------- SUBHEADINGS ---------- */

.service-content h4 {
    margin: 20px 0 10px;

    color: #ffe477;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* ---------- TAGS ---------- */

.tag-list {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.tag-list span {
    padding: 7px 11px;

    border: 1px solid #ffffff15;
    border-radius: 10px;

    background: #ffffff07;

    color: #c8c7df;

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover .tag-list span {
    border-color: #9c5be633;
}


/* ---------- FILMS ---------- */

.service-description {
    margin: -8px 0 20px;

    color: #aaa7c2;

    line-height: 1.6;
}

.film-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;
}

.film-list span {
    padding: 9px;

    border: 1px solid #ffffff12;
    border-radius: 9px;

    background: #ffffff05;

    color: #aaa7c2;

    font-size: 13px;

    text-align: center;
}


/* ========================================= */
/* ПО ТВОЕЙ ИДЕЕ */
/* ========================================= */

.idea-order {
    width: min(1000px, 100%);

    margin: 70px auto 35px;
    padding: 35px 40px;

    display: flex;
    align-items: center;

    gap: 30px;

    border: 1px solid #ffe47735;
    border-radius: 25px;

    background:
        linear-gradient(
            120deg,
            #ffe4770c,
            #8b4ed90c
        );

    box-shadow:
        0 0 50px #ffe4770b;
}

.idea-star {
    flex-shrink: 0;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffe477;

    font-size: 35px;

    background: #ffe4770d;

    box-shadow:
        0 0 30px #ffe47722;

    animation: ideaStar 3s ease-in-out infinite;
}

.idea-order h3 {
    margin: 5px 0 8px;

    color: white;

    font-size: 25px;
}

.idea-order p:not(.small-title) {
    margin: 0;

    color: #aaa7c2;

    line-height: 1.6;
}

.services-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 12px;

    background: #ffe477;

    color: #17132d;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.services-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px #ffe47730;
}


/* ---------- NOTE ---------- */

.services-note {
    margin: 30px auto 0;

    color: #77738e;

    font-size: 13px;

    text-align: center;
}


/* ---------- ANIMATION ---------- */

@keyframes ideaStar {

    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.08);
    }

}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 800px) {

    .services-section {
        padding: 80px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        height: 230px;
    }

    .service-content {
        padding: 25px 22px 28px;
    }

    .idea-order {
        flex-direction: column;

        padding: 30px 25px;

        text-align: center;
    }

    .idea-order .services-button {
        width: 100%;
    }

}
/* =========================
   НОВИНКИ
========================= */

.new-arrivals {
    position: relative;
    padding: 120px 8%;
    overflow: hidden;
    text-align: center;
}

/* Заголовок */

.new-arrivals-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    width: fit-content;
    margin: 0 auto;

    padding: 18px 35px;

    background: #ffe477;
    color: #24113d;

    border-radius: 12px;

    transform: rotate(-3deg);

    box-shadow:
        0 0 20px #ffe47766,
        10px 10px 0 #7d42d9;

    animation: newTitleAppear 0.9s ease-out both;
}

.new-arrivals-title h2 {
    margin: 0;

    font-size: clamp(38px, 6vw, 70px);
    font-weight: 900;
    letter-spacing: 4px;
}

.new-arrivals-title span {
    font-size: 28px;

    animation: littleStar 2s ease-in-out infinite;
}

.new-arrivals-title span:last-child {
    animation-delay: 0.4s;
}


/* Подзаголовок */

.new-arrivals-subtitle {
    margin: 45px 0 55px;

    color: #c8c7df;

    font-size: 18px;
    letter-spacing: 2px;
}


/* Карточки */

.new-products {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Одна карточка */

.new-product-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #ffffff20;
    border-radius: 25px;

    background: #ffffff08;

    backdrop-filter: blur(10px);

    text-align: left;

    box-shadow: 0 0 35px #7d42d91c;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    animation: productAppear 0.8s ease-out both;
}

.new-product-card:nth-child(1) {
    animation-delay: 0.15s;
}

.new-product-card:nth-child(2) {
    animation-delay: 0.3s;
}

.new-product-card:nth-child(3) {
    animation-delay: 0.45s;
}


/* Небольшой наклон карточек */

.new-product-card:nth-child(1) {
    transform: rotate(-1.5deg);
}

.new-product-card:nth-child(2) {
    transform: rotate(1deg);
}

.new-product-card:nth-child(3) {
    transform: rotate(-1deg);
}


/* Наведение */

.new-product-card:hover {
    transform: translateY(-12px) rotate(0deg);

    box-shadow:
        0 0 40px #a84de855,
        0 15px 40px #00000055;
}


/* Место для фотографии */

.new-product-image {
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at center, #7d42d955, transparent 65%),
        #171126;

    color: #8e89a8;

    font-size: 13px;
    letter-spacing: 2px;
}


/* Информация */

.new-product-info {
    padding: 25px;
}

.new-product-label {
    margin: 0 0 8px;

    color: #ffe477;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.new-product-info h3 {
    margin: 0 0 10px;

    color: white;

    font-size: 25px;
}

.new-product-info p:not(.new-product-label) {
    margin: 0 0 20px;

    color: #aaa7c2;

    line-height: 1.5;
}

.new-product-info strong {
    color: #ffe477;

    font-size: 22px;
}


/* Кнопка */

.new-products-button {
    display: inline-block;

    margin-top: 55px;
    padding: 16px 30px;

    border: 1px solid #ffe47766;
    border-radius: 999px;

    background: #ffffff0a;

    color: white;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.new-products-button:hover {
    background: #ffe477;
    color: #24113d;

    transform: translateY(-4px);

    box-shadow: 0 0 25px #ffe47766;
}


/* =========================
   АНИМАЦИИ
========================= */

@keyframes newTitleAppear {

    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-12deg);
    }

    70% {
        transform: translateX(15px) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(-3deg);
    }
}


@keyframes productAppear {

    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
    }
}


@keyframes littleStar {

    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.15);
    }
}


/* Телефон */

@media (max-width: 800px) {

    .new-arrivals {
        padding: 80px 6%;
    }

    .new-arrivals-title {
        padding: 14px 20px;
    }

    .new-arrivals-title h2 {
        font-size: 35px;
    }

    .new-products {
        grid-template-columns: 1fr;
    }

    .new-product-card:nth-child(1),
    .new-product-card:nth-child(2),
    .new-product-card:nth-child(3) {
        transform: rotate(0deg);
    }
}
/* =========================
   НОВИНКИ + МАСКОТ
========================= */

.new-arrivals {
    position: relative;
    padding: 120px 7%;
    overflow: hidden;
}


/* Раскладка */

.new-arrivals-layout {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 50px;

    align-items: center;
}


/* Левая часть */

.new-arrivals-content {
    min-width: 0;
}


/* Заголовок */

.new-arrivals-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;

    width: fit-content;

    padding: 18px 35px;

    background: #ffe477;
    color: #24113d;

    border-radius: 12px;

    transform: rotate(-3deg);

    box-shadow:
        0 0 20px #ffe47766,
        10px 10px 0 #7d42d9;

    animation: newTitleAppear 0.9s ease-out both;
}

.new-arrivals-title h2 {
    margin: 0;

    font-size: clamp(38px, 5vw, 65px);
    font-weight: 900;

    letter-spacing: 4px;
}

.new-arrivals-title span {
    font-size: 28px;

    animation: littleStar 2s ease-in-out infinite;
}


/* Подзаголовок */

.new-arrivals-subtitle {
    margin: 40px 0 45px;

    color: #c8c7df;

    font-size: 18px;
    letter-spacing: 2px;
}


/* Карточки */

.new-products {
    max-width: none;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Карточка */

.new-product-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #ffffff20;
    border-radius: 25px;

    background: #ffffff08;

    backdrop-filter: blur(10px);

    text-align: left;

    box-shadow: 0 0 35px #7d42d91c;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    animation: productAppear 0.8s ease-out both;
}

.new-product-card:nth-child(1) {
    animation-delay: 0.15s;
    transform: rotate(-1.5deg);
}

.new-product-card:nth-child(2) {
    animation-delay: 0.3s;
    transform: rotate(1deg);
}

.new-product-card:nth-child(3) {
    animation-delay: 0.45s;
    transform: rotate(-1deg);
}

.new-product-card:hover {
    transform: translateY(-12px) rotate(0deg);

    box-shadow:
        0 0 40px #a84de855,
        0 15px 40px #00000055;
}


/* Фото */

.new-product-image {
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #7d42d955,
            transparent 65%
        ),
        #171126;

    color: #8e89a8;

    font-size: 13px;
    letter-spacing: 2px;
}


/* Информация */

.new-product-info {
    padding: 22px;
}

.new-product-label {
    margin: 0 0 8px;

    color: #ffe477;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.new-product-info h3 {
    margin: 0 0 10px;

    color: white;
    font-size: 22px;
}

.new-product-info p:not(.new-product-label) {
    margin: 0 0 18px;

    color: #aaa7c2;

    line-height: 1.5;
}

.new-product-info strong {
    color: #ffe477;
    font-size: 21px;
}


/* Кнопка */

.new-products-button {
    display: inline-block;

    margin-top: 45px;
    padding: 16px 30px;

    border: 1px solid #ffe47766;
    border-radius: 999px;

    background: #ffffff0a;

    color: white;

    text-decoration: none;
    font-weight: bold;

    transition: 0.3s ease;
}

.new-products-button:hover {
    background: #ffe477;
    color: #24113d;

    transform: translateY(-4px);

    box-shadow: 0 0 25px #ffe47766;
}


/* =========================
   МАСКОТ
========================= */

.new-mascot-area {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Свечение за маскотом */

.new-mascot-glow {
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: #8b4de855;

    filter: blur(70px);

    animation: mascotGlow 4s ease-in-out infinite;
}


/* Сам маскот */

.new-mascot {
    position: relative;

    width: 340px;
    height: 340px;

    object-fit: contain;

    z-index: 2;

    cursor: pointer;

    transition:
        filter 0.3s ease,
        transform 0.2s ease;
}


/* МАСКОТ ПРЫГАЕТ ПРИ НАВЕДЕНИИ */

.new-mascot:hover {
    animation: mascotJump 0.8s ease-in-out;
    filter:
        drop-shadow(0 0 15px #ffe477)
        drop-shadow(0 0 30px #a84de8);
}


/* Подсказка */

.mascot-hint {
    position: absolute;

    bottom: 20px;

    color: #ffe477;

    font-size: 13px;
    letter-spacing: 2px;

    opacity: 0.7;

    animation: hintFloat 2.5s ease-in-out infinite;
}


/* =========================
   АНИМАЦИИ
========================= */

@keyframes mascotJump {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-8px, -35px) rotate(-5deg);
    }

    50% {
        transform: translate(12px, -65px) rotate(6deg);
    }

    70% {
        transform: translate(-5px, -25px) rotate(-3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}


@keyframes mascotGlow {

    0%, 100% {
        transform: scale(0.9);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.75;
    }
}


@keyframes hintFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


@keyframes newTitleAppear {

    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-12deg);
    }

    70% {
        transform: translateX(15px) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(-3deg);
    }
}


@keyframes productAppear {

    from {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    to {
        opacity: 1;
    }
}


@keyframes littleStar {

    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.15);
    }
}


/* =========================
   ТЕЛЕФОН
========================= */

@media (max-width: 1000px) {

    .new-arrivals-layout {
        grid-template-columns: 1fr;
    }

    .new-mascot-area {
        min-height: 380px;
        order: -1;
    }

    .new-mascot {
        width: 300px;
        height: 300px;
    }

    .new-arrivals-title {
        margin: auto;
    }

    .new-arrivals-subtitle {
        text-align: center;
    }

    .new-products {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .new-arrivals {
        padding: 80px 6%;
    }

    .new-products {
        grid-template-columns: 1fr;
    }

    .new-mascot-area {
        min-height: 320px;
    }

    .new-mascot {
        width: 260px;
        height: 260px;
    }

    .new-arrivals-title {
        padding: 14px 20px;
    }

    .new-arrivals-title h2 {
        font-size: 32px;
    }
}
/* =========================
   STARKI В БЛОКЕ НОВИНОК
========================= */

/* ================= STARKI ================= */

.starki-area {
    position: relative;
    width: 360px;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.starki-glow {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: #8b5cf640;
    filter: blur(45px);
    animation: starkiGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.starki {
    position: relative;
    z-index: 2;

    width: 280px !important;
    height: 280px !important;

    object-fit: contain !important;
    display: block;

    /* чтобы картинка не обрезалась */
    max-width: none;
    max-height: none;

    transition:
        transform 0.25s ease-out;

    animation: starkiFloat 2.5s ease-in-out infinite;

    cursor: pointer;
    user-select: none;
}

/* обычное подпрыгивание */

@keyframes starkiFloat {

    0%, 100% {
        margin-top: 0;
    }

    50% {
        margin-top: -18px;
    }
}

/* свечение */

@keyframes starkiGlow {

    0%, 100% {
        transform: scale(0.9);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
}

/* когда мышка подходит */

.starki.scared {
    animation:
        starkiFloat 0.7s ease-in-out infinite,
        starkiShake 0.18s ease-in-out infinite;

}

/* маленькая паническая тряска */

@keyframes starkiShake {

    0%, 100% {
        rotate: 0deg;
    }

    50% {
        rotate: 4deg;
    }
}

.starki-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    margin: 0;

    color: #ffe477;
    font-size: 14px;
    letter-spacing: 2px;

    opacity: 0.8;
    white-space: nowrap;

    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {

    0%, 100% {
        opacity: 0.45;
    }

    50% {
        opacity: 1;
    }
}


/* мобильная версия */

@media (max-width: 800px) {

    .starki-area {
        width: 100%;
        height: 360px;
    }

    .starki {
        width: 230px !important;
        height: 230px !important;
    }

}
/* ================= ФОН И БЛОК НОВИНОК ================= */

/* звёзды всегда остаются на заднем плане */
.star {
    z-index: 0 !important;
    pointer-events: none;
}

/* весь блок новинок находится поверх звёзд */
.new-arrivals {
    position: relative;
    z-index: 10;
}

/* содержимое новинок ещё выше */
.new-arrivals-layout {
    position: relative;
    z-index: 11;
}

.new-arrivals-content,
.starki-area {
    position: relative;
    z-index: 12;
}
/* ================================================= */
/*                 HANDMADE PAGE                    */
/* ================================================= */

.handmade-page {
    min-height: 100vh;
    overflow: hidden;
}


/* ================= HERO ================= */

.handmade-hero {
    min-height: 650px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 100px 8%;

    text-align: center;

    position: relative;
}


.handmade-small-title {
    margin: 0 0 20px;

    color: #ffe477;

    font-size: 14px;
    font-weight: bold;

    letter-spacing: 5px;
}


.handmade-hero h1 {
    margin: 0;

    font-size: clamp(65px, 11vw, 150px);

    line-height: 0.85;

    color: white;

    text-shadow:
        0 0 25px #8b5cf655,
        0 0 70px #8b5cf622;

    animation: handmadeTitle 1s ease-out;
}


.handmade-hero h1 span {
    color: #a855f7;
}


.handmade-description {
    max-width: 600px;

    margin: 45px 0 25px;

    color: #c8c7df;

    font-size: 18px;
    line-height: 1.7;
}


.handmade-note {
    padding: 12px 22px;

    border: 1px solid #ffe47755;
    border-radius: 100px;

    color: #ffe477;

    background: #ffe4770a;

    font-size: 14px;
    letter-spacing: 1px;
}


@keyframes handmadeTitle {

    from {
        opacity: 0;
        transform: translateY(40px) rotate(-3deg);
    }

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

}


/* ================= SECTION TITLE ================= */

.handmade-products-section {
    padding: 100px 8% 130px;

    position: relative;
}


.handmade-section-title {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    text-align: center;
}


.handmade-section-title span {
    color: #ffe477;

    font-size: 25px;
}


.handmade-section-title h2 {
    margin: 0;

    color: white;

    font-size: clamp(35px, 5vw, 60px);
}


.handmade-section-subtitle {
    max-width: 600px;

    margin: 20px auto 60px;

    text-align: center;

    color: #a9a7c1;

    line-height: 1.7;
}


/* ================= PRODUCTS ================= */

.handmade-products {
    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}


.handmade-card {
    position: relative;

    overflow: hidden;

    border: 1px solid #ffffff15;
    border-radius: 28px;

    background: #ffffff08;

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 60px #00000025;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

    animation: handmadeCardAppear 0.8s ease-out both;
}


.handmade-card:nth-child(2) {
    animation-delay: 0.15s;
}


.handmade-card:nth-child(3) {
    animation-delay: 0.3s;
}


.handmade-card:hover {
    transform: translateY(-12px) rotate(-1deg);

    border-color: #a855f755;

    box-shadow:
        0 30px 80px #8b5cf633;
}


@keyframes handmadeCardAppear {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

}


/* ================= IMAGE ================= */

.handmade-image {
    height: 300px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #7c3aed35,
            transparent 65%
        );

    color: #8f8ca9;

    font-size: 13px;
    letter-spacing: 2px;
}


.handmade-badge {
    position: absolute;

    top: 18px;
    right: 18px;

    padding: 8px 13px;

    border-radius: 100px;

    background: #ffe477;

    color: #24182f;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 1px;
}


/* ================= INFO ================= */

.handmade-info {
    padding: 25px 27px 28px;
}


.handmade-label {
    margin: 0 0 8px;

    color: #ffe477;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;
}


.handmade-info h3 {
    margin: 0 0 12px;

    color: white;

    font-size: 25px;
}


.handmade-info > p:not(.handmade-label) {
    margin: 0;

    color: #aaa8c0;

    font-size: 14px;

    line-height: 1.6;
}


.handmade-bottom {
    margin-top: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}


.handmade-bottom strong {
    color: #ffe477;

    font-size: 22px;
}


.handmade-bottom button {
    padding: 10px 15px;

    border: 1px solid #ffffff18;
    border-radius: 100px;

    background: #ffffff0a;

    color: white;

    font-size: 12px;

    cursor: pointer;

    transition: 0.25s ease;
}


.handmade-bottom button:hover {
    background: #a855f7;
    border-color: #a855f7;
}


/* ================= BOTTOM ================= */

.handmade-bottom-section {
    padding: 100px 20px 150px;

    text-align: center;
}


.handmade-star {
    color: #ffe477;

    font-size: 45px;

    animation: handmadeStar 2s ease-in-out infinite;
}


@keyframes handmadeStar {

    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(15deg);
    }

}


.handmade-bottom-section h2 {
    margin: 20px 0 15px;

    color: white;

    font-size: clamp(30px, 5vw, 50px);
}


.handmade-bottom-section p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #aaa8c0;

    line-height: 1.7;
}


.handmade-bottom-section a {
    display: inline-block;

    padding: 14px 22px;

    border-radius: 100px;

    background: #a855f7;

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: 0.25s ease;
}


.handmade-bottom-section a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 35px #a855f755;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .handmade-products {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 650px) {

    .handmade-hero {
        min-height: 550px;
        padding: 80px 6%;
    }

    .handmade-products-section {
        padding: 70px 6% 90px;
    }

    .handmade-products {
        grid-template-columns: 1fr;
    }

    .handmade-image {
        height: 260px;
    }

    .handmade-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .handmade-bottom button {
        width: 100%;
    }

}
/* ================= HEADER NAV ================= */

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav a {
    display: inline-block;

    padding: 10px 17px;

    color: #d9d6ed;
    text-decoration: none;

    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;

    border: 1px solid transparent;
    border-radius: 100px;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav a:hover {
    color: white;

    background: #ffffff0d;
    border-color: #a855f744;

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px #8b5cf622;
}

/* активная страница */

.nav a.active {
    color: #ffe477;

    background: #ffe47712;
    border-color: #ffe47744;

    box-shadow:
        0 0 20px #ffe47718;
}

.nav a.active:hover {
    background: #ffe47720;

    box-shadow:
        0 8px 25px #ffe47722;
}
/* ================================================= */
/*                 OTHER PAGE 2.0                   */
/* ================================================= */

.other-page {
    min-height: 100vh;
    overflow: hidden;
}


/* ================= HERO ================= */

.other-hero {
    min-height: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 100px 20px 70px;

    text-align: center;
}

.other-kicker {
    margin: 0 0 25px;

    color: #ffe477;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 5px;
}

.other-hero h1 {
    margin: 0;

    color: white;

    font-size: clamp(70px, 12vw, 150px);
    line-height: 0.9;

    text-shadow:
        0 0 30px #8b5cf655,
        0 0 80px #8b5cf622;

    animation: otherHeroAppear 0.8s ease-out;
}

.other-line {
    margin: 30px 0;

    color: #ffe477;

    font-size: 18px;

    letter-spacing: 5px;
}

.other-intro {
    max-width: 580px;

    margin: 0;

    color: #aaa8c0;

    font-size: 17px;

    line-height: 1.7;
}

@keyframes otherHeroAppear {

    from {
        opacity: 0;
        transform: translateY(35px) rotate(-2deg);
    }

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

}


/* ================= CONTENT ================= */

.other-content {
    width: min(900px, calc(100% - 40px));

    margin: 0 auto;

    padding: 30px 0 100px;

    display: flex;
    flex-direction: column;

    gap: 25px;
}


/* ================= INFO BLOCK ================= */

.info-block {
    position: relative;

    display: grid;

    grid-template-columns: 60px 70px minmax(0, 1fr);

    align-items: start;

    gap: 25px;

    padding: 38px;

    border: 1px solid #ffffff15;
    border-radius: 30px;

    background: #ffffff08;

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 60px #00000020;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-6px);

    border-color: #a855f755;

    box-shadow:
        0 30px 75px #8b5cf622;
}


/* номер */

.info-number {
    color: #6f6b82;

    font-size: 13px;
    font-weight: bold;

    letter-spacing: 2px;

    padding-top: 8px;
}


/* иконка */

.info-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #ffe47730;
    border-radius: 18px;

    background: #ffe4770b;

    font-size: 27px;
}


/* текст */

.info-text {
    min-width: 0;
}

.info-label {
    margin: 0 0 8px;

    color: #ffe477;

    font-size: 10px;
    font-weight: bold;

    letter-spacing: 4px;
}

.info-text h2 {
    margin: 0 0 15px;

    color: white;

    font-size: 32px;
}

.info-text > p:not(.info-label) {
    max-width: 650px;

    margin: 0;

    color: #aaa8c0;

    font-size: 15px;

    line-height: 1.7;
}


/* ================= PLACEHOLDER ================= */

.info-placeholder {
    margin-top: 22px;

    padding: 14px 18px;

    border: 1px dashed #ffffff20;
    border-radius: 14px;

    color: #77748d;

    font-size: 10px;

    letter-spacing: 2px;
}


/* ================= SOCIALS ================= */

.social-list {
    max-width: 500px;

    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

.social-list a {
    display: flex;

    align-items: center;

    padding: 13px 17px;

    border: 1px solid #ffffff15;
    border-radius: 15px;

    background: #ffffff06;

    color: #d9d6ed;

    text-decoration: none;

    transition: 0.25s ease;
}

.social-list a span {
    margin-right: 12px;

    color: #ffe477;
}

.social-list a b {
    margin-left: auto;

    font-size: 16px;

    color: #77748d;
}

.social-list a:hover {
    transform: translateX(6px);

    color: white;

    border-color: #a855f755;

    background: #a855f710;
}


/* ================= TELEGRAM ================= */

.telegram-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding: 14px 21px;

    border-radius: 100px;

    background: #a855f7;

    color: white;

    text-decoration: none;

    font-size: 14px;
    font-weight: bold;

    transition: 0.25s ease;
}

.telegram-button span {
    font-size: 17px;
}

.telegram-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px #a855f755;
}


/* ================= FOOTER ================= */

.other-footer {
    padding: 70px 20px 140px;

    text-align: center;
}

.footer-star {
    color: #ffe477;

    font-size: 42px;

    animation: footerStar 2.5s ease-in-out infinite;
}

.other-footer h2 {
    margin: 20px 0 10px;

    color: white;

    font-size: clamp(30px, 5vw, 52px);
}

.other-footer p {
    margin: 0 0 25px;

    color: #aaa8c0;
}

.other-footer > a {
    color: #ffe477;

    text-decoration: none;

    font-size: 14px;

    transition: 0.25s ease;
}

.other-footer > a:hover {
    color: white;
}

@keyframes footerStar {

    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(15deg);
    }

}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .other-hero {
        min-height: 430px;

        padding: 80px 20px 50px;
    }

    .other-content {
        width: calc(100% - 28px);
    }

    .info-block {
        grid-template-columns: 45px 55px minmax(0, 1fr);

        gap: 15px;

        padding: 25px 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }

    .info-text h2 {
        font-size: 25px;
    }

    .info-text > p:not(.info-label) {
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .info-block {
        display: block;

        padding: 25px;
    }

    .info-number {
        margin-bottom: 15px;
    }

    .info-icon {
        margin-bottom: 20px;
    }

}
/* ================= LOGO BUTTON ================= */

.logo {
    color: white;
    text-decoration: none;
    cursor: pointer;

    transition:
        transform 0.25s ease,
        filter 0.25s ease;
}

.logo:hover {
    color: white;
    text-decoration: none;

    transform: translateY(-2px);

    filter:
        drop-shadow(0 0 12px #ffe47766);
}

.logo span {
    color: #ffe477;

    transition:
        transform 0.3s ease;
}

.logo:hover span {
    display: inline-block;

    transform: rotate(20deg) scale(1.15);
}
/* ================================================= */
/*                THANKS MASCOT                    */
/* ================================================= */

.thanks-mascot {
    position: fixed;

    left: 35px;
    bottom: 30px;

    width: 410px;
    height: 410px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    animation:
        thanksAppear 1s ease-out,
        thanksFloat 3s ease-in-out 1s infinite;

    cursor: pointer;
}


/* сама картинка */

.thanks-mascot img {
    width: 380px;
    height: 380px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(0 8px 20px #00000035);

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}


/* ================= ПОЯВЛЕНИЕ ================= */

@keyframes thanksAppear {

    from {
        opacity: 0;
        transform: translateY(70px) scale(0.7);
    }

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

}


/* ================= ПАРЕНИЕ ================= */

@keyframes thanksFloat {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1.5deg);
    }

}


/* ================= НАВЕДЕНИЕ ================= */

.thanks-mascot:hover img {
    transform:
        translateY(-10px)
        rotate(-4deg)
        scale(1.05);

    filter:
        drop-shadow(0 12px 25px #8b5cf655);
}


/* ================= ИСКОРКИ ================= */

.thanks-spark {
    position: absolute;

    color: #ffe477;

    font-size: 18px;

    pointer-events: none;

    opacity: 0;

    animation:
        thanksSpark 3s ease-in-out infinite;
}

.spark-1 {
    top: 25px;
    right: 15px;

    animation-delay: 0.5s;
}

.spark-2 {
    top: 75px;
    left: 5px;

    font-size: 12px;

    animation-delay: 1.5s;
}

.spark-3 {
    bottom: 25px;
    right: 20px;

    font-size: 14px;

    animation-delay: 2.3s;
}

@keyframes thanksSpark {

    0%, 65%, 100% {
        opacity: 0;

        transform:
            scale(0.4)
            rotate(0deg);
    }

    75% {
        opacity: 1;

        transform:
            scale(1)
            rotate(20deg);
    }

    88% {
        opacity: 0.4;

        transform:
            scale(0.7)
            rotate(45deg);
    }

}


/* ================= МОБИЛЬНАЯ ВЕРСИЯ ================= */

@media (max-width: 700px) {

    .thanks-mascot {
        left: 15px;
        bottom: 15px;

        width: 130px;
        height: 130px;
    }

    .thanks-mascot img {
        width: 115px;
        height: 115px;
    }

    .thanks-spark {
        font-size: 14px;
    }

}
/* ================= DELIVERY ================= */

.delivery-warning {
    margin-top: 25px;
    margin-bottom: 25px;

    padding: 17px 20px;

    border: 1px solid #ffe47740;
    border-radius: 16px;

    background: #ffe4770b;

    color: #c8c7df;

    font-size: 14px;
    line-height: 1.6;
}

.delivery-warning strong {
    color: #ffe477;
}


/* отдельный способ доставки */

.delivery-option {
    margin-top: 15px;

    padding: 22px;

    border: 1px solid #ffffff12;
    border-radius: 20px;

    background: #ffffff05;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.delivery-option:hover {
    background: #ffffff09;

    border-color: #a855f733;

    transform: translateX(4px);
}


/* название + цена */

.delivery-option-title {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 12px;
}

.delivery-option-title span {
    color: white;

    font-size: 20px;
    font-weight: bold;
}

.delivery-option-title strong {
    color: #ffe477;

    font-size: 15px;
    white-space: nowrap;
}


/* текст */

.delivery-option p {
    margin: 0 0 10px;

    color: #aaa8c0;

    font-size: 14px;

    line-height: 1.7;
}

.delivery-option p:last-child {
    margin-bottom: 0;
}

.delivery-option p strong {
    color: #d9d6ed;
}


/* мобильная версия */

@media (max-width: 600px) {

    .delivery-option {
        padding: 18px;
    }

    .delivery-option-title {
        align-items: flex-start;

        flex-direction: column;

        gap: 5px;
    }

}
.delivery-link {
    color: #ffe477;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease, text-shadow .25s ease;
}

.delivery-link:hover {
    color: #fff;
    text-shadow: 0 0 12px #ffe47766;
}
.payment-intro {
    margin: 20px 0;
    color: #aaa8c0;
    font-size: 14px;
    line-height: 1.7;
}

.payment-intro strong {
    color: #d9d6ed;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.payment-method {
    padding: 18px 16px;
    border: 1px solid #ffffff12;
    border-radius: 18px;
    background: #ffffff05;
    transition: background .25s ease,
                border-color .25s ease,
                transform .25s ease;
}

.payment-method:hover {
    background: #ffffff09;
    border-color: #a855f733;
    transform: translateY(-3px);
}

.payment-method span {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 7px;
}

.payment-method small {
    color: #85839b;
    font-size: 12px;
    line-height: 1.4;
}

/* ДЕДЛАЙН */

.deadline-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
    padding: 20px 22px;
    border: 1px solid #ffe47740;
    border-radius: 20px;
    background: #ffe4770b;
    box-shadow: 0 0 30px #ffe47708;
}

.deadline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: #ffe47712;
    font-size: 25px;
}

.deadline-label {
    margin: 0 0 5px;
    color: #ffe477;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.deadline-time {
    margin: 0 0 6px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.deadline-text {
    margin: 0;
    color: #aaa8c0;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .deadline-box {
        align-items: flex-start;
        padding: 18px;
    }

    .deadline-time {
        font-size: 18px;
    }
}
/* СОЦИАЛЬНЫЕ СЕТИ */

.socials-intro {
    margin: 20px 0 25px;
    color: #aaa8c0;
    font-size: 14px;
    line-height: 1.7;
}

.socials-group {
    margin-top: 25px;
}

.socials-group-title {
    margin: 0 0 14px;
    color: #ffe477;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 75px;
    padding: 16px 18px;
    border: 1px solid #ffffff12;
    border-radius: 18px;
    background: #ffffff05;
    text-decoration: none;
    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.social-card:hover {
    background: #ffffff09;
    border-color: #a855f733;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #8b5cf615;
}

.social-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.social-link {
    margin-top: 6px;
    color: #85839b;
    font-size: 12px;
    transition: color .25s ease;
}

.social-card:hover .social-link {
    color: #ffe477;
}

/* МАРКЕТПЛЕЙСЫ */

.marketplaces-group {
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid #ffffff0d;
}

.marketplace-card {
    border-color: #ffe47718;
    background: #ffe47705;
}

.marketplace-card:hover {
    border-color: #ffe47740;
    background: #ffe4770a;
}

.coming-soon {
    cursor: default;
    opacity: .55;
}

.coming-soon:hover {
    transform: none;
    box-shadow: none;
    background: #ffe47705;
    border-color: #ffe47718;
}

.coming-soon .social-link {
    color: #ffe477;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */

@media (max-width: 600px) {
    .socials-grid {
        grid-template-columns: 1fr;
    }
}
.telegram-support-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 15px 26px;

    color: #fff;
    background: #8b5cf6;

    border: 1px solid #a855f6;
    border-radius: 100px;

    font-size: 14px;
    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 8px 30px #8b5cf633;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.telegram-support-button:hover {
    color: #fff;
    background: #a855f6;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px #a855f655;
}
.thanks-speech {
    position: absolute;
    left: 90%;
    top: 5px;

    width: 220px;
    padding: 14px 18px;

    color: white;
    background: #17132b;
    border: 1px solid #a855f655;
    border-radius: 18px;

    font-size: 13px;
    line-height: 1.45;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.95);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    pointer-events: none;
    box-shadow: 0 10px 35px #00000044;
}

/* маленький хвостик облачка */
.thanks-speech::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -8px;

    width: 14px;
    height: 14px;

    background: #17132b;
    border-right: 1px solid #a855f655;
    border-bottom: 1px solid #a855f655;

    transform: rotate(45deg);
}

.thanks-mascot:hover .thanks-speech {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ================= LIKES MASCOT ================= */

.likes-mascot {
    position: fixed;

    right: 25px;
    bottom: 20px;

    width: 350px;

    cursor: pointer;
    text-align: center;

    z-index: 1000;

    /* Изначально Старки спрятан */
    opacity: 0;
    transform: translateY(120px);

    pointer-events: none;

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


/* ================= СТАРКИ ================= */

.likes-mascot img {
    width: 360px;
    height: auto;

    display: block;
    margin: 0 auto;

    /* Покачивание + редкий прыжок + свечение */
    animation: starki-idle 4s ease-in-out infinite;

    transition: filter 0.25s ease;
}


/* Покачивание, подпрыгивание и свечение */

@keyframes starki-idle {

    /* Начало */
    0% {
        transform: rotate(-2deg) translateY(0);

        filter:
            drop-shadow(0 0 6px rgba(130, 190, 255, 0.5))
            drop-shadow(0 0 14px rgba(160, 100, 255, 0.3));
    }

    /* Покачнулся */
    20% {
        transform: rotate(2deg) translateY(-5px);

        filter:
            drop-shadow(0 0 10px rgba(130, 190, 255, 0.7))
            drop-shadow(0 0 22px rgba(160, 100, 255, 0.45));
    }

    /* Вернулся */
    40% {
        transform: rotate(-1deg) translateY(0);

        filter:
            drop-shadow(0 0 8px rgba(130, 190, 255, 0.6))
            drop-shadow(0 0 18px rgba(160, 100, 255, 0.4));
    }

    /* Ещё покачивание */
    60% {
        transform: rotate(2deg) translateY(-4px);

        filter:
            drop-shadow(0 0 12px rgba(130, 190, 255, 0.8))
            drop-shadow(0 0 26px rgba(160, 100, 255, 0.5));
    }

    /* ПОДПРЫГНУЛ */
    70% {
        transform: rotate(-1deg) translateY(-18px);

        filter:
            drop-shadow(0 0 16px rgba(130, 190, 255, 0.9))
            drop-shadow(0 0 32px rgba(160, 100, 255, 0.65));
    }

    /* Приземлился */
    78% {
        transform: rotate(1deg) translateY(0);

        filter:
            drop-shadow(0 0 10px rgba(130, 190, 255, 0.7))
            drop-shadow(0 0 20px rgba(160, 100, 255, 0.4));
    }

    /* Спокойно стоит */
    100% {
        transform: rotate(-2deg) translateY(0);

        filter:
            drop-shadow(0 0 6px rgba(130, 190, 255, 0.5))
            drop-shadow(0 0 14px rgba(160, 100, 255, 0.3));
    }
}


/* ================= ПОЯВЛЕНИЕ ================= */

.likes-mascot.show {
    opacity: 1;
    transform: translateY(0);

    pointer-events: auto;
}


/* ================= ФРАЗА ================= */

.likes-message {
    position: absolute;

    right: 270px;
    top: 20px;

    width: 300px;

    padding: 16px 20px;

    background: white;
    color: #3d2b68;

    border: 2px solid #9b7cff;
    border-radius: 18px;

    font-size: 18px;
    line-height: 1.3;

    box-shadow: 0 5px 20px rgba(80, 50, 130, 0.18);

    opacity: 0;

    transform: translateX(15px) scale(0.95);

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* Фраза появляется при наведении */

.likes-mascot:hover .likes-message {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* Хвостик облачка */

.likes-message::after {
    content: "";

    position: absolute;

    right: -10px;
    top: 35px;

    width: 18px;
    height: 18px;

    background: white;

    border-top: 2px solid #9b7cff;
    border-right: 2px solid #9b7cff;

    transform: rotate(45deg);
}
/* ================= РЕАКЦИЯ НА НАВЕДЕНИЕ ================= */

.likes-mascot:hover img {
    animation: starki-hover 1.2s ease-in-out infinite;
}

@keyframes starki-hover {

    0%, 100% {
        transform: translateY(0) scale(1.04);

        filter:
            drop-shadow(0 0 10px rgba(130, 190, 255, 0.7))
            drop-shadow(0 0 22px rgba(160, 100, 255, 0.45));
    }

    50% {
        transform: translateY(-10px) scale(1.07);

        filter:
            drop-shadow(0 0 16px rgba(130, 190, 255, 0.9))
            drop-shadow(0 0 30px rgba(160, 100, 255, 0.6));
    }
}
/* ================= NEW PRODUCT IMAGE + VIDEO HOVER ================= */

.new-product-image {
    width: 100%;
    aspect-ratio: 9 / 12;
    position: relative;
    overflow: visible;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

/* Обычное видео */

.new-product-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;

    transition:
        width 0.45s ease,
        height 0.45s ease,
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* Видео при наведении */

.new-product-image:hover {
    z-index: 100;
}

/* ================= PRODUCT GALLERY ================= */

.new-product-photo {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 20px;
}

.new-product-photo.active-media {
    display: block;
}


/* Превью */

.new-product-photos {
    position: absolute;

    bottom: 12px;
    left: 12px;

    display: flex;
    gap: 8px;

    z-index: 10;
}

.media-thumbnail {
    width: 55px;
    height: 55px;

    padding: 0;

    overflow: hidden;

    border: 2px solid white;
    border-radius: 10px;

    background: white;

    cursor: pointer;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        border 0.2s ease;
}

.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.media-thumbnail:hover {
    transform: scale(1.08);
}

.media-thumbnail.active {
    border: 3px solid #9b7cff;
    transform: scale(1.05);
}

/* Карточки не обрезают видео */

.new-products {
    overflow: visible;
}

.new-product-card {
    overflow: visible;
    position: relative;
}

.new-product-card:hover {
    z-index: 100;
}
/* ================= PRODUCT PHOTOS ================= */

.new-product-photos {
    position: absolute;
    bottom: 12px;
    left: 12px;

    display: flex;
    gap: 8px;

    z-index: 5;
}

.new-product-photos img {
    width: 55px;
    height: 55px;

    object-fit: cover;

    border-radius: 10px;

    border: 2px solid white;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);

    cursor: pointer;

    transition: transform 0.2s ease;
}

.new-product-photos img:hover {
    transform: scale(1.1);
}
/* ================= PRODUCT MEDIA GALLERY ================= */

.new-product-image {
    position: relative;
}

/* Фото по умолчанию скрыты */
/* ================= PRODUCT GALLERY ================= */

.new-product-image {
    width: 100%;
    aspect-ratio: 9 / 12;
    position: relative;
    overflow: visible;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

/* Главное видео и главное фото */

.new-product-video,
.new-product-photo.active-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* Всё неактивное прячем */

.new-product-video:not(.active-media),
.new-product-photo:not(.active-media) {
    display: none;
}


/* ================= ПРЕВЬЮ ================= */

.new-product-photos {
    position: absolute;
    bottom: 12px;
    left: 12px;

    display: flex;
    gap: 8px;

    z-index: 20;
}

.media-thumbnail {
    width: 55px;
    height: 55px;

    padding: 0;
    overflow: hidden;

    border: 2px solid white;
    border-radius: 10px;

    background: white;
    cursor: pointer;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        border 0.2s ease;
}

.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.media-thumbnail:hover {
    transform: scale(1.08);
}

.media-thumbnail.active {
    border: 3px solid #9b7cff;
    transform: scale(1.05);
}


/* ================= ВЫЛЕЗАНИЕ ВИДЕО ================= */

.new-product-image:hover {
    z-index: 100;
}

.new-product-card:hover {
    z-index: 100;
}

.new-products {
    overflow: visible;
}


/* Увеличиваем ТОЛЬКО главное видео */


.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.media-thumbnail:hover {
    transform: scale(1.1);
}

/* Выбранное превью */
.media-thumbnail.active {
    border: 3px solid #9b7cff;
    transform: scale(1.05);
}
/* =========================================
   ⭐ FINAL NEW PRODUCT GALLERY FIX
   ========================================= */

.new-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 12;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Главное видео */
.new-product-image > .new-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    inset: 0;
    border-radius: 20px 20px 0 0;
}

/* Активное видео */
.new-product-image > .new-product-video.active-media {
    display: block;
}

/* Фотографии */
.new-product-image > .new-product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: absolute;
    inset: 0;
    border-radius: 20px 20px 0 0;
}

/* Активная фотография */
.new-product-image > .new-product-photo.active-media {
    display: block;
}


/* =========================================
   ПРЕВЬЮ
   ========================================= */

.new-product-photos {
    position: absolute;
    left: 12px;
    bottom: 12px;

    display: flex;
    gap: 8px;

    z-index: 20;
}

.media-thumbnail {
    width: 55px;
    height: 55px;

    padding: 0;

    overflow: hidden;

    border: 2px solid white;
    border-radius: 10px;

    background: white;

    cursor: pointer;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.2s ease,
        border 0.2s ease;
}

.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.media-thumbnail:hover {
    transform: scale(1.08);
}

.media-thumbnail.active {
    border: 3px solid #9b7cff;
    transform: scale(1.05);
}


/* =========================================
   НЕ ДАЁМ ВИДЕО ВЫЛЕЗАТЬ ИЗ КАРТОЧКИ
   ========================================= */

/* Убираем старый эффект увеличения видео */
.new-product-image:hover video {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transform: none;
    object-fit: cover;
    z-index: 1;
}


/* Превью всегда поверх */
.new-product-image .new-product-photos {
    z-index: 50;
}
/* =========================================
   ФИНАЛЬНОЕ ИСПРАВЛЕНИЕ ГАЛЕРЕИ
   ========================================= */

/* Видео больше НИКОГДА не увеличивается при наведении */
.new-product-image:hover > .new-product-video.active-media {
    width: 100% !important;
    height: 100% !important;

    left: 0 !important;
    top: 0 !important;

    transform: none !important;

    object-fit: cover !important;

    position: absolute !important;

    z-index: 1 !important;

    background: transparent !important;

    box-shadow: none !important;
}


/* Фотографии ведут себя так же */
.new-product-image > .new-product-photo.active-media {
    width: 100% !important;
    height: 100% !important;

    left: 0 !important;
    top: 0 !important;

    transform: none !important;

    position: absolute !important;

    object-fit: cover !important;

    z-index: 1 !important;
}


/* Миниатюры ВСЕГДА находятся поверх видео */
.new-product-image .new-product-photos {
    position: absolute !important;

    z-index: 9999 !important;
}


/* Сами кнопки миниатюр тоже поверх */
.new-product-image .media-thumbnail {
    position: relative !important;

    z-index: 10000 !important;

    pointer-events: auto !important;
}
/* =========================================
   МЕДИА БЕЗ ОБРЕЗКИ
   ========================================= */

.new-product-image > .new-product-video.active-media,
.new-product-image > .new-product-photo.active-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #171124 !important;
}
/* =========================================
   РАЗМЫТЫЙ ФОН ДЛЯ ВЕРТИКАЛЬНЫХ МЕДИА
   ========================================= */

.new-product-image {
    position: relative;
    overflow: hidden;
    background: #171124;
}

/* Само видео и фото */
.new-product-image > .new-product-video.active-media,
.new-product-image > .new-product-photo.active-media {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;

    position: absolute !important;
    z-index: 2 !important;

    background: transparent !important;
}
/* =========================================
   ФИКС РАСКЛАДКИ КАРТОЧЕК НОВИНОК
   ========================================= */

.new-products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    align-items: start !important;
}

.new-product-card {
    height: auto !important;
    align-self: start !important;
}

.new-product-image {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
}

.new-product-info {
    height: auto !important;
    min-height: 0 !important;
}
/* =========================================
   КАРТИНКИ ГАЛЕРЕИ УСЛУГ
   ========================================= */

.service-gallery .gallery-slide img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    margin: auto;
}
/* =========================================
   РАЗМЫТЫЙ ФОН ДЛЯ ГАЛЕРЕИ УСЛУГ
   ========================================= */

.service-gallery {
    position: relative;
    overflow: hidden;
}

/* Размытая копия картинки на фоне */
.service-gallery .gallery-slide::before {
    content: "";
    position: absolute;
    inset: -20px;

    background-image: var(--gallery-bg);
    background-size: cover;
    background-position: center;

    filter: blur(25px);
    transform: scale(1.1);

    opacity: 0.45;
    z-index: 0;
}

/* Сама картинка поверх размытого фона */
.service-gallery .gallery-slide img {
    position: relative;
    z-index: 1;

    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    margin: auto;
}
.order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 165px;
    min-height: 52px;
    padding: 12px 24px;

    background: linear-gradient(135deg, #ffe477, #f5c94a);
    color: #29213f;

    border: 1px solid #ffe99a;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    box-shadow:
        0 0 12px rgba(255, 220, 100, 0.35),
        0 6px 18px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

/* Наведение */
.order-button:hover {
    transform: translateY(-4px) scale(1.03);

    background: linear-gradient(135deg, #fff09a, #ffd75c);

    box-shadow:
        0 0 18px rgba(255, 225, 100, 0.7),
        0 0 35px rgba(255, 210, 70, 0.35),
        0 8px 22px rgba(0, 0, 0, 0.25);

    filter: brightness(1.05);
}

/* Нажатие */
.order-button:active {
    transform: translateY(-1px) scale(0.98);
}
/* =========================================
   ГАЛЕРЕЯ ТОВАРОВ В НАЛИЧИИ
   ========================================= */

.handmade-image {
    position: relative;
    overflow: hidden;
}

.handmade-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Слайды */

.handmade-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.handmade-slide.active {
    opacity: 1;
    visibility: visible;
}
.handmade-slide img {
    transition: opacity 0.7s ease;
}
/* Фотографии */

.handmade-slide img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    position: relative;
    z-index: 2;
}

/* Размытый фон */

.handmade-slide::before {
    content: "";

    position: absolute;
    inset: -25px;

    background-image: var(--handmade-bg);
    background-size: cover;
    background-position: center;

    filter: blur(25px);

    transform: scale(1.15);

    opacity: 0.45;

    z-index: 1;
}

/* Стрелки */

.handmade-gallery-prev,
.handmade-gallery-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: rgba(20, 15, 40, 0.65);
    color: white;

    font-size: 28px;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.handmade-gallery-prev {
    left: 10px;
}

.handmade-gallery-next {
    right: 10px;
}

.handmade-gallery-prev:hover,
.handmade-gallery-next:hover {
    background: rgba(100, 70, 180, 0.9);

    transform: translateY(-50%) scale(1.1);

    box-shadow:
        0 0 15px rgba(150, 100, 255, 0.5);
}

/* Точки */

.handmade-gallery-dots {
    position: absolute;

    left: 50%;
    bottom: 10px;

    transform: translateX(-50%);

    display: flex;
    gap: 7px;

    z-index: 10;
}

.handmade-gallery-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.handmade-gallery-dot.active {
    transform: scale(1.35);

    background: white;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.8);
}

/* Чтобы бейдж был поверх галереи */

.handmade-image .handmade-badge {
    z-index: 20;
}

/* =========================================
   КНОПКИ ТОВАРА
   ========================================= */

.handmade-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 10px;
}

.handmade-buttons button,
.handmade-buttons a,
.handmade-unavailable {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 8px 13px;

    border-radius: 10px;

    font-size: 13px;

    text-decoration: none;

    box-sizing: border-box;
}

/* Кнопка "Узнать подробнее" */

.handmade-buttons button {
    border: none;

    cursor: pointer;

    font: inherit;
}

/* WB / Ozon */

.handmade-buttons a {
    cursor: pointer;
}

/* Пока площадка недоступна */

.handmade-unavailable {
    opacity: 0.55;

    cursor: default;
}
/* =========================================
   КНОПКИ ТОВАРОВ — STARKISSS SHOP
   ========================================= */

/* ================= HANDMADE BUTTONS ================= */

.handmade-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

/* Общий вид всех кнопок */
.handmade-buttons a,
.handmade-buttons button,
.handmade-unavailable {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* ================= УЗНАТЬ ПОДРОБНЕЕ ================= */

.handmade-buttons a[href*="t.me"] {
    background: linear-gradient(135deg, #ffd84d, #ffbd32);
    color: #30220a;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 193, 50, 0.25);
}

.handmade-buttons a[href*="t.me"]:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(255, 193, 50, 0.4);
}

/* ================= WILDBERRIES ================= */

.handmade-buttons a[href*="wildberries"] {
    background: linear-gradient(135deg, #b86cff, #8f45e8);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(150, 75, 235, 0.2);
}

.handmade-buttons a[href*="wildberries"]:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(150, 75, 235, 0.4);
}

/* ================= OZON ================= */

.handmade-buttons a[href*="ozon"] {
    background: linear-gradient(135deg, #62b7ff, #398ce5);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(60, 145, 230, 0.2);
}

.handmade-buttons a[href*="ozon"]:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(60, 145, 230, 0.4);
}

/* ================= СКОРО ================= */

.handmade-unavailable {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

/* =========================================
   WB / OZON — СКОРО
   ========================================= */

.handmade-unavailable {

    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.5);

    border: 1px solid rgba(255, 255, 255, 0.1);

    cursor: default;
}
/* Цена над кнопками */
.handmade-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.handmade-bottom strong {
    display: block;
    font-size: 24px;
}

.handmade-buttons {
    margin-top: 0;
}
/* ================= ЗВЁЗДЫ ПОЗАДИ КАРТОЧЕК ================= */

.handmade-products {
    position: relative;
    z-index: 2;
}

.handmade-card {
    position: relative;
    z-index: 3;
}

/* Всё содержимое карточек выше фоновых эффектов */
.handmade-card > * {
    position: relative;
    z-index: 4;
}

/* Но галерея остаётся отдельным слоем */
.handmade-card .handmade-image {
    z-index: 5;
}

.handmade-card .handmade-info {
    z-index: 5;
}
/* ================= ОЧЕРЕДЬ ЗАКАЗОВ ================= */

.order-queue {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 80px auto;
    padding: 50px 30px;
}

.queue-title {
    text-align: center;
    margin-bottom: 35px;
}

.queue-title h2 {
    margin: 0 0 12px;
    font-size: 32px;
}

/* Анимированная звезда */

.queue-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    opacity: 0.75;
}

.queue-loading span:first-child {
    display: inline-block;
    font-size: 20px;
    animation: queueStar 1.5s ease-in-out infinite;
}

@keyframes queueStar {
    0%, 100% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.25) rotate(20deg);
        opacity: 1;
    }
}

/* Список */

.queue-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Карточка заказа */

.queue-card {
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 20px;

    padding: 20px 24px;

    border-radius: 18px;

    background: rgba(30, 24, 55, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.queue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(120, 80, 220, 0.18);
    border-color: rgba(180, 140, 255, 0.25);
}

/* Номер */

.queue-number {
    font-size: 18px;
    font-weight: 800;
    opacity: 0.65;
}

/* Информация */

.queue-info h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.queue-info p {
    margin: 0;
    font-size: 13px;
    opacity: 0.6;
}

/* Статус */

.queue-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.queue-status span {
    display: inline-block;
    animation: statusStar 1.8s ease-in-out infinite;
}

@keyframes statusStar {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Статусы */

.status-making {
    background: rgba(255, 210, 70, 0.12);
    color: #ffd84d;
}

.status-waiting {
    background: rgba(170, 110, 255, 0.12);
    color: #c08cff;
}

.status-ready {
    background: rgba(80, 200, 150, 0.12);
    color: #72d9a9;
}

/* Нижняя часть */

.queue-footer {
    margin-top: 35px;
    text-align: center;
}

.queue-footer p {
    margin-bottom: 15px;
    opacity: 0.7;
}

/* Адаптация под телефон */

@media (max-width: 700px) {

    .order-queue {
        padding: 35px 15px;
    }

    .queue-title h2 {
        font-size: 26px;
    }

    .queue-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
    }

    .queue-status {
        width: fit-content;
    }

}
/* =========================
   КНОПКА ОЧЕРЕДИ
   ========================= */

.queue-link-wrap {
    display: flex;
    justify-content: center;

    margin: 50px 0 70px;
}

.queue-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 25px;

    border: 1px solid #ffe47766;
    border-radius: 999px;

    background: #ffffff0a;

    color: white;

    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.queue-link:hover {
    background: #ffe477;
    color: #24113d;

    transform: translateY(-4px);

    box-shadow:
        0 0 25px #ffe47766;
}
/* =========================================
   ОЧЕРЕДЬ ЗАКАЗОВ — 4 КОЛОНКИ
   ========================================= */

.queue-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;

    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}


/* =========================================
   КОЛОНКА
   ========================================= */

.queue-column {
    min-width: 0;

    padding: 18px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================
   ЗАГОЛОВОК КОЛОНКИ
   ========================================= */

.queue-column-title {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding-bottom: 14px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.queue-column-title h3 {
    margin: 0;

    font-size: 16px;
    line-height: 1.2;

    flex: 1;
}

.queue-column-icon {
    font-size: 18px;
}


/* Количество заказов */

.queue-column-count {
    min-width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;

    border-radius: 999px;

    background: rgba(255, 228, 119, 0.12);
    color: #ffe477;

    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   ЗАКАЗЫ ВНУТРИ КОЛОНКИ
   ========================================= */

.queue-column-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================
   КАРТОЧКА ЗАКАЗА
   ========================================= */

.queue-card {
    display: block;

    padding: 16px;

    border-radius: 16px;

    background: rgba(30, 24, 55, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.queue-card:hover {
    transform: translateY(-3px);

    border-color: rgba(180, 140, 255, 0.25);

    box-shadow:
        0 10px 25px rgba(120, 80, 220, 0.18);
}


/* Номер заказа */

.queue-number {
    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 800;

    opacity: 0.55;
}


/* Информация */

.queue-info h3 {
    margin: 0 0 7px;

    font-size: 15px;
    line-height: 1.3;
}

.queue-info p {
    margin: 0;

    font-size: 12px;
    line-height: 1.5;

    opacity: 0.65;
}


/* =========================================
   ПУСТАЯ КОЛОНКА
   ========================================= */

.queue-empty {
    min-height: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 16px;

    border: 1px dashed rgba(255, 255, 255, 0.1);

    background: rgba(255, 255, 255, 0.02);

    opacity: 0.55;
}

.queue-empty span {
    margin-bottom: 7px;

    font-size: 22px;

    animation: queueStar 1.8s ease-in-out infinite;
}

.queue-empty p {
    margin: 0;

    font-size: 12px;
    line-height: 1.4;
}


/* =========================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ========================================= */

@media (max-width: 1100px) {

    .queue-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .queue-list {
        grid-template-columns: 1fr;
    }

    .queue-column-title h3 {
        font-size: 15px;
    }

}
/* =========================================
   ЦВЕТА СТАТУСОВ ОЧЕРЕДИ
   ========================================= */

/* В очереди */
.queue-column:nth-child(1) .queue-column-title h3,
.queue-column:nth-child(1) .queue-column-icon {
    color: #c08cff;
}

.queue-column:nth-child(1) .queue-column-count {
    color: #c08cff;
    background: rgba(192, 140, 255, 0.14);
}


/* Изготавливаем */
.queue-column:nth-child(2) .queue-column-title h3,
.queue-column:nth-child(2) .queue-column-icon {
    color: #ffe477;
}

.queue-column:nth-child(2) .queue-column-count {
    color: #ffe477;
    background: rgba(255, 228, 119, 0.14);
}


/* Готов к отправке */
.queue-column:nth-child(3) .queue-column-title h3,
.queue-column:nth-child(3) .queue-column-icon {
    color: #72d9a9;
}

.queue-column:nth-child(3) .queue-column-count {
    color: #72d9a9;
    background: rgba(114, 217, 169, 0.14);
}


/* Доставляется */
.queue-column:nth-child(4) .queue-column-title h3,
.queue-column:nth-child(4) .queue-column-icon {
    color: #72bfff;
}

.queue-column:nth-child(4) .queue-column-count {
    color: #72bfff;
    background: rgba(114, 191, 255, 0.14);
}
/* =========================================
   СЕКРЕТНЫЙ ЕЖЕДНЕВНЫЙ БОНУС
   ========================================= */

.mascot-image {
    cursor: pointer;
}


/* Затемнение */

.daily-bonus-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(10, 7, 25, 0.72);

    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

    z-index: 99999;
}

.daily-bonus-modal.show {
    opacity: 1;
    visibility: visible;
}


/* Окошко */

.daily-bonus-box {
    position: relative;

    width: min(430px, 100%);

    padding: 40px 30px;

    text-align: center;

    border-radius: 28px;

    border: 1px solid rgba(255, 228, 119, 0.25);

    background:
        radial-gradient(
            circle at center,
            rgba(125, 66, 217, 0.22),
            transparent 65%
        ),
        #171126;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 50px rgba(125, 66, 217, 0.2);

    transform: translateY(20px) scale(0.95);

    transition:
        transform 0.35s ease;
}

.daily-bonus-modal.show .daily-bonus-box {
    transform: translateY(0) scale(1);
}


/* Закрытие */

.daily-bonus-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 34px;
    height: 34px;

    padding: 0;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: white;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.daily-bonus-close:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: rotate(8deg);
}


/* Большая звезда */

.daily-bonus-star {
    font-size: 48px;

    color: #ffe477;

    animation: bonusStar 1.8s ease-in-out infinite;
}

@keyframes bonusStar {

    0%, 100% {
        transform: scale(0.9) rotate(0deg);
        filter: drop-shadow(0 0 5px rgba(255, 228, 119, 0.2));
    }

    50% {
        transform: scale(1.15) rotate(12deg);
        filter: drop-shadow(0 0 18px rgba(255, 228, 119, 0.65));
    }

}


/* Маленький заголовок */

.daily-bonus-small {
    margin: 8px 0 10px;

    color: #9b7cff;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


/* Заголовок */

.daily-bonus-box h2 {
    margin: 0 0 20px;

    color: white;

    font-size: 26px;
}


/* Награда */

.daily-bonus-reward {
    margin: 20px 0;

    color: #ffe477;

    font-size: 34px;
    font-weight: 900;

    line-height: 1.2;

    text-shadow:
        0 0 20px rgba(255, 228, 119, 0.25);
}


/* Редкость */

.daily-bonus-rarity {
    margin: 0;

    color: #c8c7df;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Таймер */

.daily-bonus-timer {
    margin: 25px 0 20px;

    color: #aaa7c2;

    font-size: 13px;
}


/* Кнопка */

.daily-bonus-ok {
    padding: 12px 24px;

    border: none;
    border-radius: 999px;

    background: #ffe477;

    color: #24113d;

    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.daily-bonus-ok:hover {
    transform: translateY(-3px);

    box-shadow:
        0 0 25px rgba(255, 228, 119, 0.35);
}
/* =========================================
   ДАТЫ БОНУСА
   ========================================= */

.daily-bonus-dates {
    margin: 18px 0;

    padding: 12px 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.07);

    text-align: left;
}

.daily-bonus-dates p {
    margin: 5px 0;

    color: #aaa7c2;

    font-size: 12px;
    line-height: 1.5;
}

.daily-bonus-dates strong {
    color: #d8d3ec;
}

.daily-bonus-note {
    margin: 16px 0;

    color: #c8c7df;

    font-size: 12px;
    line-height: 1.5;
}
/* =========================================
   СЕКРЕТНЫЙ БОНУС — РЕАКЦИЯ STARKI
   ========================================= */

.mascot-image {
    cursor: pointer;

    transition:
        filter 0.3s ease,
        transform 0.3s ease;
}


/* При наведении Старки оживает */

.mascot-image:hover {

    animation: mascotSecretHover 1.4s ease-in-out infinite;

    filter:
        drop-shadow(0 0 8px rgba(130, 190, 255, 0.75))
        drop-shadow(0 0 20px rgba(160, 100, 255, 0.55))
        drop-shadow(0 0 35px rgba(255, 228, 119, 0.3));

}


/* Лёгкое покачивание */

@keyframes mascotSecretHover {

    0%, 100% {
        transform:
            translateY(0)
            rotate(-1deg)
            scale(1);
    }

    25% {
        transform:
            translateY(-5px)
            rotate(1deg)
            scale(1.025);
    }

    50% {
        transform:
            translateY(-2px)
            rotate(-1deg)
            scale(1.04);
    }

    75% {
        transform:
            translateY(-5px)
            rotate(1deg)
            scale(1.025);
    }

}
/* =========================================
   ЛЁГКИЕ ЗВЁЗДЫ
   ========================================= */

.star {
    position: fixed;

    background: white;
    border-radius: 50%;

    pointer-events: none;

    z-index: 0;

    box-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(169, 199, 255, 0.45);

    animation:
        twinkle
        ease-in-out
        infinite;

    will-change: opacity, transform;
}


@keyframes twinkle {

    0%, 100% {
        opacity: 0.15;
        transform: scale(0.75);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.2);
    }

}
/* =========================================
   ЖИВЫЕ ЗВЁЗДЫ
   ========================================= */

.star {
    animation:
        starTwinkle 3s ease-in-out infinite,
        starFloat 8s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.9;
    }

}

@keyframes starFloat {

    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(8px, -10px, 0);
    }

}
/* =========================================
   ЖИВЫЕ КАРТОЧКИ
   ========================================= */

.handmade-card:hover,
.service-card:hover {

    transform: translateY(-10px) scale(1.015);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28),
        0 0 30px rgba(168, 77, 232, 0.18);

}


/* Новинки сохраняют свой наклон */

.new-product-card:hover {

    box-shadow:
        0 0 45px rgba(168, 77, 232, 0.3),
        0 18px 45px rgba(0, 0, 0, 0.3);

}
.new-product-card,
.handmade-card,
.service-card {
    position: relative;
    overflow: hidden;
}

.new-product-card::after,
.handmade-card::after,
.service-card::after {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );

    transform: skewX(-20deg);

    pointer-events: none;
}

.new-product-card:hover::after,
.handmade-card:hover::after,
.service-card:hover::after {
    left: 140%;

    transition: left 0.7s ease;
}
/* =========================================
   📱 ИСПРАВЛЕНИЕ МОБИЛЬНОЙ ГЛАВНОЙ
   ========================================= */

@media (max-width: 800px) {

    /* Не даём странице расширяться из-за
       слишком широких декоративных элементов */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* HERO */
    .hero {
        width: 100%;
        box-sizing: border-box;

        padding-left: 20px;
        padding-right: 20px;

        gap: 25px;

        overflow: hidden;
    }


    /* Текстовая часть */
    .hero-text {
        width: 100%;
        max-width: 520px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    /* Кнопки */
    .hero-buttons {
        justify-content: center;
    }


    /* Контейнер маскота */
    .mascot-area {
        width: min(100%, 340px);
        max-width: 340px;

        height: 340px;

        margin-left: auto;
        margin-right: auto;

        flex-shrink: 0;
    }


    /* Сам маскот */
    .mascot-image {
        width: min(78vw, 280px) !important;
        height: min(78vw, 280px) !important;

        max-width: 280px;
        max-height: 280px;
    }


    /* Кольцо текста */
    .text-ring {
        width: min(92vw, 350px);
        height: min(92vw, 350px);

        max-width: 350px;
        max-height: 350px;
    }


    /* SVG внутри кольца */
    .text-ring svg {
        width: 100%;
        height: 100%;
    }


    /* Чуть меньше текст вокруг маскота */
    .text-ring text {
        font-size: 17px;
        letter-spacing: 2px;
    }


    /* Свет вокруг маскота */
    .mascot-glow {
        width: 220px;
        height: 220px;

        filter: blur(40px);
    }

}
/* =========================================
   📱 МОБИЛЬНАЯ ГЛАВНАЯ — ЦЕНТРИРОВАНИЕ
   ========================================= */

@media (max-width: 800px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ================= HERO ================= */

    .hero {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        padding: 40px 20px 70px;

        gap: 25px;

        box-sizing: border-box;
    }


    /* ================= ТЕКСТ ================= */

    .hero-text {
        width: 100%;
        max-width: 600px;

        margin: 0 auto;

        text-align: center;
    }


    .description {
        margin-left: auto;
        margin-right: auto;
    }


    /* ================= КНОПКИ ================= */

    .hero-buttons {
        width: 100%;

        display: flex;

        justify-content: center;
        align-items: center;

        flex-wrap: wrap;
    }


    /* ================= МАСКОТ ================= */

    .mascot-area {
        position: relative;

        width: min(350px, 100%);
        height: min(350px, 100vw);

        margin: 0 auto;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;
    }


    /* Сам mascot */

    .mascot-image {
        width: min(270px, 75vw) !important;
        height: min(270px, 75vw) !important;

        max-width: 270px;
        max-height: 270px;

        object-fit: contain;
    }


    /* ================= КОЛЬЦО ================= */

    .text-ring {
        width: min(350px, 94vw);
        height: min(350px, 94vw);

        max-width: 350px;
        max-height: 350px;
    }


    .text-ring text {
        font-size: 16px;
        letter-spacing: 2px;
    }


    /* ================= СВЕЧЕНИЕ ================= */

    .mascot-glow {
        width: 220px;
        height: 220px;

        filter: blur(40px);
    }

}
/* =========================================
   📱 МОБИЛЬНАЯ ШАПКА
   ========================================= */

@media (max-width: 800px) {

    .header {
        width: 100%;
        box-sizing: border-box;

        padding: 14px 16px;

        display: flex;
        align-items: center;

        gap: 12px;

        overflow: hidden;
    }


    /* Логотип */

    .logo {
        flex-shrink: 0;

        font-size: 20px;
    }


    /* Меню */

    .nav {
        flex: 1;

        min-width: 0;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 6px;

        overflow-x: auto;
        overflow-y: hidden;

        white-space: nowrap;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .nav::-webkit-scrollbar {
        display: none;
    }


    .nav a {
        flex-shrink: 0;

        padding: 8px 10px;

        font-size: 11px;

        border-radius: 999px;
    }


    /* Кнопка темы */

    .theme-button {
        flex-shrink: 0;

        width: 36px;
        height: 36px;

        font-size: 16px;
    }

}
/* =========================================
   📱 HERO — ТОЧНЫЙ ЦЕНТР
   ========================================= */

@media (max-width: 800px) {

    .hero {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        margin: 0;

        padding: 45px 18px 70px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        text-align: center;

        gap: 25px;
    }


    .hero-text {
        width: 100%;
        max-width: 500px;

        margin: 0 auto;

        text-align: center;
    }


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


    .description {
        width: 100%;
        max-width: 480px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }


    .hero-buttons {
        width: 100%;

        justify-content: center;
        align-items: center;

        flex-wrap: wrap;
    }


    .mascot-area {
        width: 340px;
        max-width: 100%;

        height: 360px;

        margin: 0 auto;

        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    .mascot-image {
        width: 270px !important;
        height: 270px !important;

        max-width: 75vw;
        max-height: 75vw;
    }


    .text-ring {
        width: 350px;
        height: 350px;

        max-width: 92vw;
        max-height: 92vw;
    }


    .text-ring text {
        font-size: 16px;
        letter-spacing: 2px;
    }


    .mascot-glow {
        width: 220px;
        height: 220px;

        filter: blur(40px);
    }

}
/* =========================================
   ⭐ MASCOT PAGE
   ========================================= */

.mascot-page {
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================
   HERO
   ========================================= */

.mascot-hero {
    padding: 100px 20px 70px;

    text-align: center;
}

.mascot-hero h1 {
    margin: 10px 0 25px;

    font-size: clamp(65px, 12vw, 140px);

    line-height: 0.9;

    color: white;

    text-shadow:
        0 0 25px rgba(139, 92, 246, 0.4),
        0 0 70px rgba(139, 92, 246, 0.18);
}

.mascot-intro {
    max-width: 580px;

    margin: 0 auto;

    color: #aaa8c0;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   REFERENCE
   ========================================= */

.mascot-reference-section {
    max-width: 1000px;

    margin: 0 auto;

    padding: 50px 20px 100px;

    text-align: center;
}


.mascot-reference-header h2 {
    margin: 12px 0 15px;

    color: white;

    font-size: clamp(32px, 5vw, 55px);
}


.mascot-reference-header > p:last-child {
    margin: 0 auto 40px;

    color: #aaa8c0;

    line-height: 1.6;
}


/* =========================================
   REFERENCE VIEWER
   ========================================= */

.mascot-reference {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 25px;
}


.mascot-reference-image {
    width: min(520px, 75vw);
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(125, 66, 217, 0.22),
            transparent 70%
        ),
        rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.09);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.2);

    overflow: hidden;
}


.mascot-reference-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    border-radius: 20px;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


/* =========================================
   ARROWS
   ========================================= */

.mascot-reference-arrow {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

    color: #ffe477;

    font-size: 34px;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.mascot-reference-arrow:hover {
    transform: scale(1.1);

    background: rgba(255, 228, 119, 0.1);

    box-shadow:
        0 0 25px rgba(255, 228, 119, 0.18);
}


/* =========================================
   CAPTION
   ========================================= */

.mascot-reference-caption {
    margin-top: 22px;

    color: #c8c7df;

    font-size: 14px;
}


.mascot-reference-caption span {
    margin-right: 8px;

    color: #ffe477;

    font-weight: 800;
}


/* =========================================
   DOTS
   ========================================= */

.mascot-reference-dots {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.mascot-reference-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.25);

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.mascot-reference-dot.active {
    transform: scale(1.35);

    background: #ffe477;
}


/* =========================================
   ABOUT STARKI
   ========================================= */

.mascot-about {
    max-width: 1000px;

    margin: 0 auto;

    padding: 20px 20px 100px;
}


.mascot-about-card {
    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 25px;

    align-items: start;

    padding: 35px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12);
}


.mascot-about-star {
    font-size: 65px;

    color: #ffe477;

    text-align: center;

    animation:
        mascotStarFloat
        3s
        ease-in-out
        infinite;
}


.mascot-about-card h2 {
    margin: 10px 0 15px;

    color: white;

    font-size: clamp(27px, 4vw, 45px);
}


.mascot-about-card p:not(.small-title) {
    max-width: 700px;

    margin: 0 0 15px;

    color: #aaa8c0;

    line-height: 1.7;
}


@keyframes mascotStarFloat {

    0%, 100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(8deg);
    }

}


/* =========================================
   FANART
   ========================================= */

.fanart-section {
    max-width: 1250px;

    margin: 0 auto;

    padding: 40px 20px 130px;
}


.fanart-header {
    text-align: center;

    margin-bottom: 55px;
}


.fanart-header h2 {
    margin: 12px 0 15px;

    color: white;

    font-size: clamp(38px, 6vw, 65px);
}


.fanart-header > p:last-child {
    max-width: 600px;

    margin: 0 auto;

    color: #aaa8c0;

    line-height: 1.6;
}


/* =========================================
   FANART GRID
   ========================================= */

.fanart-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


.fanart-card {
    overflow: hidden;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.fanart-card:hover {
    transform: translateY(-8px);

    border-color: rgba(168, 85, 247, 0.35);

    box-shadow:
        0 20px 55px rgba(139, 92, 246, 0.14);
}


/* =========================================
   FANART IMAGE
   ========================================= */

.fanart-image {
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(125, 66, 217, 0.2),
            transparent 70%
        ),
        #171126;

    color: #817b9b;

    font-size: 12px;

    letter-spacing: 3px;
}


.fanart-info {
    padding: 20px;
}


.fanart-info h3 {
    margin: 0 0 7px;

    color: white;

    font-size: 17px;
}


.fanart-info p {
    margin: 0;

    color: #88849f;

    font-size: 13px;
}


/* =========================================
   SEND FANART
   ========================================= */

.fanart-send {
    display: grid;

    grid-template-columns:
        70px 1fr auto;

    align-items: center;

    gap: 20px;

    margin-top: 50px;

    padding: 25px 30px;

    border-radius: 24px;

    background: rgba(255, 228, 119, 0.05);

    border: 1px solid rgba(255, 228, 119, 0.15);
}


.fanart-send-star {
    color: #ffe477;

    font-size: 42px;

    text-align: center;
}


.fanart-send h3 {
    margin: 0 0 6px;

    color: white;

    font-size: 20px;
}


.fanart-send p {
    margin: 0;

    color: #aaa8c0;

    line-height: 1.5;
}


.fanart-send-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 20px;

    border-radius: 999px;

    background: #ffe477;

    color: #24113d;

    text-decoration: none;

    font-weight: 800;

    white-space: nowrap;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.fanart-send-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(255, 228, 119, 0.22);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

    .mascot-hero {
        padding: 70px 20px 50px;
    }


    .mascot-reference-section {
        padding-left: 16px;
        padding-right: 16px;
    }


    .mascot-reference {
        gap: 10px;
    }


    .mascot-reference-image {
        width: min(78vw, 330px);
    }


    .mascot-reference-arrow {
        width: 42px;
        height: 42px;

        font-size: 27px;
    }


    .mascot-about {
        padding-left: 16px;
        padding-right: 16px;
    }


    .mascot-about-card {
        grid-template-columns: 1fr;

        padding: 28px 22px;

        text-align: center;
    }


    .mascot-about-star {
        font-size: 45px;
    }


    .fanart-section {
        padding-left: 16px;
        padding-right: 16px;
    }


    .fanart-grid {
        grid-template-columns: 1fr;
    }


    .fanart-send {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 28px 22px;
    }


    .fanart-send-button {
        width: 100%;
    }

}
/* =========================================
   🛍️ MERCH PAGE
   ========================================= */

.merch-page {
    min-height: 100vh;
    overflow: hidden;
}


/* =========================================
   HERO
   ========================================= */

.merch-hero {
    padding: 100px 20px 80px;

    text-align: center;
}


.merch-hero h1 {
    margin: 10px 0 25px;

    color: white;

    font-size: clamp(70px, 12vw, 150px);

    line-height: 0.9;

    text-shadow:
        0 0 25px rgba(139, 92, 246, 0.4),
        0 0 70px rgba(139, 92, 246, 0.18);
}


.merch-intro {
    max-width: 600px;

    margin: 0 auto;

    color: #aaa8c0;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   SECTIONS
   ========================================= */

.merch-section {
    max-width: 1250px;

    margin: 0 auto;

    padding: 50px 20px 110px;
}


.fandom-merch {
    padding-top: 30px;
}


/* =========================================
   SECTION HEADER
   ========================================= */

.merch-section-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.merch-section-header h2 {
    margin: 12px 0 15px;

    color: white;

    font-size: clamp(35px, 5vw, 60px);

    line-height: 1;
}


.merch-section-header > p:last-child {
    max-width: 620px;

    margin: 0 auto;

    color: #aaa8c0;

    line-height: 1.7;
}


/* =========================================
   GRID
   ========================================= */

.merch-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================
   CARD
   ========================================= */

.merch-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.14);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.merch-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(168, 85, 247, 0.35);

    box-shadow:
        0 25px 65px rgba(139, 92, 246, 0.16);
}


/* =========================================
   IMAGE
   ========================================= */

.merch-image {
    aspect-ratio: 1 / 1;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(125, 66, 217, 0.22),
            transparent 70%
        ),
        #171126;

    color: #817b9b;

    font-size: 12px;

    letter-spacing: 3px;
}


.merch-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.merch-card:hover
.merch-image img {
    transform: scale(1.04);
}


/* =========================================
   INFO
   ========================================= */

.merch-info {
    padding: 23px 24px 25px;
}


.merch-label {
    margin: 0 0 8px;

    color: #ffe477;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.merch-info h3 {
    margin: 0 0 10px;

    color: white;

    font-size: 22px;
}


.merch-info p:not(.merch-label) {
    margin: 0;

    color: #aaa8c0;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================
   PRICE
   ========================================= */

.merch-price {
    margin-top: 20px;

    color: #ffe477;

    font-size: 22px;

    font-weight: 800;
}


/* =========================================
   BUTTON
   ========================================= */

.merch-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 15px;

    padding: 11px 17px;

    border-radius: 999px;

    background: rgba(168, 85, 247, 0.12);

    border: 1px solid rgba(168, 85, 247, 0.2);

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.merch-button:hover {
    transform: translateY(-3px);

    background: #a855f7;

    box-shadow:
        0 8px 25px rgba(168, 85, 247, 0.22);
}


/* =========================================
   FANDOM DIFFERENCE
   ========================================= */

.fandom-merch {
    position: relative;
}


.fandom-merch::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;
    right: 10%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(168, 85, 247, 0.35),
            transparent
        );
}


/* =========================================
   BOTTOM
   ========================================= */

.merch-bottom {
    max-width: 800px;

    margin: 0 auto;

    padding: 40px 20px 140px;

    text-align: center;
}


.merch-bottom-star {
    margin-bottom: 15px;

    color: #ffe477;

    font-size: 45px;

    animation:
        merchStarFloat
        3s
        ease-in-out
        infinite;
}


.merch-bottom h2 {
    margin: 0 0 15px;

    color: white;

    font-size: clamp(30px, 5vw, 50px);
}


.merch-bottom p {
    margin: 0 auto;

    max-width: 600px;

    color: #aaa8c0;

    line-height: 1.7;
}


@keyframes merchStarFloat {

    0%, 100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-8px)
            rotate(8deg);
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 900px) {

    .merch-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .merch-hero {
        padding: 70px 20px 55px;
    }


    .merch-section {
        padding:
            35px 16px 80px;
    }


    .merch-grid {
        grid-template-columns: 1fr;
    }


    .merch-section-header {
        margin-bottom: 35px;
    }


    .merch-info {
        padding: 21px;
    }


    .merch-bottom {
        padding:
            30px 20px 100px;
    }

}
/* =========================================
   ✨ АНИМАЦИЯ ЗАГОЛОВКОВ СТРАНИЦ
   ========================================= */

.mascot-hero h1,
.merch-hero h1 {
    animation: pageTitleAppear 1s ease-out both;
}


@keyframes pageTitleAppear {

    from {
        opacity: 0;
        transform:
            translateY(40px)
            rotate(-3deg);
    }

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

}
/* =========================================
   ✨ ПОЯВЛЕНИЕ БЛОКОВ ПРИ ПРОКРУТКЕ
   ========================================= */

.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Карточки появляются чуть живее */

.scroll-reveal-card {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.55s ease,
        transform 0.55s ease;

    transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* На телефоне немного быстрее */

@media (max-width: 800px) {

    .scroll-reveal {
        transform: translateY(25px);

        transition-duration: 0.55s;
    }

    .scroll-reveal-card {
        transform: translateY(18px);

        transition-duration: 0.45s;
    }

}


/* Для пользователей, отключивших анимации */

@media (prefers-reduced-motion: reduce) {

    .scroll-reveal,
    .scroll-reveal-card {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}
/* =========================================
   ✦ YOUR CHARACTER HERE
   ========================================= */

.ych-merch {
    position: relative;

    padding-top: 70px;
}


.ych-merch::before {
    content: "";

    position: absolute;

    top: 0;
    left: 10%;
    right: 10%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 228, 119, 0.35),
            rgba(168, 85, 247, 0.35),
            transparent
        );
}


/* Немного отличаем ЮЧ от остальных карточек */

.ych-card {
    border-color:
        rgba(255, 228, 119, 0.1);
}


.ych-card:hover {
    border-color:
        rgba(255, 228, 119, 0.3);

    box-shadow:
        0 25px 65px rgba(255, 228, 119, 0.1),
        0 0 35px rgba(168, 85, 247, 0.1);
}


/* На телефоне */

@media (max-width: 650px) {

    .ych-merch {
        padding-top: 45px;
    }

}
/* =========================================
   🔐 ADMIN PANEL
========================================= */

.admin-page {
    min-height: 100vh;
    padding: 80px 6%;
    position: relative;
}

.admin-container {
    width: min(900px, 100%);
    margin: auto;
    position: relative;
    z-index: 2;
}

.admin-star {
    color: #ffe477;
    font-size: 45px;
    text-align: center;
    animation: adminStarFloat 3s ease-in-out infinite;
}

@keyframes adminStarFloat {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(15deg);
    }

}

.admin-title {
    text-align: center;
    margin: 10px 0;
    font-size: clamp(50px, 8vw, 80px);
    line-height: 1;
}

.admin-title span {
    color: #ffe477;
    text-shadow:
        0 0 20px #ffe47766;
}

.admin-subtitle {
    text-align: center;
    color: #aaa7c2;
    font-size: 17px;
    margin-bottom: 50px;
}


/* ---------- LOGIN ---------- */

.admin-login,
.admin-dashboard {
    padding: 35px;
    border: 1px solid #ffffff18;
    border-radius: 25px;
    background: #ffffff08;
    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 50px #00000030,
        0 0 40px #7d42d91c;
}

.admin-login {
    width: min(500px, 100%);
    margin: auto;
}

.admin-login h2,
.admin-dashboard h2 {
    margin: 0 0 10px;
    color: white;
}

.admin-login > p {
    color: #aaa7c2;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* ---------- INPUTS ---------- */

.admin-login label,
.admin-order-form label {
    display: block;
    margin: 18px 0 8px;
    color: #ffe477;
    font-size: 14px;
    font-weight: bold;
}

.admin-login input,
.admin-order-form input,
.admin-order-form textarea,
.admin-order-form select {
    width: 100%;
    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #ffffff20;
    border-radius: 12px;

    background: #ffffff0a;
    color: white;

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.admin-login input:focus,
.admin-order-form input:focus,
.admin-order-form textarea:focus,
.admin-order-form select:focus {
    border-color: #a84de8;
    box-shadow:
        0 0 20px #8d45d933;
}

.admin-order-form textarea {
    resize: vertical;
}

.admin-order-form select option {
    background: #17132d;
    color: white;
}


/* ---------- BUTTONS ---------- */

.admin-main-button {
    width: 100%;

    margin-top: 25px;
    padding: 14px 20px;

    border: none;
    border-radius: 12px;

    background: #ffe477;
    color: #17132d;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.admin-main-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px #ffe47730;
}

.admin-error {
    min-height: 20px;
    margin-top: 15px;

    color: #ff7f9f;
    text-align: center;
}


/* ---------- DASHBOARD ---------- */

.admin-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
    margin-bottom: 30px;
}

.admin-dashboard-header h2 {
    font-size: 35px;
}

.admin-logout,
.admin-cancel-button {
    padding: 11px 18px;

    border: 1px solid #ffffff20;
    border-radius: 10px;

    background: #ffffff08;
    color: white;

    cursor: pointer;

    transition: 0.3s;
}

.admin-logout:hover,
.admin-cancel-button:hover {
    background: #ffffff15;
    transform: translateY(-2px);
}


/* ---------- ADD BUTTON ---------- */

.admin-add-button {
    width: 100%;

    padding: 15px;

    border: 1px dashed #ffe47755;
    border-radius: 14px;

    background: #ffe4770a;
    color: #ffe477;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.admin-add-button:hover {
    background: #ffe47715;
    border-color: #ffe477;
}


/* ---------- ORDER FORM ---------- */

.admin-order-form {
    margin-top: 25px;
    padding: 25px;

    border: 1px solid #ffffff15;
    border-radius: 18px;

    background: #ffffff05;
}

.admin-order-form h3 {
    margin: 0 0 20px;
    color: white;
    font-size: 24px;
}

.admin-form-buttons {
    display: flex;
    gap: 12px;
}

.admin-form-buttons .admin-main-button {
    flex: 1;
}

.admin-form-buttons .admin-cancel-button {
    margin-top: 25px;
}


/* ---------- ORDER LIST ---------- */

.admin-orders {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-order-card {
    padding: 20px;

    border: 1px solid #ffffff15;
    border-radius: 18px;

    background: #ffffff06;

    transition: 0.3s;
}

.admin-order-card:hover {
    border-color: #a84de855;
    transform: translateY(-2px);
}

.admin-order-number {
    color: #ffe477;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.admin-order-title {
    margin: 6px 0;

    color: white;
    font-size: 20px;
    font-weight: bold;
}

.admin-order-description {
    color: #aaa7c2;
    line-height: 1.6;
}

.admin-order-status {
    display: inline-block;

    margin-top: 12px;
    padding: 6px 10px;

    border-radius: 8px;

    background: #8d45d922;
    color: #ffe477;

    font-size: 13px;
}

.admin-order-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.admin-edit-button,
.admin-delete-button {
    padding: 9px 14px;

    border-radius: 9px;

    cursor: pointer;
    font-size: 13px;
}

.admin-edit-button {
    border: 1px solid #ffe47740;
    background: #ffe4770c;
    color: #ffe477;
}

.admin-delete-button {
    border: 1px solid #ff6b8a40;
    background: #ff6b8a0c;
    color: #ff8da6;
}

.admin-loading {
    color: #aaa7c2;
    text-align: center;
    padding: 30px;
}


/* ---------- MOBILE ---------- */

@media (max-width: 650px) {

    .admin-page {
        padding: 50px 5%;
    }

    .admin-login,
    .admin-dashboard {
        padding: 25px 20px;
    }

    .admin-dashboard-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-dashboard-header h2 {
        font-size: 28px;
    }

    .admin-form-buttons {
        flex-direction: column;
    }

    .admin-form-buttons .admin-cancel-button {
        margin-top: 0;
    }

}
/* =========================================
   ADMIN DRAG & DROP
========================================= */

.admin-orders {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-status-column {
    min-width: 0;
}

.admin-status-column-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-bottom: 12px;
    padding: 12px 14px;

    border-radius: 14px;

    background: #ffffff08;
    border: 1px solid #ffffff12;
}

.admin-status-column-title h3 {
    margin: 0;
    color: white;
    font-size: 15px;
}

.admin-status-count {
    min-width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffe47718;
    color: #ffe477;

    font-size: 12px;
    font-weight: bold;
}

.admin-status-dropzone {
    min-height: 100px;

    padding: 5px;

    border-radius: 16px;

    border: 1px dashed #ffffff12;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.admin-status-dropzone.admin-drag-over {
    background: #ffe4770c;
    border-color: #ffe47766;

    box-shadow:
        0 0 25px #ffe47718;
}

.admin-order-card {
    position: relative;
    cursor: grab;
    user-select: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease,
        box-shadow 0.2s ease;
}

.admin-order-card:active {
    cursor: grabbing;
}

.admin-order-card.admin-dragging {
    opacity: 0.35;
    transform: scale(0.97);
}

.admin-drag-handle {
    position: absolute;

    top: 15px;
    right: 15px;

    color: #aaa7c2;
    font-size: 18px;
    letter-spacing: -4px;

    opacity: 0.7;
    pointer-events: none;
}
.admin-product-preview {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 16px;
    flex-shrink: 0;
}

.admin-product-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* =========================================
   🛍️ ФИНАЛЬНЫЙ CSS ДЛЯ ТОВАРОВ В НАЛИЧИИ
   ========================================= */

.handmade-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            #7c3aed35,
            transparent 65%
        ),
        #171126;
}

.handmade-gallery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.handmade-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
}

.handmade-slide.active {
    opacity: 1;
    visibility: visible;
}

.handmade-slide::before {
    content: "";
    position: absolute;
    inset: -25px;
    background-image: var(--handmade-bg);
    background-size: cover;
    background-position: center;
    filter: blur(25px);
    transform: scale(1.15);
    opacity: 0.45;
    z-index: 0;
}

.handmade-slide img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Стрелки галереи */

.handmade-gallery-prev,
.handmade-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(20, 15, 40, 0.75);
    color: white;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

.handmade-gallery-prev {
    left: 10px;
}

.handmade-gallery-next {
    right: 10px;
}

.handmade-gallery-prev:hover,
.handmade-gallery-next:hover {
    background: rgba(100, 70, 180, 0.95);
    transform: translateY(-50%) scale(1.08);
}

/* Точки */

.handmade-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 20;
}

.handmade-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.handmade-gallery-dot.active {
    transform: scale(1.35);
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Бейдж */

.handmade-image-wrapper .handmade-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 30;
}
/* =========================================
   🔘 ФИНАЛЬНЫЕ КНОПКИ ТОВАРОВ
   ========================================= */

.handmade-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.handmade-buttons a,
.handmade-buttons button,
.handmade-unavailable {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.handmade-buttons button {
    border: none;
}

.handmade-buttons a[href*="t.me"] {
    background: linear-gradient(135deg, #ffd84d, #ffbd32);
    color: #30220a;
}

.handmade-buttons a[href*="wildberries"] {
    background: linear-gradient(135deg, #b86cff, #8f45e8);
    color: white;
}

.handmade-buttons a[href*="ozon"] {
    background: linear-gradient(135deg, #62b7ff, #398ce5);
    color: white;
}

.handmade-buttons a:hover,
.handmade-buttons button:hover {
    transform: translateY(-2px);
}

.handmade-unavailable {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}
/* =========================================
   🛍️ КНОПКИ ТОВАРОВ — ФИНАЛЬНЫЕ СТИЛИ
   ========================================= */

.handmade-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.handmade-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 10px 16px;

    box-sizing: border-box;

    border-radius: 12px;
    border: 1px solid transparent;

    text-decoration: none !important;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    color: white !important;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

/* Telegram */

.handmade-link-telegram {
    background: linear-gradient(135deg, #ffd84d, #ffb82e) !important;
    color: #2b2030 !important;
    box-shadow: 0 5px 18px rgba(255, 205, 70, 0.22);
}

.handmade-link-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 205, 70, 0.35);
}

/* Wildberries */

.handmade-link-wb {
    background: linear-gradient(135deg, #a855f7, #7c3aed) !important;
    color: white !important;
    box-shadow: 0 5px 18px rgba(139, 92, 246, 0.25);
}

.handmade-link-wb:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Ozon */

.handmade-link-ozon {
    background: linear-gradient(135deg, #55aaff, #3788e8) !important;
    color: white !important;
    box-shadow: 0 5px 18px rgba(70, 150, 255, 0.25);
}

.handmade-link-ozon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(70, 150, 255, 0.4);
}
.handmade-slide {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.65s ease-in-out,
        visibility 0.65s ease-in-out;
}

.handmade-slide.active {
    opacity: 1;
    visibility: visible;
}

.handmade-slide::before {
    transition: opacity 0.65s ease-in-out;
}
/* =========================================
   📱 НОВИНКИ — КАРУСЕЛЬ НА ТЕЛЕФОНЕ
========================================= */

@media (max-width: 700px) {

    .new-products {
        display: flex;
        gap: 18px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;

        padding: 10px 8px 25px;

        /* Убираем стандартный скроллбар */
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .new-products::-webkit-scrollbar {
        display: none;
    }


    /* Одна карточка = почти весь экран */

    .new-product-card {
        flex: 0 0 88%;

        scroll-snap-align: center;

        min-width: 0;

        /* Убираем наклоны на телефоне */
        transform: rotate(0deg) !important;

        animation-delay: 0s;
    }


    /* Не даём hover-эффекту мешать на телефоне */

    .new-product-card:hover {
        transform: none;
    }


    /* Чуть увеличиваем область с изображением */

    .new-product-image {
        height: 260px;
    }


    /* Текст */

    .new-product-info {
        padding: 20px;
    }

    .new-product-info h3 {
        font-size: 21px;
    }

    .new-product-info p:not(.new-product-label) {
        font-size: 15px;
        line-height: 1.5;
    }
}
@media (max-width: 650px) {
    .handmade-products {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .handmade-card {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .handmade-image-wrapper {
        display: block !important;
        width: 100% !important;
        height: 260px !important;
    }

    .handmade-gallery {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .handmade-slide.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}