/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(105, 55, 255, .13),
            transparent 40%
        ),
        #05050b;

    color: #fff;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   BACKGROUND
========================================================= */

body::before {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -2;

    background-image:

        linear-gradient(
            rgba(139, 92, 246, .045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(139, 92, 246, .045) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

body::after {

    content: "";

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

    background:
        repeating-linear-gradient(
            to bottom,
            transparent 0,
            transparent 3px,
            rgba(255,255,255,.012) 4px
        );

    opacity: .4;
}


/* =========================================================
   PAGE
========================================================= */

.clothing-page {

    width: min(1450px, 94%);

    margin: auto;

    padding:
        150px
        0
        100px;
}


/* =========================================================
   HEADER
========================================================= */

.clothing-header {

    position: relative;

    padding-left: 22px;

    margin-bottom: 42px;

    border-left:
        3px solid #8b5cf6;
}

.clothing-header::before {

    content: "";

    position: absolute;

    top: 0;

    left: -3px;

    width: 3px;

    height: 45px;

    background: #fff;

    box-shadow:
        0 0 15px #8b5cf6;
}

.system-label {

    display: block;

    margin-bottom: 10px;

    color: #8b5cf6;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}

.clothing-header h1 {

    margin: 0;

    font-size:
        clamp(
            38px,
            6vw,
            75px
        );

    font-weight: 900;

    letter-spacing: 5px;

    text-shadow:
        0 0 25px
        rgba(139, 92, 246, .35);
}

.header-subtitle {

    margin-top: 12px;

    color: #686879;

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   CATEGORY NAV
========================================================= */

.category-bar {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 70px;
}

.category-btn {

    position: relative;

    border:
        1px solid
        rgba(139, 92, 246, .22);

    background:
        rgba(139, 92, 246, .035);

    color: #777789;

    padding:
        11px
        17px;

    font-family: inherit;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    cursor: pointer;

    transition:
        .25s ease;
}

.category-btn:hover,
.category-btn.active {

    color: #fff;

    border-color:
        #8b5cf6;

    background:
        rgba(139, 92, 246, .13);

    box-shadow:
        0 0 15px
        rgba(139, 92, 246, .15);
}


/* =========================================================
   SECTION
========================================================= */

.clothing-section {

    margin-bottom: 100px;
}

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;

    padding-bottom: 15px;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);
}

.section-title {

    margin: 0;

    font-size: 24px;

    font-weight: 900;

    letter-spacing: 3px;
}

.section-title span {

    color: #8b5cf6;
}

.section-description {

    color: #505061;

    font-size: 9px;

    letter-spacing: 2px;

    text-align: right;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.clothing-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(
                285px,
                1fr
            )
        );

    gap: 20px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.clothing-card {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(17,16,29,.98),
            rgba(6,6,12,.99)
        );

    border:
        1px solid
        rgba(139,92,246,.15);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    animation:
        cardIn .5s ease both;
}

@keyframes cardIn {

    from {

        opacity: 0;

        transform:
            translateY(15px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

.clothing-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(139,92,246,.65);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.45),
        0 0 25px
        rgba(139,92,246,.12);
}


/* =========================================================
   CARD TOP
========================================================= */

.card-top-line {

    position: absolute;

    top: 0;

    left: 0;

    width: 80px;

    height: 2px;

    background: #8b5cf6;

    box-shadow:
        0 0 12px #8b5cf6;

    z-index: 5;
}


/* =========================================================
   STATUS
========================================================= */

.item-status {

    position: absolute;

    top: 14px;

    right: 14px;

    z-index: 10;

    padding:
        6px
        9px;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    border:
        1px solid
        rgba(139,92,246,.35);

    background:
        rgba(5,5,12,.8);

    backdrop-filter:
        blur(8px);
}

.status-selling {

    color: #38ff9c;

    border-color:
        rgba(56,255,156,.4);

    box-shadow:
        0 0 12px
        rgba(56,255,156,.08);
}

.status-showcase {

    color: #a78bfa;
}

.status-sold {

    color: #ff536f;

    border-color:
        rgba(255,83,111,.3);
}


/* =========================================================
   IMAGE VIEWER
========================================================= */

.product-viewer {

    position: relative;

    height: 390px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at center,
            rgba(139,92,246,.09),
            transparent 60%
        ),

        #08080f;
}

.product-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    padding: 20px;

    transition:
        opacity .25s ease,
        transform .4s ease;
}

.clothing-card:hover .product-image {

    transform:
        scale(1.025);
}


/* =========================================================
   IMAGE GRID
========================================================= */

.product-viewer::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            transparent 49.5%,
            rgba(139,92,246,.06) 50%,
            transparent 50.5%
        ),

        linear-gradient(
            transparent 49.5%,
            rgba(139,92,246,.06) 50%,
            transparent 50.5%
        );

    background-size:
        70px 70px;

    opacity: .4;
}


/* =========================================================
   IMAGE CONTROLS
========================================================= */

.image-controls {

    position: absolute;

    left: 50%;

    bottom: 14px;

    transform:
        translateX(-50%);

    display: flex;

    gap: 6px;

    z-index: 10;
}

.image-btn {

    min-width: 38px;

    height: 30px;

    border:
        1px solid
        rgba(139,92,246,.3);

    background:
        rgba(5,5,12,.8);

    color: #8b5cf6;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;

    cursor: pointer;

    backdrop-filter:
        blur(8px);

    transition:
        .2s ease;
}

.image-btn:hover {

    color: #fff;

    border-color:
        #8b5cf6;

    background:
        rgba(139,92,246,.18);
}


/* =========================================================
   ZOOM BUTTON
========================================================= */

.zoom-btn {

    position: absolute;

    top: 14px;

    left: 14px;

    z-index: 10;

    width: 34px;

    height: 34px;

    border:
        1px solid
        rgba(139,92,246,.3);

    background:
        rgba(5,5,12,.75);

    color: #aaa;

    cursor: pointer;

    transition: .2s ease;
}

.zoom-btn:hover {

    color: #fff;

    border-color:
        #8b5cf6;

    box-shadow:
        0 0 12px
        rgba(139,92,246,.2);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {

    padding: 20px;
}

.product-name {

    margin: 0;

    font-size: 19px;

    font-weight: 900;

    letter-spacing: 1px;
}

.product-id {

    margin-top: 6px;

    color: #4f4f60;

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   DATA
========================================================= */

.product-data {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

    margin-top: 18px;
}

.data-box {

    padding: 10px;

    background:
        rgba(255,255,255,.025);

    border-left:
        2px solid
        rgba(139,92,246,.25);
}

.data-label {

    display: block;

    margin-bottom: 5px;

    color: #4e4e5d;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.data-value {

    color: #bdbdca;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =========================================================
   PRICE
========================================================= */

.product-price {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 18px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(255,255,255,.05);
}

.price-label {

    color: #4e4e5d;

    font-size: 8px;

    letter-spacing: 2px;
}

.price-value {

    color: #c4b5fd;

    font-size: 17px;

    font-weight: 900;

    text-shadow:
        0 0 10px
        rgba(139,92,246,.3);
}


/* =========================================================
   ACTIONS
========================================================= */

.product-actions {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 7px;

    margin-top: 15px;
}

.action-btn {

    height: 42px;

    border:
        1px solid
        rgba(139,92,246,.3);

    background:
        rgba(139,92,246,.05);

    color: #a78bfa;

    font-family: inherit;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: .25s ease;
}

.action-btn:hover {

    color: #fff;

    border-color:
        #8b5cf6;

    background:
        rgba(139,92,246,.18);

    box-shadow:
        0 0 15px
        rgba(139,92,246,.15);
}

.action-btn.disabled {

    cursor: not-allowed;

    color: #444450;

    border-color:
        rgba(255,255,255,.05);

    background:
        rgba(255,255,255,.015);
}


/* =========================================================
   EMPTY
========================================================= */

.empty-state {

    padding: 70px 20px;

    text-align: center;

    border:
        1px dashed
        rgba(139,92,246,.18);

    color: #4e4e5d;

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================================================
   ZOOM MODAL
========================================================= */

.zoom-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(2,2,8,.94);

    backdrop-filter:
        blur(12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease;
}

.zoom-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.zoom-content {

    position: relative;

    width: min(900px, 95vw);

    height: min(800px, 90vh);

    display: flex;

    align-items: center;

    justify-content: center;
}

.zoom-image {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 35px
            rgba(139,92,246,.2)
        );
}

.zoom-close {

    position: absolute;

    top: -10px;

    right: -10px;

    width: 40px;

    height: 40px;

    border:
        1px solid
        rgba(139,92,246,.4);

    background:
        rgba(10,10,20,.9);

    color: #fff;

    font-size: 22px;

    cursor: pointer;
}


/* =========================================================
   REQUEST MODAL
========================================================= */

.request-modal {

    position: fixed;

    inset: 0;

    z-index: 100000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background:
        rgba(2,2,8,.9);

    backdrop-filter:
        blur(10px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: .25s ease;
}

.request-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.request-box {

    position: relative;

    width: min(450px, 100%);

    padding: 30px;

    border:
        1px solid
        rgba(139,92,246,.45);

    background:
        linear-gradient(
            145deg,
            rgba(17,16,30,.98),
            rgba(5,5,12,.99)
        );

    box-shadow:
        0 0 45px
        rgba(139,92,246,.12);
}

.request-box h2 {

    margin: 0;

    font-size: 23px;

    letter-spacing: 2px;
}

.request-system {

    margin-bottom: 8px;

    color: #8b5cf6;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}

.request-item {

    margin-top: 20px;

    padding: 13px;

    border-left:
        2px solid #8b5cf6;

    background:
        rgba(139,92,246,.04);

    color: #aaa;

    font-size: 10px;

    letter-spacing: 1px;
}

.request-item strong {

    color: #fff;
}

.request-close {

    position: absolute;

    top: 12px;

    right: 12px;

    width: 32px;

    height: 32px;

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.03);

    color: #777;

    font-size: 20px;

    cursor: pointer;
}

.request-label {

    display: block;

    margin-top: 20px;

    margin-bottom: 8px;

    color: #666675;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;
}

.request-textarea {

    width: 100%;

    min-height: 110px;

    resize: vertical;

    padding: 12px;

    outline: none;

    border:
        1px solid
        rgba(139,92,246,.2);

    background:
        rgba(0,0,0,.35);

    color: #fff;

    font-family: inherit;

    font-size: 11px;
}

.request-textarea:focus {

    border-color:
        #8b5cf6;

    box-shadow:
        0 0 12px
        rgba(139,92,246,.12);
}

.request-submit {

    width: 100%;

    height: 46px;

    margin-top: 15px;

    border:
        1px solid #8b5cf6;

    background:
        rgba(139,92,246,.1);

    color: #c4b5fd;

    font-family: inherit;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

    cursor: pointer;

    transition: .25s ease;
}

.request-submit:hover {

    background:
        #8b5cf6;

    color: #fff;

    box-shadow:
        0 0 20px
        rgba(139,92,246,.3);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .clothing-page {

        width: 92%;

        padding-top: 110px;
    }

    .section-heading {

        align-items: flex-start;

        flex-direction: column;
    }

    .section-description {

        text-align: left;
    }

    .clothing-grid {

        grid-template-columns: 1fr;
    }

    .product-viewer {

        height: 350px;
    }

    .category-bar {

        margin-bottom: 50px;
    }
}
/* =========================================================
   REQUEST MODAL
========================================================= */

.request-modal {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.82);

    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.request-modal.active {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================================
   REQUEST BOX
========================================================= */

.request-box {

    position: relative;

    width: min(560px, 100%);

    padding: 32px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 12, 25, 0.98),
            rgba(3, 5, 15, 0.98)
        );

    border: 1px solid rgba(0, 170, 255, 0.45);

    box-shadow:
        0 0 20px rgba(0, 140, 255, 0.18),
        0 0 60px rgba(80, 0, 255, 0.12);

    transform: translateY(20px) scale(0.96);

    transition:
        transform 0.25s ease;
}


.request-modal.active .request-box {

    transform:
        translateY(0)
        scale(1);
}


/* =========================================================
   CLOSE
========================================================= */

.request-close {

    position: absolute;

    top: 12px;
    right: 15px;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    background: transparent;

    color: #fff;

    font-size: 25px;

    cursor: pointer;
}


/* =========================================================
   TEXT
========================================================= */

.request-system {

    margin-bottom: 10px;

    font-size: 10px;

    letter-spacing: 3px;

    opacity: 0.55;
}


.request-box h2 {

    margin: 0 0 24px;

    font-size: 26px;

    letter-spacing: 3px;
}


.request-item {

    padding: 18px;

    margin-bottom: 22px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.025);
}


.request-item-row {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 7px 0;
}


.request-item-row span {

    font-size: 10px;

    letter-spacing: 2px;

    opacity: 0.5;
}


.request-item-row strong {

    text-align: right;
}


/* =========================================================
   TEXTAREA
========================================================= */

.request-label {

    display: block;

    margin-bottom: 9px;

    font-size: 10px;

    letter-spacing: 2px;

    opacity: 0.65;
}


.request-textarea {

    width: 100%;

    min-height: 130px;

    resize: vertical;

    box-sizing: border-box;

    padding: 15px;

    background: rgba(0, 0, 0, 0.45);

    border: 1px solid rgba(0, 170, 255, 0.25);

    color: #fff;

    outline: none;

    font-family: inherit;

    font-size: 13px;
}


.request-textarea:focus {

    border-color: rgba(0, 170, 255, 0.7);

    box-shadow:
        0 0 15px rgba(0, 140, 255, 0.12);
}


/* =========================================================
   ACTIONS
========================================================= */

.request-actions {

    display: flex;

    gap: 10px;

    margin-top: 16px;
}


.request-cancel,
.request-submit {

    flex: 1;

    min-height: 48px;

    border: 1px solid rgba(0, 170, 255, 0.3);

    background: rgba(0, 100, 255, 0.08);

    color: #fff;

    cursor: pointer;

    font-family: inherit;

    letter-spacing: 1.5px;

    transition: 0.2s ease;
}


.request-cancel:hover,
.request-submit:hover {

    background: rgba(0, 140, 255, 0.18);

    border-color: rgba(0, 180, 255, 0.7);

    box-shadow:
        0 0 18px rgba(0, 150, 255, 0.15);
}


.request-submit:disabled {

    opacity: 0.5;

    cursor: wait;
}


/* =========================================================
   SUCCESS
========================================================= */

.request-success-icon {

    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(0, 255, 180, 0.5);

    font-size: 26px;
}


.request-success-text {

    text-align: center;

    margin-bottom: 18px;

    letter-spacing: 2px;
}


.request-telegram {

    padding: 18px;

    margin-bottom: 18px;

    background: rgba(0, 140, 255, 0.06);

    border: 1px solid rgba(0, 170, 255, 0.25);

    line-height: 1.7;

    font-size: 13px;
}


/* =========================================================
   BODY
========================================================= */

body.modal-open {

    overflow: hidden;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .request-box {

        padding: 24px 18px;
    }

    .request-box h2 {

        font-size: 21px;
    }

    .request-actions {

        flex-direction: column;
    }

}
.product-creator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 14px 0;
    padding: 11px 13px;
    border-left: 2px solid #8b4dff;
    border-top: 1px solid rgba(139, 77, 255, 0.12);
    border-right: 1px solid rgba(139, 77, 255, 0.12);
    border-bottom: 1px solid rgba(139, 77, 255, 0.12);
    background: rgba(139, 77, 255, 0.045);
}

.product-creator span {
    color: #68748c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-creator strong {
    color: #b997ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-align: right;
    text-transform: uppercase;
}

.product-description {
    margin: 0 0 16px;
    padding: 13px;
    border: 1px solid rgba(32, 170, 255, 0.13);
    background: rgba(3, 5, 12, 0.35);
}

.description-label {
    display: block;
    margin-bottom: 7px;
    color: #68748c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.product-description p {
    margin: 0;
    color: #aeb8ca;
    font-size: 10px;
    line-height: 1.75;
    word-break: break-word;
}

@media (max-width: 600px) {
    .product-creator {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .product-creator strong {
        text-align: left;
    }
}