/* Hide native select */
.variation-native-select {
    display: none !important;
}

/* Custom dropdown container */
.custom-variation-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

/* Dropdown trigger/button */
.custom-dropdown-trigger {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
}

.custom-dropdown-trigger:hover {
    border-color: #999;
}

.custom-variation-dropdown.open .custom-dropdown-trigger {
    border-color: #000;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Selected image in trigger */
.custom-dropdown-trigger .selected-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 3px;
    margin-right: 10px;
    border: 1px solid #e0e0e0;
}

/* Selected text */
.custom-dropdown-trigger .selected-text {
    flex: 1;
    font-size: 14px;
    color: #333;
}

/* Dropdown arrow */
.custom-dropdown-trigger .dropdown-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #666;
}

.custom-variation-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown options container */
.custom-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #000;
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.custom-variation-dropdown.open .custom-dropdown-options {
    display: block;
}

/* Individual option */
.custom-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: #f5f5f5;
}

.custom-option.active {
    background: #e8f4f8;
    font-weight: 600;
}

/* Option image */
.custom-option img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
    border: 1px solid #e0e0e0;
}

/* Option text */
.custom-option span {
    font-size: 14px;
    color: #333;
}

/* Scrollbar styling */
.custom-dropdown-options::-webkit-scrollbar {
    width: 8px;
}

.custom-dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-dropdown-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.custom-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}