/* ==========================================================================
   TRAFIC PRODUCT SEARCH - CSS
   ========================================================================== */

:root {
    --tps-bleu-fonce: #2B4678;
    --tps-jaune: #F7CA39;
    --tps-noir: #242526;
    --tps-corps-texte: #515151;
    --tps-gris-bg: #F1F1F1;
    --tps-gris-border: #DCDCDC;
    --tps-gris-border-light: #E4E4E4;
    --tps-blanc: #F8F8F8;
    --tps-blanc-pur: #ffffff;
    --tps-vert: #34E015;
}

/* ==========================================================================
   Trigger Button
   ========================================================================== */

.tps-trigger,
.tps-trigger:hover,
.tps-trigger:focus,
.tps-trigger:active,
[data-tps-open],
[data-tps-open]:hover,
[data-tps-open]:focus,
[data-tps-open]:active {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
}

/* ==========================================================================
   Overlay & Modal
   ========================================================================== */

.tps-overlay {
    position: fixed;
    inset: 0;
    background: rgba(43, 70, 120, 0.75);
    backdrop-filter: blur(3px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.tps-overlay.open {
    opacity: 1;
    visibility: visible;
}

.tps-modal {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 580px;
    height: 100vh;
    background: var(--tps-blanc);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(43, 70, 120, 0.3);
}

.tps-modal.open {
    transform: translateX(0);
}

/* ==========================================================================
   Modal Header
   ========================================================================== */

.tps-modal-header {
    padding: 1.25rem 1.5rem;
    background: var(--tps-bleu-fonce);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.tps-close {
    background: none;
    border: none;
    color: var(--tps-blanc-pur);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    opacity: 0.85;
    transition: all 0.2s;
}

.tps-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.tps-close svg {
    width: 22px;
    height: 22px;
}

.tps-search-wrap {
    flex: 1;
    position: relative;
}

.tps-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    width: 18px;
    height: 18px;
    pointer-events: none;
    flex-shrink: 0;
}

.tps-search-input {
    width: 100%;
    padding: 14px 44px 14px 20px;
    background: var(--tps-blanc-pur);
    border: 2px solid transparent;
    border-radius: 60px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--tps-noir);
    outline: 0;
}

.tps-search-input::placeholder {
    color: #999;
}

.tps-search-input:focus {
    border-color: var(--tps-jaune);
}

.tps-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--tps-gris-border);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    color: var(--tps-corps-texte);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tps-search-clear:hover {
    background: var(--tps-bleu-fonce);
    color: var(--tps-blanc-pur);
}

/* ==========================================================================
   Autocomplete Dropdown
   ========================================================================== */

.tps-autocomplete {
    position: absolute;
    top: 100%;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--tps-blanc-pur);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(43, 70, 120, 0.2);
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    margin-top: -10px;
}

.tps-autocomplete-section {
    padding: 12px 16px;
    border-bottom: 1px solid var(--tps-gris-border-light);
}

.tps-autocomplete-section:last-child {
    border-bottom: none;
}

.tps-autocomplete-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--tps-corps-texte);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tps-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}

.tps-autocomplete-item:hover {
    background: var(--tps-gris-bg);
}

.tps-autocomplete-item mark {
    background: var(--tps-jaune);
    color: var(--tps-noir);
    padding: 0 2px;
    border-radius: 2px;
}

.tps-autocomplete-item-icon {
    width: 32px;
    height: 32px;
    background: var(--tps-gris-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tps-autocomplete-item-icon svg {
    width: 16px;
    height: 16px;
    color: var(--tps-corps-texte);
}

.tps-autocomplete-item-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.tps-autocomplete-item-count {
    font-size: 12px;
    color: var(--tps-corps-texte);
    opacity: 0.7;
}

/* ==========================================================================
   Filters Bar
   ========================================================================== */

.tps-filters-bar {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    background: var(--tps-blanc-pur);
    flex-shrink: 0;
}

.tps-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.tps-select {
    appearance: none;
    height: 34px;
    padding: 6px 40px 6px 12px;
    background: var(--tps-blanc-pur);
    border: none;
    border-radius: 30px;
    outline: 1.5px solid var(--tps-gris-border-light);
    outline-offset: -1.5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tps-corps-texte);
    cursor: pointer;
    line-height: 17.64px;
    min-width: 120px;
}

.tps-select:hover,
.tps-select:focus {
    outline-color: var(--tps-bleu-fonce);
}

.tps-select-chevron {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 22px;
    height: 22px;
}

/* Checkbox filter */
.tps-checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--tps-corps-texte);
}

.tps-checkbox-wrap input {
    width: 18px;
    height: 18px;
    accent-color: var(--tps-bleu-fonce);
}

.tps-checkbox-count {
    font-size: 12px;
    background: var(--tps-gris-bg);
    padding: 2px 6px;
    border-radius: 10px;
}

/* View toggle */
.tps-view-toggle {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.tps-view-btn {
    width: 36px;
    height: 36px;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid var(--tps-bleu-fonce) !important;
    box-shadow: none !important;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tps-bleu-fonce);
    transition: all 0.2s;
    padding: 0 !important;
}

.tps-view-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--tps-bleu-fonce);
    stroke-width: 2;
}

.tps-view-btn:hover:not(.active) {
    background: rgba(43, 70, 120, 0.1) !important;
    background-color: rgba(43, 70, 120, 0.1) !important;
}

.tps-view-btn.active {
    background: var(--tps-bleu-fonce) !important;
    background-color: var(--tps-bleu-fonce) !important;
    border-color: var(--tps-bleu-fonce) !important;
    color: var(--tps-blanc-pur);
}

.tps-view-btn.active svg {
    stroke: var(--tps-blanc-pur);
}

.tps-sort-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tps-sort-label {
    font-size: 14px;
    color: var(--tps-corps-texte);
    font-weight: 500;
}

.tps-clear-btn {
    background: none;
    border: none;
    color: var(--tps-corps-texte);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.9;
}

/* ==========================================================================
   Results Area
   ========================================================================== */

.tps-results {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
    background: var(--tps-blanc);
    position: relative;
}

.tps-results-count {
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    color: var(--tps-noir);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tps-results-count span {
    color: var(--tps-bleu-fonce);
}

/* ==========================================================================
   Initial State (Recent Searches & Recently Viewed)
   ========================================================================== */

.tps-initial-state h3 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--tps-corps-texte);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tps-initial-state h3 button {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--tps-bleu-fonce);
    cursor: pointer;
    text-decoration: underline;
}

.tps-recent-searches {
    margin-bottom: 24px;
}

.tps-recent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tps-recent-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--tps-blanc-pur);
    border: 1px solid var(--tps-gris-border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--tps-corps-texte);
    cursor: pointer;
    transition: all 0.2s;
}

.tps-recent-tag:hover {
    border-color: var(--tps-bleu-fonce);
    color: var(--tps-bleu-fonce);
}

.tps-recent-tag svg {
    width: 14px;
    height: 14px;
}

.tps-recent-products {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.tps-recent-product {
    flex-shrink: 0;
    width: 120px;
    text-decoration: none;
    color: inherit;
}

.tps-recent-product-img {
    width: 120px;
    height: 90px;
    background: var(--tps-gris-bg);
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tps-recent-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tps-recent-product-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--tps-noir);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   Skeleton Loading
   ========================================================================== */

.tps-skeleton {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tps-skeleton-card {
    padding: 12px;
    border-radius: 20px;
    background: var(--tps-blanc-pur);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tps-skeleton-img {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, var(--tps-gris-bg) 25%, #e8e8e8 50%, var(--tps-gris-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 14px;
}

.tps-skeleton-content {
    flex: 1;
}

.tps-skeleton-title {
    width: 70%;
    height: 16px;
    background: linear-gradient(90deg, var(--tps-gris-bg) 25%, #e8e8e8 50%, var(--tps-gris-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.tps-skeleton-ref {
    width: 40%;
    height: 12px;
    background: linear-gradient(90deg, var(--tps-gris-bg) 25%, #e8e8e8 50%, var(--tps-gris-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.tps-skeleton-price {
    width: 25%;
    height: 18px;
    background: linear-gradient(90deg, var(--tps-gris-bg) 25%, #e8e8e8 50%, var(--tps-gris-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   Product List (Compact View)
   ========================================================================== */

.tps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tps-card {
    padding: 12px;
    border-radius: 20px;
    outline: 1.5px solid var(--tps-gris-border);
    outline-offset: -1.5px;
    background: var(--tps-blanc-pur);
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.tps-card:hover {
    outline-color: var(--tps-jaune);
    box-shadow: 0 6px 20px rgba(43, 70, 120, 0.12);
}

.tps-card-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: var(--tps-gris-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tps-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tps-card-img > svg {
    width: 28px;
    height: 28px;
    color: #bbb;
    opacity: 0.7;
}

.tps-card-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--tps-jaune);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tps-card-badge svg {
    width: 10px;
    height: 10px;
    stroke: var(--tps-noir);
}

.tps-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tps-card-title {
    color: var(--tps-bleu-fonce);
    font-size: 15px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tps-card-title mark {
    background: var(--tps-jaune);
    color: var(--tps-noir);
    padding: 0 2px;
    border-radius: 2px;
}

.tps-card:hover .tps-card-title {
    text-decoration: underline;
}

.tps-card-ref {
    opacity: 0.6;
    color: var(--tps-corps-texte);
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.tps-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.tps-card-stock {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tps-card-stock-dot {
    width: 6px;
    height: 6px;
    background: var(--tps-vert);
    border-radius: 50%;
}

.tps-card-stock-text {
    color: var(--tps-vert);
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.tps-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.tps-card-price {
    color: var(--tps-bleu-fonce);
    font-size: 18px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.tps-card-price-ht {
    color: var(--tps-bleu-fonce);
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.tps-card-price-devis {
    color: var(--tps-corps-texte);
    font-size: 13px;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
}

/* Cart button */
.tps-card-cart {
    width: 36px;
    height: 36px;
    background: var(--tps-bleu-fonce);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tps-card:hover .tps-card-cart {
    background: var(--tps-jaune);
}

.tps-card-cart svg {
    width: 18px;
    height: 18px;
}

.tps-card-cart svg path {
    fill: var(--tps-blanc);
    transition: fill 0.2s;
}

.tps-card:hover .tps-card-cart svg path {
    fill: var(--tps-noir);
}

/* ==========================================================================
   Variation Cards
   ========================================================================== */

.tps-card--variation {
    border-left: 3px solid var(--tps-jaune);
}

.tps-card-variation {
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: var(--tps-corps-texte);
    line-height: 1.3;
    margin-top: 2px;
}

.tps-card-variation-label {
    display: inline-block;
    background: var(--tps-jaune);
    color: var(--tps-noir);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-right: 4px;
    vertical-align: middle;
}

.tps-card-badge-var {
    background: var(--tps-bleu-fonce);
}

.tps-card-badge-var svg {
    width: 10px;
    height: 10px;
    stroke: var(--tps-blanc-pur);
}

/* Autocomplete variation items */
.tps-autocomplete-item-icon--var {
    background: rgba(247, 202, 57, 0.15);
}

.tps-autocomplete-item-icon--var svg {
    color: var(--tps-bleu-fonce);
}

.tps-autocomplete-item-sku {
    font-size: 11px;
    font-weight: 600;
    color: var(--tps-corps-texte);
    opacity: 0.6;
    white-space: nowrap;
}

.tps-autocomplete-item-sku mark {
    background: var(--tps-jaune);
    color: var(--tps-noir);
    padding: 0 2px;
    border-radius: 2px;
}

/* ==========================================================================
   Product Grid View
   ========================================================================== */

.tps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tps-grid .tps-card {
    flex-direction: column;
    padding: 12px;
    border-radius: 24px;
}

.tps-grid .tps-card-img {
    width: 100%;
    height: 120px;
    border-radius: 16px;
}

.tps-grid .tps-card-content {
    width: 100%;
}

.tps-grid .tps-card-title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 40px;
}

.tps-grid .tps-card-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
}

.tps-grid .tps-card--variation {
    border-left: none;
    border-top: 3px solid var(--tps-jaune);
}

.tps-grid .tps-card-variation {
    font-size: 12px;
    margin-top: 4px;
}

/* ==========================================================================
   Product Preview Tooltip
   ========================================================================== */

.tps-preview {
    position: absolute;
    left: -280px;
    top: 0;
    width: 260px;
    background: var(--tps-blanc-pur);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(43, 70, 120, 0.2);
    padding: 16px;
    z-index: 101;
    pointer-events: none;
}

.tps-preview-img {
    width: 100%;
    height: 150px;
    background: var(--tps-gris-bg);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.tps-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tps-preview-title {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--tps-bleu-fonce);
    margin-bottom: 8px;
}

.tps-preview-desc {
    font-size: 13px;
    color: var(--tps-corps-texte);
    line-height: 1.4;
    margin-bottom: 12px;
}

.tps-preview-variants {
    font-size: 12px;
    color: var(--tps-bleu-fonce);
    font-weight: 600;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.tps-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--tps-corps-texte);
}

.tps-empty > svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.tps-empty h3 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 18px;
    color: var(--tps-noir);
    margin-bottom: 0.5rem;
}

.tps-empty p {
    font-size: 14px;
    margin-bottom: 1rem;
}

.tps-empty-btn {
    background: var(--tps-jaune);
    border: none;
    color: var(--tps-noir);
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.tps-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 1.25rem 0;
    margin-top: 0.75rem;
}

.tps-page-btn {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tps-bleu-fonce) !important;
    border-radius: 60px;
    background: transparent !important;
    background-color: transparent !important;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tps-bleu-fonce) !important;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: none !important;
    padding: 0 !important;
}

.tps-page-btn:hover:not(:disabled):not(.active) {
    background: rgba(43, 70, 120, 0.1) !important;
    background-color: rgba(43, 70, 120, 0.1) !important;
}

.tps-page-btn.active {
    background: var(--tps-bleu-fonce) !important;
    background-color: var(--tps-bleu-fonce) !important;
    border-color: var(--tps-bleu-fonce) !important;
    color: #ffffff !important;
}

.tps-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==========================================================================
   Keyboard Shortcut Hint
   ========================================================================== */

.tps-shortcut-hint {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--tps-blanc-pur);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: var(--tps-corps-texte);
    display: none;
    align-items: center;
    gap: 4px;
    z-index: 1000;
}

.tps-shortcut-hint kbd {
    background: var(--tps-gris-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 11px;
}

/* Show on desktop only */
@media (min-width: 768px) {
    .tps-shortcut-hint {
        display: flex;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 600px) {
    .tps-modal {
        max-width: 100%;
    }
    
    .tps-card {
        padding: 10px;
        gap: 10px;
    }
    
    .tps-card-img {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    
    .tps-card-title {
        font-size: 14px;
    }
    
    .tps-card-price {
        font-size: 16px;
    }
    
    .tps-card-cart {
        width: 32px;
        height: 32px;
    }
    
    .tps-filters-bar {
        gap: 8px;
        padding: 0.75rem 1rem;
    }
    
    .tps-select {
        min-width: 90px;
        font-size: 12px;
        height: 30px;
    }
    
    .tps-view-toggle {
        display: none;
    }
    
    .tps-preview {
        display: none !important;
    }
    
    .tps-grid {
        grid-template-columns: 1fr;
    }
}
