.our_girls {
    width: 1350px;
    border: 2px solid #eac767;
    border-radius: 74px;
    height: 1142px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
    padding-left: 88px;
    padding-right: 88px;
    padding-top: 45px;
    background-color: #0E0E0E;
}

.girls_title {
    font-family: var(--second-family), 'Manrope', Arial, sans-serif;
    font-weight: 400;
    font-size: 36px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.girls_description {
    font-family: var(--third-family), 'NotoSerif', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffe7b2;
    margin-bottom: 27px;
}

.girls_description span {
    font-weight: 700;
}

.girls_card {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    border-radius: 10px;
    width: 275px;
    height: 414px;
    -webkit-box-shadow: 0 4px 20px 0 rgba(101, 101, 101, 0.5);
    box-shadow: 0 4px 20px 0 rgba(101, 101, 101, 0.5);
    background: #b68a3d;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 7px;
}

.card:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.card-image {
    width: 100%;
    height: calc(100% - 60px);
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 10px 12px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.diamond-icon {
    width: 28px;
    height: 28px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.diamond-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.card-details {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.card-stats {
    font-size: 12px;
    color: #3a3a2e;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 10px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card-stats span {
    white-space: nowrap;
}

.card_buttons {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 40px;
}

.btn {
    padding: 14px 40px;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 240px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-primary {
    background: -webkit-gradient(linear, left top, right bottom, from(#c8a84e), to(#a8883e));
    background: -webkit-linear-gradient(135deg, #c8a84e, #a8883e);
    background: -moz-linear-gradient(135deg, #c8a84e, #a8883e);
    background: -o-linear-gradient(135deg, #c8a84e, #a8883e);
    background: linear-gradient(135deg, #c8a84e, #a8883e);
    color: #1a1a2e;
    border: 2px solid #c8a84e;
}

.btn-primary:hover {
    background: -webkit-gradient(linear, left top, right bottom, from(#d4b85e), to(#b8984e));
    background: -webkit-linear-gradient(135deg, #d4b85e, #b8984e);
    background: -moz-linear-gradient(135deg, #d4b85e, #b8984e);
    background: -o-linear-gradient(135deg, #d4b85e, #b8984e);
    background: linear-gradient(135deg, #d4b85e, #b8984e);
    -webkit-box-shadow: 0 4px 15px rgba(200, 168, 78, 0.4);
    box-shadow: 0 4px 15px rgba(200, 168, 78, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #c8a84e;
    border: 2px solid #c8a84e;
}

.btn-secondary:hover {
    background: rgba(200, 168, 78, 0.1);
    -webkit-box-shadow: 0 4px 15px rgba(200, 168, 78, 0.2);
    box-shadow: 0 4px 15px rgba(200, 168, 78, 0.2);
}

@media (max-width: 1024px) {
    .our_girls {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 40px;
        padding: 40px 30px;
    }

    .girls_card {
        -ms-grid-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .card {
        width: 100%;
        height: auto;
        aspect-ratio: 275 / 414;
    }
}

@media (max-width: 768px) {
    .our_girls {
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        height: auto;
        padding: 30px 0 30px 16px;
        background-color: #0E0E0E;
    }

    .card_text {
        padding-right: 16px;
    }

    .girls_descrobtion-mobile {
        border-radius: 4px;
        width: 248px;
        height: 36px;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        background: rgba(132, 132, 132, 0.46);
        margin-bottom: 20px;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .girls_title {
        font-family: var(--third-family), 'NotoSerif', Georgia, serif;
        font-weight: 600;
        font-size: 20px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #d4af37;
        margin: 0;
        text-align: center;
    }

    .girls_description {
        display: none;
    }

    .girls_card {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        padding-right: 16px;
        margin-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .girls_card::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .card {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 82%;
        -ms-flex: 0 0 82%;
        flex: 0 0 82%;
        max-width: 350px;
        width: 82%;
        height: auto;
        aspect-ratio: 275 / 414;
        scroll-snap-align: start;
        -webkit-scroll-snap-align: start;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .card_buttons {
        border: 1px solid #d4af37 !important;
        border-radius: 10px !important;
        padding: 0 !important;
        width: 290px !important;
        height: 41px !important;
        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;
        -webkit-box-pack: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
        -webkit-box-align: center !important;
        -moz-box-align: center !important;
        -ms-flex-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        background: transparent !important;
        margin: 30px auto 0 auto !important;
        -webkit-box-sizing: border-box !important;
        -moz-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }

    .btn-secondary {
        display: none !important;
    }

    .btn-primary {
        font-family: var(--second-family), 'Manrope', Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        color: #d4af37 !important;
        background: transparent !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        display: -webkit-inline-box !important;
        display: -moz-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: -webkit-inline-flex !important;
        display: inline-flex !important;
        -webkit-box-align: center !important;
        -moz-box-align: center !important;
        -ms-flex-align: center !important;
        -webkit-align-items: center !important;
        align-items: center !important;
        -webkit-box-pack: center !important;
        -moz-box-pack: center !important;
        -ms-flex-pack: center !important;
        -webkit-justify-content: center !important;
        justify-content: center !important;
    }

    .btn {
        width: 100% !important;
        max-width: 320px !important;
        min-width: unset !important;
    }
}

@media (max-width: 480px) {
    .girls_title {
        font-size: 22px;
    }

    .card {
        -webkit-box-flex: 0;
        -moz-box-flex: 0;
        -webkit-flex: 0 0 85%;
        -ms-flex: 0 0 85%;
        flex: 0 0 85%;
        width: 85%;
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .girls_card {
        -webkit-overflow-scrolling: touch;
    }
    
    .card {
        -webkit-scroll-snap-align: start;
        scroll-snap-align: start;
    }
}

@-moz-document url-prefix() {
    .girls_card {
        scrollbar-width: none;
    }
    
    .card_buttons {
        text-align: center;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .girls_card {
        display: -ms-grid;
    }
    
    .card {
        height: auto;
        min-height: 414px;
    }
    
    .btn-primary {
        background: #c8a84e;
    }
}