body {
    background: #f2f4f5;
    overflow-x: hidden;
}

.adNewPage,
.adNewLayout,
.adNewMain,
.adNewSide {
    min-width: 0;
}

.adNewPage {
    padding: 120px 16px 40px;
    box-sizing: border-box;
}

.adNewLayout {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    box-sizing: border-box;
}

.adNewMain {
    min-width: 0;
}

.adNewSide {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.adNewGalleryCard,
.adNewInfoCard,
.adNewSellerCard,
.adNewNotice {
    background: #fff;
    border: 1px solid #e1e8ea;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 47, 52, 0.07);
}

.adNewGalleryCard {
    position: relative;
    overflow: hidden;
}

.adNewGallery {
    position: relative;
    height: 520px;
    background: #eef2f3;
}

.adNewSlide {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.adNewSlide.is-active {
    display: block;
}

.adNewSlide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

.adNewGalleryBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #003b49;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 1;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.adNewGalleryBtn::before {
    display: block;
    color: #003b49;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-1px);
}

.adNewGalleryPrev::before {
    content: "‹";
}

.adNewGalleryNext::before {
    content: "›";
}

.adNewGalleryBtn span {
    display: none;
}

.adNewGalleryBtn:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.adNewGalleryBtn:active {
    transform: translateY(-50%) scale(0.98);
}

.adNewGalleryPrev {
    left: 18px;
}

.adNewGalleryNext {
    right: 18px;
}

.adNewGalleryCounter {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(0, 47, 52, 0.86);
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.adNewThumbs {
    display: flex;
    gap: 10px;
    padding: 14px;
    overflow-x: auto;
}

.adNewThumb {
    position: relative;
    width: 82px;
    height: 64px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    background: #eef2f3;
    cursor: pointer;
}

.adNewThumb.is-active {
    border-color: #002f34;
}

.adNewThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Image preloaders */
.adNewSlide.is-image-loading::before,
.adNewThumb.is-image-loading::before,
.adNewLightboxImageWrap.is-image-loading::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            110deg,
            #eef3f4 8%,
            #f8fbfc 18%,
            #eef3f4 33%
        );
    background-size: 200% 100%;
    animation: adNewImageSkeleton 1.2s linear infinite;
}

.adNewSlide.is-image-loading::after,
.adNewThumb.is-image-loading::after,
.adNewLightboxImageWrap.is-image-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
    border-radius: 50%;
    border: 4px solid rgba(0, 47, 52, 0.14);
    border-top-color: #002f34;
    animation: adNewImageSpin 0.85s linear infinite;
}

.adNewSlide.is-image-loading img,
.adNewThumb.is-image-loading img,
.adNewLightboxImageWrap.is-image-loading img {
    opacity: 0;
}

.adNewSlide.is-image-loaded img,
.adNewThumb.is-image-loaded img,
.adNewLightboxImageWrap.is-image-loaded img {
    opacity: 1;
    transition: opacity 0.22s ease;
}

@keyframes adNewImageSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes adNewImageSpin {
    to {
        transform: rotate(360deg);
    }
}

.adNewNoPhoto {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #557076;
    font-size: 17px;
    font-weight: 700;
    background: #eef2f3;
}

.adFavoriteBtn {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.adFavoriteBtn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.adFavoriteBtn:active {
    transform: scale(0.96);
}

.adFavoriteBtn.is-loading {
    pointer-events: none;
    opacity: 0.65;
}

.adFavoriteIcon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #00313a;
    stroke-width: 1.8;
    transition: fill 0.15s ease, stroke 0.15s ease, transform 0.15s ease;
}

.adFavoriteBtn.is-active .adFavoriteIcon {
    fill: #e00000;
    stroke: #e00000;
}

/* Info card */
.adNewInfoCard {
    margin-top: 22px;
    padding: 26px;
}

.adNewMetaRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.adNewTitle {
    margin: 0;
    color: #002f34;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 800;
}

.adNewPrice {
    margin-top: 18px;
    color: #002f34;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.adNewPrice span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    color: #607d82;
    font-weight: 600;
}

.adNewDivider {
    height: 1px;
    background: #e1e8ea;
    margin: 24px 0;
}

.adNewDetails h2,
.adNewDescription h2,
.adNewSellerCard h2 {
    margin: 0 0 16px;
    color: #002f34;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.adNewDetailsGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.adNewDetailItem {
    padding: 14px;
    border-radius: 12px;
    background: #f7fafb;
    border: 1px solid #e5ecee;
}

.adNewDetailItem div {
    margin-bottom: 6px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
}

.adNewDetailItem strong {
    color: #002f34;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.adNewDescription div {
    white-space: pre-line;
    color: #002f34;
    font-size: 15px;
    line-height: 1.6;
}

/* Bottom actions */
.adNewBottomActions {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 47, 52, 0.12);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.adNewBottomActions .adNewBottomMeta {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    color: #55757b;
    font-size: 14px;
    line-height: 1.35;
}

.adNewBottomActions .adReportOpenBtn {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;

    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;

    color: #002f34;
    font-size: 14px;
    line-height: 1.35;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.adNewBottomActions .adReportOpenBtn:hover {
    color: #d71920;
}

.adNewBottomActions .adReportFlag {
    color: #d71920;
    font-size: 15px;
    line-height: 1;
}

/* Seller */
.adNewSellerCard {
    padding: 22px;
}

.adNewSeller {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.adNewSellerAvatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adNewSellerAvatar img {
    width: 30px;
    height: 30px;
}

.adNewSellerName {
    color: #002f34;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.adNewSellerDate {
    margin-top: 4px;
    color: #607d82;
    font-size: 13px;
    line-height: 1.35;
}

.adNewSellerPriceBox {
    margin: 18px 0 14px;
    padding: 22px 18px;
    background: #f6f7f7;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #edf1f2;
}

.adNewSellerPriceMain {
    color: #002f34;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 900;
}

.adNewSellerPriceSub {
    margin-top: 8px;
    color: #607d82;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.adNewContactBtn,
.adNewBtn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #002f34;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-sizing: border-box;
    margin-top: 10px;
}

.adNewContactBtnLight {
    background: #fff;
    color: #002f34;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewContactBtn,
.adNewSellerCard .adNewMessageBtn,
.adNewSellerCard .adNewPhoneBtn,
.adNewSellerCard .adNewPhoneRevealBtn {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    padding: 0 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.adNewSellerCard .adNewMessageBtn {
    background: #002f34;
    color: #fff;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewMessageBtn:hover,
.adNewSellerCard .adNewMessageBtn:focus,
.adNewSellerCard .adNewMessageBtn:active {
    background: #00474e;
    color: #fff;
    border-color: #00474e;
}

.adNewSellerCard .adNewPhoneBtn,
.adNewSellerCard .adNewPhoneRevealBtn {
    background: #fff;
    color: #002f34;
    border: 2px solid #002f34;
}

.adNewSellerCard .adNewPhoneBtn:hover,
.adNewSellerCard .adNewPhoneRevealBtn:hover,
.adNewSellerCard .adNewPhoneBtn:focus,
.adNewSellerCard .adNewPhoneRevealBtn:focus {
    background: #002f34;
    color: #fff;
    border-color: #002f34;
}

.adNewSellerCard .but,
.adNewSellerCard .adNewMessageBtn.but {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 10px;
    box-sizing: border-box;
}

/* Location */
.adNewLocationCard {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7fbfc 0%, #edf6f7 100%);
    border: 1px solid #dfeaec;
    box-shadow: 0 10px 28px rgba(0, 47, 52, 0.07);
}

.adNewLocationCard::before {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0, 47, 52, 0.055);
}

.adNewLocationCard::after {
    content: "";
    position: absolute;
    left: -42px;
    bottom: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(35, 229, 219, 0.16);
}

.adNewLocationSoftInner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.adNewLocationSoftIcon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 14px;
    background: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(0, 47, 52, 0.15);
}

.adNewLocationSoftIcon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.adNewLocationSoftText {
    min-width: 0;
    padding-top: 2px;
}

.adNewLocationSoftText strong {
    display: block;
    color: #002f34;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 850;
}

.adNewLocationSoftText span {
    display: block;
    margin-top: 5px;
    color: #607d82;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 650;
}

/* Preview */
.adNewPreviewTop {
    position: fixed;
    top: 86px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff3bf;
    color: #002f34;
    border: 1px solid #ffd54d;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 47, 52, 0.13);
}

.adNewPreviewBack {
    min-height: 34px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #002f34;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.adNewPreviewBack:hover {
    background: #00474e;
}

/* Notice */
.adNewNotice {
    max-width: 620px;
    margin: 0 auto;
    padding: 40px 28px;
    text-align: center;
}

.adNewNoticeIcon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff3bf;
    color: #002f34;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
    font-weight: 900;
}

.adNewNotice h1 {
    margin: 0 0 12px;
    color: #002f34;
    font-size: 26px;
    line-height: 1.25;
}

.adNewNotice p {
    margin: 0 0 22px;
    color: #607d82;
    font-size: 15px;
    line-height: 1.45;
}

/* Lightbox */
.adNewLightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 20, 24, 0.94);
    padding: 64px 72px;
    box-sizing: border-box;
}

.adNewLightbox.is-open {
    display: flex;
}

body.adNewLightboxOpen {
    overflow: hidden;
}

.adNewLightboxImageWrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adNewLightboxImageWrap.is-image-loading::before {
    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.08) 8%,
            rgba(255, 255, 255, 0.18) 18%,
            rgba(255, 255, 255, 0.08) 33%
        );
    background-size: 200% 100%;
}

.adNewLightboxImageWrap.is-image-loading::after {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
}

.adNewLightboxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.adNewLightboxClose {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #002f34;
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.adNewLightboxClose:hover {
    background: #eef6f7;
}

.adNewLightboxArrow {
    position: fixed;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #002f34;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.adNewLightboxArrow:hover {
    background: #eef6f7;
}

.adNewLightboxPrev {
    left: 24px;
}

.adNewLightboxNext {
    right: 24px;
}

.adNewLightboxCounter {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 2;
    transform: translateX(-50%);
    min-width: 58px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #002f34;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* Report button / modal */
.adReportOpenBtn {
    margin-top: 18px;
    border: 0;
    background: transparent;
    color: #386070;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: underline;
}

.adReportOpenBtn:hover {
    color: #002f3a;
}

.adReportOpenBtn.is-reported {
    color: #7d939b;
    cursor: default;
    text-decoration: none;
}

.adReportFlag {
    color: #d93025;
}

.adReportModal[hidden] {
    display: none;
}

.adReportModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adReportModalOpened {
    overflow: hidden;
}

.adReportModalDialog {
    width: min(680px, 100%);
    background: #fff;
    border-radius: 6px;
    padding: 48px 52px 44px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.adReportClose {
    position: absolute;
    right: 22px;
    top: 18px;
    border: 0;
    background: transparent;
    color: #00333d;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
}

.adReportTitle {
    font-size: 34px;
    font-weight: 800;
    color: #002f3a;
    margin-bottom: 24px;
}

.adReportSubTitle {
    font-size: 14px;
    color: #386070;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.adReportOption {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    color: #002f3a;
    margin: 20px 0;
    cursor: pointer;
}

.adReportOption input {
    width: 20px;
    height: 20px;
}

.adReportSubmitBtn {
    width: 100%;
    height: 58px;
    margin-top: 30px;
    border: 0;
    border-radius: 5px;
    background: #00333d;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.adReportSubmitBtn:disabled {
    background: #dce5e8;
    color: #78939b;
    cursor: default;
}

.adReportStep {
    display: none;
}

.adReportStep.is-active {
    display: block;
}

.adReportSelectedReason {
    font-size: 18px;
    color: #386070;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.adReportTextarea {
    width: 100%;
    height: 142px;
    border: 0;
    border-radius: 5px;
    background: #f2f5f6;
    padding: 22px;
    font-size: 18px;
    color: #002f3a;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}

.adReportHint {
    margin-top: 18px;
    color: #7d939b;
    font-size: 15px;
}

/* Frozen / unavailable */
.adNewUnavailableLayer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 28, 35, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.adNewUnavailableCard {
    width: 100%;
    max-width: 620px;
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 38px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
    color: #002f3a;
    font-family: Arial, sans-serif;
}

.adNewUnavailableIcon {
    float: left;
    margin-right: 10px;
    margin-top: 10px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffe4e4;
    color: #c62828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.adNewUnavailableCard h1 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #00303a;
}

.adNewUnavailableCard p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.45;
    color: #00303a;
}

.adNewUnavailableCard strong {
    font-weight: 800;
}

.adNewUnavailableBack {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    border-radius: 10px;
    border: 0;
    background: #003b46;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.adNewUnavailableBack:hover {
    background: #005060;
}

body:has(.adNewUnavailableLayer) {
    overflow: hidden;
}

/* Already reported custom box */
.adAlreadyReportedOverlay {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    animation: adAlreadyFadeIn .18s ease;
}

.adAlreadyReportedOverlay.is-hide {
    animation: adAlreadyFadeOut .18s ease forwards;
}

.adAlreadyReportedCard {
    position: relative;
    width: min(420px, 94vw);
    background: #fff;
    border-radius: 20px;
    padding: 34px 26px 28px 26px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    animation: adAlreadyCardIn .2s ease;
}

.adAlreadyReportedClose {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
    color: #002f34;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.adAlreadyReportedClose:hover {
    background: rgba(0, 0, 0, 0.09);
}

.adAlreadyReportedIcon {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px auto;
    border-radius: 999px;
    background: #ffe6e6;
    color: #d71920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.adAlreadyReportedText {
    color: #002f34;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

@keyframes adAlreadyFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes adAlreadyFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes adAlreadyCardIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop wide / TV */
@media (min-width: 1440px) {
    .adNewLayout {
        max-width: 1180px;
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 22px;
    }

    .adNewGallery {
        height: 520px;
    }

    .adNewTitle {
        font-size: 28px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .adNewLayout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 18px;
    }

    .adNewGallery {
        height: 460px;
    }

    .adNewTitle {
        font-size: 26px;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 20px;
    }

    .adNewSellerPriceMain {
        font-size: 24px;
    }
}

/* Small tablet / phone landscape */
@media (max-width: 900px) {
    .adNewLayout {
        grid-template-columns: 1fr;
    }

    .adNewSide {
        order: -1;
    }

    .adNewGallery {
        height: 390px;
    }

    .adNewTitle {
        font-size: 26px;
    }
}

/* Phone */
@media (max-width: 600px) {
    .adNewPage {
        padding: 105px 10px 30px;
    }

    .adNewGallery {
        height: 310px;
    }

    .adNewGalleryBtn {
        width: 40px;
        height: 40px;
    }

    .adNewGalleryBtn::before {
        font-size: 30px;
        transform: translateY(-1px);
    }

    .adNewGalleryPrev {
        left: 10px;
    }

    .adNewGalleryNext {
        right: 10px;
    }

    .adNewGalleryCounter {
        right: 12px;
        bottom: 12px;
        font-size: 12px;
        padding: 6px 10px;
    }

    .adNewThumbs {
        padding: 12px;
    }

    .adNewThumb {
        width: 74px;
        height: 58px;
        border-radius: 9px;
    }

    .adFavoriteBtn {
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }

    .adFavoriteIcon {
        width: 30px;
        height: 30px;
    }

    .adNewInfoCard,
    .adNewSellerCard {
        padding: 18px;
        border-radius: 14px;
    }

    .adNewMetaRow {
        flex-direction: column;
        font-size: 13px;
    }

    .adNewTitle {
        font-size: 23px;
    }

    .adNewPrice {
        font-size: 23px;
    }

    .adNewDetailsGrid {
        grid-template-columns: 1fr;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 19px;
    }

    .adNewDescription div {
        font-size: 15px;
    }

    .adNewBottomActions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
    }

    .adNewBottomActions .adNewBottomMeta {
        flex: 1 1 auto;
        min-width: 0;
        font-size: 13px;
    }

    .adNewBottomActions .adReportOpenBtn {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 13px;
    }

    .adNewBottomActions .adReportFlag {
        font-size: 13px;
    }

    .adNewSellerPriceBox {
        padding: 18px 14px;
        margin: 16px 0 12px;
    }

    .adNewSellerPriceMain {
        font-size: 23px;
    }

    .adNewSellerCard .adNewContactBtn,
    .adNewSellerCard .adNewMessageBtn,
    .adNewSellerCard .adNewPhoneBtn,
    .adNewSellerCard .adNewPhoneRevealBtn {
        font-size: 14px;
    }

    .adNewLocationCard {
        padding: 18px;
        border-radius: 15px;
    }

    .adNewLocationSoftIcon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .adNewLocationSoftText strong {
        font-size: 16px;
    }

    .adNewLocationSoftText span {
        font-size: 13px;
    }

    .adReportModalDialog {
        padding: 34px 24px 30px;
    }

    .adReportTitle {
        font-size: 30px;
    }

    .adReportOption {
        font-size: 18px;
    }

    .adReportClose {
        font-size: 42px;
    }

    .adNewUnavailableCard {
        padding: 26px 22px;
        border-radius: 12px;
    }

    .adNewUnavailableCard h1 {
        font-size: 23px;
    }

    .adNewUnavailableCard p {
        font-size: 15px;
    }

    .adAlreadyReportedCard {
        padding: 32px 20px 24px 20px;
    }

    .adAlreadyReportedText {
        font-size: 16px;
    }

    .adNewLightbox {
        padding: 58px 0 44px;
        background: rgba(0, 20, 24, 0.97);
    }

    .adNewLightboxImage {
        width: 100%;
        max-height: 100%;
        border-radius: 0;
        box-shadow: none;
    }

    .adNewLightboxClose {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }

    .adNewLightboxArrow {
        display: none;
    }

    .adNewLightboxCounter {
        bottom: 14px;
        font-size: 13px;
    }
}

/* Small phone */
@media (max-width: 420px) {
    .adNewPage {
        padding-left: 8px;
        padding-right: 8px;
    }

    .adNewGallery {
        height: 280px;
    }

    .adNewTitle {
        font-size: 21px;
    }

    .adNewDetails h2,
    .adNewDescription h2,
    .adNewSellerCard h2 {
        font-size: 18px;
    }

    .adNewDetailItem strong {
        font-size: 14px;
    }

    .adNewSellerPriceMain {
        font-size: 21px;
    }

    .adNewBottomActions {
        gap: 8px;
    }

    .adNewBottomActions .adNewBottomMeta,
    .adNewBottomActions .adReportOpenBtn {
        font-size: 12px;
    }
}


.adNewSellerNameLink {
    display: inline-block;
    color: #002f34;
    text-decoration: none;
}

.adNewSellerNameLink:hover {
    text-decoration: underline;
}