/* ===================================
   PCfitment YMM Search - Base Styles
   All selectors are scoped under .pcfitment-ymm-search
   to prevent CSS leaks.
   =================================== */

/* ===================================
   Search Form
   =================================== */
.pcfitment-ymm-search.vehicle-search-form {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 !important;
    background-color: transparent;
}

.pcfitment-ymm-search .search-bar {
    display: flex;
    align-items: stretch;
    background: #f9f9f9;
    border: 1px solid #ddd;
    overflow: hidden;
}

.pcfitment-ymm-search .select-wrapper {
    flex: 1;
    position: relative;
    border-right: 1px solid #ddd;
}

.pcfitment-ymm-search .select-wrapper:last-of-type {
    border-right: none;
}

.pcfitment-ymm-search .custom-select {
    width: 100%;
    padding: 18px 40px 18px 20px;
    font-size: 16px;
    color: #333;
    background: transparent;
    border: none;
    border-radius: 0 !important;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.pcfitment-ymm-search .custom-select:focus {
    background: #fff;
}

.pcfitment-ymm-search .select-wrapper::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #555;
}

.pcfitment-ymm-search .custom-select option:disabled {
    color: #999;
}

.pcfitment-ymm-search .search-btn {
    padding: 0 50px;
    background: var(--pcfitment-primary, #1a1a2e);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: filter 0.3s ease;
    border-radius: 0;
}

.pcfitment-ymm-search .search-btn:hover {
    background: var(--pcfitment-primary, #1a1a2e) !important;
    filter: brightness(0.85);
}

.pcfitment-ymm-search .search-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    background-color: #999 !important;
    pointer-events: none;
}

.pcfitment-ymm-search[data-mode="results"] {
    margin-bottom: 15px !important;
}

/* Search Form Responsive */
@media (max-width: 1024px) {
    .pcfitment-ymm-search .search-bar {
        flex-direction: column;
    }

    .pcfitment-ymm-search .select-wrapper {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .pcfitment-ymm-search .select-wrapper:last-of-type {
        border-bottom: none;
    }

    .pcfitment-ymm-search .search-btn {
        padding: 18px;
    }
}

/* ===================================
   Spinner / Loader
   =================================== */
.ymm-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--pcfitment-primary, #1a1a2e);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: pcfitment-spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes pcfitment-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===================================
   Results Grid
   =================================== */
.pcfitment-ymm-search.custom-products-grid {
    max-width: 1200px;
    margin: 0;
    padding: 0;
}

.pcfitment-ymm-search .ymm-results-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    margin-top: 30px;
}

.pcfitment-ymm-search .ymm-results-count {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.pcfitment-ymm-search .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.pcfitment-ymm-search .product-item {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.pcfitment-ymm-search .product-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pcfitment-ymm-search .product-image-link {
    display: block;
    text-decoration: none;
}

.pcfitment-ymm-search .product-image {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.pcfitment-ymm-search .product-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.pcfitment-ymm-search .product-info {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.pcfitment-ymm-search .product-title {
    margin: 0 !important;
}

.ymm-container.mdtp-results-wrapper .product-title {
    margin-top: 0;
    font-size: 16px;
}

.pcfitment-ymm-search .product-title,
.pcfitment-ymm-search .product-title a {
    font-size: 15px;
    font-weight: 600;
    color: #333 !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none !important;
}

.pcfitment-ymm-search .product-title a:hover {
    color: var(--pcfitment-primary, #1a1a2e) !important;
}

/* Results Grid Responsive */
@media (max-width: 768px) {
    .pcfitment-ymm-search .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .pcfitment-ymm-search.custom-products-grid {
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .pcfitment-ymm-search .products-grid {
        grid-template-columns: 1fr;
    }

    .pcfitment-ymm-search .product-image {
        padding: 15px;
    }

    .pcfitment-ymm-search .product-info {
        padding: 12px 15px;
    }
}

/* ===================================
   No Results / Error
   =================================== */
.ymm-no-results,
.ymm-error {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px solid #eee;
    margin: 20px 0;
}

.ymm-no-results p,
.ymm-error p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.ymm-reset-form-btn {
    padding: 12px 30px !important;
    background-color: var(--pcfitment-primary, #1a1a2e) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: filter 0.3s ease !important;
}

.ymm-reset-form-btn:hover {
    background-color: var(--pcfitment-primary, #1a1a2e) !important;
    filter: brightness(0.85);
}

/* ===================================
   Product Compatibility Badge
   =================================== */
.pcfitment-ymm-search .ymm-compatibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: #f8f8f8;
    border: 2px solid #0a6200;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.pcfitment-ymm-search .ymm-compatibility-badge .ymm-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.pcfitment-ymm-search .ymm-compatibility-badge .ymm-vehicle-name {
    color: #0a6200;
    font-weight: 700;
}

.pcfitment-ymm-search .ymm-compatibility-badge.ymm-not-compatible {
    border-color: #FF3D3D;
}

.pcfitment-ymm-search .ymm-compatibility-badge.ymm-not-compatible .ymm-vehicle-name {
    color: #FF3D3D;
}

.pcfitment-ymm-search .ymm-compatibility-badge.ymm-unverified {
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .pcfitment-ymm-search .ymm-compatibility-badge {
        font-size: 14px;
        padding: 10px 16px;
        gap: 10px;
    }

    .pcfitment-ymm-search .ymm-compatibility-badge .ymm-check-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Buyer Guide
   =================================== */
.pcfitment-ymm-search.buyer-guide-wrapper {
    margin: 30px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.pcfitment-ymm-search .buyer-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f8f8f8;
    border-bottom: 2px solid #ddd;
}

.pcfitment-ymm-search .buyer-guide-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.pcfitment-ymm-search .buyer-guide-header .btn-find-blade {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--pcfitment-primary, #1a1a2e);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: filter 0.3s ease;
}

.pcfitment-ymm-search .buyer-guide-header .btn-find-blade:hover {
    background-color: var(--pcfitment-primary, #1a1a2e);
    filter: brightness(0.85);
}

.pcfitment-ymm-search .buyer-guide-loading {
    text-align: center;
    padding: 60px 20px;
}

.pcfitment-ymm-search .buyer-guide-loading p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

.pcfitment-ymm-search .buyer-guide-error {
    text-align: center;
    padding: 60px 20px;
}

.pcfitment-ymm-search .buyer-guide-error p {
    font-size: 18px;
    color: #999;
}

.pcfitment-ymm-search .buyer-guide-content {
    padding: 20px;
}

.pcfitment-ymm-search .buyer-guide-table-wrapper {
    position: relative;
    overflow-x: auto;
    margin-bottom: 20px;
}

.pcfitment-ymm-search .buyer-guide-table-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.pcfitment-ymm-search .buyer-guide-table-loading-overlay p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.pcfitment-ymm-search .buyer-guide-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pcfitment-ymm-search .buyer-guide-table thead th {
    background-color: #E8E8E8;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    padding: 12px 15px;
    border: 1px solid #ccc;
    white-space: nowrap;
}

.pcfitment-ymm-search .buyer-guide-table tbody td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    vertical-align: top;
}

.pcfitment-ymm-search .buyer-guide-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pcfitment-ymm-search .buyer-guide-table tbody tr:hover {
    background-color: #f0f0f0;
}

.pcfitment-ymm-search .buyer-guide-table tbody td.fitment-note-cell {
    max-width: 250px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
}

.pcfitment-ymm-search .buyer-guide-table tbody td.fitment-note-cell a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.pcfitment-ymm-search .buyer-guide-table tbody td.fitment-note-cell a:hover {
    color: #004499;
    text-decoration: none;
}

.pcfitment-ymm-search .buyer-guide-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.pcfitment-ymm-search .buyer-guide-pagination button,
.pcfitment-ymm-search .buyer-guide-pagination button:focus {
    padding: 8px 16px;
    background-color: var(--pcfitment-primary, #1a1a2e) !important;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: filter 0.3s ease;
}

.pcfitment-ymm-search .buyer-guide-pagination button:hover:not(:disabled) {
    background-color: var(--pcfitment-primary, #1a1a2e) !important;
    filter: brightness(0.85);
}

.pcfitment-ymm-search .buyer-guide-pagination button:disabled {
    background-color: #e0e0e0 !important;
    color: #999;
    cursor: not-allowed;
}

.pcfitment-ymm-search .buyer-guide-pagination .pagination-info {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.pcfitment-ymm-search .buyer-guide-pagination .pagination-info span {
    font-weight: 700;
}

/* Buyer Guide Responsive */
@media screen and (max-width: 768px) {
    .pcfitment-ymm-search .buyer-guide-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .pcfitment-ymm-search .buyer-guide-header h3 {
        font-size: 20px;
    }

    .pcfitment-ymm-search .buyer-guide-header .btn-find-blade {
        width: 100%;
        text-align: center;
    }

    .pcfitment-ymm-search .buyer-guide-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pcfitment-ymm-search .buyer-guide-pagination button {
        flex: 1;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .pcfitment-ymm-search .buyer-guide-content {
        padding: 15px;
    }

    .pcfitment-ymm-search .buyer-guide-table thead th,
    .pcfitment-ymm-search .buyer-guide-table tbody td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .pcfitment-ymm-search .buyer-guide-pagination {
        flex-direction: column;
    }

    .pcfitment-ymm-search .buyer-guide-pagination button {
        width: 100%;
    }
}

/* custom shortcode css */
button.mdtp-ymm-btn.search-btn:disabled {
    background: grey;
    cursor: not-allowed;
}

/* custom result page */
.ymm-page-hero {
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-border);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.ymm-page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(240, 180, 41, 0.05);
    pointer-events: none;
}

.ymm-page-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(240, 180, 41, 0.03);
    pointer-events: none;
}

.ymm-page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.ymm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-cool);
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.ymm-breadcrumb a {
    color: var(--gray-cool);
    text-decoration: none;
    transition: color var(--t-fast);
}

.ymm-breadcrumb a:hover {
    color: var(--gold-dark);
}

.ymm-breadcrumb-sep {
    color: var(--gray-border);
    font-size: 14px;
    line-height: 1;
}

.ymm-breadcrumb>span:last-child {
    color: var(--navy);
    font-weight: 700;
}

.ymm-page-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.ymm-page-sub {
    font-size: 15px;
    line-height: 1.6;
}

.ymm-page-sub strong {
    color: var(--navy);
    font-weight: 700;
}

/* ── OUTER WRAP ───────────────────────────────────────────────────────────── */
.ymm-wrap {
    background: var(--white);
    padding: 40px 0 80px;
}

.ymm-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── REFINE BAR ───────────────────────────────────────────────────────────── */
.ymm-refine-bar {
    background: var(--off-white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-xl);
    padding: 20px 24px;
    margin-bottom: 32px;
}

.ymm-refine-fields {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.ymm-refine-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 120px;
}

.ymm-refine-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    /* color: var(--gray-cool); */
}

.ymm-refine-select {
    width: 100%;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 36px 10px 14px;
    border: 1.5px solid var(--gray-border);
    border-radius: var(--r-md);
    background: var(--white);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B9BB4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}

.ymm-refine-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(240, 180, 41, 0.18);
}

.ymm-refine-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 10px 22px;
    border-radius: var(--r-md);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    height: 42px;
    transition: background var(--t-fast), box-shadow var(--t-fast);
    flex-shrink: 0;
}

.ymm-refine-btn:hover {
    background: #f5bc35;
    box-shadow: var(--shadow-md);
}

.ymm-clear-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-cool);
    text-decoration: none;
    white-space: nowrap;
    align-self: center;
    padding: 4px 0;
    transition: color var(--t-fast);
    flex-shrink: 0;
}

.ymm-clear-link:hover {
    color: var(--gold-darker);
    text-decoration: underline;
}

/* ── RESULTS META ROW ─────────────────────────────────────────────────────── */
.ymm-results-meta {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--gray-border);
}

.ymm-results-count {
    font-size: 14px;
    font-weight: 500;
}

.ymm-results-count strong {
    color: var(--navy);
    font-weight: 800;
}

.ymm-vehicle-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(240, 180, 41, 0.12);
    border: 1px solid rgba(240, 180, 41, 0.3);
    color: var(--gold-darker);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--r-pill);
    margin-left: 4px;
}

/* ── PRODUCT GRID — 4 columns, one line ──────────────────────────────────── */
.ymm-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ymm-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .ymm-page-hero-inner,
    .ymm-inner {
        padding: 0 20px;
    }

    .ymm-refine-fields {
        gap: 10px;
    }

    .ymm-refine-field {
        min-width: calc(50% - 10px);
    }

    .ymm-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .ymm-products-grid {
        grid-template-columns: 1fr;
    }

    .ymm-refine-field {
        min-width: 100%;
    }
}


/* ─── REUSED: Product card — matches shop.css & product.css ─────────────────
   Include this block only if shop.css is NOT loaded on the same page.
   ─────────────────────────────────────────────────────────────────────────── */

.ymm-results-container .product-card-shop {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1.5px solid var(--gray-border);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.ymm-results-container .product-card-shop:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-mid);
}

.ymm-results-container .product-card-inner {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ymm-results-container .product-img-wrap {
    position: relative;
    background: var(--off-white);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background var(--t-base);
}

.ymm-results-container .product-card-shop:hover .product-img-wrap {
    background: #E8EDF5;
}

.ymm-results-container .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.ymm-results-container .product-card-shop:hover .product-img {
    transform: scale(1.05);
}

.ymm-results-container .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--r-xs);
    letter-spacing: 0.2px;
}

.ymm-results-container .badge-instock {
    background: #E8F5EE;
    color: #1E7A44;
}

.ymm-results-container .badge-lowstock {
    background: #FDF0E4;
    color: #A0540E;
}

.ymm-results-container .badge-outofstock {
    background: #FAECEB;
    color: #8C2318;
}

.ymm-results-container .product-card-body {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--gray-border);
}

.ymm-results-container .product-brand-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-darker);
    margin-bottom: 5px;
}

.ymm-results-container .product-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color var(--t-fast);
}

.ymm-results-container .product-card-shop:hover .product-title {
    color: var(--gold-darker);
}

.ymm-results-container .product-sku {
    font-size: 11px;
    font-family: 'Courier New', monospace;
    margin-bottom: 14px;
}

.ymm-results-container .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-border);
}

.ymm-results-container .product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1;
}

.ymm-results-container .product-atc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
    flex-shrink: 0;
}

.ymm-results-container .product-atc-btn:hover {
    background: #f5bc35;
    box-shadow: 0 4px 14px rgba(240, 180, 41, 0.4);
    transform: translateY(-1px);
}

.ymm-results-container .product-atc-btn:active {
    transform: translateY(0);
}