
    /* Custom Variant Selector Styles */
    .variant-selector-wrapper {
        margin: 8px 0 12px 0; 
        min-height: 50px;
    }

    .variant-placeholder {
        height: 50px;
        width: 100%;
    }

    .custom-select-wrapper {
        position: relative;
        width: 100%;
    }

    .custom-select-trigger {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        padding: 6px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 12px;
        height: 32px;
        box-sizing: border-box;
    }

    .custom-select-trigger:hover {
        border-color: #007bff;
        box-shadow: 0 1px 3px rgba(0, 123, 255, 0.1);
    }

    .selected-variant {
        font-weight: 500;
        color: #333;
        flex: 1;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dropdown-icon {
        font-size: 10px;
        color: #666;
        transition: transform 0.2s ease;
        margin-left: 6px;
        flex-shrink: 0;
    }

    .dropdown-icon.rotate-180 {
        transform: rotate(180deg);
    }

    .custom-select-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-top: none;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 150px;
        overflow-y: auto;
    }

    .dropdown-item {
        padding: 8px 10px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        border-bottom: 1px solid #f5f5f5;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: #f8f9fa;
    }

    .dropdown-item.selected {
        background-color: #e3f2fd;
        color: #1976d2;
    }

    .variant-text {
        font-weight: 500;
        flex: 1;
    }

    .variant-price {
        display: flex;
        align-items: center;
        gap: 4px;
        flex-shrink: 0;
    }

    .current-price {
        font-weight: 600;
        color: #007bff;
        font-size: 11px;
    }

    .single-shopping-card-one {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .body-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .price-area {
        margin-top: auto;
    }

    .cart-counter-action {
        margin-top: 12px;
    }

    @media (max-width: 768px) {
        .variant-selector-wrapper {
            margin: 16px 10px 10px 10px;
            min-height: 42px;
        }
        
        .variant-placeholder {
            height: 42px;
        }
        
        .custom-select-trigger {
            padding: 5px 8px;
            font-size: 11px;
            height: 30px;
        }
        
        .dropdown-item {
            padding: 6px 8px;
            font-size: 11px;
        }
        
        .current-price {
            font-size: 10px;
        }
    }

    .price-and-variant-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .price-area,
    .variant-selector-wrapper {
        flex-shrink: 0;
    }

    .price-area {
        white-space: nowrap;
    }

    .single-shopping-card-one {
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
    }

    .body-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .custom-select-wrapper {
        width: 100%;
        max-width: 200px;
    }

