.wootd-product-filter-container {
    max-width: 1200px;
    margin: 40px auto;
    font-family: inherit;
}

.wootd-filter-header {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    flex-wrap: wrap;
    border: 1px solid #f1f5f9;
}

.wootd-filter-group {
    flex: 1;
    min-width: 250px;
}

.wootd-filter-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wootd-filter-select {
    width: 100%;
    height: 50px; /* Force minimum height */
    padding: 0 15px; /* Adjust padding for better text alignment */
    line-height: 50px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    color: #1e293b; /* Darker text for visibility */
    font-size: 16px; /* Slightly larger font */
    transition: all 0.3s;
    outline: none;
    cursor: pointer;
    appearance: none; /* Modern look */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.wootd-filter-select:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.wootd-filter-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    min-height: 400px;
}

.wootd-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.wootd-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.wootd-card-images {
    position: relative;
    padding: 15px;
    background: #f8fafc;
}

.wootd-main-img-wrap {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wootd-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.wootd-product-card:hover .wootd-main-img {
    transform: scale(1.1);
}

.wootd-thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.wootd-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.wootd-thumb.active, .wootd-thumb:hover {
    border-color: #1e3a5f;
    transform: scale(1.1);
}

.wootd-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.wootd-card-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
}

.wootd-card-meta {
    margin-bottom: 15px;
}

.wootd-mat-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 11px;
    font-weight: 700;
    border-radius: 99px;
    text-transform: uppercase;
}

.wootd-card-price {
    font-size: 14px;
    color: #64748b;
    margin-top: auto;
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.wootd-card-price strong {
    font-size: 1.3rem;
    color: #0f172a;
    margin-left: 5px;
}

.wootd-configure-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #1e3a5f;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.wootd-configure-btn span {
    margin-left: 8px;
    transition: transform 0.3s;
    display: inline-block;
}

.wootd-configure-btn:hover {
    background: #0f172a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wootd-configure-btn:hover span {
    transform: translateX(5px);
}

.wootd-loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px;
    font-size: 18px;
    color: #94a3b8;
    background: #f8fafc;
    border: 2px dashed #e2e8f0;
    border-radius: 20px;
}

.wootd-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    color: #64748b;
    font-style: italic;
    border: 1px solid #f1f5f9;
}
