:root {
    --primary-dark: #005bea;
    --rh-text: #4f5a7d;
    --rh-section-bg: #edf6ff;
    --rh-glass: rgba(223, 232, 241, 0.72);
    --rh-border: rgba(255, 255, 255, 0.72);
    --rh-ease: cubic-bezier(.16, 1, .3, 1);
    --rh-search-smooth: cubic-bezier(.22, 1, .36, 1);
}

/* Main Section */
.rh-domain-hero-section {
    position: relative;
    overflow: hidden;
    padding: 118px 0 68px;
    background-color: var(--rh-section-bg);
    background-image:
        linear-gradient(rgba(0, 120, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

.rh-domain-hero-wrap {
    width: min(1560px, calc(100% - 40px));
    max-width: 1560px;
    margin: 0 auto;
}

.rh-domain-hero-frame {
    --frame-pad: 14px;
    --corner-size: 112px;
    position: relative;
    width: 100%;
    padding: var(--frame-pad);
    isolation: isolate;
}

/* Blue Corners */
.rh-blue-corner {
    position: absolute;
    width: var(--corner-size);
    height: var(--corner-size);
    background: var(--dark);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    will-change: transform, opacity;
}

.rh-blue-corner-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform-origin: top left;
    animation: rhCornerLeftIn 1.05s var(--rh-ease) 0.22s forwards;
}

.rh-blue-corner-right {
    right: 0;
    bottom: 0;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    transform-origin: bottom right;
    animation: rhCornerRightIn 1.05s var(--rh-ease) 0.22s forwards;
}

/* Hero */
.rh-domain-hero {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    min-height: 760px;
    padding: 70px 30px 40px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 15% 42%, rgba(0, 120, 255, 0.10), transparent 20%),
        radial-gradient(circle at 86% 32%, rgba(0, 120, 255, 0.08), transparent 20%),
        var(--rh-glass);
    border: 1px solid var(--rh-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        0 28px 70px rgba(4, 4, 68, 0.06);
    transition:
        background .45s var(--rh-ease),
        box-shadow .45s var(--rh-ease);
}

.rh-domain-hero.search-open {
    min-height: 1180px;
    padding-top: 58px;
}

.rh-domain-hero.animate {
    transform-origin: center center;
}

.rh-domain-hero::before {
    content: "";
    position: absolute;
    top: -12px;
    left: -12px;
    width: 180px;
    height: 140px;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle at top left,
        rgba(4, 4, 68, 0.34) 0%,
        rgba(4, 4, 68, 0.16) 25%,
        rgba(255, 255, 255, 0.22) 52%,
        rgba(255, 255, 255, 0) 76%
    );
    filter: blur(10px);
}

.rh-domain-hero::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 190px;
    height: 150px;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(
        circle at bottom right,
        rgba(4, 4, 68, 0.36) 0%,
        rgba(4, 4, 68, 0.17) 25%,
        rgba(255, 255, 255, 0.22) 52%,
        rgba(255, 255, 255, 0) 76%
    );
    filter: blur(10px);
}

/* Blur Layer */
.rh-search-blur-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.62), rgba(237, 246, 255, 0.42)),
        rgba(237, 246, 255, 0.30);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition:
        opacity .45s var(--rh-ease),
        backdrop-filter .45s var(--rh-ease),
        -webkit-backdrop-filter .45s var(--rh-ease);
}

.rh-domain-hero.search-open .rh-search-blur-layer {
    opacity: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Decorative Shapes */
.rh-dot-pattern {
    position: absolute;
    width: 310px;
    height: 260px;
    z-index: 2;
    opacity: .42;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 120, 255, .35) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    transition: opacity .45s var(--rh-ease);
}

.rh-dot-top-right {
    top: -5px;
    right: -25px;
}

.rh-dot-bottom-left {
    left: 0;
    bottom: 115px;
}

.rh-curve-line {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border: 2px solid rgba(0, 120, 255, .08);
    border-radius: 50%;
    transition: opacity .45s var(--rh-ease);
}

.rh-curve-line-left {
    width: 620px;
    height: 370px;
    left: -110px;
    top: 160px;
    transform: rotate(-18deg);
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.rh-curve-line-bottom {
    width: 800px;
    height: 420px;
    left: -70px;
    bottom: -110px;
    transform: rotate(-12deg);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.rh-floating-circle {
    position: absolute;
    right: 330px;
    top: 105px;
    width: 42px;
    height: 42px;
    z-index: 2;
    border-radius: 50%;
    background: rgba(0, 120, 255, .09);
    pointer-events: none;
    transition: opacity .45s var(--rh-ease);
}

.rh-star-shape {
    position: absolute;
    z-index: 2;
    width: 28px;
    height: 28px;
    opacity: .45;
    pointer-events: none;
    transition: opacity .45s var(--rh-ease);
}

.rh-star-shape::before,
.rh-star-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    background: rgba(0, 120, 255, .18);
}

.rh-star-shape::before {
    width: 4px;
    height: 28px;
    border-radius: 99px;
}

.rh-star-shape::after {
    width: 28px;
    height: 4px;
    border-radius: 99px;
}

.rh-star-left {
    left: 22px;
    bottom: 150px;
    transform: rotate(45deg);
}

.rh-star-right {
    right: 280px;
    bottom: 128px;
    transform: rotate(45deg);
}

/* Side Images */
.rh-hero-side {
    --side-blur: 0px;
    --side-opacity: 1;
    --side-scale: 1;

    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: var(--side-opacity);
    transform: scale(var(--side-scale));
    transition:
        opacity .65s var(--rh-search-smooth),
        transform .65s var(--rh-search-smooth),
        filter .65s var(--rh-search-smooth),
        left .65s var(--rh-search-smooth),
        right .65s var(--rh-search-smooth);
}

.rh-hero-side img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter:
        blur(var(--side-blur))
        drop-shadow(0 28px 38px rgba(0, 85, 190, .14));
    transition: filter .65s var(--rh-search-smooth);
}

.rh-hero-left-img {
    left: 72px;
    top: 170px;
    width: 365px;
}

.rh-hero-right-img {
    right: 92px;
    top: 255px;
    width: 385px;
}

/* TLD Badges */
.rh-tld-badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 16px 38px rgba(0, 80, 180, .10);
    transition: opacity .45s var(--rh-ease), transform .45s var(--rh-ease);
}

.rh-tld-com {
    left: 315px;
    top: 95px;
    color: #fff;
    background: linear-gradient(135deg, #1294ff, #0065eb);
}

.rh-tld-net {
    left: 80px;
    bottom: 238px;
}

.rh-tld-org {
    right: 310px;
    top: 215px;
}

.rh-tld-bd {
    right: 85px;
    bottom: 126px;
    color: #fff;
    background: linear-gradient(135deg, #1294ff, #005bea);
}

/* Hero Content */
.rh-domain-hero-content {
    position: relative;
    z-index: 5;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.rh-domain-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .45s var(--rh-ease), transform .45s var(--rh-ease);
}

.rh-domain-eyebrow i {
    font-size: 17px;
}

.rh-domain-hero-content h1 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.5px;
    text-shadow: 0 10px 32px rgba(4, 4, 68, 0.07);
    font-family: "Exo", sans-serif;
    transition: opacity .45s var(--rh-ease), transform .45s var(--rh-ease);
}

.rh-domain-hero-content h1 span,
.hosting-highlight {
    display: block;
    position: relative;
    width: fit-content;
    margin: 8px auto 0;
    color: var(--blue);
}

.hosting-highlight::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 136, 255, 0.14);
    z-index: -1;
}

.rh-domain-hero-content p {
    max-width: 640px;
    margin: 28px auto 0;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.55;
    transition: opacity .45s var(--rh-ease), transform .45s var(--rh-ease);
}

.rh-domain-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 42px;
    transition: opacity .45s var(--rh-ease), transform .45s var(--rh-ease);
}

.rh-domain-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    color: #141744;
    font-size: 15px;
    font-weight: 800;
    border-right: 1px solid rgba(4, 4, 68, 0.12);
}

.rh-domain-features div:last-child {
    border-right: 0;
}

.rh-domain-features i {
    color: var(--blue);
    font-size: 21px;
}

/* Search Box */
.rh-domain-search-box {
    --rh-search-open-lift: clamp(-390px, -48vh, -250px);

    position: relative;
    z-index: 20;
    overflow: hidden;
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 26px 34px 28px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translate3d(0, 0, 0);
    will-change: transform;
    transition:
        transform .58s var(--rh-ease),
        background .42s var(--rh-ease),
        border-color .42s var(--rh-ease),
        box-shadow .42s var(--rh-ease);
}

.rh-domain-search-box.is-open,
.rh-domain-search-box.animate.show.is-open {
    z-index: 40;
    max-width: 100%;
    padding: 30px 34px 34px;
    background: rgba(255, 255, 255, .88);
    border-color: rgba(0, 120, 255, .36);
    box-shadow:
        0 34px 80px rgba(0, 60, 145, .14),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    transform: translate3d(0, var(--rh-search-open-lift), 0) scale(1) !important;
}

/* Search Row */
.rh-domain-search-row {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: #eaf6ff;
    border: 1.8px solid #0084ff;
    transition:
        background .35s var(--rh-ease),
        border-color .35s var(--rh-ease),
        box-shadow .35s var(--rh-ease),
        transform .35s var(--rh-ease);
}

.rh-domain-search-box.is-open .rh-domain-search-row {
    background: #ffffff;
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* Input */
.rh-domain-input {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px 0 0;
    border-radius: 999px;
    background: transparent;
}

.rh-domain-input i {
    color: var(--dark);
    font-size: 23px;
    transition: color .35s var(--rh-ease), transform .35s var(--rh-ease);
}

.rh-domain-search-box.is-open .rh-domain-input i {
    color: var(--blue);
    transform: scale(1.06);
}

.rh-domain-input input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--dark);
    font-size: 17px;
    font-weight: 800;
}

.rh-domain-input input::placeholder {
    color: #4f5d86;
    opacity: 1;
}

/* Search Button */
.rh-domain-search-box button[type="submit"] {
    width: 145px;
    height: 56px;
    border: 0;
    border-radius: 999px;
    background: var(--dark);
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: none;
    transition:
        background .35s var(--rh-ease),
        transform .35s var(--rh-ease),
        box-shadow .35s var(--rh-ease);
}

.rh-domain-search-box button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.rh-domain-search-box.is-open button[type="submit"] {
    background: linear-gradient(135deg, var(--blue), var(--primary-dark));
    box-shadow: 0 14px 30px rgba(0, 120, 255, .28);
}

/* Button Loader */
.rh-btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .42);
    border-top-color: #ffffff;
    animation: rhSpin .75s linear infinite;
}

.rh-domain-search-box.is-loading .rh-btn-text {
    display: none;
}

.rh-domain-search-box.is-loading .rh-btn-loader {
    display: inline-block;
}

.rh-domain-search-box.is-loading button[type="submit"] {
    pointer-events: none;
}

/* Price List */
.rh-domain-price-list {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 27px;
    max-height: 80px;
    transition:
        opacity .35s var(--rh-ease),
        transform .35s var(--rh-ease),
        max-height .35s var(--rh-ease),
        margin .35s var(--rh-ease);
}

.rh-domain-search-box.is-open .rh-domain-price-list {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
    margin-top: 0;
    pointer-events: none;
    overflow: hidden;
}

.rh-domain-price-list span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 22px 0 50px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid #b9d8ff;
    color: #151845;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 95, 255, .06);
}

.rh-domain-price-list span::before {
    content: "";
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle, #ffffff 3px, transparent 4px),
        var(--dark);
}

.rh-domain-price-list b {
    margin-right: 4px;
    color: var(--blue);
}

.rh-domain-hero.search-open .rh-hero-side,
.rh-domain-hero.search-open .rh-tld-badge,
.rh-domain-hero.search-open .rh-dot-pattern,
.rh-domain-hero.search-open .rh-curve-line,
.rh-domain-hero.search-open .rh-floating-circle,
.rh-domain-hero.search-open .rh-star-shape,
.rh-domain-hero.search-open .rh-domain-eyebrow,
.rh-domain-hero.search-open .rh-domain-hero-content > h1,
.rh-domain-hero.search-open .rh-domain-hero-content > p,
.rh-domain-hero.search-open .rh-domain-features {
    opacity: .20;
    filter: none !important;
}

.rh-domain-live-panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: scroll;
    margin-top: 0;
    transform: translate3d(0, 16px, 0) scale(.985);
    transition:
        max-height .45s var(--rh-ease),
        opacity .32s var(--rh-ease),
        transform .42s var(--rh-ease),
        margin-top .35s var(--rh-ease),
        visibility 0s linear .45s;
}
.rh-domain-live-panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;    
    -ms-overflow-style: none;  
}

.rh-domain-live-panel::-webkit-scrollbar {
    display: none;           
}
.rh-domain-search-box.is-open .rh-domain-live-panel {
    max-height: 950px;
    opacity: 1;
    visibility: visible;
    margin-top: 24px;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
        max-height .45s var(--rh-ease),
        opacity .32s var(--rh-ease),
        transform .42s var(--rh-ease),
        margin-top .35s var(--rh-ease),
        visibility 0s linear 0s;
}

/* Panel Head */
.rh-domain-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(234, 246, 255, .92), rgba(255, 255, 255, .88));
    border: 1px solid rgba(0, 120, 255, .12);
    text-align: start;
}

.rh-panel-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.rh-domain-panel-head h3 {
    margin: 0;
    color: var(--dark);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

.rh-domain-panel-head p {
    margin: 7px 0 0;
    color: #596486;
    font-size: 15px;
    font-weight: 600;
}

.rh-search-close {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 0;
    border-radius: 50%;
    color: var(--dark);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 60, 145, .08);
    cursor: pointer;
    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}

.rh-search-close:hover {
    color: #ffffff;
    background: var(--dark);
    transform: rotate(90deg);
}

/* Main Result */
.rh-main-domain-result {
    margin-top: 18px;
}

.rh-empty-search-state,
.rh-domain-result-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 120, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 74, 160, .07);
}

.rh-empty-search-state {
    justify-content: center;
    color: #657096;
    font-weight: 800;
}

.rh-empty-search-state i {
    color: var(--blue);
    font-size: 24px;
}

.rh-result-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.rh-result-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: var(--blue);
    font-size: 22px;
}

.rh-result-icon.taken {
    background: #ff4d4f;
}

.rh-result-domain {
    margin: 0;
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
    word-break: break-word;
}

.rh-result-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 900;
}

.rh-result-status.available {
    color: #0aa85f;
}

.rh-result-status.taken {
    color: #ff4d4f;
}

.rh-result-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.rh-result-price {
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
}

.rh-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition:
        background .25s ease,
        transform .25s ease;
}

.rh-buy-btn:hover {
    color: #ffffff;
    background: var(--blue);
    transform: translateY(-2px);
}

.rh-buy-btn.disabled {
    pointer-events: none;
    opacity: .45;
}

/* Suggestions */
.rh-suggestion-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin: 24px 4px 14px;
}

.rh-suggestion-title h4 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 900;
}

.rh-suggestion-title span {
    color: #657096;
    font-size: 14px;
    font-weight: 700;
}

.rh-domain-suggestions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.rh-suggestion-card {
    position: relative;
    overflow: hidden;
    padding: 10px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(0, 120, 255, .12);
    box-shadow: 0 10px 24px rgba(0, 74, 160, .05);
    transform: translateY(16px);
    opacity: 0;
    animation: rhSuggestionIn .45s var(--rh-ease) forwards;
}

.rh-suggestion-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 120, 255, .08), transparent 58%);
    opacity: 0;
    transition: .25s ease;
}

.rh-suggestion-card:hover {
    border-color: rgba(0, 120, 255, .36);
}

.rh-suggestion-card:hover::before {
    opacity: 1;
}

.rh-suggestion-domain {
    position: relative;
    z-index: 1;
    color: var(--dark);
    font-size: 16px;
    font-weight: 900;
    word-break: break-word;
}

.rh-suggestion-meta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.rh-suggestion-price {
    color: var(--blue);
    font-size: 17px;
    font-weight: 900;
}

.rh-suggestion-status {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.rh-suggestion-status.available {
    color: #087a45;
    background: rgba(10, 168, 95, .12);
}

.rh-suggestion-status.taken {
    color: #c92a2a;
    background: rgba(255, 77, 79, .12);
}

.rh-suggestion-action {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: 14px;
}

.rh-suggestion-action a {
    width: 100%;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition:
        background .25s ease,
        transform .25s ease;
}

.rh-suggestion-action a:hover {
    color: #ffffff;
    background: var(--blue);
    transform: translateY(-1px);
}

.rh-suggestion-action a.disabled {
    pointer-events: none;
    opacity: .45;
}

/* Info Cards */
.rh-domain-info-cards {
    position: relative;
    z-index: 5;
    max-width: 1450px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: min(1450px, calc(100% - 40px));
}

.rh-domain-info-card {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 36px;
    border-radius: 18px;
    background: rgb(255 255 255 / 24%);
    border: 1px solid rgb(255 255 255);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(10px);
}

.rh-info-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 36px;
}

.rh-domain-info-card h4 {
    margin: 0;
    color: #101343;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.rh-domain-info-card p {
    margin: 7px 0 0;
    color: #5d6688;
    font-size: 15px;
    font-weight: 600;
}

/* Keyframes */
@keyframes rhCornerLeftIn {
    0% {
        opacity: 0;
        transform: translate(50%, 50%) scale(0.16) rotate(8deg);
        filter: blur(8px);
    }

    68% {
        opacity: 1;
        transform: translate(0, 0) scale(1.04) rotate(0deg);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes rhCornerRightIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.16) rotate(-8deg);
        filter: blur(8px);
    }

    68% {
        opacity: 1;
        transform: translate(0, 0) scale(1.04) rotate(0deg);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
        filter: blur(0);
    }
}

@keyframes rhSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes rhSuggestionIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .rh-domain-search-box.is-open .rh-domain-suggestions {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Max 1500 */
@media (max-width: 1500px) {
    .rh-hero-side {
        --side-blur: 1px;
        --side-opacity: .82;
        --side-scale: .96;
    }

    .rh-hero-left-img {
        left: 38px;
        width: 330px;
    }

    .rh-hero-right-img {
        right: 42px;
        width: 345px;
    }
}

/* Max 1400 */
@media (max-width: 1400px) {
    .rh-tld-com {
        left: 245px;
    }

    .rh-tld-org {
        right: 230px;
    }
}

/* Max 1300 */
@media (max-width: 1300px) {
    .rh-hero-side {
        --side-blur: 2.5px;
        --side-opacity: .58;
        --side-scale: .92;
    }

    .rh-hero-left-img {
        left: 10px;
        width: 300px;
    }

    .rh-hero-right-img {
        right: 10px;
        width: 315px;
    }
}

/* Tablet */
@media (max-width: 1199px) {
    .rh-domain-hero {
        min-height: auto;
        padding-bottom: 55px;
    }

    .rh-domain-hero.search-open {
        min-height: 1080px;
    }

    .rh-domain-search-box {
        --rh-search-open-lift: clamp(-385px, -40vh, -170px);
    }

    .rh-hero-side {
        --side-blur: 5px;
        --side-opacity: .32;
        --side-scale: .88;
    }

    .rh-hero-left-img {
        left: -45px;
        width: 285px;
    }

    .rh-hero-right-img {
        right: -45px;
        width: 300px;
    }

    .rh-tld-com {
        left: 150px;
    }

    .rh-tld-net {
        left: 35px;
    }

    .rh-tld-org {
        right: 80px;
    }

    .rh-domain-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .rh-domain-suggestions {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Max 991 */
@media (max-width: 991px) {
    .rh-hero-side {
        --side-blur: 8px;
        --side-opacity: .18;
        --side-scale: .84;
    }

    .rh-hero-left-img {
        left: -90px;
    }

    .rh-hero-right-img {
        right: -90px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .rh-domain-hero-section {
        padding: 88px 0 46px;
    }

    .rh-domain-hero-wrap,
    .rh-domain-info-cards {
        width: calc(100% - 20px);
    }

    .rh-domain-hero-frame {
        --frame-pad: 10px;
        --corner-size: 70px;
    }

    .rh-domain-hero {
        min-height: auto;
        padding: 46px 14px 28px;
        border-radius: 10px;
    }

    .rh-domain-hero.search-open {
        min-height: auto;
        padding: 0;
    }
.rh-domain-price-list{
  gap: 5px;
  margin-top: 10px;
}
    .rh-hero-side,
    .rh-curve-line,
    .rh-tld-badge {
        display: none;
    }

    .rh-domain-hero-content h1 {
        font-size: clamp(34px, 10vw, 44px);
        white-space: normal;
        letter-spacing: -1.4px;
    }

    .rh-domain-hero-content p {
        font-size: 14px;
    }

    .rh-domain-features {
        gap: 13px;
        margin-top: 30px;
    }

    .rh-domain-features div {
        padding: 0;
        border-right: 0;
        font-size: 13px;
    }

    .rh-domain-search-box {
        --rh-search-open-lift: -325px;

        margin-top: 34px;
        padding: 18px;
        border-radius: 24px;
    }

    .rh-domain-search-box.is-open,
    .rh-domain-search-box.animate.show.is-open {
        padding: 18px;
        transform: translate3d(0, var(--rh-search-open-lift), 0) scale(1) !important;
    }

    .rh-domain-search-row {
        height: auto;
        flex-direction: column;
        gap: 12px;
        padding: 12px;
        border-radius: 24px;
    }

    .rh-domain-input {
        width: 100%;
        height: 58px;
        padding: 10px 18px;
    }

    .rh-domain-search-box button[type="submit"] {
        width: 100%;
        height: 56px;
    }

    .rh-domain-price-list span {
        width: 100%;
        justify-content: center;
    }

    .rh-price-extra {
        display: none !important;
    }

    .rh-domain-panel-head {
        padding: 18px;
        border-radius: 20px;
    }

    .rh-domain-panel-head h3 {
        font-size: 20px;
    }

    .rh-empty-search-state,
    .rh-domain-result-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .rh-result-right {
        width: 100%;
        justify-content: space-between;
    }

    .rh-domain-suggestions {
        grid-template-columns: 1fr;
    }

    .rh-suggestion-title {
        display: block;
    }

    .rh-suggestion-title span {
        display: block;
        margin-top: 5px;
    }

    .rh-domain-info-cards {
        grid-template-columns: 1fr;
    }

    .rh-domain-info-card {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate {
        opacity: 1;
        transform: none;
        transition: none;
        transition-delay: 0s;
    }

    .rh-blue-corner-left,
    .rh-blue-corner-right,
    .rh-suggestion-card {
        animation: none;
        opacity: 1;
    }

    .rh-domain-search-box,
    .rh-domain-live-panel,
    .rh-domain-search-row {
        transition: none;
    }
}
