:root {
    --tom-primary: #007799;
    --tom-primary-hover: #005886;
    --tom-primary-text: #ffffff;
}

/*
=========================================================
SEARCH FORM
=========================================================
*/

#tom-search-form,
#tom-search-form * {
    box-sizing: border-box;
}

#tom-search-form .tom-search-grid {
    display: grid;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}

#tom-search-form .tom-search-grid > div {
    min-width: 0;
}

#tom-search-form .tom-search-grid p {
    margin: 0 0 10px;
}

#tom-search-form .tom-search-box select,
#tom-search-form .tom-search-box input[type="text"],
#tom-search-form .tom-search-box input[type="date"] {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 10px;
    box-sizing: border-box;
    cursor: pointer;
    font: inherit;
}

/*
=========================================================
SEARCH BUTTON — WHATSAPP REQUEST STYLE
=========================================================
*/

#tom-search-form .tom-search-box button.tom-search-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-width: 110px;
    min-height: 48px;

    padding: 0 20px;
    margin-top: 22px;

    border: 0;
    border-radius: 3px 30px 30px 3px;

    background: var(--tom-primary);
    color: var(--tom-primary-text);

    font-size: 19px;
    cursor: pointer;

    transition:
        background 0.35s ease,
        transform 0.2s ease;
}

#tom-search-form .tom-search-box button.tom-search-icon-button:hover {
    background: var(--tom-primary-hover);
    color: var(--tom-primary-text);
    transform: translateX(3px);
}

#tom-search-form .tom-search-box button.tom-search-icon-button:active {
    transform: translateX(0);
}

#tom-search-form .tom-search-icon-button i {
    line-height: 1;
}

.tom-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

#tom-search-form .tom-date-time-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(0, 1.7fr);
    gap: 8px;
    align-items: end;
    width: 100%;
}

#tom-search-form .tom-date-time-field {
    min-width: 0;
    margin: 0;
}

#tom-search-form .tom-date-time-field label {
    display: block;
    margin-bottom: 0;
}

#tom-search-form .tom-date-time-field input,
#tom-search-form .tom-date-time-field select {
    width: 100%;
    height: 48px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

#tom-search-form .tom-one-way-section {
    margin-top: 15px;
}

#tom-search-form .tom-one-way-section label {
    font-weight: 500;
}

#tom-search-form .tom-one-way-note {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.8;
}

#tom-search-form .tom-slot-note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

#tom-search-form #tom_dropoff_wrapper {
    margin-top: 10px;
    max-width: 350px;
}

#tom-search-form #tom_dropoff_wrapper select {
    width: 100%;
    min-height: 48px;
}

@media (min-width: 901px) {

    #tom-search-form .tom-search-grid {
    grid-template-columns:
    minmax(210px, 0.95fr)  /* Location */
    minmax(240px, 1.30fr)  /* Pickup */
    minmax(240px, 1.30fr)  /* Dropoff */
    minmax(125px, 0.55fr); /* Button */
        gap: 16px;
    }
}

@media (min-width: 701px) and (max-width: 900px) {

    #tom-search-form .tom-search-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 700px) {

    #tom-search-form .tom-search-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    #tom-search-form .tom-date-time-row {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(0, 1.8fr);
        gap: 7px;
    }

    #tom-search-form .tom-date-time-field input {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 14px;
    }

    #tom-search-form .tom-date-time-field select {
        padding-left: 8px;
        padding-right: 26px;
        font-size: 14px;
    }

    #tom-search-form .tom-search-box button {
        width: 100%;
        margin-top: 0;
    }

    #tom-search-form #tom_dropoff_wrapper {
        max-width: none;
    }
}



/*
=========================================================
SEARCH SUMMARY
=========================================================
*/

.tom-search-summary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tom-search-summary .tom-summary-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fafafa;
    box-sizing: border-box;
}

.tom-search-summary .tom-summary-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.tom-search-summary .tom-summary-title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.tom-search-summary .tom-summary-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
}

.tom-search-summary .tom-summary-row > i {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 3px;
    color: var(--tom-primary);
    text-align: center;
}

.tom-search-summary .tom-summary-row > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.tom-search-summary .tom-summary-date-time > span {
    white-space: nowrap;
}

.tom-search-summary .tom-summary-time {
    display: inline;
    margin-left: 4px;
}

@media (max-width: 850px) {

    .tom-search-summary .tom-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .tom-search-summary .tom-summary-column:nth-child(3) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {

    .tom-search-summary .tom-summary-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .tom-search-summary .tom-summary-column:nth-child(3) {
        grid-column: auto;
    }

    .tom-search-summary .tom-summary-column {
        width: 100%;
    }
}

/*
=========================================================
RESULTS PAGE
=========================================================
*/

.tom-results,
.tom-results * {
    box-sizing: border-box;
}

.tom-results {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tom-results .tom-results-vehicles {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 20px;
}

.tom-results .tom-results-vehicle-card {
    display: grid;
    grid-template-columns:
        28fr
        27fr
        20fr
        25fr;
    grid-template-areas:
        "photo info features price";
    gap: 20px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.tom-results .tom-results-vehicle-card > div,
.tom-results .tom-vehicle-info,
.tom-results .tom-vehicle-features,
.tom-results .tom-vehicle-price,
.tom-results .tom-vehicle-advantages,
.tom-results .tom-advantages-summary {
    min-width: 0;
    max-width: 100%;
}

/* Ajuste texto or similar */
.tom-results .tom-vehicle-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.tom-results .tom-vehicle-title-row h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1;
}

.tom-results .tom-or-similar {
    font-size: 18px;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 700px) {

    .tom-results .tom-vehicle-title-row {
        flex-direction: row;
        align-items: baseline;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .tom-results .tom-vehicle-title-row h3 {
        font-size: 25px;
        white-space: nowrap;
    }

    .tom-results .tom-or-similar {
        white-space: nowrap;
    }
}

/*
=========================================================
RESULTS — VEHICLE IMAGES
=========================================================
*/

.tom-results .tom-vehicle-images {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 8px;
    align-items: center;
}

/* Solo imagen principal */
.tom-results .tom-vehicle-images:not(.has-secondary):not(.has-third) {
    grid-template-columns: 1fr;
}

/* Imagen principal y una imagen adicional */
.tom-results .tom-vehicle-images.has-secondary:not(.has-third),
.tom-results .tom-vehicle-images.has-third:not(.has-secondary) {
    grid-template-columns: minmax(0, 2fr) minmax(85px, 1fr);
}

/* Tres imágenes */
.tom-results .tom-vehicle-images.has-secondary.has-third {
    grid-template-columns: minmax(0, 2fr) minmax(85px, 1fr);
    grid-template-rows: 1fr 1fr;
}

.tom-results
.tom-vehicle-images.has-secondary.has-third
.tom-vehicle-image-main {
    grid-row: 1 / 3;
}

.tom-results .tom-vehicle-image-main,
.tom-results .tom-vehicle-image-secondary,
.tom-results .tom-vehicle-image-third {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.tom-results .tom-vehicle-images img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.tom-results .tom-vehicle-image-main img {
    max-height: 190px;
}

.tom-results .tom-vehicle-image-secondary img,
.tom-results .tom-vehicle-image-third img {
    max-height: 90px;
}

@media (max-width: 700px) {

    .tom-results .tom-vehicle-images {
        gap: 6px;
    }

    .tom-results .tom-vehicle-images.has-secondary.has-third {
        grid-template-columns:
            minmax(0, 2fr)
            minmax(75px, 1fr);
    }

    .tom-results .tom-vehicle-image-main img {
        max-height: 150px;
    }

    .tom-results .tom-vehicle-image-secondary img,
    .tom-results .tom-vehicle-image-third img {
        max-height: 70px;
    }
}

.tom-results .tom-vehicle-info {
    grid-area: info;
}

.tom-results .tom-vehicle-features {
    grid-area: features;
    display: flex;
    flex-direction: column;
}

.tom-results .tom-vehicle-price {
    grid-area: price;
    display: block;
    text-align: right;
}

.tom-results .tom-vehicle-photo img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    max-height: 190px;
    object-fit: contain;
}

.tom-results .tom-vehicle-info h4 {
    margin: 0 0 6px;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.tom-results .tom-or-similar {
    display: block;
    margin-top: 2px;
    color: #777;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.tom-results .tom-transmission,
.tom-results .tom-vehicle-meta {
    margin: 0 0 5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.tom-results .tom-transmission {
    font-weight: 700;
}

.tom-results .tom-vehicle-meta:last-child {
    margin-bottom: 0;
}

.tom-results .tom-vehicle-advantages {
    padding: 12px;
    border-radius: 8px;
    background: #f8f8f8;
}

.tom-results .tom-vehicle-advantages p {
    margin: 0 0 3px;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.tom-results .tom-vehicle-advantages p:last-child {
    margin-bottom: 0;
}

.tom-results .tom-advantages-summary {
    margin-top: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

/*
=========================================================
RESULTS PRICE
=========================================================
*/

.tom-results .tom-price-columns {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(105px, 0.75fr);
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.tom-results .tom-price-breakdown,
.tom-results .tom-price-summary {
    min-width: 0;
}

.tom-results .tom-price-breakdown {
    text-align: left;
}

.tom-results .tom-price-summary {
    align-self: end;
    text-align: right;
}

.tom-results .tom-price-day {
    margin: 0 0 18px;
    font-weight: 500;
    line-height: 1;
}

.tom-results .tom-price-rental,
.tom-results .tom-price-surcharge,
.tom-results .tom-price-oneway {
    margin: 0 0 4px;
    font-size: 13px;
    line-height: 1.2;
}

.tom-results .tom-price-total {
    margin: 0 0 4px;
    line-height: 1;
    overflow-wrap: anywhere;
}

.tom-results .tom-price-total-suffix {
    margin: 0 0 8px;
    font-weight: 500;
    line-height: 1.15;
}

.tom-results .tom-price-days {
    margin: 0;
    line-height: 1.15;
}

.tom-results .tom-price-breakdown p,
.tom-results .tom-price-summary p {
    margin-top: 0;
}

.tom-results .tom-vehicle-price .tom-whatsapp-request {
    display: block;
    width: 100%;
    max-width: none;
    margin-top: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
}

/*
=========================================================
RESULTS RESPONSIVE
=========================================================
*/

@media (max-width: 1100px) {

    .tom-results .tom-results-vehicle-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        grid-template-areas:
            "photo info"
            "features price";
    }

    .tom-results .tom-vehicle-photo img {
        max-width: 320px;
        max-height: 220px;
    }

    .tom-results .tom-results-vehicle-card > div {
        min-height: 0;
    }
}

@media (max-width: 850px) {

    .tom-results .tom-results-vehicle-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
        grid-template-areas:
            "photo info"
            "features features"
            "price price";
    }

    .tom-results .tom-vehicle-price {
        text-align: center;
    }
}

@media (max-width: 700px) {

    .tom-results {
        overflow-x: hidden;
    }

    .tom-results .tom-results-vehicle-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "photo"
            "info"
            "features"
            "price";
        gap: 0;
        padding: 0;
        margin-bottom: 18px;
        border-radius: 12px;
        box-shadow: 0 5px 16px rgba(0, 0, 0, 0.09);
    }

    .tom-results .tom-results-vehicle-card > div {
        width: 100%;
        border-left: 0 !important;
        border-right: 0 !important;
    }

    .tom-results .tom-results-vehicle-card > div + div {
        border-top: 1px solid #e5e5e5;
    }

    .tom-results .tom-vehicle-photo {
        padding: 10px 14px;
    }

    .tom-results .tom-vehicle-info {
        padding: 12px;
        text-align: left;
    }

    .tom-results .tom-vehicle-features,
    .tom-results .tom-vehicle-price {
        padding: 12px 14px;
    }

    .tom-results .tom-vehicle-features {
        text-align: left;
    }

    .tom-results .tom-vehicle-price {
        text-align: center;
    }

    .tom-results .tom-vehicle-photo img {
        width: 100%;
        max-width: 300px;
        max-height: 165px;
    }

    .tom-results .tom-vehicle-advantages p {
        margin-bottom: 6px;
        line-height: 1.35;
    }

    .tom-results .tom-advantages-summary {
        margin-top: 8px;
        line-height: 1.35;
    }

    .tom-results .tom-price-columns {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(100px, 0.8fr);
        gap: 10px;
    }

    .tom-results .tom-price-breakdown {
        text-align: left;
    }

    .tom-results .tom-price-summary {
        text-align: right;
    }

    .tom-results .tom-price-breakdown p,
    .tom-results .tom-price-summary p {
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .tom-results .tom-vehicle-price .tom-whatsapp-request {
        margin-top: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 480px) {

    .tom-results .tom-search-title {
        font-size: 24px;
    }

    .tom-results h3 {
        overflow-wrap: anywhere;
    }

    .tom-results .tom-summary-column,
    .tom-results .tom-vehicle-photo,
    .tom-results .tom-vehicle-info,
    .tom-results .tom-vehicle-features,
    .tom-results .tom-vehicle-price {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tom-results .tom-vehicle-photo img {
        max-height: 190px;
    }

    .tom-results .tom-price-total {
        font-size: 28px;
    }
}

/*
=========================================================
WHATSAPP MODAL
=========================================================
*/

#tom-whatsapp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}

.tom-whatsapp-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    overflow-y: auto;
    box-sizing: border-box;
}

#tom-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 24px;
}

#tom_customer_name,
#tom_customer_phone {
    width: 100%;
    box-sizing: border-box;
}

#tom_accommodation_suggestions {
    position: absolute;
    z-index: 9999;
    width: 100%;
    max-height: 200px;
    border: 1px solid #ccc;
    background: #fff;
    overflow-y: auto;
    box-sizing: border-box;
}

.tom-suggestion {
    padding: 8px;
    cursor: pointer;
}

.tom-suggestion:hover {
    background: #f2f2f2;
}

.tom-booking-info {
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid var(--tom-primary);
    border-radius: 4px;
    background: #f7f7f7;
    font-size: 14px;
    line-height: 1.5;
}

.tom-whatsapp-request {
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 30px 0 0 30px;
    background: var(--tom-primary);
    color: var(--tom-primary-text);
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.35s ease,
        transform 0.2s ease;
}

.tom-whatsapp-request:hover {
    background: var(--tom-primary-hover);
    color: var(--tom-primary-text);
    transform: translateX(-3px);
}

.tom-whatsapp-button {
    width: 100%;
    padding: 14px 20px;
    border: 0;
    border-radius: 30px 30px 0 0;
    background: var(--tom-primary);
    color: var(--tom-primary-text);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.tom-whatsapp-button:hover {
    border-radius: 30px;
    background: var(--tom-primary-hover);
    transform: translateY(-3px);
}

.tom-whatsapp-button:disabled {
    background: #9aa0a6;
    cursor: not-allowed;
    opacity: 0.8;
}

@media (max-width: 700px) {

    #tom-whatsapp-modal {
        align-items: flex-start;
        padding: 14px;
        overflow-y: auto;
    }

    .tom-whatsapp-modal-content {
        width: 100%;
        max-width: 420px;
        max-height: calc(100vh - 32px);
        margin: 16px auto;
        padding: 18px 16px;
        border-radius: 12px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .tom-whatsapp-modal-content input[type="text"],
    .tom-whatsapp-modal-content input[type="tel"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .tom-whatsapp-modal-content h3,
    .tom-whatsapp-modal-content h4,
    .tom-whatsapp-modal-content p,
    .tom-whatsapp-modal-content label {
        overflow-wrap: anywhere;
    }

    #tom_continue_whatsapp {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    #tom-whatsapp-modal {
        padding: 8px;
    }

    .tom-whatsapp-modal-content {
        max-width: none;
        max-height: calc(100vh - 16px);
        margin: 8px auto;
        padding: 16px 14px;
    }
}

/*
=========================================================
VEHICLES LISTING — PRICING SHORTCODE
=========================================================
*/

.tom-season-global {
    margin-bottom: 20px;
    color: red;
    font-size: 15px;
}

.tom-vehicles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tom-vehicle-card {
    display: grid;
    grid-template-columns:
        minmax(100px, 15%)
        minmax(180px, 25%)
        minmax(0, 1fr);
    gap: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #fff;
}

.tom-vehicle-card .tom-vehicle-col {
    min-width: 0;
}

.tom-vehicle-card .tom-vehicle-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.tom-vehicle-card .tom-vehicle-info h3 {
    margin-bottom: 0;
}

.tom-vehicle-card .tom-transmission {
    font-weight: 500;
}

.tom-season-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.tom-season-modal-content {
    position: relative;
    max-width: 400px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
}

.tom-season-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.tom-season-info-icon {
    margin-left: 6px;
    color: inherit;
    cursor: pointer;
    font-size: 15px;
}

.tom-vehicle-pricing table.matrix {
    width: 100%;
    border-collapse: collapse;
}

.tom-vehicle-pricing th,
.tom-vehicle-pricing td {
    padding: 6px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 13px;
}

.tom-vehicle-pricing th {
    background: #f7f7f7;
    font-weight: 600;
}

.tom-mobile-pricing {
    display: none;
}

@media (max-width: 768px) {

    .tom-vehicle-card {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 10px;
    }

    .tom-vehicle-card .tom-vehicle-image {
        grid-column: 1;
        grid-row: 1;
    }

    .tom-vehicle-card .tom-vehicle-info {
        grid-column: 1 / span 2;
        grid-row: 2;
    }

    .tom-vehicle-card .tom-vehicle-pricing {
        grid-column: 1 / span 2;
        grid-row: 3;
    }

    .tom-vehicle-card .tom-vehicle-image img {
        width: 80px;
    }

    .tom-vehicle-card .tom-vehicle-pricing table.matrix {
        display: none;
    }

    .tom-vehicle-card .tom-mobile-pricing {
        display: block;
    }

    .tom-vehicle-card .tom-mobile-pricing table {
        width: 100%;
        border-collapse: collapse;
    }

    .tom-vehicle-card .tom-mobile-pricing th,
    .tom-vehicle-card .tom-mobile-pricing td {
        padding: 6px;
        border-bottom: 1px solid #eee;
        font-size: 13px;
    }

    .tom-vehicle-card .tom-mobile-pricing th {
        background: #f7f7f7;
    }
}

/*
=========================================================
NEW SEARCH BUTTON
=========================================================
*/

.tom-results-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.tom-new-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 6px;
    background: var(--tom-primary);
    color: var(--tom-primary-text) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.tom-new-search-button:hover {
    background: #000022;
    color: var(--tom-primary-text) !important;
    text-decoration: none;
}