.subtitle-xs {
    font-size: 18px;
    font-weight: 600 !important;
    line-height: 22px;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}



.btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    cursor: pointer;
}

.btn-giant {
    height: 54px;
    border-radius: 12px;
    padding: 16px 24px;
}

.btn-large {
    height: 48px;
    border-radius: 12px;
    padding: 14px 20px;
}

.btn-medium {
    height: 40px;
    border-radius: 12px;
    padding: 12px 16px;
}

.btn-small {
    height: 32px;
    border-radius: 8px;
    padding: 8px 12px;
}

.btn-tiny {
    height: 24px;
    border-radius: 8px;
    padding: 6px 8px;
}


.btns-primary {
    background: var(--Primary-500, #d42b65);
    color: var(--Base-White, #ffffff);
    border: none;
}

.btns-primary:hover {
    background: var(--Primary-400, #ee4e86);
}

.btns-primary:focus {
    background: var(--Primary-500, #d42b65);
    box-shadow: 0px 0px 0px 3px #eeaac1;
}

.btns-primary:active {
    background: var(--Primary-600, #aa2251);
}

.btns-primary:disabled {
    background: var(--Primary-200, #eeaac1);
    border: 3px solid var(--Primary-200, #eeaac1);
    cursor: not-allowed;
    pointer-events: none;
}

.btns-ghost {
    background: var(--Base-White, #FFFFFF);
    color: var(--Neutral-900, #101B30);
    border: none;
}

.btns-ghost:hover {
    background: var(--Neutral-100, #F2F4F7);
    color: var(--Neutral-900, #101B30);
}

.btns-ghost:focus {
    outline: none;
    background: var(--Base-White, #FFFFFF);
    box-shadow: 0px 0px 0px 3px #eeaac1;
}

.btns-ghost:active {
    background: var(--Neutral-200, #E4E7EC);
    color: var(--Neutral-900, #101B30);
}

.btns-ghost:disabled {
    background: var(--Base-White, #FFFFFF);
    color: var(--Neutral-400, #98A2B3);
    cursor: not-allowed;
    pointer-events: none;
}

.btns-ghost-2 {
    background: var(--Primary-50, #FBEAF0);
    color: var(--Primary-500, #D42B65);
    border: 1px solid var(--Primary-300, #E580A3);
}

.btns-ghost-2:hover {
    background: var(--Primary-100, #F8D6E1);
    color: var(--Primary-600, #AA2251);
    border-color: var(--Primary-400, #EE4E86);
}

.btns-ghost-2:focus {
    outline: none;
    background: var(--Primary-50, #FBEAF0);
    box-shadow: 0px 0px 0px 3px #eeaac1;
}

.btns-ghost-2:active {
    background: var(--Primary-200, #EEAAC1);
    color: var(--Primary-600, #AA2251);
    border-color: var(--Primary-500, #D42B65);
}

.btns-ghost-2:disabled {
    background: var(--Primary-50, #FBEAF0);
    color: var(--Primary-200, #EEAAC1);
    border-color: var(--Primary-200, #EEAAC1);
    cursor: not-allowed;
    pointer-events: none;
}

.home-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 72px;
    align-items: center;
    padding-bottom: 72px;
}

.home-hero-section {
    padding-top: 23.5px;
    background-image: url(../assets/images/Images/hero-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #101B30B2;
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-widget-wrapper {
    padding: 48px 0px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
    width: 100%;
}

.growing-text-badge {
    display: flex;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #7F1A3D99;
    border: 1.33px solid #FFFFFF33;
    color: #FFFFFF;
}

.hero-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-title {
    color: #FFF;
    font-family: Public Sans;
    font-weight: 700;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
}

.hero-subtitle {
    color: #EE4E86;
    font-family: Public Sans;
    font-weight: 600;
    font-size: 52px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
}

.hero-description {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: -0.44px;
    text-align: center;
    color: #FFFFFFE5;
}

.hero-search-wrapper {
    display: flex;
    border-radius: 12px;
    width: 100%;
    max-width: 716px;
}

.hero-search-container {
    display: flex;
    padding: 11px 12px;
    align-items: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border: 1.5px solid var(--Neutral-200, #E7E8EA);
    background: var(--Base-White, #FFFFFF);
    border-right: none;
    flex-grow: 1;
}

.hero-search-inner-container {
    position: relative;
    width: 100%;
}

.hero-search-input {
    outline: none;
    border: none;
    width: 100%;
    color: var(--Neutral-900, #101B30);
    padding: 2px 10px 2px 42px;
    max-width: 350px;
}

.hero-search-image {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.hero-search-input::placeholder {
    color: var(--Neutral-900, #101B30) !important;
}

.hero-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    cursor: pointer;
    height: 54px;
    padding: 16px 24px;
    background: var(--Primary-500, #d42b65);
    color: var(--Base-White, #ffffff);
    border: none;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    max-width: 148px;
    width: 100%;
}

.hero-search-btn:hover {
    background: var(--Primary-400, #ee4e86);
}

.hero-search-btn:focus {
    background: var(--Primary-500, #d42b65);
    /* box-shadow: 0px 0px 0px 3px #eeaac1; */
}

.hero-search-btn:active {
    background: var(--Primary-600, #aa2251);
}

.hero-search-btn:disabled {
    background: var(--Primary-200, #eeaac1);
    border: 3px solid var(--Primary-200, #eeaac1);
    cursor: not-allowed;
    pointer-events: none;
}

.hero-search-hr {
    width: 1px;
    height: 100% !important;
    border-right: 1px solid var(--Neutral-200, #E7E8EA);
    margin: 0px;
    opacity: 1;
    color: unset !important;
    background-color: unset !important;
}

.location-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 3px 4px 3px 12px;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #E7E8EA;
    border-radius: 10px;
    margin-top: 4px;
    z-index: 1050;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 20px !important;
    box-sizing: border-box;
}

.custom-select-options {
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
}

.custom-select-option {
    padding: 3px 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.custom-select-option span {
    font-size: 11px;
    color: #404959;
    font-weight: 500;
}

.custom-select-option:hover {
    background: #F9FAFB;
}

.custom-select-option.selected {
    background: #F3F4F6;
}

.custom-select-option.selected span {
    color: #101B30;
    font-weight: 600;
}

.location-filter-container {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
}

#location-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.hero-popular-wrapper {
    display: flex;
    gap: 16px;
    align-items: start;
    width: 100%;
    justify-content: center;
    max-width: 732px;
}

.hero-popular-wrapper .hero-description {
    flex-shrink: 0;
}

.hero-popular-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    /* max-width: 626px;
    width: 100%; */
}

.hero-popular-badge {
    display: flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: var(--Neutral-700, #404959);
    border: 1px solid var(--Neutral-500, #888D98);
    text-decoration: none;
}

.categories-carousel-section {
    display: flex;
    width: 100%;
    justify-content: center;
    position: relative;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0px 24px;
}

.explore-card-wrapper.home-carousel {
    display: flex;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 6px 4px;
}

.explore-card-wrapper.home-carousel::-webkit-scrollbar {
    display: none;
}

.categories-card.explore-card {
    /* 5 cards visible, 4 gaps of 18px = 72px */
    flex: 0 0 calc((100% - 72px) / 5);
    backface-visibility: hidden;
    min-width: 0;
    transition: all 0.3s ease;
}

.categories-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.categories-card {
    border-radius: 16px;
    border: 1px solid var(--Neutral-100, #EFF0F2);
    background: var(--Base-White, #FFFFFF);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    cursor: pointer;
}

.categories-card .home-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1/1;
}

.categories-card .home-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.categories-carousel-section .explore-card-scroll-button {
    background: var(--Primary-500, #D42B65);
}

.categories-carousel-section .explore-card-scroll-button.prev-btn {
    left: 0px;
    transform: translateX(calc(-50% + 24px)) translateY(-50%);
    display: flex !important;
}

.categories-carousel-section .explore-card-scroll-button.next-btn {
    right: 0px;
    transform: translateX(calc(50% - 24px)) translateY(-50%);
    display: flex !important;
}

.competition-card-section {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    position: relative;
    max-width: 1382px;
    margin: 0 auto;
    padding: 0px 24px;
    flex-direction: column;
}

.competition-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.competition-title-text {
    font-family: Public Sans;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.browse-all-text-1 {
    display: flex;
    align-items: center;
    color: var(--Primary-Color, #d42b65);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.browse-all-text-1 {
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #d42b65;
    display: flex;
    gap: 8px;
    padding: 6px 0px;
    cursor: pointer;
    outline: none;
}

.browse-all-text-1 img {
    transition: transform 0.3s ease;
}

.browse-all-text-1:hover {
    color: #ee4e86;
}

.browse-all-text-1:hover img {
    transform: translateX(4px);
}

.home-competition-card {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px 25px 30px 20px;
    min-height: 244px;
    height: 100%;
    width: 100%;
    background-image: url(../assets/images/Images/competition-img.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #101B3080;
    background-blend-mode: overlay;
}

.home-competition-badge {
    opacity: 1;
    gap: 10px;
    padding: 4px 10px;
    border-radius: 8px;
    width: fit-content;
}

.home-competition-badge.ending-soon {
    background: #EE794E;
    color: white;
}

.home-competition-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
}

.home-competition-details-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.body-tiny-600 {
    font-family: Public Sans;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
}

.home-competition-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    padding: 0px 8px;
}

.today-best-deals-section {
    display: flex;
    width: 100%;
    position: relative;
    max-width: 1388px;
    margin: 0 auto;
    padding: 0px 24px;
}

.today-best-deals-wrapper {
    width: 100%;
    background-color: #101B30A6;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    background-image: url(../assets/images/Images/rose.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-blend-mode: overlay;
}

.today-deals-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 596px;
    width: 100%;
}

.sponsored-listing-section {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    position: relative;
    max-width: 1390px;
    margin: 0 auto;
    padding: 0px 24px;
    flex-direction: column;
}

.home-sponsored-row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
}

.home-sponsored-card {
    border-radius: 12px;
    border: 1px solid var(--Neutral-100, #EFF0F2);
    background: var(--Base-White, #FFFFFF);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    cursor: pointer;
    height: 100%;
    transition: all 0.3s ease;
}

.home-sponsored-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-sponsored-img-wrapper {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 290/193;
    position: relative;
}

.home-sponsored-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 290/193;
}

.new-items-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 1;
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.new-items-badge.sponsored-badge {
    background: var(--Neutral-700, #404959);
    color: var(--Base-White, #FFFFFF);
}

.new-items-badge.primary-badge {
    background: var(--Primary-500, #D42B65);
    color: var(--Base-White, #FFFFFF);
}

.new-items-badge.success-badge {
    background: var(--Secondary-600, #37A982);
    color: var(--Base-White, #FFFFFF);
}

.new-items-badge.info-badge {
    background: var(--Info-500, #225DCF);
    color: var(--Base-White, #FFFFFF);
}

.new-items-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-items-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.new-like-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-like-text {
    font-family: Public Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.special-cards-section {
    display: flex;
    width: 100%;
    gap: 24px;
    position: relative;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0px 24px;
    flex-direction: column;
}

.home-special-card {
    border-radius: 16px;
    background-color: #101B3099;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 44px;
    height: 100%;
    width: 100%;
}

.home-special-card.summer-special {
    background-image: url(../assets/images/Images/summer-special.jpg);
}

.home-special-card.entertainment-hire {
    background-image: url(../assets/images/Images/entertainment-hire.jpg);
}

.special-card-detail-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.special-card-detail-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.heading-01 {
    font-family: Public Sans;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0%;
}

.hero-popular-badge.special-badge {
    background: #40495980;
}

.home-how-it-works-section {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    position: relative;
    max-width: 1388px;
    margin: 0 auto;
    padding: 0px 24px;
    flex-direction: column;
}

.home-how-rentsy-works-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background: var(--Base-White, #FFFFFF);
    width: 100%;
}

.home-how-rentsy-works-card-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 32px 24px 32px;
    border: 1px solid var(--Neutral-100, #EFF0F2);
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    width: 100%;
}

.home-how-it-works-img-wrapper {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: #101B3099;
    background-image: url(../assets/images/Images/rose.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-blend-mode: overlay;
    width: 100%;
    aspect-ratio: 1340/482;
    overflow: hidden;
}

/* When video player is inside, reset background and aspect ratio */
.home-how-it-works-img-wrapper:has(.video-element-wrapper) {
    background-image: none;
    background-color: #d42b65;
    /* aspect-ratio: 16/9; */
}

.home-how-it-works-img-wrapper .video-element-wrapper {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
    min-width: unset;
}

.home-how-it-works-img-wrapper .video-element-wrapper .video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    display: block;
    background-color: #d42b65;
    ;
}

.home-how-it-works-img-wrapper .video-element-wrapper .main-play-pause-icon {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.home-how-it-works-img-wrapper .video-element-wrapper .video-element-controls {
    width: calc(100% - 48px);
    left: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.home-how-it-works-img-wrapper .video-element-wrapper:hover .main-play-pause-icon,
.home-how-it-works-img-wrapper .video-element-wrapper:hover .video-element-controls,
.home-how-it-works-img-wrapper .video-element-wrapper.v-paused .main-play-pause-icon,
.home-how-it-works-img-wrapper .video-element-wrapper.v-paused .video-element-controls,
.home-how-it-works-img-wrapper .video-element-wrapper.v-settings-open .main-play-pause-icon,
.home-how-it-works-img-wrapper .video-element-wrapper.v-settings-open .video-element-controls {
    opacity: 1 !important;
    pointer-events: auto !important;
}


.home-how-it-works-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFFFFFCC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.home-how-it-works-play img {
    width: 32px;
    height: 32px;
}

.home-how-rentsy-works-card-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-how-rentsy-works-card-badges-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.home-how-it-works-badge {
    display: flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: var(--Neutral-100, #EFF0F2);
    border: 1px solid var(--Neutral-200, #E7E8EA);
}

.new-home-info-banner-section {
    width: 100%;
    background: var(--Primary-500, #D42B65);
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-home-info-banner-wrapper {
    padding: 58px 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1348px;
}

.new-home-info-banner-text {
    font-family: Public Sans;
    font-weight: 700;
    font-size: 42px;
    line-height: 58px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}

.new-home-info-banner-hr {
    width: 1px;
    height: 96px !important;
    border-left: 1px solid var(--Primary-400, #EE4E86);
    opacity: 1;
    margin: 0px;
    padding: 0px;
    color: unset;
    background-color: unset;
}

.today-deals-details.for-organizations {
    max-width: 785px;
}

.enter-now-text {
    font-family: Public Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

.cursor-pointer {
    cursor: pointer;
}

.what-customers-say-section {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px;
    position: relative;
    max-width: 1368px;
    margin: 0 auto;
    padding: 0px 24px;
    flex-direction: column;
}

.home-review-card {
    border-radius: 12px;
    border: 1px solid var(--Neutral-100, #EFF0F2);
    background: var(--Base-White, #FFFFFF);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    cursor: pointer;
    height: 100%;
}

.home-review-card.active {
    background: var(--Primary-400, #EE4E86);
}

.home-review-stars-container {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-review-stars-container img {
    width: 16px;
    height: 16px;
}

.home-review-text {
    color: #404959;
}

.home-review-card.active .home-review-text {
    color: var(--Base-White, #FFF);
}

.home-review-profile-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home-review-profile-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-review-profile-img-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Neutral-900, #101B30);
    font-family: Public Sans;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
}

.home-review-card.active .home-review-profile-img-wrapper {
    background: var(--Base-White, #FFF);
}

.rule-dot {
    display: flex;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #707683;
}

.home-review-profile-text-1 {
    font-family: Public Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: var(--Neutral-900, #101B30);
}

.home-review-profile-text-2 {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Neutral-600, #707683);
}

.home-review-card.active .home-review-profile-text-1 {
    color: var(--Base-White, #FFF);
}

.home-review-card.active .home-review-profile-text-2 {
    color: var(--Neutral-200, #E7E8EA);
}

.home-review-card.active .rule-dot {
    background: var(--Neutral-200, #E7E8EA);
}

.hero-search-inner-container {
    position: relative;
    max-width: unset !important;
    flex-grow: 1;
}

.hero-form-control {
    border: none !important;
    /* background: transparent url('../../front/assets/images/icons/Search.svg') no-repeat center left !important; */
    background-size: 24px !important;
    padding: 2px 70px 2px 36px !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
}

.svg .hero-form-control:focus {
    box-shadow: none !important;
}

.hero-search-inner-container .visual-search-btn,
.hero-search-inner-container .voice-search-btn {
    z-index: 10;
}

.home-review-badge {
    display: flex;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: var(--Primary-50, #FBEAF0);
    color: var(--Primary-500, #D42B65);
}

.banner-desc p {
    color: inherit !important;
}

/* ===== TABLET LANDSCAPE / SMALL DESKTOP (≤1200px) ===== */
@media (max-width: 1200px) {
    .home-main-wrapper {
        gap: 56px;
        padding-bottom: 56px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 42px;
    }

    .competition-title-text {
        font-size: 28px;
        line-height: 36px;
    }

    .home-special-card {
        padding: 32px;
        gap: 28px;
    }

    .heading-01 {
        font-size: 28px;
        line-height: 36px;
    }

    .new-home-info-banner-text {
        font-size: 36px;
        line-height: 48px;
    }

    .today-best-deals-wrapper {
        padding: 28px 36px;
    }
}

/* ===== TABLET PORTRAIT (≤992px) ===== */
@media (max-width: 992px) {
    .home-main-wrapper {
        gap: 48px;
        padding-bottom: 48px;
    }

    .categories-card.explore-card {
        /* 4 cards visible, 3 gaps of 18px = 54px */
        flex: 0 0 calc((100% - 54px) / 4);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-widget-wrapper {
        padding: 36px 0px;
        gap: 24px;
    }

    .hero-search-wrapper {
        /* flex-direction: column; */
        max-width: 520px;
    }

    /* .hero-search-container {
        border-right: 1.5px solid var(--Neutral-200, #E7E8EA);
    } */

    .hero-search-btn {
        padding: 16px 16px;
        max-width: fit-content;
    }

    .hero-search-btn span {
        display: none;
    }

    .hero-search-input {
        max-width: 100%;
    }

    .competition-title-text {
        font-size: 26px;
        line-height: 34px;
    }

    .today-best-deals-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 24px 28px;
    }

    .home-special-card {
        flex-direction: column;
        padding: 28px;
        gap: 20px;
    }

    .home-how-rentsy-works-card-details {
        padding: 24px 24px 20px 24px;
    }

    .new-home-info-banner-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 24px;
        gap: 20px;
    }

    .new-home-info-banner-hr {
        height: 60px !important;
    }

    .new-home-info-banner-text {
        font-size: 32px;
        line-height: 42px;
    }

    .home-how-it-works-img-wrapper {
        aspect-ratio: 16/9;
    }

    .home-how-it-works-play {
        width: 80px;
        height: 80px;
    }

    .home-how-it-works-play img {
        width: 28px;
        height: 28px;
    }

    .heading-01 {
        font-size: 26px;
        line-height: 34px;
    }

    .home-review-card {
        gap: 20px;
        padding: 20px;
    }

    .custom-select-dropdown {
        padding: 16px !important;
    }

    .location-filter-container {
        min-width: 150px;
    }
}

/* ===== MOBILE LANDSCAPE / SMALL TABLET (≤768px) ===== */
@media (max-width: 768px) {

    .custom-select-dropdown {
        padding: 14px !important;
    }

    .location-filter-container {
        min-width: 120px;
    }

    .home-main-wrapper {
        gap: 40px;
        padding-bottom: 40px;
    }

    .explore-card-wrapper.home-carousel {
        gap: 16px;
    }

    .categories-card.explore-card {
        /* 3 cards visible, 2 gaps of 16px = 32px */
        flex: 0 0 calc((100% - 32px) / 3);
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 26px;
    }

    .hero-widget-wrapper {
        padding: 32px 16px;
        gap: 20px;
    }

    .hero-popular-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-popular-container {
        gap: 8px;
    }

    .hero-popular-badge {
        padding: 4px 14px;
    }

    .competition-card-section,
    .sponsored-listing-section,
    .special-cards-section,
    .home-how-it-works-section,
    .what-customers-say-section,
    .today-best-deals-section,
    .categories-carousel-section {
        padding: 0px 16px;
    }

    .competition-title-text {
        font-size: 24px;
        line-height: 32px;
    }

    .home-competition-card {
        min-height: 220px;
        padding: 14px 20px 24px 16px;
    }

    .today-best-deals-wrapper {
        padding: 20px 24px;
        gap: 20px;
    }

    .today-deals-details h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .home-special-card {
        padding: 24px;
        gap: 16px;
    }

    .heading-01 {
        font-size: 24px;
        line-height: 32px;
    }

    .home-how-rentsy-works-card-details {
        padding: 20px 16px 16px 16px;
        gap: 16px;
    }

    .home-how-it-works-img-wrapper {
        aspect-ratio: 16/9;
    }

    .new-home-info-banner-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 32px 16px;
        gap: 24px;
    }

    .new-home-info-banner-hr {
        width: 100%;
        height: 1px !important;
        border-left: none;
        border-top: 1px solid var(--Primary-400, #EE4E86);
    }

    .new-home-info-banner-text {
        font-size: 28px;
        line-height: 38px;
    }

    .subtitle-xs {
        font-size: 16px;
        line-height: 20px;
    }

    .home-review-card {
        gap: 16px;
        padding: 16px;
    }

    .categories-carousel-section .explore-card-scroll-button {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .categories-carousel-section .explore-card-scroll-button.prev-btn {
        left: 4px;
        transform: translateY(-50%);
    }

    .categories-carousel-section .explore-card-scroll-button.next-btn {
        right: 4px;
        transform: translateY(-50%);
    }

    .home-how-it-works-play {
        width: 64px;
        height: 64px;
    }

    .home-how-it-works-play img {
        width: 24px;
        height: 24px;
    }

    .home-sponsored-card {
        gap: 12px;
        padding: 12px;
    }

    .home-review-profile-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-search-input {
        padding: 2px 6px 2px 30px;
        background-size: 20px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .hero-search-container {
        padding: 8px 10px;
    }

    .location-filter-container p {
        font-size: 12px;
        white-space: nowrap;
    }

    .location-filter-container img {
        width: 16px;
        height: 16px;
    }

    .location-filter-wrapper {
        gap: 6px;
        padding: 2px 4px;
    }

    .location-filter-wrapper>img {
        width: 14px;
        height: 14px;
    }

    .hero-form-control {
        background-size: 20px !important;
        padding-left: 30px !important;
        padding-right: 50px !important;
    }

    .hero-search-inner-container .visual-search-btn img,
    .hero-search-inner-container .voice-search-btn img,
    .hero-search-inner-container .visual-search-btn svg,
    .hero-search-inner-container .voice-search-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .hero-search-inner-container .visual-search-btn {
        right: 25px !important;
    }

    .hero-search-inner-container .voice-search-btn {
        right: 6px !important;
    }

    .hero-search-btn img {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ===== MOBILE PORTRAIT (≤576px) ===== */
@media (max-width: 576px) {

    .hero-form-control {
        background-size: 20px !important;
        padding-left: 26px !important;
        padding-right: 50px !important;
    }

    .home-competition-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sponsored-listing-section {
        align-items: unset;
    }

    .custom-select-dropdown {
        padding: 12px !important;
    }

    .location-filter-container {
        min-width: 100px;
    }

    .explore-card-wrapper.home-carousel {
        padding: 4px;
    }

    .home-main-wrapper {
        gap: 32px;
        padding-bottom: 32px;
    }

    .explore-card-wrapper.home-carousel {
        gap: 12px;
    }

    .categories-card.explore-card {
        /* 2 cards visible, 1 gap of 12px */
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 22px;
    }

    .growing-text-badge {
        padding: 7px 14px;
        font-size: 12px;
    }

    .hero-widget-wrapper {
        padding: 24px 12px;
        gap: 16px;
    }

    .hero-text-group {
        gap: 10px;
    }

    .hero-search-wrapper {
        max-width: 100%;
    }

    .hero-popular-badge {
        padding: 4px 12px;
        font-size: 12px;
    }

    .competition-card-section,
    .sponsored-listing-section,
    .special-cards-section,
    .home-how-it-works-section,
    .what-customers-say-section,
    .today-best-deals-section,
    .categories-carousel-section {
        padding: 0px 12px;
    }

    .competition-title-text {
        font-size: 22px;
        line-height: 28px;
    }

    .competition-title-wrapper {
        gap: 8px;
    }

    .home-competition-card {
        min-height: 200px;
        padding: 12px 16px 20px 14px;
        gap: 14px;
    }

    .home-competition-details-wrapper {
        gap: 16px;
    }

    .home-competition-details-container {
        gap: 8px;
    }

    .today-best-deals-wrapper {
        padding: 16px;
        gap: 16px;
        border-radius: 12px;
    }

    .today-deals-details h1 {
        font-size: 20px;
        line-height: 28px;
    }

    .today-deals-details.for-organizations {
        max-width: 100%;
    }

    .btn-giant {
        height: 46px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .home-special-card {
        padding: 20px;
        gap: 14px;
        border-radius: 12px;
    }

    .heading-01 {
        font-size: 22px;
        line-height: 28px;
    }

    .home-how-rentsy-works-card-details {
        padding: 16px 12px 14px 12px;
        gap: 14px;
    }

    .home-how-it-works-img-wrapper {
        aspect-ratio: 16/9;
    }

    .home-how-it-works-play {
        width: 56px;
        height: 56px;
    }

    .home-how-it-works-play img {
        width: 20px;
        height: 20px;
    }

    .home-how-rentsy-works-card-details-wrapper h1 {
        font-size: 18px;
        line-height: 24px;
    }

    .home-how-rentsy-works-card-badges-wrapper {
        gap: 8px;
    }

    .home-how-it-works-badge {
        padding: 4px 14px;
        font-size: 12px;
    }

    .new-home-info-banner-wrapper {
        padding: 24px 12px;
        gap: 20px;
    }

    .new-home-info-banner-text {
        font-size: 24px;
        line-height: 32px;
    }

    .subtitle-xs {
        font-size: 14px;
        line-height: 18px;
    }

    .home-sponsored-card {
        gap: 10px;
        padding: 10px;
    }

    .home-review-card {
        gap: 14px;
        padding: 14px;
    }

    .home-review-profile-img-wrapper {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .categories-carousel-section .explore-card-scroll-button {
        width: 36px;
        height: 36px;
        padding: 8px;
    }

    .categories-carousel-section .explore-card-scroll-button.prev-btn {
        left: 2px;
        transform: translateY(-50%);
    }

    .categories-carousel-section .explore-card-scroll-button.next-btn {
        right: 2px;
        transform: translateY(-50%);
    }

    .categories-card {
        padding: 12px;
        gap: 12px;
        border-radius: 12px;
    }

    .location-filter-wrapper {
        padding: 2px 3px;
        gap: 4px;
    }

    .location-filter-wrapper>img {
        width: 12px;
        height: 12px;
    }

    .location-filter-container p {
        font-size: 11px;
    }

    .location-filter-container img {
        width: 14px;
        height: 14px;
    }

    .location-filter-container {
        gap: 4px;
    }

    .hero-search-input {
        padding: 2px 4px 2px 32px;
        font-size: 14px;
    }

    .hero-search-image {
        left: 0px;
        width: 22px;
        height: 22px;
    }

    .hero-search-container {
        padding: 6px 8px;
    }

    .hero-search-btn {
        height: 46px;
        padding: 12px 12px;
    }

    .browse-all-text-1 {
        font-size: 13px;
    }

    .home-review-badge {
        padding: 4px 14px;
    }

    .enter-now-text {
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .home-how-it-works-img-wrapper .video-element-wrapper .video-element-controls {
        width: calc(100% - 24px);
        gap: 6px;
        left: 12px;
        bottom: 10px;
    }

    .hero-search-btn span {
        display: none;
    }

    .hero-search-btn {
        max-width: 46px;
        padding: 10px;
        height: 46px;
    }

    .location-filter-container {
        min-width: unset;
        gap: 2px;
    }

    #location-text {
        max-width: 70px;
    }

    .hero-search-input {
        padding: 2px 4px 2px 28px;
    }

    .hero-search-image {
        left: 0px;
        width: 20px;
        height: 20px;
    }

    .hero-search-container {
        padding: 4px 6px;
    }
}